diff --git a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/BuildingIndicators.groovy b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/BuildingIndicators.groovy index d94c77981c..240a4b3225 100644 --- a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/BuildingIndicators.groovy +++ b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/BuildingIndicators.groovy @@ -361,14 +361,14 @@ String roadDistance(JdbcDataSource datasource, String building, String inputRoad // The buffer is created datasource """DROP TABLE IF EXISTS $build_buffer; CREATE TABLE $build_buffer AS - SELECT $ID_FIELD_BU, ST_BUFFER($GEOMETRIC_FIELD, $bufferDist) AS $GEOMETRIC_FIELD + SELECT $ID_FIELD_BU, ST_BUFFER($GEOMETRIC_FIELD, $bufferDist, 2) AS $GEOMETRIC_FIELD FROM $building; CREATE SPATIAL INDEX IF NOT EXISTS buff_ids ON $build_buffer ($GEOMETRIC_FIELD)""".toString() // The road surfaces are created datasource """ DROP TABLE IF EXISTS $road_surf; CREATE TABLE $road_surf AS - SELECT ST_BUFFER($GEOMETRIC_FIELD, $ROAD_WIDTH::DOUBLE PRECISION/2,'endcap=flat') AS $GEOMETRIC_FIELD + SELECT ST_BUFFER($GEOMETRIC_FIELD, $ROAD_WIDTH::DOUBLE PRECISION/2,'quad_segs=2 endcap=flat') AS $GEOMETRIC_FIELD FROM $inputRoadTableName; CREATE SPATIAL INDEX IF NOT EXISTS buff_ids ON $road_surf ($GEOMETRIC_FIELD)""".toString() // The roads located within the buffer are identified diff --git a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/RsuIndicators.groovy b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/RsuIndicators.groovy index f38283ef92..81079dda9d 100644 --- a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/RsuIndicators.groovy +++ b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/RsuIndicators.groovy @@ -1233,7 +1233,7 @@ String extendedFreeFacadeFraction(JdbcDataSource datasource, String building, St def notIncBu = postfix "notIncBu" datasource """DROP TABLE IF EXISTS $extRsuTable; CREATE TABLE $extRsuTable AS SELECT - ST_BUFFER($GEOMETRIC_FIELD, $buffDist) AS $GEOMETRIC_FIELD, + ST_BUFFER($GEOMETRIC_FIELD, $buffDist, 2) AS $GEOMETRIC_FIELD, $ID_FIELD_RSU FROM $rsu;""".toString() // The facade area of buildings being entirely included in the RSU buffer is calculated @@ -1337,13 +1337,15 @@ String smallestCommunGeometry(JdbcDataSource datasource, String zone, String id_ //Separate road features according the zindex def roadTable_zindex0_buffer = postfix "road_zindex0_buffer" def road_tmp = postfix "road_zindex0" + datasource """DROP TABLE IF EXISTS $roadTable_zindex0_buffer, $road_tmp; - CREATE TABLE $roadTable_zindex0_buffer as SELECT st_buffer(the_geom, WIDTH::DOUBLE PRECISION/2) - AS the_geom - FROM $road where ZINDEX=0 ; + CREATE TABLE $roadTable_zindex0_buffer as SELECT ST_CollectionExtract(st_intersection(a.the_geom,b.the_geom),2) AS the_geom, + a.WIDTH, b.${id_zone} + FROM $road as a, $zone AS b WHERE a.the_geom && b.the_geom AND st_intersects(a.the_geom, b.the_geom) and a.ZINDEX=0 ; CREATE SPATIAL INDEX IF NOT EXISTS ids_$roadTable_zindex0_buffer ON $roadTable_zindex0_buffer(the_geom); - CREATE TABLE $road_tmp AS SELECT ST_CollectionExtract(st_intersection(st_union(st_accum(a.the_geom)),b.the_geom),3) AS the_geom, b.${id_zone} FROM - $roadTable_zindex0_buffer AS a, $zone AS b WHERE a.the_geom && b.the_geom AND st_intersects(a.the_geom, b.the_geom) GROUP BY b.${id_zone}; + CREATE TABLE $road_tmp AS SELECT st_union(st_accum(st_buffer(a.the_geom, WIDTH::DOUBLE PRECISION/2,2)))AS the_geom, + ${id_zone} FROM + $roadTable_zindex0_buffer AS a group by ${id_zone} ; DROP TABLE IF EXISTS $roadTable_zindex0_buffer; """.toString() tablesToMerge += ["$road_tmp": "select ST_ToMultiLine(the_geom) as the_geom, ${id_zone} from $road_tmp WHERE ST_ISEMPTY(THE_GEOM)=false"] @@ -1356,12 +1358,13 @@ String smallestCommunGeometry(JdbcDataSource datasource, String zone, String id_ def railTable_zindex0_buffer = postfix "rail_zindex0_buffer" def rail_tmp = postfix "rail_zindex0" datasource """DROP TABLE IF EXISTS $railTable_zindex0_buffer, $rail_tmp; - CREATE TABLE $railTable_zindex0_buffer as SELECT st_buffer(the_geom, WIDTH::DOUBLE PRECISION/2) - AS the_geom - FROM $rail where ZINDEX=0 ; + CREATE TABLE $railTable_zindex0_buffer as SELECT ST_CollectionExtract(st_intersection(a.the_geom,b.the_geom),3) AS the_geom, + a.WIDTH, b.${id_zone} + FROM $rail as a ,$zone AS b WHERE a.the_geom && b.the_geom AND st_intersects(a.the_geom, b.the_geom) and a.ZINDEX=0 ; CREATE SPATIAL INDEX IF NOT EXISTS ids_$railTable_zindex0_buffer ON $railTable_zindex0_buffer(the_geom); - CREATE TABLE $rail_tmp AS SELECT ST_CollectionExtract(st_intersection(st_union(st_accum(a.the_geom)),b.the_geom),3) AS the_geom, b.${id_zone} FROM - $railTable_zindex0_buffer AS a, $zone AS b WHERE a.the_geom && b.the_geom AND st_intersects(a.the_geom, b.the_geom) GROUP BY b.${id_zone}; + CREATE TABLE $rail_tmp AS SELECT st_union(st_accum(st_buffer(a.the_geom, WIDTH::DOUBLE PRECISION/2,2))) AS the_geom, + ${id_zone} FROM + $railTable_zindex0_buffer AS a GROUP BY ${id_zone}; DROP TABLE IF EXISTS $railTable_zindex0_buffer; """.toString() tablesToMerge += ["$rail_tmp": "select ST_ToMultiLine(the_geom) as the_geom, ${id_zone} from $rail_tmp WHERE ST_ISEMPTY(THE_GEOM)=false"] @@ -1435,7 +1438,7 @@ String smallestCommunGeometry(JdbcDataSource datasource, String zone, String id_ def tmp_point_polygonize = postfix "tmp_point_polygonize_zindex0" datasource """DROP TABLE IF EXISTS $tmp_point_polygonize; CREATE INDEX ON $tmp_tables($id_zone); - CREATE TABLE $tmp_point_polygonize as select EXPLOD_ID as ${ID_COLUMN_NAME}, st_pointonsurface(st_force2D(the_geom)) as the_geom , + CREATE TABLE $tmp_point_polygonize as select EXPLOD_ID as ${ID_COLUMN_NAME}, st_pointonsurface(the_geom) as the_geom , st_area(the_geom) as area , ${id_zone} from st_explode ('(select st_polygonize(st_union(st_force2d( st_precisionreducer(st_node(st_accum(a.the_geom)), 3)))) as the_geom, ${id_zone} from $tmp_tables as a group by ${id_zone})')""".toString() @@ -2254,7 +2257,7 @@ String groundLayer(JdbcDataSource datasource, String zone, String id_zone, def roadTable_zindex0_buffer = postfix "road_zindex0_buffer" def road_tmp = postfix "road_zindex0" datasource """DROP TABLE IF EXISTS $roadTable_zindex0_buffer, $road_tmp; - CREATE TABLE $roadTable_zindex0_buffer as SELECT st_buffer(the_geom, WIDTH::DOUBLE PRECISION/2) + CREATE TABLE $roadTable_zindex0_buffer as SELECT st_buffer(the_geom, WIDTH::DOUBLE PRECISION/2, 2) AS the_geom, surface as type FROM $road where ZINDEX=0 ; CREATE SPATIAL INDEX IF NOT EXISTS ids_$roadTable_zindex0_buffer ON $roadTable_zindex0_buffer(the_geom); diff --git a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnits.groovy b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnits.groovy index 566fb8211a..b2e2c7ea89 100644 --- a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnits.groovy +++ b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnits.groovy @@ -74,6 +74,7 @@ String createTSU(JdbcDataSource datasource, String zone, def tsuDataPrepared = prepareTSUData(datasource, zone, road, rail, vegetation, water, sea_land_mask, urban_areas, surface_vegetation, surface_hydro, surface_urban_areas, prefixName) + if (!tsuDataPrepared) { info "Cannot prepare the data for RSU calculation." return @@ -123,30 +124,38 @@ String createTSU(JdbcDataSource datasource, String inputTableName, String inputz return null } if (inputzone) { + + + //Clip the geometry + datasource.createSpatialIndex(inputTableName) + datasource.createSpatialIndex(inputzone) + + String cut_lines = postfix("cut_lines") + datasource.execute("""DROP TABLE IF EXISTS $cut_lines; + CREATE TABLE $cut_lines as SELECT ST_INTERSECTION(a.the_geom, b.the_geom) as the_geom from + $inputTableName as a, $inputzone as b where a.the_geom && b.the_geom and st_intersects(a.the_geom, b.the_geom); + """.toString()) + + //Create the polygons from the TSU lines String polygons = postfix("polygons") - // todo: put 'mitre' instead of 'round' whenever JTS has been updated to version 1.20 - datasource.execute("""DROP TABLE IF EXISTS $polygons; - CREATE TABLE $polygons as SELECT EXPLOD_ID AS $COLUMN_ID_NAME, ST_SETSRID(ST_BUFFER(ST_BUFFER(the_geom,-0.01, 2), 0.01, 2), $epsg) AS the_geom FROM + datasource.execute(""" DROP TABLE IF EXISTS $polygons; + CREATE TABLE $polygons as + SELECT + ST_SETSRID(st_makevalid(ST_BUFFER(ST_BUFFER(the_geom,-0.01, 2), 0.01, 2)), $epsg) AS the_geom FROM ST_EXPLODE('(SELECT ST_POLYGONIZE(ST_UNION(ST_NODE(ST_ACCUM(the_geom)))) AS the_geom - FROM $inputTableName)') + FROM $cut_lines)') """.toString()) - datasource.createSpatialIndex(polygons) - datasource.createSpatialIndex(inputTableName) - datasource """ - DROP TABLE IF EXISTS $outputTableName; - CREATE TABLE $outputTableName AS - SELECT a.* - FROM $polygons AS a, - $inputzone AS b - WHERE a.the_geom && b.the_geom - AND ST_INTERSECTS(ST_POINTONSURFACE(a.THE_GEOM), b.the_geom) and st_area(a.the_geom) > $area; - DROP TABLE IF EXISTS $polygons; - """.toString() + + datasource.execute("""DROP TABLE IF EXISTS $outputTableName; + CREATE TABLE $outputTableName as + select CAST((row_number() over()) as Integer) as $COLUMN_ID_NAME, the_geom from + st_explode('$polygons') where st_area(the_geom) > $area; + DROP TABLE IF EXISTS $cut_lines, $polygons""".toString()) } else { datasource """ DROP TABLE IF EXISTS $outputTableName; CREATE TABLE $outputTableName AS - SELECT EXPLOD_ID AS $COLUMN_ID_NAME, ST_SETSRID(ST_BUFFER(ST_BUFFER(the_geom,-0.01, 'join=mitre'), 0.01, 'join=mitre'), $epsg) AS the_geom + SELECT EXPLOD_ID AS $COLUMN_ID_NAME, ST_SETSRID(ST_BUFFER(ST_BUFFER(the_geom,-0.01, 2), 0.01, 2), $epsg) AS the_geom FROM ST_EXPLODE('( SELECT ST_POLYGONIZE(ST_UNION(ST_NODE(ST_ACCUM(the_geom)))) AS the_geom FROM $inputTableName)') where st_area(the_geom) > $area""".toString() @@ -339,7 +348,7 @@ String prepareTSUData(JdbcDataSource datasource, String zone, String road, Strin } } - if (water && datasource.hasTable(urban_areas)) { + if (urban_areas && datasource.hasTable(urban_areas)) { if (datasource.getColumnNames(urban_areas).size() > 0) { debug "Preparing urban areas..." queryCreateOutputTable += [urban_areas_tmp: "(SELECT ST_ToMultiLine(THE_GEOM) FROM $urban_areas WHERE st_area(the_geom)>=$surface_urban_areas and type not in ('social_building'))"] @@ -430,7 +439,7 @@ String createBlocks(JdbcDataSource datasource, String inputTableName, double sna CREATE INDEX ON $subGraphTableNodes (NODE_ID); DROP TABLE IF EXISTS $subGraphBlocks; CREATE TABLE $subGraphBlocks AS - SELECT ST_UNION(ST_ACCUM(ST_buffer(A.THE_GEOM, $snappingTolerance))) AS THE_GEOM + SELECT ST_UNION(ST_ACCUM(ST_buffer(A.THE_GEOM, $snappingTolerance,2))) AS THE_GEOM FROM $inputTableName A, $subGraphTableNodes B WHERE A.id_build=B.NODE_ID GROUP BY B.CONNECTED_COMPONENT; """.toString() @@ -446,16 +455,22 @@ String createBlocks(JdbcDataSource datasource, String inputTableName, double sna //Create the blocks debug "Creating the block table..." - datasource """DROP TABLE IF EXISTS $outputTableName; + def blocks = postfix("blocks") + datasource.execute("""DROP TABLE IF EXISTS $blocks; + CREATE TABLE $blocks as + SELECT st_force2d(ST_MAKEVALID(THE_GEOM)) as the_geom FROM $subGraphBlocks + UNION ALL (SELECT st_force2d(ST_MAKEVALID(a.the_geom)) as the_geom FROM $inputTableName a + LEFT JOIN $subGraphTableNodes b ON a.id_build = b.NODE_ID WHERE b.NODE_ID IS NULL);""".toString()) + + //Don't forget to explode the blocks + datasource.execute("""DROP TABLE IF EXISTS $outputTableName; CREATE TABLE $outputTableName ($columnIdName SERIAL, THE_GEOM GEOMETRY) - AS SELECT CAST((row_number() over()) as Integer), the_geom FROM - ((SELECT st_force2d(ST_MAKEVALID(THE_GEOM)) as the_geom FROM $subGraphBlocks) - UNION ALL (SELECT st_force2d(ST_MAKEVALID(a.the_geom)) as the_geom FROM $inputTableName a - LEFT JOIN $subGraphTableNodes b ON a.id_build = b.NODE_ID WHERE b.NODE_ID IS NULL));""".toString() + AS SELECT CAST((row_number() over()) as Integer), the_geom FROM st_explode('$blocks') + where st_area(the_geom) > 0 ;""".toString()) // Temporary tables are deleted datasource """DROP TABLE IF EXISTS $graphTable, - $subGraphBlocks, $subGraphTableNodes, $subGraphTableEdges;""".toString() + $subGraphBlocks, $subGraphTableNodes, $subGraphTableEdges,$blocks;""".toString() debug "The blocks have been created" return outputTableName @@ -510,8 +525,8 @@ String spatialJoin(JdbcDataSource datasource, String sourceTable, String targetT WHERE a.$GEOMETRIC_COLUMN_SOURCE && b.$GEOMETRIC_COLUMN_TARGET AND ST_INTERSECTS(a.$GEOMETRIC_COLUMN_SOURCE, b.$GEOMETRIC_COLUMN_TARGET) - ORDER BY ST_AREA(ST_INTERSECTION(ST_BUFFER(ST_PRECISIONREDUCER(a.$GEOMETRIC_COLUMN_SOURCE, 3),0), - ST_BUFFER(ST_PRECISIONREDUCER(b.$GEOMETRIC_COLUMN_TARGET,3),0))) + ORDER BY ST_AREA(ST_INTERSECTION(a.$GEOMETRIC_COLUMN_SOURCE, + b.$GEOMETRIC_COLUMN_TARGET)) DESC LIMIT $nbRelations) AS $idColumnTarget FROM $sourceTable a""".toString() } else { @@ -662,7 +677,7 @@ String computeSprawlAreas(JdbcDataSource datasource, String grid_indicators, flo select st_union(st_accum(the_geom)) as the_geom from $grid_indicators where lcz_warm>=2 and LCZ_PRIMARY NOT IN (101, 102,103,104,106, 107))') - where st_isempty(st_buffer(the_geom, -100)) =false""".toString()) + where st_isempty(st_buffer(the_geom, -100,2)) =false""".toString()) datasource.execute("""CREATE TABLE $outputTableName as SELECT CAST((row_number() over()) as Integer) as id, the_geom FROM @@ -727,7 +742,7 @@ String extractCoolAreas(JdbcDataSource datasource, String grid_indicators,float CREATE TABLE $outputTableName as SELECT CAST((row_number() over()) as Integer) as id, the_geom FROM ST_EXPLODE('( SELECT ST_UNION(ST_ACCUM(a.THE_GEOM)) AS THE_GEOM FROM $grid_indicators as a where - a.LCZ_PRIMARY in (101, 102, 103,104, 106, 107))') ${distance>0?" where st_isempty(st_buffer(the_geom, -$distance)) =false":""}; + a.LCZ_PRIMARY in (101, 102, 103,104, 106, 107))') ${distance>0?" where st_isempty(st_buffer(the_geom, -$distance,2)) =false":""}; """.toString()) return outputTableName } diff --git a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/WorkflowGeoIndicators.groovy b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/WorkflowGeoIndicators.groovy index 2e5f9780c2..aedeba729c 100644 --- a/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/WorkflowGeoIndicators.groovy +++ b/geoindicators/src/main/groovy/org/orbisgis/geoclimate/geoindicators/WorkflowGeoIndicators.groovy @@ -385,7 +385,7 @@ String computeRSUIndicators(JdbcDataSource datasource, String buildingTable, "abbey", "condominium", "villa", "dormitory", "sheltered_housing", "workers_dormitory", "terrace", "residential"]], floorAreaTypeAndCompositionLcz : [:], - buildingAreaTypeAndCompositionTeb : ["individual_housing": ["house", "detached", "bungalow", "farm", "villa", "terrace"], + buildingAreaTypeAndCompositionTeb : ["individual_housing": ["house", "detached", "bungalow", "farm", "villa", "terrace", "cabin"], "collective_housing": [ "apartments","barracks","abbey", "dormitory", "sheltered_housing", "workers_dormitory", "condominium"], @@ -412,8 +412,8 @@ String computeRSUIndicators(JdbcDataSource datasource, String buildingTable, "ammunition","bunker","casemate","shelter","religious","place_of_worship", "wayside_shrine","station","stable","sty","greenhouse","kiosk","marketplace", "marker","warehouse","planetarium","fire_station","water_tower","grandstand", - "transportation","toll_booth"]], - floorAreaTypeAndCompositionTeb : ["individual_housing": ["house", "detached", "bungalow", "farm", "villa", "terrace"], + "transportation","toll_booth", "hut", "shed"]], + floorAreaTypeAndCompositionTeb : ["individual_housing": ["house", "detached", "bungalow", "farm", "villa", "terrace", "cabin"], "collective_housing": [ "apartments","barracks","abbey", "dormitory", "sheltered_housing", "workers_dormitory", "condominium"], @@ -440,7 +440,7 @@ String computeRSUIndicators(JdbcDataSource datasource, String buildingTable, "ammunition","bunker","casemate","shelter","religious","place_of_worship", "wayside_shrine","station","stable","sty","greenhouse","kiosk","marketplace", "marker","warehouse","planetarium","fire_station","water_tower","grandstand", - "transportation","toll_booth"]], + "transportation","toll_booth", "hut", "shed"]], utrfSurfFraction : ["vegetation_fraction_utrf" : ["high_vegetation_fraction", "low_vegetation_fraction", "high_vegetation_low_vegetation_fraction", diff --git a/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/RsuIndicatorsTests.groovy b/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/RsuIndicatorsTests.groovy index c003605fb2..fd04fdc4f7 100644 --- a/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/RsuIndicatorsTests.groovy +++ b/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/RsuIndicatorsTests.groovy @@ -399,10 +399,9 @@ class RsuIndicatorsTests { h2GIS.eachRow("SELECT * FROM test_rsu_extended_free_facade_fraction WHERE id_rsu = 1") { row -> concat += row.extended_free_facade_fraction.round(3) } - assertEquals(0.173, concat) + assertEquals(0.177, concat) } - @Test void smallestCommunGeometryTest() { h2GIS.load(SpatialUnitsTests.getResource("road_test.geojson"), true) diff --git a/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnitsTests.groovy b/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnitsTests.groovy index 402a9048a2..436be71dbc 100644 --- a/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnitsTests.groovy +++ b/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/SpatialUnitsTests.groovy @@ -377,4 +377,31 @@ class SpatialUnitsTests { distances = Geoindicators.GridIndicators.gridDistances(h2GIS, inverse_cool_areas, data, "id_grid") h2GIS.save(distances, "/tmp/cool_inverse_distances.fgb", true) } + + /** + * A test to debug test creation with some inputs data + */ + @Disabled + @Test + void debugTSUTest() { + String path = "/tmp/geoclimate" + String zone = h2GIS.load(path+File.separator+"zone.fgb") + String road = h2GIS.load(path+File.separator+"road.fgb") + String rail = h2GIS.load(path+File.separator+"rail.fgb") + String vegetation= h2GIS.load(path+File.separator+"vegetation.fgb") + String water= h2GIS.load(path+File.separator+"water.fgb") + String sea_land_mask= h2GIS.load(path+File.separator+"sea_land_mask.fgb") + String urban_areas= h2GIS.load(path+File.separator+"urban_areas.fgb") + double surface_vegetation =10000 + double surface_hydro=2500 + double surface_urban_areas=10000 + double area = 1 + String rsu = Geoindicators.SpatialUnits.createTSU(h2GIS, zone, + area, road, rail, vegetation, + water, sea_land_mask, urban_areas, + surface_vegetation, surface_hydro, surface_urban_areas, "rsu") + if(rsu){ + h2GIS.save(rsu, "/tmp/rsu.fgb", true) + } + } } \ No newline at end of file diff --git a/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/WorkflowGeoIndicatorsTest.groovy b/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/WorkflowGeoIndicatorsTest.groovy index dfeb3cb0a9..12c71ac478 100644 --- a/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/WorkflowGeoIndicatorsTest.groovy +++ b/geoindicators/src/test/groovy/org/orbisgis/geoclimate/geoindicators/WorkflowGeoIndicatorsTest.groovy @@ -194,6 +194,8 @@ class WorkflowGeoIndicatorsTest { inputTableNames.railTable, inputTableNames.vegetationTable, inputTableNames.hydrographicTable, "", "", "", "", "", ["indicatorUse": indicatorUse, svfSimplified: false], prefixName) + + datasource.save(geoIndicatorsCompute_i.rsu_indicators, "/tmp/rsu.geojson" , true) assertNotNull(geoIndicatorsCompute_i) checkRSUIndicators(datasource, geoIndicatorsCompute_i.rsu_indicators) assertEquals(listUrbTyp.Bu.sort(), datasource.getTable(geoIndicatorsCompute_i.building_indicators).columns.sort()) @@ -568,7 +570,7 @@ class WorkflowGeoIndicatorsTest { def checkRSUIndicators(def datasource, def rsuIndicatorsTableName) { //Check road_fraction > 0 def countResult = datasource.firstRow("select count(*) as count from ${rsuIndicatorsTableName} WHERE ROAD_FRACTION>0".toString()) - assertEquals(184, countResult.count) + assertEquals(176, countResult.count) //Check building_fraction > 0 countResult = datasource.firstRow("select count(*) as count from ${rsuIndicatorsTableName} WHERE BUILDING_FRACTION>0".toString()) @@ -576,7 +578,7 @@ class WorkflowGeoIndicatorsTest { //Check high_vegetation_fraction > 0 countResult = datasource.firstRow("select count(*) as count from ${rsuIndicatorsTableName} WHERE high_vegetation_fraction>0".toString()) - assertEquals(22, countResult.count) + assertEquals(25, countResult.count) //Check high_vegetation_water_fraction > 0 countResult = datasource.firstRow("select count(*) as count from ${rsuIndicatorsTableName} WHERE high_vegetation_water_fraction>0".toString()) @@ -592,7 +594,7 @@ class WorkflowGeoIndicatorsTest { //Check high_vegetation_road_fraction > 0 countResult = datasource.firstRow("select count(*) as count from ${rsuIndicatorsTableName} WHERE high_vegetation_road_fraction>0".toString()) - assertEquals(21, countResult.count) + assertEquals(20, countResult.count) //Check high_vegetation_impervious_fraction > 0 countResult = datasource.firstRow("select count(*) as count from ${rsuIndicatorsTableName} WHERE high_vegetation_impervious_fraction>0".toString()) @@ -604,7 +606,7 @@ class WorkflowGeoIndicatorsTest { //Check low_vegetation_fraction > 0 countResult = datasource.firstRow("select count(*) as count from ${rsuIndicatorsTableName} WHERE low_vegetation_fraction>0".toString()) - assertEquals(55, countResult.count) + assertEquals(53, countResult.count) //Check low_vegetation_fraction > 0 countResult = datasource.firstRow("select count(*) as count from ${rsuIndicatorsTableName} WHERE impervious_fraction>0".toString()) @@ -622,7 +624,6 @@ class WorkflowGeoIndicatorsTest { void test(){ datasource.load("/tmp/road_inter.geojson", "road", true) datasource.load("/tmp/rsu_table.geojson", "rsu", true) - datasource.createSpatialIndex("road") datasource.createSpatialIndex("rsu") datasource.execute(""" diff --git a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/BUILDING.geojson b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/BUILDING.geojson index 1af25e37ba..9443a993cb 100644 --- a/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/BUILDING.geojson +++ b/geoindicators/src/test/resources/org/orbisgis/geoclimate/geoindicators/BUILDING.geojson @@ -1 +1 @@ -{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG::32630"}},"features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516024.9683961687,5277296.946439595],[516026.6212130152,5277296.728709319],[516027.43477216567,5277301.287680061],[516017.6668578483,5277303.039036347],[516015.6678906746,5277292.586397509],[516018.2228291119,5277292.037727036],[516017.55732188013,5277288.257143474],[516024.2446167036,5277287.053006623],[516024.9095079655,5277291.055868838],[516024.00769258325,5277291.275666419],[516024.43630030286,5277293.810833144],[516024.9683961687,5277296.946439595]]]},"properties":{"id_build":1,"id_source":"w144655681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.39526110794,5276984.073272857],[516175.5858093718,5276985.060168392],[516175.43714451586,5276984.504056685],[516172.85325393453,5276968.381616507],[516166.3905668454,5276969.697347399],[516168.0592199558,5276963.811573978],[516168.7357779166,5276963.59117306],[516178.3534809266,5276962.061930177],[516180.5825289577,5276970.737023728],[516182.7989065447,5276983.968812689],[516180.39526110794,5276984.073272857]]]},"properties":{"id_build":2,"id_source":"w144655684","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515209.3949390471,5277720.201804266],[515208.48741457204,5277722.644508627],[515208.7118276695,5277722.978514249],[515204.42533369974,5277725.30125299],[515200.0913158248,5277717.065591265],[515203.1745556077,5277715.406545614],[515202.7260183943,5277714.627395786],[515203.4778372958,5277714.295939809],[515202.5065385013,5277712.404026971],[515205.664876303,5277710.745178741],[515209.3949390471,5277720.201804266]]]},"properties":{"id_build":3,"id_source":"w144655688","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.61863200256,5277230.846752613],[516077.17519379227,5277238.297415736],[516071.186209466,5277239.525647431],[516066.5047203102,5277240.490757546],[516065.98514693347,5277238.266528246],[516063.20487739687,5277238.814556204],[516061.7963539455,5277232.142283726],[516061.35249224893,5277229.695984178],[516064.28327479,5277229.03723081],[516064.8022363823,5277231.483737787],[516065.0235531896,5277232.92916556],[516075.61863200256,5277230.846752613]]]},"properties":{"id_build":4,"id_source":"w144655699","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515664.1764190668,5277467.342128461],[515660.79868234624,5277466.710658901],[515658.1715665703,5277466.214577757],[515658.5530349462,5277463.992808077],[515652.6983740826,5277462.865666991],[515654.06896538474,5277455.867545848],[515656.7710050133,5277456.430510461],[515658.1413037692,5277449.543529309],[515664.8965577721,5277450.89537841],[515663.5262513229,5277457.782358003],[515665.92789662635,5277458.344518717],[515664.1764190668,5277467.342128461]]]},"properties":{"id_build":5,"id_source":"w144655703","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516174.67147770344,5277260.128561075],[516171.892442859,5277260.231981404],[516171.82320722926,5277258.120133012],[516171.6306254968,5277246.338780041],[516175.9113759242,5277246.350671206],[516176.0532409562,5277249.351839741],[516181.6864221542,5277249.14521308],[516181.8140757099,5277257.258772839],[516178.3665809767,5277257.38256029],[516176.0307008726,5277257.464982069],[516176.02792195696,5277258.465232502],[516174.67147770344,5277260.128561075]]]},"properties":{"id_build":6,"id_source":"w144655705","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516040.65156725456,5277328.886745737],[516039.5995574881,5277329.106127102],[516040.70952027093,5277335.1107338965],[516030.71574736794,5277337.08372546],[516028.7934454314,5277326.075593501],[516031.6484638824,5277325.6388948755],[516030.98388738954,5277321.524892705],[516039.8502694766,5277319.8822149495],[516040.43974002753,5277323.996011235],[516039.6884350637,5277324.105081239],[516039.9847317877,5277325.595170731],[516040.65156725456,5277328.886745737]]]},"properties":{"id_build":7,"id_source":"w144655706","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515524.88225294393,5276927.052255153],[515519.0665873642,5276939.262117149],[515512.54105361016,5276936.021678881],[515512.99464364036,5276934.911490507],[515507.6539243682,5276932.363280306],[515497.092521505,5276927.311650027],[515499.8873806299,5276921.317546466],[515509.2642643977,5276925.565821083],[515510.2465500088,5276923.34564395],[515517.1473280721,5276926.698219115],[515518.50662252406,5276923.923349648],[515524.88225294393,5276927.052255153]]]},"properties":{"id_build":8,"id_source":"w144655707","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515322.3447152651,5277212.656013423],[515322.1504985372,5277215.111689844],[515317.1948092547,5277214.720775893],[515318.00206020754,5277204.764781972],[515327.56053698104,5277205.523458422],[515327.7933017364,5277202.690008687],[515334.2431968518,5277203.20712023],[515333.9481526977,5277206.8739535045],[515334.23347936035,5277206.896932877],[515333.6977187619,5277213.563904331],[515328.47923289915,5277213.150060766],[515322.3447152651,5277212.656013423]]]},"properties":{"id_build":9,"id_source":"w144655715","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.56272137834,5277099.198020428],[516134.33772099065,5277099.086257203],[516132.39028327266,5277097.19148537],[516131.35731794796,5277090.520237855],[516130.9147057491,5277087.629377882],[516138.54670367483,5277087.094827183],[516153.15715403995,5277086.07951259],[516161.6379738539,5277085.491777069],[516161.620082184,5277091.937833692],[516156.5872643528,5277092.257286065],[516156.79746207176,5277097.703717756],[516143.8022123211,5277098.55679144],[516134.56272137834,5277099.198020428]]]},"properties":{"id_build":10,"id_source":"w144655717","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.9411545877,5277443.070284832],[515396.9355424334,5277442.800889928],[515395.8398709683,5277442.509029097],[515395.53712653887,5277443.397346562],[515390.2828882048,5277442.383197233],[515391.73208643135,5277433.9404070955],[515401.3610131931,5277436.310919493],[515402.24536850344,5277434.157147763],[515408.508999567,5277436.852189443],[515410.2546569316,5277432.7446388],[515416.1807549418,5277435.283199692],[515412.0017457121,5277445.119117977],[515406.02302829514,5277442.60264997],[515403.2572577119,5277449.085893718],[515396.6559596999,5277446.28993883],[515397.9411545877,5277443.070284832]]]},"properties":{"id_build":11,"id_source":"w144655719","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.90756106406,5276917.560347263],[516175.35675777984,5276916.108437033],[516181.68487295066,5276914.592290403],[516182.65794043755,5276918.484885273],[516180.3430661997,5276919.06749315],[516181.4053024797,5276923.304868788],[516170.4398523116,5276926.01955923],[516170.00899598014,5276924.306810843],[516167.4686559667,5276924.944367603],[516166.8892548076,5276922.631052459],[516165.86425186775,5276918.5049226275],[516169.90756106406,5276917.560347263]]]},"properties":{"id_build":12,"id_source":"w144655720","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.14078399725,5277730.802708117],[516300.717251482,5277733.71355483],[516296.78402016434,5277743.816272947],[516289.1324694177,5277740.90522116],[516290.41098988947,5277737.541260023],[516291.2506664128,5277735.354153911],[516285.9996422362,5277733.338943655],[516287.4373227089,5277729.453069685],[516292.91363380296,5277731.4689117195],[516293.14078399725,5277730.802708117]]]},"properties":{"id_build":13,"id_source":"w144655721","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516208.46586159954,5277044.722507645],[516202.932245338,5277046.86321822],[516198.7669996766,5277048.474269759],[516194.4814672268,5277050.129445627],[516192.8409366837,5277045.901572347],[516197.0510591222,5277044.35732526],[516196.52873521356,5277043.133335013],[516206.90477388614,5277038.938894899],[516210.612076131,5277029.168915967],[516216.2399004336,5277030.962822461],[516212.45903352,5277040.176894255],[516208.46586159954,5277044.722507645]]]},"properties":{"id_build":14,"id_source":"w144655722","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516270.69036727457,5277031.003577895],[516272.715370906,5277032.009494548],[516268.86365883943,5277039.667375483],[516265.5637593341,5277037.991060116],[516263.01396267413,5277036.65026089],[516262.4845127639,5277037.982459349],[516258.58440235443,5277036.08219215],[516259.2187793678,5277034.8280841615],[516263.19086509733,5277027.092735322],[516264.56324525503,5277027.818976979],[516270.69036727457,5277031.003577895]]]},"properties":{"id_build":15,"id_source":"w144655723","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516216.9079867685,5277233.327988102],[516203.3112938563,5277234.512671925],[516202.582551088,5277226.508578912],[516202.221580835,5277221.284004248],[516201.85813583666,5277216.948541083],[516201.4220629415,5277211.723757573],[516200.76810667804,5277203.831012989],[516214.4396625941,5277202.757671189],[516215.01849911816,5277210.650208191],[516215.96169723343,5277222.544792619],[516216.9079867685,5277233.327988102]]]},"properties":{"id_build":16,"id_source":"w144655724","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.2136704966,5277510.006896295],[515495.01571383787,5277510.122831873],[515496.555824034,5277495.789900287],[515514.72501216165,5277497.505386562],[515513.4101499556,5277511.838913795],[515508.604801899,5277511.492691974],[515508.7588455083,5277510.048285235],[515502.3016473498,5277509.586528843],[515501.8480965826,5277513.5196692245],[515501.3022989893,5277518.252770441],[515494.32031518174,5277517.456206279],[515493.2136704966,5277510.006896295]]]},"properties":{"id_build":17,"id_source":"w144655726","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515374.5000598527,5277560.705344142],[515375.2527889869,5277560.040493373],[515370.1620499003,5277554.025503627],[515373.92540560005,5277550.812386982],[515374.7485368666,5277551.925958391],[515382.8015265351,5277545.278844425],[515386.6414607544,5277550.034659873],[515388.1160823373,5277551.8501355965],[515383.2987201319,5277556.060715942],[515386.06819894945,5277559.513367398],[515378.31737346324,5277565.494436428],[515374.5000598527,5277560.705344142]]]},"properties":{"id_build":18,"id_source":"w144655727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.21467226214,5277324.211343155],[516078.95492875896,5277328.103280305],[516069.8632484198,5277329.745276693],[516069.12359953905,5277325.631062798],[516068.5224939453,5277325.740543623],[516067.9961246499,5277323.260673516],[516067.4845908642,5277320.847528289],[516066.8080781993,5277321.067940993],[516065.8458861386,5277315.952855334],[516075.01330051414,5277314.088782118],[516076.9376674616,5277324.31895667],[516078.21467226214,5277324.211343155]]]},"properties":{"id_build":19,"id_source":"w144655728","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516051.8516781456,5277276.170668618],[516053.2146207635,5277283.031751115],[516055.9948682531,5277282.483718397],[516056.720768676,5277286.142219221],[516048.4927446037,5277287.764403024],[516047.8482856297,5277284.528458902],[516046.3304001551,5277284.835466861],[516042.4756375037,5277285.591709062],[516040.57927735127,5277276.072918673],[516047.4923520548,5277274.702720797],[516047.9367673757,5277276.948969355],[516051.8516781456,5277276.170668618]]]},"properties":{"id_build":20,"id_source":"w144655729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516139.26136510156,5276907.828398756],[516140.985107297,5276914.579358167],[516137.2196590864,5276915.535837587],[516137.5019786605,5276916.648017282],[516132.8045822239,5276917.835310347],[516130.9556723923,5276918.308089079],[516131.58723076864,5276920.777140671],[516127.46854805417,5276921.821559611],[516125.14302679634,5276912.690547515],[516135.5825591313,5276910.040998324],[516135.2779536568,5276908.8398452],[516139.26136510156,5276907.828398756]]]},"properties":{"id_build":21,"id_source":"w144655730","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516244.05596488353,5277451.815630974],[516244.9754398006,5277445.260946202],[516245.5008179353,5277445.373551983],[516246.95590874384,5277435.263887484],[516257.0150667328,5277436.736784674],[516255.9432081029,5277444.069020905],[516258.1201288075,5277444.408519017],[516257.85278458724,5277446.019300084],[516257.6617801833,5277447.185734993],[516256.9858955146,5277447.183847686],[516256.06671766745,5277453.627391643],[516244.05596488353,5277451.815630974]]]},"properties":{"id_build":22,"id_source":"w144655733","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515344.6930588767,5277330.234005865],[515345.0001949744,5277327.678601569],[515345.07793101144,5277326.678548892],[515347.6307391148,5277326.907556993],[515348.091006086,5277323.2411592435],[515356.2751330194,5277323.929577361],[515354.8887495385,5277337.040409091],[515346.630127081,5277336.129516996],[515347.0155859385,5277332.351782203],[515344.5378799538,5277332.122972287],[515344.6930588767,5277330.234005865]]]},"properties":{"id_build":23,"id_source":"w144655735","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.71616861044,5277407.681550811],[516077.34462803905,5277413.554229483],[516074.4962077554,5277414.335457199],[516074.8754062251,5277415.714637821],[516071.5985873488,5277416.616937959],[516071.2639872108,5277415.404590374],[516069.09948821185,5277415.998770957],[516065.3717103123,5277417.03319774],[516063.53501777083,5277410.415311187],[516072.3659030464,5277407.983492755],[516072.5295249986,5277408.561871461],[516075.71616861044,5277407.681550811]]]},"properties":{"id_build":24,"id_source":"w144655737","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516220.9155713463,5277077.987965598],[516219.9135356931,5277087.209774994],[516244.9910956697,5277089.724760221],[516244.28075332573,5277102.059293245],[516233.16678601824,5277101.583738953],[516233.39860108646,5277099.2504500095],[516229.493875879,5277099.017285657],[516229.87837344775,5277095.795303988],[516212.158128729,5277094.3011218365],[516212.8547878236,5277086.856697064],[516213.6324315668,5277077.3008423885],[516220.9155713463,5277077.987965598]]]},"properties":{"id_build":25,"id_source":"w144655742","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.3248129363,5277424.800726158],[516206.3405939799,5277425.103649337],[516206.14174150676,5277429.093015617],[516201.18582623324,5277428.868057055],[516200.5513652436,5277438.268721008],[516196.18141071324,5277437.978713285],[516196.1107613638,5277439.078801053],[516190.5544688136,5277438.707699602],[516190.8440466096,5277434.496305432],[516192.41332619917,5277434.600695529],[516192.6637798397,5277430.956005771],[516192.8518984591,5277428.122463402],[516194.09077707527,5277428.21482104],[516194.3569009081,5277424.336781339],[516201.3248129363,5277424.800726158]]]},"properties":{"id_build":26,"id_source":"w144655743","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515636.2029033357,5277201.420635363],[515635.8306790634,5277200.197098719],[515637.86020953616,5277199.535710759],[515638.0092185084,5277199.980669894],[515641.9931790884,5277198.657694448],[515643.1849492905,5277202.328507416],[515647.9851688802,5277204.675340377],[515648.6646659047,5277203.343489734],[515652.56486083113,5277205.2433487065],[515650.6017687363,5277209.127962463],[515648.2613806097,5277213.678401297],[515643.9865792165,5277211.444119449],[515643.2313857026,5277212.998046742],[515642.0312577736,5277212.439123832],[515641.5557609003,5277213.3158503575],[515641.1255637854,5277214.103786825],[515643.30051508767,5277215.221027196],[515641.9418251093,5277217.773590917],[515643.43130870943,5277222.44546151],[515640.80037911085,5277223.327511439],[515641.91823805956,5277226.553566814],[515641.166331147,5277226.884966107],[515640.94252054597,5277226.328666191],[515635.7560659738,5277227.9818322295],[515635.9798770052,5277228.538131948],[515635.0777685021,5277228.8691286715],[515634.6310415452,5277227.423112505],[515633.4398680339,5277223.530023268],[515631.4854475664,5277224.191614394],[515630.2939729283,5277220.409664767],[515628.8658567844,5277220.850390164],[515626.63131406996,5277213.953729014],[515627.8341278546,5277213.512398342],[515627.98254061886,5277214.179635097],[515632.1917930976,5277212.857257673],[515630.7019996276,5277208.296528987],[515634.83615560096,5277206.973951863],[515636.036285345,5277207.532873283],[515637.6220702104,5277204.314079727],[515636.9521269788,5277202.089485823],[515636.50121987564,5277202.199414621],[515636.2029033357,5277201.420635363]]]},"properties":{"id_build":27,"id_source":"w144655744","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.74888712296,5277490.72241816],[516080.9825276334,5277483.126688943],[516080.6341109884,5277481.48085719],[516084.01597046235,5277480.601080376],[516084.537049827,5277482.269617312],[516094.6826317698,5277479.630299552],[516096.68815046176,5277487.637911547],[516092.20925145905,5277488.7369283065],[516090.45073534595,5277489.176627295],[516090.5236829834,5277489.954807693],[516086.6912415606,5277490.833335708],[516086.4687121076,5277489.832462409],[516082.74888712296,5277490.72241816]]]},"properties":{"id_build":28,"id_source":"w144655745","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516183.86972478736,5277112.1159303365],[516184.16210360033,5277115.006377013],[516184.66928645794,5277121.676173006],[516177.0820820088,5277122.321927289],[516176.13724286744,5277110.983045814],[516175.0103946719,5277111.091055186],[516175.15874750353,5277111.758305911],[516174.18241343624,5277111.755593792],[516173.8835465194,5277111.199064771],[516173.447439863,5277105.974284299],[516183.2135702518,5277105.0011614105],[516183.86972478736,5277112.1159303365]]]},"properties":{"id_build":29,"id_source":"w144655746","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516043.81688143814,5277243.095551745],[516042.9585416305,5277238.436429921],[516042.04109945503,5277233.42149814],[516049.93038574385,5277232.109562608],[516049.8565101075,5277231.664799855],[516054.9658345304,5277230.789767866],[516057.03678929975,5277242.354015748],[516052.97950042476,5277243.009666773],[516052.3118650505,5277240.007052038],[516050.23797556094,5277240.40143799],[516046.60112891323,5277241.102708376],[516046.89755077974,5277242.548342446],[516043.81688143814,5277243.095551745]]]},"properties":{"id_build":30,"id_source":"w144655747","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516261.49049478,5276963.627185311],[516266.3809824721,5276960.528931693],[516268.25083432643,5276963.312649171],[516267.5742725089,5276963.533038533],[516270.3404081688,5276968.097496754],[516269.4372913139,5276968.761811887],[516271.6798661005,5276972.54682971],[516263.55368908186,5276977.858835782],[516260.6003814668,5276973.0826925095],[516258.24517404864,5276969.286250527],[516262.6089925861,5276966.519942521],[516260.9638319606,5276963.959133807],[516261.49049478,5276963.627185311]]]},"properties":{"id_build":31,"id_source":"w144655758","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.88557914854,5277309.700284456],[516175.6061748902,5277302.14200161],[516174.7747860499,5277301.339485342],[516174.1081851585,5277300.693022681],[516174.04203827376,5277297.469784686],[516184.78167941933,5277297.388488584],[516184.91612381075,5277303.056992255],[516186.71852749446,5277303.06200283],[516186.85605962545,5277307.619117149],[516180.6969252709,5277307.935416663],[516180.7670835365,5277309.713848499],[516177.7593751568,5277311.039168265],[516175.88557914854,5277309.700284456]]]},"properties":{"id_build":32,"id_source":"w144655760","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516028.70819155104,5277029.665601906],[516028.2575695011,5277029.664361487],[516020.3102552599,5277030.131505643],[516011.88221778534,5277030.619566664],[516011.1632690234,5277018.947917244],[516011.0194789036,5277016.613587401],[516016.8033919278,5277016.296074921],[516017.5544304009,5277016.298140825],[516017.7687358595,5277020.299760885],[516024.9802295484,5277019.763904276],[516025.1963649603,5277023.098691261],[516030.22923475056,5277022.779125237],[516030.3733229674,5277025.002316699],[516028.70819155104,5277029.665601906]]]},"properties":{"id_build":33,"id_source":"w144655766","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.8139863442,5277369.083275847],[515487.6449065924,5277373.179033028],[515483.0061918898,5277366.609450319],[515487.5201328621,5277363.620682726],[515488.6569711551,5277359.733815722],[515490.6133996418,5277358.294203924],[515492.10917786375,5277360.632118464],[515492.56036567123,5277360.411039525],[515494.95408136613,5277363.973881456],[515496.53412574664,5277362.866689213],[515498.5538206522,5277365.87283842],[515493.8139863442,5277369.083275847]]]},"properties":{"id_build":34,"id_source":"w144655767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.2514579663,5277674.4677993],[516179.00488251774,5277673.580774148],[516179.978033534,5277674.694877389],[516193.9312403016,5277679.9572476335],[516192.3790509777,5277684.531892838],[516188.176714532,5277696.945643622],[516170.6220638121,5277690.561883406],[516171.0757219008,5277689.4517448405],[516165.9741883057,5277687.659338397],[516164.10884322587,5277683.319704005],[516163.50746410066,5277683.540314017],[516154.85562928923,5277662.177444986],[516152.75048781064,5277663.060722635],[516148.7969385624,5277653.491726405],[516147.96996179456,5277653.822852105],[516146.0307295356,5277649.038459479],[516146.8577068701,5277648.707333505],[516142.82935037836,5277639.026994303],[516139.8521666931,5277640.241278215],[516139.5966335948,5277637.606555163],[516138.15383847186,5277637.947089045],[516136.37229414907,5277633.163136943],[516137.6133862219,5277629.732355494],[516138.3550259983,5277627.678323991],[516141.3563994506,5277628.57576364],[516144.0878994409,5277618.469610744],[516143.26276705286,5277618.133903104],[516144.7797909448,5277612.692257012],[516145.6803283966,5277612.917034127],[516146.9720671959,5277607.474763845],[516162.8810506156,5277611.631084346],[516160.3748029694,5277621.737853756],[516160.8250707077,5277621.850243508],[516159.6087264895,5277627.181580304],[516158.85807524755,5277627.068356894],[516157.4930843324,5277631.843582286],[516161.297059772,5277641.189889149],[516161.8984431744,5277640.969278914],[516163.98754804814,5277645.8652328],[516163.1605693243,5277646.196356344],[516167.26429126924,5277655.76577935],[516170.0462242185,5277654.550967119],[516178.2514579663,5277674.4677993]]]},"properties":{"id_build":35,"id_source":"w144655768","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515310.01149942784,5277524.526116017],[515313.92883569765,5277519.868548862],[515314.6783472554,5277520.426219202],[515320.0269271083,5277514.10532482],[515325.42340832297,5277518.120559055],[515320.4511899925,5277524.1090196315],[515320.07658097165,5277523.774614578],[515319.3610512235,5277524.572938031],[515318.79612559377,5277525.216062175],[515323.3671130095,5277529.006843103],[515320.05259966984,5277532.888011906],[515317.43004703464,5277530.658316186],[515310.01149942784,5277524.526116017]]]},"properties":{"id_build":36,"id_source":"w144655769","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516094.51824249915,5277348.929423663],[516094.818947963,5277348.819115109],[516096.15046134364,5277356.158023062],[516096.0707531004,5277357.824899764],[516096.29359338345,5277358.714634263],[516089.9070702359,5277359.808379536],[516090.49957264255,5277362.810791678],[516085.6205693687,5277361.908191566],[516084.50666677824,5277357.348382254],[516085.1834829624,5277357.016832648],[516084.9020351287,5277355.593465622],[516084.59097720333,5277354.014421083],[516082.33645745966,5277354.563892196],[516081.66977137973,5277351.227856639],[516082.2708745995,5277351.118377177],[516094.51824249915,5277348.929423663]]]},"properties":{"id_build":37,"id_source":"w144655771","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516268.539030966,5277397.758893432],[516268.1551516877,5277400.758596162],[516266.3496731215,5277401.864949915],[516266.1352976189,5277403.331396722],[516265.89038588677,5277404.975581956],[516263.0378716912,5277404.523054035],[516262.88612179225,5277405.078329296],[516259.3583385586,5277404.401637354],[516259.89116931544,5277401.846909344],[516256.2885952063,5277401.058870575],[516257.42873335996,5277396.171901707],[516263.4481363926,5277392.076539335],[516268.539030966,5277397.758893432]]]},"properties":{"id_build":38,"id_source":"w144655772","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.5953371082,5277251.742889383],[516153.0656913224,5277251.699754181],[516153.0093060157,5277244.953412459],[516156.4792760813,5277244.851900286],[516156.4657978691,5277244.296163934],[516159.3199100748,5277244.20405855],[516163.0752950382,5277244.092228456],[516163.9792828329,5277243.094479866],[516166.532714327,5277243.101569105],[516167.7315516694,5277244.105156011],[516167.7838154156,5277252.329645755],[516156.59317832877,5277252.520861935],[516156.5953371082,5277251.742889383]]]},"properties":{"id_build":39,"id_source":"w144655783","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.4271751386,5277576.404752626],[516080.0740266511,5277575.503608798],[516079.23660642636,5277579.613470017],[516078.6281602426,5277582.390285643],[516072.6989081107,5277581.15137515],[516073.76498867094,5277575.819606069],[516069.56203142204,5277574.918884781],[516071.00850246847,5277567.809927802],[516074.2358209433,5277568.485676594],[516074.5401970465,5277567.041699075],[516081.53540695226,5277568.439151477],[516085.7985672823,5277569.295591787],[516084.4271751386,5277576.404752626]]]},"properties":{"id_build":40,"id_source":"w144655791","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516150.5410365178,5277051.78564005],[516151.43518681993,5277054.344334585],[516153.6901375674,5277053.6837513065],[516156.602208162,5277059.804517375],[516150.61948560126,5277061.410560583],[516146.3804561018,5277062.55465787],[516145.6355869384,5277060.329797284],[516141.050589688,5277061.650762758],[516139.26690217917,5277054.86629346],[516142.9497395493,5277053.876244652],[516142.131613156,5277050.984342933],[516148.4449223782,5277049.33475189],[516150.5410365178,5277051.78564005]]]},"properties":{"id_build":41,"id_source":"w144655793","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516132.341705101,5277304.467041151],[516132.6137746889,5277314.692656547],[516123.3004511529,5277315.00027791],[516123.23366083886,5277311.999318375],[516120.67995188583,5277312.103387003],[516120.6103907342,5277310.102678031],[516119.18810490787,5277308.431643279],[516119.0526736432,5277303.096558062],[516123.93449123803,5277302.9989354955],[516123.9323367881,5277303.776908114],[516127.6725393756,5277303.709469248],[516129.11455449107,5277303.680121805],[516129.11209147144,5277304.569233364],[516132.341705101,5277304.467041151]]]},"properties":{"id_build":42,"id_source":"w144655799","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516205.70167779515,5277387.5366105605],[516197.5249356287,5277386.958157811],[516197.75181328534,5277383.691278313],[516195.7770466653,5277383.563530928],[516196.0742024167,5277379.329930468],[516197.85374354897,5277379.4460208295],[516198.0961671327,5277375.990246944],[516198.27603794757,5277373.423417588],[516205.814579267,5277373.955638927],[516205.09514553635,5277384.200727754],[516211.9954846957,5277384.675610982],[516211.76105822594,5277387.953582932],[516205.70167779515,5277387.5366105605]]]},"properties":{"id_build":43,"id_source":"w144655805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516248.9467302094,5277009.815192333],[516248.9720058324,5277016.905979473],[516241.4340371546,5277018.696527446],[516234.8993848151,5277018.900583893],[516234.7669014959,5277012.543020368],[516234.43470014445,5276997.004756301],[516240.96909804473,5276996.900724285],[516240.9634873621,5276998.912338208],[516243.44192193955,5276998.919251451],[516243.50431473186,5277003.476155498],[516241.12364131305,5277003.42505899],[516241.1033682157,5277010.693542545],[516247.81762820465,5277010.72338767],[516247.8128158065,5277009.756458347],[516248.9467302094,5277009.815192333]]]},"properties":{"id_build":44,"id_source":"w144655806","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515413.0427589462,5277355.420983596],[515413.7233616705,5277353.644549535],[515419.34964154055,5277355.993381672],[515420.1041682054,5277354.661703085],[515425.20504294336,5277356.89800966],[515423.96619882557,5277359.617651317],[515423.24097564066,5277361.227256396],[515424.59129232256,5277361.786532271],[515421.7189701519,5277368.7807272365],[515414.51650076563,5277366.094300267],[515415.422989259,5277364.096184939],[515408.67169572675,5277361.188680362],[515411.16703762347,5277354.749179942],[515413.0427589462,5277355.420983596]]]},"properties":{"id_build":45,"id_source":"w144655813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515989.1042030408,5277530.685988194],[515990.14335412404,5277535.134435161],[515989.0162863597,5277535.353619389],[515989.7144159845,5277538.189602284],[515990.57592695585,5277541.692872983],[515992.83006023866,5277541.2545053465],[515993.6481898836,5277544.146388309],[515985.0071481038,5277545.900893758],[515984.2641114793,5277543.009218194],[515982.8360470495,5277543.449856876],[515980.0137798016,5277531.994707668],[515984.5223577196,5277531.006826105],[515984.67072128016,5277531.674072395],[515989.1042030408,5277530.685988194]]]},"properties":{"id_build":46,"id_source":"w144655817","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516266.3809824721,5276960.528931693],[516261.49049478,5276963.627185311],[516259.99492128746,5276961.289074135],[516258.18961898243,5276962.284291081],[516256.0742438654,5276958.666343304],[516253.106705891,5276953.601200986],[516261.4576004406,5276948.512087458],[516263.4761158933,5276951.8519172305],[516262.79893214116,5276952.294584912],[516265.71435483237,5276957.192876997],[516266.5417474844,5276956.7506292565],[516268.18659722904,5276959.422578404],[516266.3809824721,5276960.528931693]]]},"properties":{"id_build":47,"id_source":"w144655821","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515647.08596146875,5277008.28904267],[515645.61441705964,5277010.896871539],[515643.08634401346,5277015.391237262],[515641.5866554076,5277014.498090958],[515638.1151630887,5277020.712590056],[515632.34142149385,5277017.251756032],[515633.9266585347,5277014.255240124],[515628.82794830104,5277011.129641193],[515632.1480348989,5277005.359289005],[515636.0480698283,5277007.370274911],[515641.3310206669,5276997.826449339],[515648.90518225415,5277002.070108295],[515645.73618091265,5277007.507437844],[515647.08596146875,5277008.28904267]]]},"properties":{"id_build":48,"id_source":"w144655822","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516067.1296796562,5277286.170933741],[516065.64883209596,5277278.49820208],[516069.91674716945,5277277.709773549],[516071.5848367335,5277277.4031863315],[516071.51157690445,5277276.736145383],[516075.34384981333,5277275.968746298],[516075.5660827854,5277277.080757758],[516078.9471392104,5277276.534394836],[516079.0210120282,5277276.9791579945],[516079.9838131099,5277281.8719676435],[516080.132786197,5277282.316938229],[516076.6760188514,5277283.085370977],[516076.82284401567,5277284.308314075],[516067.1296796562,5277286.170933741]]]},"properties":{"id_build":49,"id_source":"w144655825","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516041.3026618653,5276934.431305264],[516045.79712012823,5276933.287835193],[516046.4585098333,5276935.84587142],[516052.38097219553,5276934.339580642],[516052.58167205023,5276935.09588405],[516056.4973952104,5276934.106422455],[516058.20638814423,5276940.790632694],[516054.0801918596,5276941.84619669],[516054.2213589316,5276942.4022845235],[516050.34319412743,5276943.391851162],[516043.26330130023,5276945.195032243],[516041.3536526378,5276937.732295571],[516042.0977418902,5276937.5342939375],[516041.3026618653,5276934.431305264]]]},"properties":{"id_build":50,"id_source":"w144655830","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515316.0769220422,5277474.084620244],[515316.45796689024,5277471.973967398],[515323.2889551733,5277473.103339666],[515321.76535273914,5277481.323671524],[515315.534571846,5277480.41815937],[515315.0778453392,5277482.750892726],[515311.9994197068,5277482.520516112],[515311.62191384204,5277483.286387574],[515311.39542206196,5277483.741464903],[515310.0445384858,5277483.404493101],[515309.97353229666,5277481.848349844],[515305.2441225225,5277481.169076505],[515306.8436761756,5277472.615520871],[515316.0769220422,5277474.084620244]]]},"properties":{"id_build":51,"id_source":"w144655836","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.68615156866,5277274.810168324],[516180.25893852516,5277276.370495998],[516180.3986384853,5277280.149637372],[516169.9590587836,5277280.342914838],[516169.89414389443,5277276.675121233],[516169.3684404414,5277276.673661283],[516169.3070845628,5277274.428466993],[516169.23243690294,5277271.560852938],[516168.6316324289,5277271.559184496],[516168.41774984816,5277267.446418108],[516177.656051563,5277267.138660088],[516177.8028559596,5277268.361605746],[516178.5520090605,5277269.030526126],[516178.68615156866,5277274.810168324]]]},"properties":{"id_build":52,"id_source":"w144655837","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515645.5068783812,5277456.177950237],[515643.1627100583,5277462.173199365],[515642.93622135423,5277462.6171499435],[515637.9848229085,5277460.71447221],[515638.9676660522,5277458.272037059],[515637.37740646495,5277457.589812951],[515635.81712607364,5277456.929897748],[515634.833985575,5277459.483472398],[515628.8324011939,5277457.133423255],[515631.70582507225,5277449.80591212],[515631.857215158,5277449.361759486],[515642.5098197522,5277453.613682196],[515642.0559460385,5277454.835000324],[515645.5068783812,5277456.177950237]]]},"properties":{"id_build":53,"id_source":"w144655841","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515597.45149697445,5276853.293845046],[515598.4266833395,5276853.74101585],[515603.18366963073,5276844.306888407],[515602.4338002176,5276843.860320519],[515605.22672258905,5276838.6442400655],[515616.7021631411,5276844.565406053],[515613.8332332853,5276850.114696297],[515612.33319949795,5276849.332696734],[515609.7512575988,5276854.29371819],[515607.65249978454,5276858.322462614],[515609.0777239156,5276858.993120791],[515606.20910619997,5276864.431276016],[515594.65799324494,5276858.732207066],[515597.45149697445,5276853.293845046]]]},"properties":{"id_build":54,"id_source":"w144655845","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.32411545294,5277141.941713451],[516139.6533855809,5277143.034538842],[516138.88453357044,5277146.755590067],[516123.54220599023,5277143.623399679],[516124.3262844727,5277139.824590821],[516126.8333146802,5277140.331662884],[516127.1454510931,5277138.809912569],[516127.5033262687,5277137.0437814705],[516126.6401116184,5277136.874680963],[516127.86582019785,5277130.898756328],[516131.86655966984,5277131.710045431],[516131.20423999603,5277134.931263782],[516135.58027220157,5277135.821393024],[516134.32411545294,5277141.941713451]]]},"properties":{"id_build":55,"id_source":"w144655846","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516231.80397698877,5276889.9698481],[516231.3353763549,5276896.414646592],[516224.72733981424,5276895.951672143],[516217.0665884379,5276895.930332285],[516217.1379796302,5276897.26420793],[516210.452981274,5276897.467873752],[516210.0023489603,5276897.46661929],[516214.1532600912,5276890.254093088],[516216.55787343805,5276889.816230164],[516217.23382279783,5276889.818112627],[516217.3107854044,5276889.151488564],[516217.38620042,5276889.04055886],[516222.6351765831,5276889.377484855],[516231.80397698877,5276889.9698481]]]},"properties":{"id_build":56,"id_source":"w144655847","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.20905203413,5277110.16439983],[516080.84581631975,5277105.717806288],[516089.3262004833,5277105.274446098],[516089.26940426446,5277104.085093733],[516092.7922745913,5277103.8947775755],[516092.85658036254,5277105.084150733],[516094.91470166575,5277104.978699579],[516098.54832061316,5277105.4777595475],[516098.25783460046,5277101.887142176],[516099.204375026,5277101.800847369],[516098.51511204813,5277093.041128671],[516108.74796489935,5277091.680182096],[516109.68453665794,5277103.341334046],[516110.635448481,5277115.247033535],[516104.25019278884,5277115.785068708],[516095.98706709786,5277116.429059251],[516097.4226060343,5277129.6253176695],[516099.06332345563,5277144.667064178],[516092.6014631249,5277145.760599012],[516089.86997767916,5277128.637526562],[516089.14997044374,5277117.410420987],[516081.93797739083,5277118.168475768],[516081.20905203413,5277110.16439983]]]},"properties":{"id_build":57,"id_source":"w144655851","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515366.0275892094,5277214.115922059],[515362.0392129211,5277214.294335335],[515362.06784593815,5277214.827881489],[515357.7339751384,5277215.016500148],[515357.55008572375,5277210.703794386],[515357.4436775991,5277208.336237925],[515356.6249556223,5277208.378534416],[515356.3413165298,5277202.020595036],[515358.95516886853,5277201.905235702],[515358.77110397303,5277197.659213353],[515364.59217322175,5277197.407835824],[515364.776204554,5277201.66497226],[515365.4747359094,5277201.6334737055],[515366.0275892094,5277214.115922059]]]},"properties":{"id_build":58,"id_source":"w144655854","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.2115954797,5277219.56960047],[516167.5592449819,5277219.609468016],[516167.57238274754,5277220.287457196],[516163.9823592816,5277220.344173632],[516163.9577489955,5277218.388045066],[516160.4803762724,5277218.445076399],[516160.3531544093,5277210.16480928],[516163.943184104,5277210.108090592],[516163.96828810486,5277211.8863968495],[516172.372558973,5277211.754138381],[516172.42325569637,5277215.132928703],[516175.3598395263,5277215.09663008],[516175.4227759443,5277219.475712544],[516169.2115954797,5277219.56960047]]]},"properties":{"id_build":59,"id_source":"w144655856","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516236.661263867,5276952.666203864],[516239.0633736844,5276953.11746131],[516238.5286529795,5276956.339022793],[516236.6504175085,5276956.556064773],[516229.9688938584,5276955.537180342],[516230.5045392275,5276951.982201438],[516220.9702692169,5276950.510817611],[516221.4289471506,5276947.622461987],[516222.4797942481,5276947.847668966],[516222.96944394126,5276944.625980524],[516223.47442476894,5276941.293195108],[516235.48623812944,5276943.104909428],[516235.40958397626,5276943.660394429],[516237.9622170975,5276944.00093133],[516236.661263867,5276952.666203864]]]},"properties":{"id_build":60,"id_source":"w144655864","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515609.49956202,5277189.123615611],[515609.04656886705,5277190.011519047],[515605.37105876487,5277188.334571031],[515603.4199059017,5277187.7736433325],[515601.2428521915,5277187.4343904555],[515599.13911336544,5277187.762173167],[515600.8744908495,5277184.7660500035],[515609.49956202,5277189.123615611]]]},"properties":{"id_build":61,"id_source":"w144655871","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515578.8175888156,5277344.5259377975],[515581.3187773088,5277335.974869875],[515584.54509003327,5277337.094902374],[515586.80135375424,5277335.878404876],[515592.5789717589,5277337.7832507305],[515593.54961220775,5277339.897505581],[515596.69754588633,5277342.239872222],[515591.798212372,5277348.895135256],[515588.8755790782,5277346.553374459],[515584.8976815511,5277345.653607153],[515585.0502606915,5277344.764897546],[515583.9472187748,5277344.417411799],[515582.5740561007,5277343.98029151],[515581.6689941957,5277345.422686092],[515578.8175888156,5277344.5259377975]]]},"properties":{"id_build":62,"id_source":"w144655881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515692.90410645807,5276733.530571584],[515688.74033727404,5276734.5640653195],[515684.03543669067,5276735.729472168],[515683.6616953341,5276735.061627655],[515683.0672688473,5276735.460129528],[515678.9966540227,5276738.160975935],[515677.5081499401,5276735.87860551],[515674.3591388368,5276731.035553744],[515679.3246135666,5276727.937010667],[515678.9508711648,5276727.269166464],[515686.3200942911,5276724.065962025],[515686.6932373035,5276724.956084394],[515689.85045124375,5276723.9643330285],[515693.7590419862,5276722.863468578],[515695.6908716947,5276730.648450952],[515692.3840443145,5276731.417516674],[515692.90410645807,5276733.530571584]]]},"properties":{"id_build":63,"id_source":"w144655883","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516015.7941488426,5277246.6860151645],[516003.9968962106,5277248.987511826],[516003.2565791861,5277245.095584826],[516005.5108281071,5277244.657222044],[516004.02988844115,5277236.984506764],[516004.405698932,5277236.874399979],[516003.2953737564,5277230.980940092],[516013.3607521393,5277230.341775147],[516014.1010643706,5277234.233703354],[516012.369461545,5277235.784897875],[516012.5172184164,5277236.674422424],[516013.77620664367,5277243.123991926],[516015.05383939174,5277242.794086663],[516015.7941488426,5277246.6860151645]]]},"properties":{"id_build":64,"id_source":"w144655884","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.58541270765,5277161.273162336],[516079.0401037431,5277161.2827013675],[516079.41407906555,5277161.8394329455],[516080.4685760204,5277160.730947395],[516083.9229603841,5277160.851628244],[516084.52254821075,5277161.297843602],[516087.3758092796,5277161.528005747],[516087.1287018932,5277169.41824667],[516082.62289641064,5277169.294659668],[516081.607516995,5277169.836440049],[516080.96819957945,5277170.17920762],[516074.35984915553,5277169.938680775],[516074.52385988156,5277164.937843958],[516075.5752869257,5277164.940746733],[516075.58541270765,5277161.273162336]]]},"properties":{"id_build":65,"id_source":"w144655894","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516192.2792790067,5277463.896781837],[516190.2503946306,5277464.335698803],[516189.2839780975,5277460.787650794],[516187.5740567192,5277454.547951805],[516193.36125485785,5277452.896947807],[516193.7330364563,5277454.231659845],[516198.0167261457,5277453.13217791],[516199.0578966933,5277456.802689149],[516198.07543629454,5277459.0227523185],[516198.81837790867,5277461.914455007],[516200.8472637877,5277461.475541027],[516201.8890495857,5277464.923774884],[516195.72637068876,5277466.573725869],[516194.834468582,5277463.237049875],[516192.2792790067,5277463.896781837]]]},"properties":{"id_build":66,"id_source":"w144655895","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516057.9015056732,5277609.562341611],[516056.8424957327,5277612.337916832],[516060.89339591487,5277613.905048701],[516060.62111822865,5277614.60447859],[516057.48228195467,5277622.697915106],[516053.8892277104,5277621.22095996],[516054.2680792136,5277619.999466366],[516051.34248897975,5277618.846659013],[516046.9166300034,5277617.089562502],[516049.9413088783,5277609.5403909385],[516050.5414656345,5277609.7643252155],[516051.6004730229,5277606.9887488615],[516052.72844870394,5277606.436159753],[516057.37951075257,5277608.227223712],[516057.9015056732,5277609.562341611]]]},"properties":{"id_build":67,"id_source":"w144655897","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.2708745995,5277351.118377177],[516081.6783667178,5277348.115965935],[516082.88026682404,5277348.008146021],[516082.2886798879,5277344.672317877],[516083.7168006083,5277344.2317036],[516083.19791877683,5277341.762966669],[516082.38250582485,5277337.893049233],[516085.688120879,5277337.457621763],[516085.5406849057,5277336.456956236],[516090.12422489823,5277335.580502803],[516092.1990642971,5277345.699958956],[516093.62657111895,5277345.48162501],[516094.51824249915,5277348.929423663],[516082.2708745995,5277351.118377177]]]},"properties":{"id_build":68,"id_source":"w144655903","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516200.34935927804,5277478.478550172],[516199.89846268494,5277478.588435366],[516201.0131788758,5277482.814850956],[516200.4946327024,5277482.94677582],[516194.76055632636,5277484.408982708],[516194.5501278729,5277484.463967294],[516193.9030213526,5277482.217142655],[516193.3600003334,5277480.348483039],[516191.63151304063,5277480.788235035],[516190.5161715172,5277476.78409922],[516191.7189744787,5277476.342884883],[516190.82768976246,5277472.783931504],[516198.26795408694,5277470.804110246],[516199.4577709302,5277475.030734424],[516200.34935927804,5277478.478550172]]]},"properties":{"id_build":69,"id_source":"w144655904","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516194.3569009081,5277424.336781339],[516193.51579670847,5277424.3344418565],[516193.8521366492,5277419.511908942],[516193.9849358636,5277417.667357227],[516192.7836661604,5277417.552876261],[516193.0188536511,5277413.997056012],[516194.2204332141,5277414.000398059],[516194.53041134134,5277410.55592574],[516202.11414970027,5277411.021584384],[516201.8026207301,5277415.021751131],[516202.9287920788,5277415.136024958],[516202.53474111954,5277421.803317858],[516201.40826178336,5277421.800183068],[516201.3248129363,5277424.800726158],[516194.3569009081,5277424.336781339]]]},"properties":{"id_build":70,"id_source":"w144655916","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516166.3986316561,5277480.718114666],[516164.2427017672,5277472.8212005],[516162.9042055893,5277468.03847176],[516169.5177704028,5277466.278598475],[516170.4850932093,5277469.50434018],[516175.52036496886,5277468.184649612],[516176.7105076544,5277472.300130107],[516175.7333076901,5277472.6308345115],[516176.77294466255,5277476.85703673],[516177.1447284844,5277478.191747758],[516176.8415576576,5277479.191163875],[516173.2340807201,5277480.181399922],[516172.86167867377,5277479.068967095],[516170.48688781296,5277479.673639799],[516166.3986316561,5277480.718114666]]]},"properties":{"id_build":71,"id_source":"w144655921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516140.2749729752,5277287.26235906],[516135.99363667367,5277287.472771911],[516135.5698304107,5277277.802435234],[516138.94965997356,5277277.700662905],[516139.0232201327,5277278.256565777],[516145.4824770994,5277278.052194074],[516145.5606594614,5277276.941012921],[516150.44280782243,5277276.732273597],[516150.86566460796,5277286.7360282205],[516145.08232029335,5277286.942268127],[516144.256216331,5277286.939977456],[516144.2580653208,5277286.2731438065],[516140.20202923013,5277286.484178279],[516140.2749729752,5277287.26235906]]]},"properties":{"id_build":72,"id_source":"w144655930","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516152.56653700303,5277215.055581303],[516152.5696201661,5277213.94419201],[516148.964449425,5277214.045331614],[516148.96136694873,5277215.156720909],[516149.0281455089,5277218.157680312],[516145.5731799387,5277218.259238604],[516145.2287994679,5277207.033165513],[516148.60867029836,5277206.931398707],[516150.18980704865,5277205.490966976],[516154.92150429566,5277205.392953595],[516156.495241659,5277206.61985784],[516156.77005033125,5277215.8452225095],[516152.6391717469,5277215.944901084],[516152.56653700303,5277215.055581303]]]},"properties":{"id_build":73,"id_source":"w144655939","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515235.5982977976,5277693.374493717],[515237.93148186407,5277691.380084179],[515241.9962205031,5277687.723112068],[515244.0921916565,5277690.284815028],[515248.6831834122,5277686.40694603],[515249.057203749,5277686.96362463],[515252.57619440934,5277690.973875428],[515253.10011312034,5277691.642086809],[515249.48739620094,5277694.744536321],[515250.0867011199,5277695.30180512],[515244.8935000842,5277699.733794944],[515243.0964578785,5277697.728573252],[515240.9140464985,5277699.5010958845],[515235.5982977976,5277693.374493717]]]},"properties":{"id_build":74,"id_source":"w144655958","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516193.14691185474,5277070.90886953],[516194.6492839223,5277070.80190805],[516194.6508294505,5277070.246213529],[516221.8409587584,5277069.321641786],[516220.9155713463,5277077.987965598],[516213.6324315668,5277077.3008423885],[516213.63274103624,5277077.189703483],[516206.7251148254,5277076.503634559],[516207.38155348157,5277083.5072669685],[516196.04038432037,5277083.697989942],[516196.2774405011,5277079.475338224],[516182.2297748807,5277080.658818405],[516178.35004770063,5277071.423437108],[516193.14691185474,5277070.90886953]]]},"properties":{"id_build":75,"id_source":"w144655959","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516054.0636779231,5277203.891454601],[516053.4095210323,5277195.998727122],[516056.7149078286,5277195.674422051],[516057.1670495048,5277195.1199700665],[516056.8767574326,5277191.45155705],[516064.5389593352,5277190.805853505],[516064.90342824464,5277194.807890899],[516067.9081034882,5277194.593902267],[516068.63396850857,5277203.70936687],[516063.22543900105,5277204.139002406],[516063.0053470196,5277202.249019059],[516060.1508788112,5277202.463424512],[516060.14811985055,5277203.463674867],[516054.0636779231,5277203.891454601]]]},"properties":{"id_build":76,"id_source":"w144655967","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516040.2437950441,5277504.153101644],[516038.89142670005,5277504.371655525],[516034.2181551213,5277505.158989827],[516031.7537927917,5277505.57453463],[516032.2727424795,5277508.021039802],[516025.58478162147,5277509.558584225],[516024.24923933594,5277503.664497514],[516023.1224700451,5277503.772536164],[516022.2326160123,5277499.657913767],[516025.0881607602,5277498.998934034],[516024.7160375927,5277497.775371731],[516034.85972834256,5277495.802783662],[516035.23062509584,5277497.470902533],[516038.6124683035,5277496.591099361],[516040.2437950441,5277504.153101644]]]},"properties":{"id_build":77,"id_source":"w144655970","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516102.67789742484,5277602.795347123],[516104.3263264875,5277604.133584962],[516102.5132570942,5277608.018464618],[516099.96305920766,5277606.900013101],[516098.6415300742,5277609.552600996],[516095.43208959996,5277616.000952253],[516084.7828732552,5277610.747947349],[516087.2764026608,5277605.197844773],[516090.35135587654,5277606.651160558],[516092.31553173397,5277602.433275297],[516090.6658707534,5277601.539596859],[516092.85718088306,5277596.6555004995],[516097.65689473937,5277599.002706776],[516100.3600553897,5277599.121321645],[516102.60833434697,5277600.794637454],[516102.67789742484,5277602.795347123]]]},"properties":{"id_build":78,"id_source":"w144655981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515429.61998235213,5277447.9331628075],[515433.2950834824,5277449.721139788],[515433.74095903663,5277451.500557873],[515432.45839748083,5277453.719953244],[515430.654862727,5277454.159731971],[515427.5790767509,5277452.929043482],[515427.12613162736,5277453.816961334],[515425.17593440606,5277452.922676038],[515424.7980878376,5277453.81079304],[515420.10173937015,5277451.986774565],[515417.5960196434,5277451.013222686],[515418.0495521609,5277449.903026147],[515415.1239578007,5277448.672742006],[515417.99505607877,5277442.12309891],[515429.9224372152,5277447.155986072],[515429.61998235213,5277447.9331628075]]]},"properties":{"id_build":79,"id_source":"w144656001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.3495066162,5277258.913602749],[516136.2229957934,5277258.9104806455],[516136.29440039303,5277260.244356027],[516137.34611828224,5277260.13613106],[516139.3738373352,5277260.141751396],[516139.4350748664,5277265.143211777],[516128.31956424925,5277265.334690419],[516128.2678607361,5277256.887923119],[516127.291243183,5277256.996357744],[516127.23615180724,5277249.772118858],[516127.987160199,5277249.774199074],[516135.19745672477,5277249.571896211],[516137.3002802979,5277249.577723936],[516137.289191272,5277253.578725633],[516137.3495066162,5277258.913602749]]]},"properties":{"id_build":80,"id_source":"w144656005","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515285.4325461329,5277255.42557853],[515283.4728251976,5277255.264838489],[515283.0537452079,5277260.420621023],[515279.0366464212,5277260.110000885],[515276.2359158828,5277259.902600499],[515276.0736556353,5277261.635954269],[515267.6793834165,5277260.858186597],[515267.7566115377,5277260.047069224],[515265.85700138484,5277259.875378759],[515266.27440518007,5277255.353087011],[515268.45934132044,5277255.547753762],[515269.0390057989,5277249.29210829],[515281.3376032748,5277250.435770695],[515281.55398193374,5277248.1135186795],[515286.07397267164,5277248.536600469],[515285.4325461329,5277255.42557853]]]},"properties":{"id_build":81,"id_source":"w144656007","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516088.84348569997,5277228.327065843],[516092.37508109584,5277227.669986805],[516093.1996575282,5277228.22796476],[516093.79155776853,5277231.45265445],[516094.24247142096,5277231.342761044],[516096.39121419506,5277241.90698029],[516095.71499850566,5277242.016250697],[516096.38138229557,5277245.463426212],[516089.84453331534,5277246.556756403],[516089.1790671181,5277242.776164838],[516088.42775074067,5277242.885228565],[516087.6359626757,5277238.615273108],[516086.5259676542,5277232.632885999],[516088.9078382132,5277232.217136013],[516088.3159353512,5277228.992446815],[516088.84348569997,5277228.327065843]]]},"properties":{"id_build":82,"id_source":"w144656013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516116.84545486193,5277503.586673008],[516117.3695994524,5277504.143823165],[516121.5778324605,5277503.1552161],[516123.06347143743,5277509.049741296],[516123.96525697067,5277508.829959054],[516124.78055591835,5277512.722111268],[516126.2831205517,5277512.503993357],[516126.94791476114,5277516.506868862],[516115.6008242089,5277519.142804317],[516114.78336669115,5277516.028626237],[516115.3850688347,5277515.696872235],[516114.2715275102,5277511.02591702],[516114.9477123553,5277510.916648793],[516114.5772699726,5277509.09293018],[516113.61410636443,5277504.35570748],[516116.84545486193,5277503.586673008]]]},"properties":{"id_build":83,"id_source":"w144656019","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515618.92033894255,5277683.509702952],[515622.6012279895,5277683.063906316],[515623.99874712044,5277693.981586855],[515614.98408648,5277695.168824498],[515614.050052401,5277687.831091341],[515608.5661082826,5277688.561022401],[515607.32104812405,5277687.99087131],[515606.2109802843,5277687.487766256],[515606.7777992276,5277686.144493993],[515602.14999556815,5277684.053775014],[515603.49526946107,5277680.856553862],[515601.09499089327,5277679.816520751],[515603.6042396715,5277673.821695722],[515607.72965718346,5277675.633219348],[515607.1245742816,5277677.243124476],[515609.83974649274,5277678.47294208],[515618.1109584885,5277677.294815829],[515618.92033894255,5277683.509702952]]]},"properties":{"id_build":84,"id_source":"w144656027","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515569.17255957634,5277412.739949863],[515568.2672143743,5277414.2934856275],[515569.4667131481,5277415.074671526],[515565.1679632412,5277421.84270315],[515562.46916668286,5277420.057252453],[515562.9969366404,5277419.280684839],[515562.13466882624,5277418.767137085],[515561.122441198,5277418.164276842],[515560.6700670709,5277418.829906366],[515555.7224649941,5277415.482492256],[515558.66349065374,5277410.933620585],[515560.537097797,5277412.383444682],[515561.7431332601,5277410.719571657],[515563.46743352566,5277411.835578336],[515564.8242616799,5277409.949829511],[515569.17255957634,5277412.739949863]]]},"properties":{"id_build":85,"id_source":"w144656029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515725.2924476429,5276949.817958499],[515717.2706770301,5276952.797072691],[515716.43484427285,5276950.816530089],[515712.16457992914,5276952.405417738],[515706.8493141665,5276954.380478585],[515704.053002176,5276946.915462956],[515709.8339832456,5276944.9194280375],[515708.64740295516,5276942.10439262],[515714.47381319065,5276939.97511721],[515714.52578670887,5276940.1975368615],[515717.08941088105,5276939.259768439],[515718.3436420066,5276942.0527602555],[515722.75658476976,5276940.475376335],[515724.2707685283,5276944.3471264085],[515723.4359652395,5276944.767203042],[515725.2924476429,5276949.817958499]]]},"properties":{"id_build":86,"id_source":"w144656032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516301.3006191986,5276774.245242528],[516302.71427278215,5276779.02820802],[516312.5613732854,5276776.166151043],[516314.0479445534,5276781.727301686],[516313.4467781557,5276781.836757268],[516314.41413806204,5276785.062519332],[516308.0476712118,5276786.800694353],[516303.1394001195,5276788.142855546],[516303.287124506,5276789.032386921],[516296.6724398174,5276790.903247102],[516295.4065098815,5276787.009814158],[516295.9328795927,5276786.789007679],[516290.28041295236,5276766.879182455],[516297.4214945277,5276764.787508691],[516300.39840218244,5276774.57613618],[516301.3006191986,5276774.245242528]]]},"properties":{"id_build":87,"id_source":"w144656065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516138.8378619791,5277426.40541547],[516138.7643037869,5277425.849512467],[516137.93009356223,5277426.0694797635],[516137.11090311524,5277426.289488812],[516137.1847695046,5277426.734252827],[516134.0284742356,5277427.503484133],[516133.50955981965,5277425.056970122],[516131.87494376063,5277418.717471039],[516138.48824685416,5277417.068701501],[516138.1915488669,5277415.734201262],[516141.799059579,5277414.743943525],[516142.3927620085,5277417.30180542],[516145.17357048136,5277416.531537368],[516146.7327658812,5277422.981970887],[516139.8944794492,5277424.518967539],[516140.1154618154,5277426.075537629],[516138.8378619791,5277426.40541547]]]},"properties":{"id_build":88,"id_source":"w144656074","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515519.258504902,5277740.691342357],[515515.2016252979,5277741.347367731],[515515.94397988403,5277744.572400948],[515508.7993493748,5277748.554396449],[515502.4133668919,5277749.648785629],[515501.52495980705,5277744.867407813],[515499.87199452304,5277745.196426004],[515499.05808735214,5277740.637526599],[515502.96477658325,5277739.981090013],[515502.74274866993,5277738.757960784],[515509.9589283442,5277736.109826282],[515521.1530532828,5277734.250283837],[515522.3554554438,5277733.9200702915],[515523.5391871323,5277740.5916156685],[515519.63101450127,5277741.803733585],[515519.258504902,5277740.691342357]]]},"properties":{"id_build":89,"id_source":"w144656082","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515692.9644273121,5276844.926021717],[515696.04617182293,5276844.045210128],[515697.3100923855,5276848.82762318],[515699.26404684735,5276848.388331984],[515701.04921043775,5276854.839246366],[515704.7317984119,5276853.960059465],[515706.7383746955,5276861.8563886685],[515698.4701418397,5276864.279165724],[515695.45183065237,5276869.494594511],[515688.9284116415,5276865.475986782],[515692.0975297114,5276860.038681697],[515691.04814408044,5276859.257876189],[515693.612526223,5276855.263758284],[515692.90051757323,5276854.706141059],[515692.0385964234,5276854.036980264],[515689.9577897788,5276845.807037301],[515692.9644273121,5276844.926021717]]]},"properties":{"id_build":90,"id_source":"w144656084","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.9255834538,5277024.462972601],[516153.4194475257,5277015.895484251],[516156.7280261037,5277014.459846853],[516156.0560999511,5277013.013165754],[516160.8534656282,5277010.95927904],[516166.3576757717,5277008.596167364],[516166.5069579857,5277008.9300010735],[516168.9127531468,5277008.04756294],[516170.6284158152,5277012.275637735],[516168.29741742864,5277013.269422593],[516169.7896192195,5277016.830038193],[516170.5351021443,5277018.832623935],[516166.6250750652,5277020.488863115],[516165.7296919152,5277018.374721963],[516159.9399117608,5277020.803725537],[516160.8356050827,5277022.806726909],[516156.9255834538,5277024.462972601]]]},"properties":{"id_build":91,"id_source":"w144656092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515775.02701906755,5277742.601333672],[515758.94867906056,5277745.558563071],[515752.72014009353,5277716.200788726],[515752.20139301574,5277713.64316888],[515743.67548941646,5277672.942927918],[515758.60608483513,5277669.604673392],[515759.3800489547,5277669.428944749],[515760.3439535424,5277673.988287059],[515760.56562907744,5277675.322565114],[515760.2622389983,5277676.433142059],[515759.8095610045,5277677.2098953985],[515758.98140660604,5277677.985632365],[515757.1782168524,5277678.314170984],[515752.29401511716,5277679.412351527],[515753.92505876726,5277687.196553063],[515762.7914063527,5277685.3311758395],[515775.02701906755,5277742.601333672]]]},"properties":{"id_build":92,"id_source":"w144656097","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.11394887563,5277285.339283604],[516126.0862386048,5277285.333667167],[516126.1582607928,5277286.445264595],[516118.2717993521,5277286.756846344],[516118.06003549986,5277281.866109195],[516118.8861401743,5277281.868396147],[516118.7488617629,5277277.200144805],[516122.80459570885,5277277.100234318],[516123.778747621,5277277.880910468],[516126.48267259594,5277277.777259184],[516126.3386280753,5277275.554064361],[516125.9631255433,5277275.553024343],[516125.8917187942,5277274.2191490615],[516132.42638816836,5277273.903831924],[516132.8458887291,5277285.1301134825],[516128.11394887563,5277285.339283604]]]},"properties":{"id_build":93,"id_source":"w144656100","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.376446639,5277405.924406966],[516090.4570341592,5277405.377220765],[516090.08614713745,5277403.709098592],[516093.8429330408,5277403.052643134],[516093.39879118296,5277400.717479391],[516097.1558866739,5277399.949887106],[516100.12818727794,5277411.405506433],[516096.22059401905,5277412.283820516],[516095.84909459646,5277410.837975884],[516092.3549747984,5277411.56183992],[516089.5371131152,5277412.154207068],[516089.3881441453,5277411.709236143],[516085.4802456909,5277412.698696395],[516083.1776667349,5277403.467730881],[516084.53036723856,5277403.138048306],[516086.9301528439,5277404.367216453],[516087.376446639,5277405.924406966]]]},"properties":{"id_build":94,"id_source":"w144656112","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516286.3405043301,5276886.565651092],[516284.23848192516,5276886.226353232],[516282.55725895334,5276896.557647851],[516269.94483075454,5276894.633019076],[516270.9361073771,5276889.301081318],[516274.01419017056,5276889.754241856],[516274.220484839,5276888.498939343],[516274.3962404093,5276887.421375069],[516272.4484661215,5276885.637695957],[516273.21256615804,5276880.971962237],[516274.71436754765,5276881.087299072],[516274.7149887783,5276880.865021334],[516281.8475349299,5276881.77407792],[516282.00054289727,5276880.774248095],[516285.07831856026,5276881.338553337],[516286.72411393456,5276883.677090761],[516286.3405043301,5276886.565651092]]]},"properties":{"id_build":95,"id_source":"w144656114","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516135.6304028675,5277310.14428403],[516136.6854999868,5277308.813530549],[516138.8634022413,5277308.819567029],[516139.79750836815,5277307.788556197],[516140.67134987883,5277306.824062329],[516143.6759703344,5277306.610112884],[516143.8230889617,5277307.721918803],[516147.2029013284,5277307.620151303],[516147.4761775473,5277317.401211712],[516143.9461709187,5277317.502562574],[516143.94278113794,5277318.725090997],[516141.53958273266,5277318.718427993],[516141.5331122937,5277321.052345901],[516135.90031027654,5277321.147872322],[516135.83445057314,5277317.813495753],[516135.6842506497,5277317.813079497],[516135.6304028675,5277310.14428403]]]},"properties":{"id_build":96,"id_source":"w144656116","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516150.57161546877,5277311.519387816],[516154.1016258591,5277311.418040961],[516154.03330959525,5277308.972775783],[516154.0373181922,5277307.527969489],[516159.5202420349,5277307.320904766],[516160.4242194862,5277306.323155548],[516163.1278234698,5277306.330660252],[516164.4014398372,5277307.4455940295],[516164.5392978562,5277311.891568865],[516165.89109855675,5277311.895322017],[516165.9547810708,5277316.007671561],[516159.5706653473,5277316.212228907],[516159.6426807153,5277317.323826817],[516154.30996621563,5277317.531308139],[516154.37889895815,5277319.754295461],[516150.69869374204,5277319.855225488],[516150.57161546877,5277311.519387816]]]},"properties":{"id_build":97,"id_source":"w144656122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515544.22222130105,5277728.643704623],[515540.4654122775,5277729.411653482],[515540.0216679337,5277726.854253154],[515539.0448439425,5277727.073925354],[515538.89702781854,5277726.18441227],[515536.49281174457,5277726.622554728],[515536.7157228817,5277727.512268161],[515534.7623720204,5277727.840474808],[515534.68816707586,5277727.506857346],[515531.6078034777,5277728.054337397],[515530.12903611,5277719.381486752],[515533.20940414915,5277718.8340059165],[515533.1351989984,5277718.500388481],[515542.7520778514,5277716.747819052],[515543.41695178486,5277720.861767368],[515543.1165728028,5277720.860965376],[515544.22222130105,5277728.643704623]]]},"properties":{"id_build":98,"id_source":"w144656133","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.3127553147,5277506.666251003],[516165.4762109027,5277507.3002019245],[516164.92762872216,5277507.432046552],[516165.55907598545,5277509.912218195],[516166.60650095745,5277514.038414613],[516166.26080588653,5277514.126366558],[516167.1150750421,5277517.496275849],[516157.7137295298,5277519.8707972],[516156.85945530084,5277516.500889289],[516157.5658643617,5277516.325025985],[516156.3029947622,5277511.353570573],[516155.36362880113,5277511.584357513],[516153.92991301225,5277505.93447559],[516161.0466783006,5277504.142647077],[516161.24731298647,5277504.910068887],[516164.6516388506,5277504.0526292175],[516165.3127553147,5277506.666251003]]]},"properties":{"id_build":99,"id_source":"w144656143","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516253.9239421336,5277467.958448178],[516248.3688592085,5277467.164963371],[516248.36730836,5277467.720658233],[516244.8392513934,5277467.155113909],[516244.99068789167,5277466.7109771],[516245.06795668264,5277465.933213834],[516243.1163374771,5277465.594349124],[516242.9639708947,5277466.371902897],[516239.43560260185,5277465.917500823],[516240.1241955835,5277461.36268824],[516239.89890124416,5277461.362059808],[516240.8180600298,5277454.9185132645],[516240.9682564237,5277454.918932243],[516241.5035549545,5277451.475090616],[516244.05596488353,5277451.815630974],[516256.06671766745,5277453.627391643],[516255.0412563202,5277460.481856456],[516253.9239421336,5277467.958448178]]]},"properties":{"id_build":100,"id_source":"w144656150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515505.9839992046,5277339.441362005],[515508.0220510146,5277335.556899038],[515514.24762757524,5277338.46311793],[515513.71867236006,5277339.68424569],[515516.7194007111,5277340.914779233],[515517.24746784323,5277340.027068611],[515523.0981295758,5277342.710018346],[515518.11696831055,5277351.921339024],[515512.56730397214,5277349.016916679],[515513.1716537925,5277347.6848499365],[515511.6789491588,5277347.014034406],[515510.17122426856,5277346.343179248],[515509.56717105344,5277347.564107336],[515503.41670154576,5277344.658093365],[515502.20859786525,5277347.099951002],[515498.9834584972,5277345.5354083],[515502.98385970714,5277337.988556095],[515505.9839992046,5277339.441362005]]]},"properties":{"id_build":101,"id_source":"w144656158","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.49175244494,5277034.574205514],[515950.3610539135,5277034.562888953],[515950.36440274725,5277033.340361056],[515947.5852642187,5277033.443888646],[515947.5129000602,5277032.443432855],[515946.4914905963,5277032.440635529],[515945.409998225,5277032.437673853],[515945.4790149383,5277034.660657511],[515940.1466587493,5277034.646057662],[515940.08250788687,5277030.644851682],[515938.5053310297,5277030.640534371],[515938.38098153163,5277021.193316859],[515944.5397959629,5277021.0990382945],[515944.5370570184,5277022.099288375],[515950.169839787,5277022.114715116],[515950.172579699,5277021.114465036],[515954.30359228345,5277021.014642548],[515954.49175244494,5277034.574205514]]]},"properties":{"id_build":102,"id_source":"w144656168","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516138.4545173987,5277239.578342115],[516137.6284067186,5277239.5760524],[516137.6231701449,5277241.465414279],[516137.6853336066,5277246.133457685],[516137.2347282904,5277246.132208793],[516137.3002802979,5277249.577723936],[516135.19745672477,5277249.571896211],[516127.987160199,5277249.774199074],[516127.92129483406,5277246.439822984],[516129.1229089474,5277246.443151517],[516128.9924107989,5277239.3298436245],[516129.8936224853,5277239.332340165],[516129.8305290056,5277234.997713704],[516134.4123077626,5277234.788128679],[516134.4852529822,5277235.56630932],[516138.39081419987,5277235.46599341],[516138.4545173987,5277239.578342115]]]},"properties":{"id_build":103,"id_source":"w144656186","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516018.51823432016,5277261.097224239],[516017.09809752007,5277261.3600528445],[516017.7198625913,5277264.662614785],[516011.8213751436,5277265.768902591],[516009.2215182346,5277266.261882512],[516008.6588512191,5277263.315131281],[516010.1466388728,5277263.030258686],[516009.2063978158,5277258.104181138],[516006.4036435565,5277258.641060359],[516005.2931719679,5277252.803169348],[516013.0251091437,5277251.346269697],[516013.81728630664,5277255.49396214],[516017.1009322896,5277254.869497532],[516017.66350416053,5277257.84959123],[516019.8050064236,5277257.444265759],[516020.4268009754,5277260.735714073],[516018.51823432016,5277261.097224239]]]},"properties":{"id_build":104,"id_source":"w144656190","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.9665685445,5277221.5474064015],[516124.8360023685,5277221.53596576],[516124.6294735413,5277214.755867061],[516126.13888683706,5277212.092692593],[516132.22240209323,5277211.998404965],[516132.225173443,5277210.998154605],[516135.98054840905,5277210.897420887],[516135.98424440186,5277209.563753741],[516137.4160986291,5277207.789485498],[516139.293941214,5277207.683550543],[516139.6420299163,5277217.57595611],[516136.18706419435,5277217.677519973],[516136.25600533735,5277219.9005067125],[516133.1765471786,5277220.003113034],[516129.79699213314,5277219.99374985],[516129.7948369568,5277220.771722366],[516128.9665685445,5277221.5474064015]]]},"properties":{"id_build":105,"id_source":"w144656192","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515436.2266388647,5277760.253472323],[515433.45640214015,5277757.134212734],[515434.4349849848,5277756.247688645],[515433.1023431796,5277754.721540186],[515431.515145938,5277752.905753756],[515430.6122464731,5277753.570199317],[515426.4950171752,5277748.669135954],[515426.80334655615,5277745.669178144],[515428.755801531,5277745.674352379],[515431.6155762651,5277743.347996298],[515433.5618445463,5277745.687091743],[515435.59086734476,5277745.136772209],[515437.98652091913,5277747.921619939],[515439.3388095043,5277747.702926571],[515441.0606744832,5277749.708009993],[515441.0559579172,5277751.486234467],[515443.60208971,5277754.160343883],[515436.2266388647,5277760.253472323]]]},"properties":{"id_build":106,"id_source":"w144656196","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515325.42340832297,5277518.120559055],[515320.0269271083,5277514.10532482],[515318.00309852924,5277512.655182775],[515319.28472620307,5277510.769179071],[515319.137163223,5277509.76853297],[515320.34340194904,5277507.993470893],[515321.3202542083,5277507.773762013],[515322.219669096,5277508.442967557],[515324.8583199184,5277504.560020995],[515326.05783241626,5277505.341156826],[515328.0176830282,5277502.567822408],[515335.5139721397,5277507.699992205],[515332.1211216859,5277512.803485117],[515331.14690383873,5277512.022941286],[515330.589017191,5277512.843906438],[515330.0914427449,5277513.576118645],[515326.47272325045,5277518.901299633],[515325.42340832297,5277518.120559055]]]},"properties":{"id_build":107,"id_source":"w144656201","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515526.1937709942,5277702.58887839],[515524.91685994226,5277702.696612839],[515525.7260100435,5277709.033739964],[515517.68818980735,5277710.0125676645],[515516.2179871776,5277698.116689277],[515517.34500522394,5277697.89741357],[515516.83148523065,5277693.339312665],[515521.33867277583,5277692.7956286855],[515521.1926308963,5277691.239281998],[515528.1037541044,5277690.36859349],[515528.2506834931,5277691.591523294],[515534.335464344,5277690.829777924],[515534.6287272852,5277693.497915906],[515532.7507567678,5277693.715184603],[515533.2648573508,5277698.051008908],[515525.75268583157,5277699.031228098],[515525.9659264632,5277700.7322358955],[515526.1937709942,5277702.58887839]]]},"properties":{"id_build":108,"id_source":"w144656202","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515546.9450875324,5277355.776997653],[515547.3241461287,5277354.444332827],[515551.30115276296,5277355.67749135],[515551.9064013773,5277354.012011717],[515556.18350825296,5277355.357114941],[515555.7287543654,5277356.911856471],[515558.5050577358,5277357.808392797],[515556.68990231975,5277362.582551954],[515553.98899724125,5277361.575078143],[515550.65998663387,5277370.790785336],[515548.10868930444,5277370.005993327],[515547.95730359986,5277370.450148075],[515541.8796032261,5277368.433405513],[515543.6275409901,5277363.514580638],[515544.67934463284,5277360.549957322],[515542.2031414152,5277359.765368433],[515544.0185825056,5277354.880065851],[515546.9450875324,5277355.776997653]]]},"properties":{"id_build":109,"id_source":"w144656210","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515209.3949390471,5277720.201804266],[515205.664876303,5277710.745178741],[515206.56746622466,5277710.191837404],[515207.6135686033,5277712.195086109],[515211.373538131,5277710.204393273],[515215.96071606537,5277707.771305747],[515217.8285015289,5277711.443800744],[515219.6331025501,5277710.559400019],[515222.9958063709,5277716.90315997],[515216.52864927455,5277720.331585832],[515215.85570141836,5277719.218429058],[515213.2989944555,5277720.545424598],[515213.1496762689,5277720.211615039],[515211.3491447863,5277719.540071409],[515211.05021773087,5277718.983591421],[515209.47090487485,5277719.868583381],[515209.3949390471,5277720.201804266]]]},"properties":{"id_build":110,"id_source":"w144656214","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516224.61767882574,5277636.031299579],[516223.62529450294,5277647.20920456],[516213.0989179831,5277646.446356718],[516213.10046555405,5277645.890661699],[516206.79366162664,5277645.428541661],[516206.796136775,5277644.539429627],[516206.9540631841,5277641.761372643],[516207.1104427379,5277639.539010688],[516206.05910134193,5277639.536083963],[516206.4497403312,5277634.091318064],[516207.95165801386,5277634.0954992585],[516208.1052533753,5277632.873388377],[516207.7307021062,5277632.538926024],[516208.4341038876,5277622.649436564],[516225.25282730843,5277623.696544735],[516224.61767882574,5277636.031299579]]]},"properties":{"id_build":111,"id_source":"w144656217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516274.8956203666,5277004.3417871725],[516274.4440644441,5277004.673944377],[516268.5757052236,5277008.325157919],[516268.42642883264,5277007.9913215805],[516269.1036065705,5277007.548654529],[516266.48645510257,5277003.429171744],[516265.8092770882,5277003.871839102],[516265.58489640255,5277003.53779304],[516266.2620744381,5277003.095125659],[516264.5415113854,5277000.64524485],[516264.0899557735,5277000.977402858],[516259.7528515358,5276994.185765246],[516259.90337015927,5276994.075045794],[516260.277649462,5276994.520649969],[516265.6963235453,5276990.534752669],[516265.3223548436,5276989.978009261],[516265.54766742594,5276989.978638635],[516274.8956203666,5277004.3417871725]]]},"properties":{"id_build":112,"id_source":"w144656227","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.8938932694,5277086.800025603],[515933.016961597,5277087.640198797],[515932.73053885077,5277082.5269869715],[515936.26098775433,5277082.31436887],[515936.0499747865,5277077.09022356],[515932.3735740111,5277075.746486098],[515932.0214737612,5277067.187762826],[515949.97357124067,5277066.34779218],[515950.5396898997,5277079.019273348],[515950.31468523364,5277078.90751725],[515950.17513455235,5277075.017244036],[515946.4947788768,5277075.118303443],[515946.77601557004,5277082.120877348],[515950.4566712742,5277081.908679219],[515950.3840038305,5277081.019362225],[515950.6096173099,5277080.908840515],[515950.8938932694,5277086.800025603]]]},"properties":{"id_build":113,"id_source":"w144656229","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515710.18965799885,5277225.070279428],[515702.7624376164,5277222.160610818],[515693.60937956686,5277218.69060106],[515694.29023350484,5277216.85863049],[515694.89538742945,5277215.2487354325],[515691.53709583374,5277207.3487624],[515699.9583389754,5277203.703852039],[515702.421399958,5277209.378620745],[515714.65032140055,5277214.079482191],[515719.2369007355,5277212.091347531],[515721.9988438274,5277218.3226303365],[515721.622737481,5277218.543894271],[515721.62333766406,5277218.321616404],[515713.12730061973,5277221.855153887],[515711.7652825341,5277225.630229692],[515715.96674650337,5277227.19752511],[515713.01680792106,5277234.969345641],[515707.31512695155,5277232.731166514],[515710.18965799885,5277225.070279428]]]},"properties":{"id_build":114,"id_source":"w144656234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516248.05024173734,5277527.513009232],[516245.9635613326,5277527.140424544],[516242.3456405074,5277526.49683284],[516244.37419717957,5277526.169073008],[516246.7065547927,5277524.619623329],[516247.9897223786,5277522.289267461],[516248.22245849477,5277519.62256064],[516247.25332631846,5277517.063639535],[516245.2309686051,5277515.16861874],[516243.20519873925,5277514.496127445],[516249.9608652023,5277515.62637803],[516248.70752388594,5277523.413783218],[516248.05024173734,5277527.513009232]]]},"properties":{"id_build":115,"id_source":"w144656237","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516036.59115396446,5277139.826799865],[516035.87808544043,5277126.043505859],[516035.80696203496,5277124.598493132],[516036.0322693877,5277124.599113638],[516036.2493123735,5277127.600484858],[516042.4086287873,5277127.284032213],[516042.4107722247,5277126.506059808],[516044.438843984,5277126.400508057],[516044.5118026938,5277127.178687411],[516047.291204752,5277126.964067249],[516047.64833851083,5277133.633437113],[516049.1506915391,5277133.526438125],[516049.3616006159,5277138.750588231],[516049.4354775232,5277139.1953509115],[516043.50148005923,5277139.512416894],[516043.5045423322,5277138.401027721],[516042.7908870101,5277138.465745246],[516042.2274974862,5277138.508648908],[516042.2998439195,5277139.509106081],[516036.59115396446,5277139.826799865]]]},"properties":{"id_build":116,"id_source":"w144656248","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515680.4204444778,5277673.5946444925],[515678.3408210902,5277665.031277407],[515696.5265101703,5277660.412409047],[515698.4604130765,5277667.30829243],[515702.7667855298,5277685.546837309],[515705.0962360031,5277684.997421884],[515706.95292626513,5277692.671078931],[515700.866924906,5277693.8772],[515700.2709597759,5277692.097355513],[515692.3069824521,5277693.520700805],[515691.11864116613,5277688.627345464],[515694.19904101215,5277688.079949771],[515692.78990823124,5277681.518901575],[515689.4845188247,5277681.954551849],[515688.44606386346,5277677.172740939],[515691.45197330083,5277676.402863392],[515690.1894309082,5277671.175888934],[515680.4204444778,5277673.5946444925]]]},"properties":{"id_build":117,"id_source":"w144656250","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515572.6515221072,5277684.374896657],[515571.23504651745,5277683.31527961],[515569.80355136335,5277682.255622749],[515567.99502424954,5277684.584722239],[515561.9856245938,5277685.235494168],[515558.08958430134,5277681.890886573],[515561.5564430511,5277677.23228057],[515564.63594498776,5277677.018233396],[515564.1936927296,5277673.905136346],[515571.02974781225,5277673.034297995],[515571.2493858917,5277675.14654185],[515575.3063180797,5277674.490555485],[515574.7907599222,5277670.710422638],[515578.99788641214,5277670.05484065],[515580.9131857655,5277683.952442805],[515579.48548426945,5277684.282041364],[515581.185903341,5277694.289175384],[515572.0961274315,5277695.487392331],[515570.7678993164,5277686.703794415],[515572.6515221072,5277684.374896657]]]},"properties":{"id_build":118,"id_source":"w144656257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515613.01755993924,5277725.6047469685],[515612.8745240778,5277722.937007612],[515615.0585311691,5277720.608929018],[515617.687145601,5277720.50484043],[515619.4196922748,5277718.508971812],[515621.2925883764,5277720.18109446],[515626.0986527893,5277720.193992729],[515626.3847124101,5277725.52947211],[515627.80763294734,5277726.97810943],[515625.9228084073,5277729.751545616],[515626.89754698216,5277730.309861157],[515627.03252118663,5277735.978354587],[515620.79967329674,5277735.96162687],[515618.6270002159,5277734.066420386],[515613.59536545974,5277734.164063065],[515613.15821110987,5277729.161598536],[515614.4383971142,5277727.831354179],[515614.2941696052,5277725.608170872],[515613.01755993924,5277725.6047469685]]]},"properties":{"id_build":119,"id_source":"w144656269","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516237.35952582525,5277025.464689375],[516240.88878142834,5277025.69681147],[516241.11781248194,5277024.363773159],[516244.42144732305,5277024.706407857],[516244.18807486864,5277027.595390582],[516248.24212449364,5277028.16240048],[516248.3954331671,5277027.051430664],[516253.20051985816,5277027.620539795],[516252.50845576596,5277033.397875723],[516247.92806446593,5277033.051673643],[516247.54541370884,5277035.606820449],[516243.0407475327,5277035.038553976],[516243.34798267356,5277032.594336269],[516238.01686368114,5277032.134908057],[516238.165211386,5277032.802160319],[516232.8306840638,5277033.56526472],[516232.30183501967,5277029.296023631],[516231.94926854456,5277026.449862951],[516237.3582861591,5277025.909244958],[516237.35952582525,5277025.464689375]]]},"properties":{"id_build":120,"id_source":"w144656272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515616.2202241884,5277259.493089217],[515608.7870426585,5277258.806319163],[515608.12901197444,5277252.13617074],[515610.2330260615,5277251.69725235],[515612.0455773186,5277247.923361011],[515615.3467359047,5277249.154750637],[515616.02323954884,5277248.934285524],[515616.17522970587,5277248.267854732],[515617.22574721056,5277248.604091596],[515617.90463590604,5277247.49451518],[515624.054853638,5277250.511788486],[515622.1725621324,5277252.284973675],[515629.88586625125,5277260.530015223],[515629.35747644666,5277261.5288545145],[515632.27774937724,5277264.759746803],[515623.77169498114,5277272.072138737],[515619.57918343856,5277267.17074141],[515621.53686817846,5277265.286617899],[515618.099766335,5277261.543101845],[515616.2202241884,5277259.493089217]]]},"properties":{"id_build":121,"id_source":"w144656283","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516227.3843675237,5276912.741176305],[516229.41158812406,5276912.969105473],[516228.7983569432,5276917.412985957],[516218.1377621716,5276915.82732846],[516218.74912806624,5276912.050280133],[516217.6231691573,5276911.824864683],[516217.3233673991,5276911.601750249],[516217.6324550099,5276908.490698419],[516218.6851666156,5276908.049071428],[516219.210903362,5276908.050535755],[516219.3795091303,5276906.839582242],[516219.51751564274,5276905.828595033],[516219.8930420322,5276905.829641029],[516220.4302334825,5276901.718967113],[516224.03436042625,5276902.062426856],[516225.53182178224,5276903.733695259],[516228.91032154614,5276904.187669083],[516228.4451322194,5276909.409940314],[516227.8442903615,5276909.408265849],[516227.3843675237,5276912.741176305]]]},"properties":{"id_build":122,"id_source":"w144656291","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.73038965615,5277372.093967354],[515456.5553011304,5277372.540716212],[515455.72419402056,5277374.427885587],[515458.8745247322,5277375.88106604],[515458.4975533512,5277376.435763878],[515459.7724688625,5277377.105987512],[515462.091098483,5277380.6686165845],[515460.50663866865,5277383.442902658],[515455.8487245471,5277384.097374224],[515452.15886384214,5277382.198204437],[515449.3239512476,5277380.745864549],[515449.77720028313,5277379.746809541],[515447.1522686867,5277378.406167681],[515446.6245105677,5277379.182745716],[515440.1745309393,5277375.942584554],[515443.7990438833,5277368.505834718],[515449.04950616526,5277370.964838619],[515449.9554159532,5277369.189006552],[515453.70536505006,5277371.088334347],[515455.73038965615,5277372.093967354]]]},"properties":{"id_build":123,"id_source":"w144656293","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516021.6289038559,5277547.112958199],[516019.60003101407,5277547.563048496],[516019.47395632474,5277546.984774471],[516018.6875299975,5277543.492819946],[516018.1690545898,5277543.602533246],[516017.5162729214,5277540.666645755],[516018.17001506605,5277540.523962617],[516017.8065342464,5277538.889207083],[516016.74564020836,5277534.162845656],[516026.6044768448,5277531.978294093],[516027.8210173096,5277537.449722685],[516026.78403449024,5277537.680261596],[516027.66679793026,5277541.6392697],[516031.20607341995,5277540.848807573],[516031.9626680345,5277544.262883776],[516032.57132130995,5277544.131192073],[516033.2760507516,5277547.2895040335],[516033.0581164208,5277547.344473774],[516029.6315818996,5277548.101903227],[516022.21492126136,5277549.748584908]]]},"properties":{"id_build":124,"id_source":"w144656303","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515272.7873100425,5277744.262822696],[515275.7977949595,5277741.714506172],[515278.49273708067,5277744.944632406],[515272.99830608815,5277749.709226222],[515275.0948243672,5277752.048662608],[515269.22405694897,5277757.145691929],[515264.95679764485,5277752.133210117],[515268.56919597636,5277749.141909016],[515267.1461919359,5277747.693359638],[515265.6408068714,5277749.023089463],[515264.3679908642,5277747.574934603],[515263.991061876,5277748.129645261],[515262.41845039336,5277746.458425196],[515259.40768248675,5277749.117887671],[515256.1128502134,5277745.552778789],[515258.9731382231,5277743.00405999],[515257.70031923655,5277741.555906611],[515264.8509048698,5277735.239683743],[515272.7873100425,5277744.262822696]]]},"properties":{"id_build":125,"id_source":"w144656304","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515377.4667514132,5277347.324852382],[515378.07165751804,5277345.770493768],[515375.6711124834,5277344.763896226],[515376.80494438275,5277341.988397242],[515375.9099124228,5277339.652099102],[515377.5720850839,5277335.877737989],[515379.07290496276,5277336.326261008],[515381.4171441201,5277330.219768269],[515387.49317690375,5277332.903176741],[515385.29913175345,5277339.010063967],[515387.9246827517,5277340.128399872],[515388.3773368531,5277339.351618081],[515390.708070452,5277338.357521091],[515392.723127219,5277343.141856671],[515390.8438741521,5277343.803727095],[515391.25354331365,5277345.082917006],[515391.66321229463,5277346.362106945],[515388.94053374435,5277353.57899283],[515384.06435351743,5277351.565591293],[515384.66896728287,5277350.122372313],[515377.4667514132,5277347.324852382]]]},"properties":{"id_build":126,"id_source":"w144656307","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515370.7651080072,5277638.493327024],[515374.95902595454,5277642.83885312],[515358.84748708835,5277658.355895613],[515354.5787659599,5277653.899043944],[515351.0492725783,5277653.889736094],[515350.98384783976,5277650.221950643],[515349.44860657986,5277648.617489741],[515345.4420030642,5277644.428071492],[515348.15218823036,5277641.879000833],[515350.3989070524,5277644.218859881],[515351.2270114894,5277643.443064945],[515357.1434502778,5277649.571357104],[515359.02582633705,5277647.686946575],[515359.17631091794,5277647.576203801],[515360.0044160587,5277646.800410108],[515360.9777276306,5277647.914376029],[515362.93520117406,5277646.030164907],[515361.88650067354,5277645.027139518],[515364.7474709389,5277642.256194862],[515365.7958781129,5277643.370359771],[515370.7651080072,5277638.493327024]]]},"properties":{"id_build":127,"id_source":"w144656308","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515413.3501431656,5277693.175556137],[515414.1161016819,5277687.509454417],[515415.9177972102,5277687.736504678],[515416.2924737284,5277685.20350945],[515416.6060148513,5277683.070455633],[515420.88467655797,5277683.74862651],[515420.96153815155,5277683.081991319],[515422.0876721733,5277683.196114235],[515422.08796659095,5277683.0849752175],[515422.31737417483,5277681.5296257725],[515425.3948069983,5277682.09347808],[515425.39156771835,5277683.316007275],[515426.06713026186,5277683.428937122],[515425.3035154307,5277688.20592511],[515426.9550200032,5277688.432580842],[515426.1154264824,5277693.542786825],[515422.5871347503,5277693.088879475],[515422.35802194884,5277694.533089916],[515418.6047396258,5277693.967449148],[515415.3844257619,5277693.481019908],[515413.3501431656,5277693.175556137]]]},"properties":{"id_build":128,"id_source":"w144656314","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516034.895827094,5277728.085155166],[516034.0630514645,5277730.527938439],[516034.66319631384,5277730.751871144],[516033.1515088755,5277734.30418327],[516036.6769744212,5277735.7587120505],[516035.99683732545,5277737.312796623],[516039.22192222404,5277738.7664995445],[516039.90267244924,5277736.990137297],[516043.3527338807,5277738.555602249],[516045.9975844525,5277732.561338906],[516047.4976384686,5277733.232312891],[516044.7007597519,5277739.892995758],[516041.99521342944,5277740.66351874],[516039.36690576904,5277740.656276719],[516036.81552956067,5277739.982408613],[516034.49127301195,5277738.642327998],[516032.5437124377,5277736.858726259],[516030.97407191875,5277734.187046948],[516033.4611210419,5277728.225685426],[516034.895827094,5277728.085155166]]]},"properties":{"id_build":129,"id_source":"w144656319","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515987.9943706165,5277032.332163891],[515983.26223118807,5277032.541452105],[515982.7362006742,5277032.651147955],[515982.5182110355,5277029.983195947],[515981.1812132003,5277030.035096193],[515979.8892775928,5277030.08712041],[515980.0327748095,5277032.5325884065],[515980.63360390236,5277032.534237332],[515980.7077924847,5277032.86786015],[515969.0649006732,5277033.502756519],[515968.8484287685,5277030.27911054],[515972.90463644103,5277030.067956391],[515972.7617458975,5277027.4002107885],[515968.7052315831,5277027.722503935],[515968.2011449796,5277019.830200462],[515972.63318378123,5277019.508937022],[515972.77576974116,5277022.287821486],[515982.69099247694,5277021.759329786],[515982.5487162857,5277018.869306172],[515987.20576297585,5277018.659811154],[515987.9943706165,5277032.332163891]]]},"properties":{"id_build":130,"id_source":"w144656320","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515309.02240219136,5277726.453376684],[515307.0792920615,5277722.891793777],[515308.0644355672,5277722.36091315],[515307.27225973475,5277720.90289885],[515302.25625422556,5277723.62375087],[515300.4112295389,5277719.884604387],[515300.49275046354,5277717.4397431975],[515297.5924192639,5277712.35303269],[515297.87973640946,5277711.609151082],[515301.23413745535,5277709.650792346],[515302.0640974828,5277711.019993268],[515304.0420725382,5277709.891566822],[515306.06904989225,5277710.119175344],[515309.52809057327,5277708.350034137],[515310.8041192865,5277708.575669529],[515311.706427302,5277708.133483494],[515312.1607968883,5277706.689861271],[515314.49195547454,5277705.473455495],[515315.5236459315,5277707.232178292],[515317.53466325544,5277710.671688829],[515319.47093431733,5277713.9776356425],[515319.57559913717,5277714.1557347365],[515311.0773149059,5277718.912388793],[515313.84295759123,5277723.809814192],[515309.02240219136,5277726.453376684]]]},"properties":{"id_build":131,"id_source":"w144656325","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515426.3217819973,5277275.546683132],[515420.6217981646,5277272.641951087],[515418.2229959827,5277270.968502489],[515418.75164294406,5277269.85850516],[515419.0558713482,5277268.414494387],[515418.382614914,5277267.412453975],[515418.4624244467,5277265.634429728],[515419.4390267536,5277265.525876241],[515419.36598642066,5277264.747704736],[515422.8223815355,5277264.090020887],[515425.3124800184,5277259.651028376],[515424.7964913328,5277255.982050518],[515428.78007002664,5277254.7700682],[515429.37616379914,5277256.549883386],[515431.70605383534,5277255.889219679],[515433.26814523526,5277261.561485977],[515435.96764424304,5277263.1245982],[515430.15603025234,5277274.000886957],[515428.58098113944,5277273.2187349945],[515427.8287391271,5277273.683528558],[515427.15171552665,5277274.104065631],[515426.3217819973,5277275.546683132]]]},"properties":{"id_build":132,"id_source":"w144656326","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515597.5920996824,5277428.820143227],[515600.29177485185,5277430.272193343],[515599.6880090525,5277431.381973296],[515602.9872788248,5277433.280190336],[515599.5884924138,5277440.495167879],[515595.9882366684,5277438.818425998],[515596.4415064799,5277437.819382271],[515595.08386280667,5277437.204476796],[515593.74123852927,5277436.589611866],[515592.38649063365,5277437.697381222],[515586.3115535527,5277434.680341119],[515587.671061854,5277431.794346792],[515588.3472456991,5277431.685017421],[515589.399814725,5277431.24327662],[515590.15318036353,5277430.35617574],[515590.9101176212,5277428.135407291],[515591.3654707469,5277426.358390387],[515591.8926487384,5277425.804103321],[515593.3210095505,5277425.252229857],[515597.07087608275,5277427.151650339],[515596.9185948977,5277427.929220778],[515597.5920996824,5277428.820143227]]]},"properties":{"id_build":133,"id_source":"w144656333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515242.824847244,5277629.376898583],[515240.2672219499,5277631.037299222],[515239.80733673455,5277634.592568065],[515242.81058874057,5277634.822710105],[515241.66291032836,5277642.932908781],[515233.2553860993,5277641.688365925],[515234.1754388354,5277634.4666881915],[515231.3340088555,5277629.791383116],[515231.63991724787,5277627.6805278165],[515226.6108148026,5277626.778254051],[515227.52795454103,5277620.667965538],[515234.8841661606,5277621.909748674],[515234.888819559,5277620.131524531],[515237.2208690213,5277618.581670915],[515238.87007312063,5277619.697385274],[515240.37519431877,5277618.478787746],[515244.0423876056,5277623.267399098],[515246.59477828094,5277623.607502288],[515245.6796562661,5277628.939814799],[515243.80284021597,5277628.712620664],[515242.824847244,5277629.376898583]]]},"properties":{"id_build":134,"id_source":"w144656334","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515836.86011699744,5277759.21791266],[515836.78895316884,5277757.772901017],[515883.73470295843,5277753.566346506],[515884.4595666822,5277763.126351784],[515836.86011699744,5277759.21791266]]]},"properties":{"id_build":135,"id_source":"w144656339","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515935.4899308781,5277034.744451392],[515931.9594531774,5277034.9570700135],[515930.8328991148,5277034.953987746],[515930.6887731841,5277032.730798796],[515929.02864846593,5277032.848510819],[515927.53381260205,5277032.94444749],[515927.7506112693,5277036.056952997],[515923.61930597486,5277036.267933203],[515923.83337119396,5277040.380688688],[515923.60806059185,5277040.380072531],[515923.39399521385,5277036.267317054],[515921.290790896,5277036.372705663],[515921.21872614295,5277035.261111301],[515921.5191405427,5277035.261932722],[515920.8024423493,5277022.701183606],[515920.5020273034,5277022.700362221],[515920.42874674196,5277022.033323492],[515922.9825788507,5277021.929166802],[515922.76851225155,5277017.816411474],[515922.3926892233,5277017.92652352],[515922.39390484,5277017.48196793],[515934.41264643427,5277016.736866905],[515935.4899308781,5277034.744451392]]]},"properties":{"id_build":136,"id_source":"w144656340","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515485.6346127951,5277281.927958094],[515490.00285469217,5277277.271708992],[515492.4001551697,5277279.500881967],[515493.68041154905,5277278.170611842],[515492.93118139444,5277277.501779754],[515500.23663721146,5277269.741442208],[515500.9861634217,5277270.29913628],[515502.191323207,5277268.968668101],[515501.5922939963,5277268.300234821],[515503.8553733686,5277264.527509572],[515507.4536914692,5277266.982166336],[515512.3275317802,5277269.884782441],[515508.1848639779,5277274.430475936],[515506.0873775734,5277272.42437438],[515504.88192164403,5277273.865980708],[515505.5560504019,5277274.534614331],[515498.3256938297,5277282.29514517],[515496.0032014077,5277280.177308563],[515495.3706127169,5277280.831349429],[515494.7229449315,5277281.50757818],[515497.7192699753,5277284.405185957],[515493.2756311355,5277289.172368429],[515485.6346127951,5277281.927958094]]]},"properties":{"id_build":137,"id_source":"w144656342","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516217.4435382476,5277378.089078362],[516218.88454479584,5277378.415397853],[516219.8207422585,5277373.9390711505],[516224.00104461913,5277374.928748732],[516223.80296843185,5277375.939569144],[516237.8762601449,5277378.779525294],[516239.52100224927,5277381.451468358],[516240.724448645,5277380.787986245],[516243.04291051585,5277384.239788426],[516243.8702410064,5277383.79753731],[516246.4127565166,5277387.694525275],[516245.5851162719,5277388.247914989],[516247.678895527,5277391.476812514],[516243.0888638251,5277394.687060101],[516240.9941531356,5277391.7915810915],[516238.66205410176,5277393.229893893],[516238.28221956064,5277394.784792054],[516234.0791562505,5277393.8839524975],[516234.38234124327,5277392.8845394645],[516233.0463537855,5277392.602964844],[516231.68032659654,5277392.321306778],[516229.29488630715,5277394.037324171],[516227.20041635516,5277391.052938977],[516223.08020534983,5277390.063426449],[516222.50304256246,5277392.362412588],[516215.74831110146,5277390.843208063],[516217.4912347158,5277382.534804018],[516216.6431717548,5277382.332390167],[516217.4435382476,5277378.089078362]]]},"properties":{"id_build":138,"id_source":"w144656346","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.3453489611,5277558.207433205],[516169.7220359426,5277554.968756755],[516168.22287570406,5277553.964334573],[516171.0150444761,5277549.081936276],[516175.97947382217,5277546.206091679],[516176.8015264584,5277547.653193772],[516179.2909125219,5277546.337547164],[516182.66774217144,5277544.55758095],[516181.8463083618,5277542.888200062],[516186.1336385323,5277540.4550415445],[516192.59322483797,5277540.028444707],[516192.738164075,5277541.91822521],[516197.99526838027,5277541.821709526],[516198.05304929445,5277548.045701725],[516189.19036782725,5277548.465609597],[516189.6353867335,5277550.467364341],[516187.00297596614,5277551.904862705],[516185.95563558035,5277550.457132803],[516180.38981170725,5277553.553577168],[516181.28603241045,5277555.334305591],[516178.4283352716,5277556.771181669],[516177.005509148,5277555.322409947],[516175.3453489611,5277558.207433205]]]},"properties":{"id_build":139,"id_source":"w144656348","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.91914051014,5277294.885416626],[515334.0719752846,5277293.885561639],[515334.74992650165,5277293.10936911],[515335.57661478786,5277292.889267026],[515337.0029342142,5277293.115303432],[515337.82786595327,5277293.562035372],[515338.12592473463,5277294.4519383265],[515337.89447576576,5277296.785262782],[515341.62572624045,5277297.261880062],[515348.6302900093,5277298.147230766],[515347.94032590353,5277303.480118711],[515343.4357828842,5277302.912547699],[515343.5123474224,5277302.357050846],[515337.50638574705,5277301.563248529],[515337.2746445256,5277304.007711987],[515336.0733353998,5277303.893407893],[515335.53797448927,5277307.559608663],[515331.40864120517,5277307.104174946],[515331.94458487164,5277303.215695901],[515322.634801513,5277302.190930506],[515323.4048152303,5277294.968875102],[515333.61522726994,5277296.218292903],[515333.91914051014,5277294.885416626]]]},"properties":{"id_build":140,"id_source":"w144656349","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515391.08405732474,5277508.62461128],[515390.93209953106,5277509.291048152],[515389.58063884836,5277509.176335836],[515388.98367806675,5277507.72994095],[515386.4309508378,5277507.500914474],[515385.37606153614,5277508.831803858],[515381.77226358256,5277508.488862157],[515381.4648266518,5277511.155404243],[515382.8872733335,5277512.826258937],[515380.5539682289,5277514.820610078],[515381.15034311934,5277516.489282088],[515378.74722705164,5277516.482933753],[515375.9621666381,5277518.920652497],[515370.794534052,5277513.572298261],[515373.6552792317,5277510.912497395],[515373.92695408844,5277507.567907928],[515374.2760159811,5277503.356632701],[515382.3096915836,5277504.044691547],[515386.0716175645,5277501.387277854],[515387.7184767545,5277503.392146058],[515389.6745383332,5277502.063639163],[515391.4765860378,5277502.179542682],[515391.3199270288,5277504.624203327],[515391.08405732474,5277508.62461128]]]},"properties":{"id_build":141,"id_source":"w144656351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515626.8010959519,5276795.268714641],[515628.30030663934,5276796.361906648],[515633.60959744494,5276788.262962648],[515643.1022921725,5276794.178857164],[515636.0336991033,5276805.740625976],[515630.81520282,5276802.40354023],[515631.81844642316,5276800.794708107],[515631.31618674734,5276800.437712961],[515630.8214376745,5276800.0807380155],[515629.6372821256,5276801.933591994],[515627.4101354732,5276800.616166758],[515624.3171068324,5276805.698063637],[515618.12388734,5276801.735992013],[515615.17425528244,5276806.562657085],[515619.17808832246,5276809.129607033],[515616.38713636214,5276813.601050223],[515607.637524523,5276807.865014088],[515611.9355203942,5276801.563802479],[515613.6151072383,5276802.61301843],[515615.01819918567,5276800.338417572],[515606.4250986299,5276795.047361802],[515612.9102573238,5276785.37336738],[515627.1579746013,5276793.824856742],[515626.8010959519,5276795.268714641]]]},"properties":{"id_build":142,"id_source":"w144656352","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.1796532189,5276993.503053456],[516129.8947147614,5276994.935998986],[516132.42639335664,5277002.833934348],[516130.0209095212,5277003.605248649],[516130.31855473685,5277004.606330872],[516122.5386437748,5277006.985403055],[516121.2346629385,5277003.2474972885],[516120.41528773535,5277000.800154457],[516124.0984637147,5276999.698954849],[516123.2797046764,5276997.029333848],[516119.52080775425,5276998.352603845],[516117.9423915008,5276998.792793521],[516116.3790480963,5276993.787177934],[516116.0062957683,5276992.785888583],[516115.9321144009,5276992.452264044],[516123.0055702474,5276990.24905046],[516126.5310345626,5276989.147415691],[516126.30787651247,5276988.368819465],[516129.0888872299,5276987.598543786],[516129.75959161285,5276989.489777253],[516132.6160143817,5276988.608572415],[516134.1796532189,5276993.503053456]]]},"properties":{"id_build":143,"id_source":"w144656353","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515675.82265402813,5277241.982032933],[515670.344474007,5277240.41133021],[515670.496171485,5277239.856039769],[515667.9445334747,5277239.182334441],[515667.7171371401,5277239.959700735],[515665.2408988358,5277239.175059745],[515665.92278808984,5277236.9540995415],[515662.8463381999,5277235.945565205],[515664.21071412123,5277231.281366474],[515667.2874653036,5277232.178762584],[515667.8939559897,5277230.068739487],[515672.24652796594,5277231.302990721],[515672.09512924997,5277231.747142175],[515677.4982159386,5277233.31764429],[515677.27081810264,5277234.095010205],[515684.2498248841,5277236.114321027],[515683.3399313523,5277239.33492266],[515684.1651437852,5277239.670564734],[515682.8764533753,5277244.112683287],[515681.6009354095,5277243.664688825],[515681.9043323813,5277242.554108521],[515676.2011509211,5277240.87165453],[515675.82265402813,5277241.982032933]]]},"properties":{"id_build":144,"id_source":"w144656358","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515552.4831629832,5277199.940532479],[515551.52518889605,5277201.505043859],[515550.4691975988,5277203.213775265],[515552.4486690658,5277204.419371287],[515549.1900716104,5277209.73426112],[515547.4280390993,5277208.662614468],[515544.41081117117,5277213.5891624475],[515541.4116246919,5277211.75846477],[515542.6336060796,5277209.761211521],[515538.83961801766,5277207.450492786],[515540.8384957868,5277204.199433668],[515541.09345494205,5277204.344595823],[515541.92318967544,5277202.990905906],[515541.51078446966,5277202.745297706],[515543.7737072544,5277199.050385501],[515540.3021151749,5277196.940578057],[515543.71913692745,5277191.359370947],[515546.3434486436,5277192.955675358],[515548.0783521932,5277190.126244892],[515547.06611286884,5277189.512273506],[515549.291345047,5277185.872832704],[515554.9748457146,5277189.333344796],[515551.51257294096,5277194.981108315],[515555.83892374154,5277197.615562716],[515553.88527434465,5277200.800053684],[515552.4831629832,5277199.940532479]]]},"properties":{"id_build":145,"id_source":"w144656359","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515709.3384028716,5277123.041705563],[515706.85312623746,5277125.591214642],[515709.0987030072,5277128.375765758],[515705.78910146526,5277130.256213036],[515706.2340196818,5277132.369067976],[515703.3720378833,5277135.362121343],[515698.56459160463,5277135.682577122],[515691.11808304855,5277139.885814894],[515688.2076611539,5277132.987309447],[515684.6817434354,5277131.532994087],[515686.4955775196,5277127.314570774],[515684.176084599,5277124.085270433],[515686.80946093245,5277122.314128786],[515686.58864471834,5277120.646438033],[515688.1163694406,5277119.483586892],[515690.652564997,5277117.5454755565],[515690.50535480934,5277116.43368163],[515695.316711025,5277114.668413257],[515695.7721198396,5277112.891405271],[515696.22483256506,5277112.1146475645],[515699.8204678433,5277115.569672839],[515701.24951428187,5277114.795548097],[515707.2457273999,5277119.257309318],[515706.7915147543,5277120.589760764],[515709.3384028716,5277123.041705563]]]},"properties":{"id_build":146,"id_source":"w144656366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515660.8806476308,5277157.0310660135],[515652.3199134522,5277156.674627671],[515652.32400649646,5277155.152024415],[515652.3279800338,5277153.673876734],[515647.89725689613,5277153.550828079],[515648.0546293588,5277150.8838975895],[515643.5493991111,5277150.53837257],[515643.6256955988,5277150.094018656],[515643.8671263287,5277144.093122183],[515648.1476523624,5277144.215764086],[515648.3813221247,5277141.10447979],[515655.214728301,5277141.456267746],[515655.2865435301,5277142.678997805],[515652.58376039116,5277142.338312325],[515652.0386257623,5277149.560929035],[515653.76567568025,5277149.67671156],[515653.760297473,5277151.677212172],[515659.46805634594,5277151.69255989],[515659.62902096665,5277147.691962639],[515660.83065524,5277147.695194482],[515660.9964037121,5277141.91637455],[515667.82980824856,5277142.268177316],[515667.196394552,5277154.38070317],[515661.11342694616,5277154.2531989245],[515660.8806476308,5277157.0310660135]]]},"properties":{"id_build":147,"id_source":"w144656367","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515567.8929658564,5277582.335830802],[515568.19097441493,5277583.225746053],[515564.73267172225,5277584.661316554],[515565.8555534387,5277585.997996223],[515565.3286894687,5277586.441146746],[515561.2117509218,5277581.428850409],[515559.6706974791,5277582.013772436],[515558.2800156093,5277582.532412845],[515560.890867761,5277589.09663849],[515561.48748035234,5277590.654190299],[515556.0745983877,5277592.862520319],[515553.5385421018,5277586.409636427],[515553.16276279173,5277586.519772304],[515549.35273044877,5277579.0632289015],[515553.9401538361,5277576.630407656],[515552.29663837864,5277573.402963057],[515555.98439210997,5277570.412041194],[515558.0808622759,5277572.751578931],[515561.541546911,5277570.426892518],[515565.5860707204,5277574.438737222],[515564.98410910304,5277574.881686991],[515565.9529364466,5277577.662772085],[515572.64337070833,5277575.124448966],[515574.4332024872,5277579.797108114],[515567.8929658564,5277582.335830802]]]},"properties":{"id_build":148,"id_source":"w144656370","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515254.6414067373,5277619.294130009],[515262.6822197934,5277617.203549011],[515262.9796903574,5277618.315726602],[515268.390104414,5277616.9962363485],[515269.35644257726,5277620.777523047],[515270.85952924757,5277620.336906444],[515272.6431743197,5277627.454530846],[515267.7590233903,5277628.553117697],[515269.170979884,5277634.224949289],[515273.22878020006,5277633.2353354385],[515271.9655615605,5277628.119591904],[515275.94827066053,5277627.129782955],[515277.65768648434,5277633.913794908],[515273.90056084434,5277634.793054738],[515274.6439377792,5277637.684639285],[515270.0601782191,5277638.784012335],[515269.7632930908,5277637.449556319],[515268.2602109133,5277637.890173209],[515268.5573878445,5277639.113490133],[515263.372281591,5277640.433570887],[515261.06878499116,5277631.091790972],[515265.65254886425,5277629.992410844],[515264.90945787024,5277626.989688486],[515257.0191405928,5277628.9695210075],[515254.6414067373,5277619.294130009]]]},"properties":{"id_build":149,"id_source":"w144656377","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516231.80397698877,5276889.9698481],[516242.2417791439,5276890.665791004],[516242.24146914703,5276890.776929879],[516246.5218609467,5276891.01115009],[516246.4427244802,5276892.455745882],[516248.1172969469,5276892.560443934],[516250.1973767513,5276892.688502024],[516249.96027492796,5276896.911150409],[516250.10955527506,5276897.244986208],[516253.8642043228,5276897.477744718],[516253.55044361,5276902.255877729],[516257.9801063059,5276902.823942285],[516256.9807764936,5276911.045493086],[516252.85154084064,5276910.478267764],[516253.1606474965,5276907.367217781],[516251.65885248914,5276907.251886483],[516250.3876458167,5276905.247823488],[516250.5456102896,5276902.469770825],[516248.4429713799,5276902.352763619],[516248.6766605924,5276899.352642744],[516241.6931018243,5276898.888601177],[516241.84920236265,5276896.777381557],[516236.5933741214,5276896.207025644],[516236.4357260464,5276898.8739397675],[516231.8586357621,5276897.305223043],[516231.8611141526,5276896.416112059],[516231.3353763549,5276896.414646592],[516231.80397698877,5276889.9698481]]]},"properties":{"id_build":150,"id_source":"w144656386","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515554.56964111555,5277312.897419049],[515554.0466131695,5277311.895764079],[515551.86574396386,5277313.001335872],[515552.3884753124,5277314.1141296],[515546.67286334996,5277317.099638215],[515546.1501311826,5277315.986845001],[515541.638199804,5277318.1975943865],[515540.7417468943,5277316.416965626],[515538.4860785819,5277317.41120302],[515535.340777038,5277314.068617454],[515538.8004190649,5277312.188473961],[515537.97847120266,5277310.630323975],[515545.9500547172,5277306.539432528],[515546.47338129755,5277307.429947803],[515551.8135020266,5277304.443436025],[515550.84254361107,5277302.440327245],[515553.62540538533,5277300.891804205],[515551.45878097886,5277296.662706557],[515555.44443717366,5277294.672838188],[515556.93812729785,5277297.788741811],[515558.4416162768,5277297.237060502],[515561.8033028354,5277303.914429143],[515561.19715517526,5277305.9133244855],[515565.2504806841,5277306.702137289],[515563.3551537455,5277313.365455442],[515556.9013048346,5277311.569971686],[515554.56964111555,5277312.897419049]]]},"properties":{"id_build":151,"id_source":"w144656387","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516167.2116405101,5277539.513346544],[516166.6170360095,5277537.2888985295],[516162.8594025278,5277538.278723947],[516161.28112897504,5277538.718901922],[516159.7946109948,5277533.157783548],[516161.07249717397,5277532.716771318],[516160.1805856632,5277529.380100304],[516160.93495157274,5277528.159656026],[516164.0164073156,5277527.279091818],[516164.91572294844,5277527.948427788],[516168.5234775609,5277526.847047598],[516169.7136128665,5277530.962527058],[516170.16376398935,5277531.119373095],[516170.6889505605,5277531.298655546],[516172.34201533283,5277530.969827712],[516171.89575407957,5277529.412630304],[516179.0355505901,5277527.431950079],[516180.002239962,5277530.879971681],[516180.8199693788,5277533.88302009],[516178.0392120289,5277534.65327114],[516177.5132230428,5277534.762949385],[516176.6853013857,5277535.427487942],[516173.7537335322,5277536.419601686],[516173.45149248,5277537.085601104],[516173.1501777204,5277537.418183586],[516172.47306863597,5277537.860862007],[516170.74429130077,5277538.411759188],[516167.2116405101,5277539.513346544]]]},"properties":{"id_build":152,"id_source":"w144656388","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515651.7159197803,5277744.491292458],[515652.3040334242,5277721.264649615],[515686.6952397068,5277722.168538346],[515686.74107585096,5277733.027023282],[515688.0924790203,5277733.141804745],[515688.0089984718,5277736.253495066],[515692.7396556002,5277736.377385044],[515692.8234382654,5277733.1545557575],[515694.1784366829,5277731.935670344],[515696.73614828655,5277730.275468674],[515699.5924416384,5277729.28291232],[515702.59742639674,5277728.846457592],[515703.42346751515,5277728.848685739],[515728.5029777077,5277729.694369358],[515728.171972082,5277741.029738302],[515722.99105256057,5277740.793463578],[515722.4200673815,5277757.57403694],[515688.78052685334,5277756.483024002],[515688.042462482,5277751.702022083],[515684.5884217345,5277751.581575225],[515683.8979008817,5277757.025566746],[515680.4438632196,5277756.905122341],[515680.445659356,5277756.238288167],[515668.35637554235,5277755.872318404],[515661.59848676214,5277755.631854135],[515651.3865583158,5277755.270970555],[515651.7159197803,5277744.491292458]]]},"properties":{"id_build":153,"id_source":"w144656396","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515283.1610959424,5277654.377958975],[515283.31858125527,5277651.599877908],[515286.17192343145,5277651.718509051],[515283.1610959424,5277654.377958975]]]},"properties":{"id_build":154,"id_source":"w144656437","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516288.7234334682,5276918.047091509],[516286.74857284623,5276917.897085946],[516286.67905098264,5276918.585957919],[516284.1560785376,5276918.3788503595],[516283.97007653594,5276920.4344155025],[516274.3283532512,5276919.773964228],[516275.06217317283,5276909.817894094],[516277.5777323127,5276909.991635045],[516277.7027782694,5276908.247090627],[516283.7780159062,5276908.541925723],[516283.76693128824,5276909.82000178],[516286.8008095026,5276909.961854252],[516286.82573460776,5276909.106147936],[516293.0210771149,5276909.423556559],[516293.1221967748,5276908.1790743545],[516295.9684369304,5276908.275950691],[516297.1896042267,5276909.368537772],[516297.07808047754,5276911.646590428],[516296.0176352641,5276912.165979456],[516295.57916268066,5276918.5552878],[516288.7234334682,5276918.047091509]]]},"properties":{"id_build":155,"id_source":"w144656449","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516028.2097197617,5277614.481813237],[516028.7579649299,5277617.195134832],[516023.80637906847,5277618.181762628],[516019.8540925494,5277618.982206594],[516020.04671223677,5277619.938539282],[516016.8909042239,5277620.574467248],[516015.09797708126,5277611.700575431],[516027.1576430682,5277609.288686176],[516028.2097197617,5277614.481813237]]]},"properties":{"id_build":156,"id_source":"w144656464","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515286.17192343145,5277651.718509051],[515288.6497873565,5277651.836155523],[515289.77301101456,5277653.061642958],[515289.76892457996,5277654.617589156],[515290.89535847056,5277654.620547655],[515293.3793521711,5277652.404276846],[515296.898625521,5277656.303415227],[515293.0597008944,5277659.738662715],[515292.3832572754,5277659.959165367],[515291.7833688662,5277659.624170272],[515290.12747260067,5277661.064638152],[515290.50178253814,5277661.51018038],[515290.19935724215,5277662.287364554],[515286.51092323597,5277665.61187183],[515283.0667441336,5277661.712936814],[515285.55102363916,5277659.385523637],[515285.70413281216,5277658.274527836],[515284.12741813896,5277658.159248382],[515283.0041942859,5277656.933762028],[515283.1610959424,5277654.377958975],[515286.17192343145,5277651.718509051]]]},"properties":{"id_build":157,"id_source":"w144656473","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515476.1476164972,5277658.333119553],[515476.22093935875,5277659.000153267],[515472.7656583024,5277659.324388287],[515472.6923350502,5277658.65735462],[515471.7308166991,5277658.765939014],[515470.8143557152,5277658.874643304],[515470.9610026269,5277660.208710589],[515470.4341525955,5277660.651869723],[515469.7577022655,5277660.872351779],[515469.1569381282,5277660.870755425],[515468.4813737733,5277660.757820587],[515468.18128699367,5277660.645883455],[515468.1073726474,5277660.201127874],[515465.7037253273,5277660.417021543],[515465.63099177217,5277659.527709938],[515463.077153208,5277659.743205703],[515464.0294826167,5277668.748058949],[515457.34392502374,5277669.50828267],[515455.5850082217,5277653.166062593],[515464.7493304471,5277652.190141222],[515464.6765966351,5277651.300829643],[515467.90659504064,5277650.975991238],[515467.8341569812,5277649.97554061],[515469.1119644075,5277649.5343765905],[515471.21582438913,5277649.095408025],[515473.39389418665,5277648.990056855],[515475.1955994242,5277649.217125424],[515475.2680362302,5277650.217576149],[515482.40448795306,5277649.347432215],[515483.0652744578,5277655.01731927],[515480.43604211527,5277655.343746715],[515480.72992272273,5277657.7896037465],[515476.1476164972,5277658.333119553]]]},"properties":{"id_build":158,"id_source":"w144656479","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.3798087214,5277720.109215278],[516047.08015691256,5277721.228056728],[516047.38237408164,5277720.562050611],[516080.53619276365,5277734.43487802],[516076.07584214327,5277745.203126536],[516045.9975844525,5277732.561338906],[516043.3527338807,5277738.555602249],[516039.90267244924,5277736.990137297],[516039.22192222404,5277738.7664995445],[516035.99683732545,5277737.312796623],[516036.6769744212,5277735.7587120505],[516033.1515088755,5277734.30418327],[516034.66319631384,5277730.751871144],[516034.0630514645,5277730.527938439],[516034.895827094,5277728.085155166],[516033.4611210419,5277728.225685426],[516016.49274146045,5277729.812732791],[516016.928937774,5277735.037506419],[516020.6848899919,5277734.603281961],[516022.13478228764,5277753.50104924],[516009.06500547816,5277754.687631545],[516007.463048383,5277736.45628874],[516011.894544337,5277736.1350560505],[516011.38538866874,5277730.132103115],[516000.94478999544,5277730.992516042],[515999.6999478663,5277719.430549254],[516035.9051207132,5277716.084830089],[516036.80656472547,5277715.97617337],[516036.8074831926,5277715.642756318],[516044.6084623813,5277718.887306964],[516044.3813402239,5277719.553520185],[516044.3798087214,5277720.109215278]]]},"properties":{"id_build":159,"id_source":"w144656482","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515592.2078632314,5276915.451335704],[515582.075807497,5276912.756862035],[515583.74477732065,5276906.5375063745],[515583.1445301552,5276906.3136206735],[515583.4476279855,5276905.314174712],[515583.9730674129,5276905.426720564],[515584.73155626934,5276902.6502586035],[515585.7821380708,5276902.986489468],[515587.75540365523,5276895.323133714],[515592.48376998736,5276896.558329331],[515594.75984953565,5276888.006669425],[515592.5081728242,5276887.444941329],[515592.7355725118,5276886.667572518],[515590.258876102,5276885.994103083],[515590.9419673042,5276883.328579798],[515590.11610380514,5276883.215229006],[515590.4957973517,5276881.660290138],[515616.464143802,5276888.509394339],[515614.8699413478,5276894.840080808],[515604.6630523624,5276892.0342277065],[515605.04215357086,5276890.701567515],[515596.33587414306,5276888.455449052],[515596.1081763767,5276889.343956598],[515595.04598456976,5276893.34214012],[515598.723768471,5276894.241108275],[515597.3578797232,5276899.461014327],[515600.0598855875,5276900.135090427],[515597.70720914635,5276909.242241661],[515593.05395945086,5276908.007242864],[515593.81304756127,5276905.008504305],[515590.6607091391,5276904.222085682],[515588.9914337471,5276910.552578238],[515593.26945394475,5276911.6754293],[515592.2078632314,5276915.451335704]]]},"properties":{"id_build":160,"id_source":"w144656493","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516247.9897223786,5277522.289267461],[516246.7065547927,5277524.619623329],[516244.37419717957,5277526.169073008],[516242.3456405074,5277526.49683284],[516216.75593892095,5277522.491147223],[516221.55654241017,5277494.875156063],[516244.0753034128,5277498.716697125],[516242.9296146259,5277505.604170952],[516242.2422646323,5277509.714427591],[516230.1571456758,5277507.680207715],[516229.4688755027,5277512.1238828],[516243.20519873925,5277514.496127445],[516245.2309686051,5277515.16861874],[516247.25332631846,5277517.063639535],[516248.22245849477,5277519.62256064],[516247.9897223786,5277522.289267461]]]},"properties":{"id_build":161,"id_source":"w144656494","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515420.9839575108,5277314.542588297],[515425.2785871019,5277314.965181608],[515424.961902949,5277318.276306687],[515414.30787027447,5277317.247833362],[515414.52400547033,5277315.036724889],[515412.37667569745,5277314.830988753],[515412.17591433186,5277316.908770315],[515405.3134842538,5277316.2459985195],[515405.7767584802,5277311.457101882],[515408.9001252602,5277311.765444346],[515409.0004613024,5277310.743224356],[515409.1239450753,5277309.487672199],[515407.26193444495,5277309.304921025],[515407.67876841495,5277305.03825842],[515413.69278631674,5277305.620989028],[515413.5382905279,5277307.243220105],[515417.11217133194,5277307.586101546],[515416.81875716825,5277310.619439296],[515421.32364058425,5277311.053700374],[515420.9839575108,5277314.542588297]]]},"properties":{"id_build":162,"id_source":"w144656502","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515905.4739434209,5277547.683582485],[515912.7498458417,5277550.815379787],[515910.25585285417,5277556.58783429],[515908.4556536792,5277555.804936183],[515906.26387619233,5277560.911379302],[515907.9886735836,5277561.8052105345],[515907.15714271815,5277563.803455281],[515901.2311750935,5277561.34219067],[515902.138104676,5277559.233011218],[515892.2371535151,5277554.871522815],[515892.76647247205,5277553.539289909],[515889.7662359058,5277552.197422735],[515889.16151728283,5277553.640589946],[515878.6603774615,5277549.055207129],[515877.7537579503,5277551.053251196],[515856.9010234225,5277542.105232877],[515861.737514855,5277531.004426482],[515866.1631009099,5277532.905862387],[515866.9943191126,5277531.018750889],[515869.46949740185,5277532.136895346],[515869.6947889685,5277532.137509452],[515874.1203715921,5277534.038951415],[515874.2702628877,5277534.150499926],[515884.2463598204,5277538.5121624125],[515891.67247916036,5277541.64434306],[515891.143766111,5277542.754298066],[515894.2938979001,5277544.207714948],[515895.04972316226,5277542.431541376],[515895.499698625,5277542.655049555],[515894.7441766773,5277544.32008408],[515897.8946102151,5277545.662363928],[515898.34792377,5277544.663343443],[515898.49811782746,5277544.663753591],[515905.4739434209,5277547.683582485]]]},"properties":{"id_build":163,"id_source":"w144656512","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516287.93228224094,5277149.860202771],[516293.7955356759,5277147.987230883],[516295.6746448076,5277147.436790657],[516295.9722540399,5277148.437881659],[516303.9402396403,5277145.903972187],[516313.48662430514,5277142.929936474],[516314.2410718799,5277141.709512615],[516320.9921737129,5277144.618066646],[516320.0105495,5277146.504691626],[516324.79714656295,5277153.631056283],[516314.71602842933,5277159.826629046],[516312.16505112295,5277158.930363561],[516312.3161892348,5277158.59736761],[516308.8655431093,5277157.14288424],[516289.7734567484,5277162.868708632],[516289.5506382623,5277161.978966955],[516286.39386832976,5277162.859254633],[516286.61668726325,5277163.748996193],[516280.45304428705,5277165.621135345],[516279.5592787875,5277162.951281457],[516267.90915904514,5277166.25291395],[516267.5358229853,5277165.473892379],[516264.67977646017,5277166.24389221],[516264.90228811867,5277167.244771853],[516258.738966273,5277169.005795054],[516255.24020477594,5277157.882047774],[516263.95949052146,5277155.2390414085],[516263.66218658234,5277154.126813125],[516273.2836390038,5277151.152921317],[516273.6560433653,5277152.265359987],[516277.2643618143,5277151.052908332],[516277.56259540806,5277151.831720558],[516278.2332323158,5277153.722971769],[516286.3517179542,5277151.078319251],[516286.12827676005,5277150.410855556],[516287.93228224094,5277149.860202771]]]},"properties":{"id_build":164,"id_source":"w144656521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515705.7547289102,5277588.440926021],[515715.88060008624,5277592.969413985],[515720.41411359323,5277582.7123355055],[515710.340945572,5277578.128412116],[515719.9063916702,5277556.593110199],[515766.83028705,5277577.658740361],[515757.5587498353,5277598.761316808],[515766.9866494443,5277603.110181196],[515776.60404972924,5277581.8640749715],[515794.38025198533,5277589.903226518],[515783.42495001934,5277614.335389388],[515792.23264033865,5277614.759377895],[515797.54884318175,5277620.530843854],[515801.7570021332,5277611.217633296],[515810.7346041822,5277615.443092873],[515807.4556067303,5277622.7360750865],[515838.6570897413,5277636.957863981],[515827.27912924514,5277662.133433619],[515804.1779215048,5277651.679100901],[515809.216649427,5277640.7010527225],[515800.46310603,5277636.942990498],[515803.37975589413,5277630.338087557],[515796.1342349734,5277627.095368954],[515783.2900028168,5277655.801291575],[515774.97949981806,5277652.055582676],[515767.284048397,5277648.5782870315],[515777.23435828264,5277626.388393852],[515769.90594146925,5277623.245509195],[515759.4352975672,5277646.245326822],[515742.5063904654,5277638.730928898],[515753.81653220736,5277613.521670637],[515746.3911229423,5277610.134045734],[515735.5562436513,5277634.555510006],[515693.5151634517,5277615.837224672],[515705.7547289102,5277588.440926021]]]},"properties":{"id_build":165,"id_source":"w144656525","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516262.89422053733,5277375.292878489],[516257.0398946462,5277374.053990829],[516258.94375639915,5277364.612422286],[516264.79840187903,5277365.7401728695],[516262.89422053733,5277375.292878489]]]},"properties":{"id_build":166,"id_source":"w144656528","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516039.8650475697,5277429.010427161],[516045.094140762,5277428.213514946],[516045.72139032243,5277432.238504809],[516040.4847601839,5277433.0465096645],[516039.8650475697,5277429.010427161]]]},"properties":{"id_build":167,"id_source":"w144656530","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516205.83041860035,5277424.924405527],[516205.9107762201,5277423.035252151],[516208.4638194388,5277423.1534989225],[516208.38346099324,5277425.042652267],[516205.83041860035,5277424.924405527]]]},"properties":{"id_build":168,"id_source":"w144656534","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.8594025278,5277538.278723947],[516166.6170360095,5277537.2888985295],[516167.2116405101,5277539.513346544],[516163.5291054475,5277540.503380073],[516162.8594025278,5277538.278723947]]]},"properties":{"id_build":169,"id_source":"w144656543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516227.55823645106,5277219.554098709],[516236.948059921,5277218.802297506],[516237.16716500977,5277221.025704397],[516227.7022438918,5277221.777295927],[516227.55823645106,5277219.554098709]]]},"properties":{"id_build":170,"id_source":"w144656550","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516265.5637593341,5277037.991060116],[516264.95951584505,5277039.211909662],[516263.7745248485,5277038.619558995],[516262.4845127639,5277037.982459349],[516263.01396267413,5277036.65026089],[516265.5637593341,5277037.991060116]]]},"properties":{"id_build":171,"id_source":"w144656558","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515696.04617182293,5276844.045210128],[515692.9644273121,5276844.926021717],[515692.5176845239,5276843.48000202],[515695.5997292874,5276842.488051323],[515696.04617182293,5276844.045210128]]]},"properties":{"id_build":172,"id_source":"w144656563","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516245.2418158519,5277234.051583808],[516254.481416276,5277233.299391841],[516254.62541305786,5277235.522589795],[516245.2356141068,5277236.274362451],[516245.2418158519,5277234.051583808]]]},"properties":{"id_build":173,"id_source":"w144656564","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516202.221580835,5277221.284004248],[516200.8694498378,5277221.391381637],[516200.5811051034,5277217.056127522],[516201.85813583666,5277216.948541083],[516202.221580835,5277221.284004248]]]},"properties":{"id_build":174,"id_source":"w144656565","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516158.2751439952,5277052.3627957795],[516154.9924875843,5277044.462764699],[516165.66952486604,5277040.046806854],[516168.8767573024,5277048.057774276],[516163.7338509585,5277050.144037084],[516158.2751439952,5277052.3627957795]]]},"properties":{"id_build":175,"id_source":"w144656566","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516230.3121659417,5277020.999451379],[516230.9027731165,5277024.668709667],[516226.61969163595,5277025.434750716],[516225.9542877595,5277021.654144689],[516230.3121659417,5277020.999451379]]]},"properties":{"id_build":176,"id_source":"w144656571","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515669.08387875365,5277206.510316856],[515672.1788902061,5277200.62824063],[515681.6907340474,5277210.323008058],[515677.09758299397,5277214.7562288],[515669.08387875365,5277206.510316856]]]},"properties":{"id_build":177,"id_source":"w144656575","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516219.08622691775,5277233.222915592],[516216.9079867685,5277233.327988102],[516215.96169723343,5277222.544792619],[516218.2150425907,5277222.439928934],[516219.08622691775,5277233.222915592]]]},"properties":{"id_build":178,"id_source":"w144656576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515675.82265402813,5277241.982032933],[515676.2011509211,5277240.87165453],[515681.9043323813,5277242.554108521],[515681.6009354095,5277243.664688825],[515675.82265402813,5277241.982032933]]]},"properties":{"id_build":179,"id_source":"w144656581","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.54155870253,5277508.975105312],[515394.0146221846,5277507.965520721],[515394.9263717792,5277503.966900048],[515398.52870204416,5277504.865544819],[515397.54155870253,5277508.975105312]]]},"properties":{"id_build":180,"id_source":"w144656582","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.73038965615,5277372.093967354],[515453.70536505006,5277371.088334347],[515454.1586155783,5277370.089279692],[515456.33383896295,5277371.095311585],[515455.73038965615,5277372.093967354]]]},"properties":{"id_build":181,"id_source":"w144656583","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516012.369461545,5277235.784897875],[516014.1010643706,5277234.233703354],[516014.4710672654,5277236.235236968],[516013.58432514523,5277236.432849687],[516012.5172184164,5277236.674422424],[516012.369461545,5277235.784897875]]]},"properties":{"id_build":182,"id_source":"w144656584","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516145.60772419523,5277449.541268563],[516144.10575893853,5277449.537103563],[516144.49758404866,5277443.647779363],[516146.0743409501,5277443.763291696],[516145.60772419523,5277449.541268563]]]},"properties":{"id_build":183,"id_source":"w144656587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.1533859891,5277389.3252927],[516071.6731872376,5277381.430280264],[516074.45308275585,5277380.993395338],[516075.8584856816,5277388.7770621665],[516073.1533859891,5277389.3252927]]]},"properties":{"id_build":184,"id_source":"w144656615","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.0579534657,5277234.617541364],[516200.4039995264,5277226.724796532],[516202.582551088,5277226.508578912],[516203.3112938563,5277234.512671925],[516201.0579534657,5277234.617541364]]]},"properties":{"id_build":185,"id_source":"w144656617","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.1347253229,5277671.750368096],[516111.8102093609,5277667.726288635],[516114.1596132814,5277662.698155534],[516116.1161859826,5277658.513598855],[516124.5158077386,5277662.537892384],[516120.1347253229,5277671.750368096]]]},"properties":{"id_build":186,"id_source":"w144656621","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516188.55985533894,5277262.056535942],[516185.55551908887,5277262.159323327],[516185.48999583506,5277258.713807508],[516188.4192331317,5277258.610811278],[516188.55985533894,5277262.056535942]]]},"properties":{"id_build":187,"id_source":"w144656623","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515707.31512695155,5277232.731166514],[515699.8125141909,5277229.932437947],[515702.7624376164,5277222.160610818],[515710.18965799885,5277225.070279428],[515707.31512695155,5277232.731166514]]]},"properties":{"id_build":188,"id_source":"w144656629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9361213361,5277408.11476621],[516156.32086752437,5277404.781639295],[516166.6078656609,5277405.365893529],[516166.4481013852,5277408.810784322],[516155.9361213361,5277408.11476621]]]},"properties":{"id_build":189,"id_source":"w144656630","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516270.69036727457,5277031.003577895],[516273.85372899106,5277027.789364911],[516274.6035235473,5277028.2360195555],[516272.715370906,5277032.009494548],[516270.69036727457,5277031.003577895]]]},"properties":{"id_build":190,"id_source":"w144656635","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.34611828224,5277260.13613106],[516136.29440039303,5277260.244356027],[516136.2229957934,5277258.9104806455],[516137.3495066162,5277258.913602749],[516137.347658433,5277259.580436371],[516137.34611828224,5277260.13613106]]]},"properties":{"id_build":191,"id_source":"w144656668","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515668.35637554235,5277755.872318404],[515680.445659356,5277756.238288167],[515680.4438632196,5277756.905122341],[515668.27948650264,5277756.538950462],[515668.35637554235,5277755.872318404]]]},"properties":{"id_build":192,"id_source":"w144656672","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516273.80861436826,5276802.064418937],[516270.8903249574,5276798.166373856],[516275.55625707057,5276794.845221147],[516278.47423437383,5276798.854407403],[516273.80861436826,5276802.064418937]]]},"properties":{"id_build":193,"id_source":"w144656673","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515618.7087602603,5277451.660407042],[515613.8503536864,5277448.6799436],[515609.4117774775,5277445.967345288],[515613.4852662354,5277439.1987418085],[515622.9318560856,5277445.114490976],[515618.7087602603,5277451.660407042]]]},"properties":{"id_build":194,"id_source":"w144656674","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.90756106406,5276917.560347263],[516168.91893925157,5276913.856648932],[516174.3681700469,5276912.393623892],[516175.35675777984,5276916.108437033],[516169.90756106406,5276917.560347263]]]},"properties":{"id_build":195,"id_source":"w144656683","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516152.56653700303,5277215.055581303],[516150.92166466155,5277215.106588299],[516148.96136694873,5277215.156720909],[516148.964449425,5277214.045331614],[516152.5696201661,5277213.94419201],[516152.56653700303,5277215.055581303]]]},"properties":{"id_build":196,"id_source":"w144656689","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516171.73739171476,5277289.016758203],[516171.7021567149,5277288.183111839],[516171.666613014,5277287.460604421],[516175.3468391322,5277287.359687601],[516175.34251651354,5277288.915632791],[516171.73739171476,5277289.016758203]]]},"properties":{"id_build":197,"id_source":"w144656691","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.0922110434,5277160.964582702],[515678.60143281147,5277158.301292876],[515681.30091459793,5277159.8645186275],[515679.7916919888,5277162.52780776],[515677.0922110434,5277160.964582702]]]},"properties":{"id_build":198,"id_source":"w144656694","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516242.9639708947,5277466.371902897],[516243.1163374771,5277465.594349124],[516245.06795668264,5277465.933213834],[516244.99068789167,5277466.7109771],[516242.9639708947,5277466.371902897]]]},"properties":{"id_build":199,"id_source":"w144656696","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516245.21105702827,5277218.158507204],[516253.24875224684,5277217.514099691],[516253.39306017815,5277219.626158632],[516245.4301589913,5277220.381914404],[516245.21105702827,5277218.158507204]]]},"properties":{"id_build":200,"id_source":"w144656699","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516192.2792790067,5277463.896781837],[516194.834468582,5277463.237049875],[516195.72637068876,5277466.573725869],[516193.24628050835,5277467.233666315],[516192.2792790067,5277463.896781837]]]},"properties":{"id_build":201,"id_source":"w144656701","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515752.72014009353,5277716.200788726],[515750.6913774061,5277716.639858771],[515750.1729301626,5277713.9711000845],[515752.20139301574,5277713.64316888],[515752.72014009353,5277716.200788726]]]},"properties":{"id_build":202,"id_source":"w144656702","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516055.3983923528,5277291.806701792],[516054.95453271613,5277289.360402503],[516058.41098688316,5277288.703095809],[516058.85484512144,5277291.149395361],[516055.3983923528,5277291.806701792]]]},"properties":{"id_build":203,"id_source":"w144656709","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516200.34935927804,5277478.478550172],[516199.4577709302,5277475.030734424],[516201.5620595149,5277474.480890671],[516202.52905389847,5277477.817776764],[516200.34935927804,5277478.478550172]]]},"properties":{"id_build":204,"id_source":"w144656710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.0392120289,5277534.65327114],[516180.8199693788,5277533.88302009],[516181.48935706494,5277536.218817265],[516178.9320390405,5277537.656527983],[516178.0392120289,5277534.65327114]]]},"properties":{"id_build":205,"id_source":"w144656715","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516080.2476007529,5276968.791986335],[516073.5583950943,5276970.551753559],[516072.740835792,5276967.437584296],[516079.43004476844,5276965.677816137],[516080.2476007529,5276968.791986335]]]},"properties":{"id_build":206,"id_source":"w144656716","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516198.07543629454,5277459.0227523185],[516200.0295342217,5277458.472490146],[516200.8472637877,5277461.475541027],[516198.81837790867,5277461.914455007],[516198.07543629454,5277459.0227523185]]]},"properties":{"id_build":207,"id_source":"w144656717","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515450.97195147746,5277750.178866365],[515457.0675789984,5277745.304896238],[515458.5644505246,5277747.198247654],[515452.46852871065,5277752.183355256],[515450.97195147746,5277750.178866365]]]},"properties":{"id_build":208,"id_source":"w144656721","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516122.16542945703,5276965.462562196],[516111.8684242388,5276968.212555264],[516109.26467246335,5276959.203032738],[516113.9170602047,5276957.982254326],[516119.7119015696,5276956.453450891],[516122.16542945703,5276965.462562196]]]},"properties":{"id_build":209,"id_source":"w144656725","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.42212171823,5277056.419905494],[516211.35962335014,5277057.400496291],[516210.7686979398,5277053.842378719],[516218.1316140433,5277052.862623926],[516218.42212171823,5277056.419905494]]]},"properties":{"id_build":210,"id_source":"w144656727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.8139863442,5277369.083275847],[515495.38515551906,5277371.310252163],[515492.819657478,5277373.037204971],[515489.29117620137,5277375.4062074805],[515487.6449065924,5277373.179033028],[515493.8139863442,5277369.083275847]]]},"properties":{"id_build":211,"id_source":"w144656728","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515421.55584393104,5277713.869290363],[515410.2548447406,5277727.7318401765],[515401.26347993646,5277720.15053954],[515412.1884091032,5277706.5092564495],[515421.55584393104,5277713.869290363]]]},"properties":{"id_build":212,"id_source":"w144656729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516060.14811985055,5277203.463674867],[516060.1508788112,5277202.463424512],[516063.0053470196,5277202.249019059],[516063.0779956124,5277203.138337671],[516061.28251939773,5277203.33343623],[516060.14811985055,5277203.463674867]]]},"properties":{"id_build":213,"id_source":"w144656731","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516206.9540631841,5277641.761372643],[516206.796136775,5277644.539429627],[516205.6700099057,5277644.425154909],[516205.9030315669,5277641.647306936],[516206.9540631841,5277641.761372643]]]},"properties":{"id_build":214,"id_source":"w144656745","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516198.0961671327,5277375.990246944],[516197.85374354897,5277379.4460208295],[516196.0742024167,5277379.329930468],[516196.1615108039,5277377.640848109],[516196.2790444238,5277375.885165948],[516198.0961671327,5277375.990246944]]]},"properties":{"id_build":215,"id_source":"w144656750","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516115.02794932824,5277074.915455718],[516112.56984478486,5277067.573429348],[516120.8398110334,5277064.484406346],[516123.5986267878,5277071.716129139],[516119.8921962164,5277073.095113974],[516115.02794932824,5277074.915455718]]]},"properties":{"id_build":216,"id_source":"w144656755","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515420.6217981646,5277272.641951087],[515426.3217819973,5277275.546683132],[515424.5859324348,5277278.7651363835],[515418.81114474114,5277275.7490681885],[515420.6217981646,5277272.641951087]]]},"properties":{"id_build":217,"id_source":"w144656756","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516184.16210360033,5277115.006377013],[516183.86972478736,5277112.1159303365],[516185.0716755736,5277112.00813144],[516185.2179265107,5277113.431127026],[516185.36405379814,5277114.898578179],[516184.16210360033,5277115.006377013]]]},"properties":{"id_build":218,"id_source":"w144656757","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515654.06666222855,5277065.65589352],[515658.3466480199,5277066.000820594],[515657.4041681019,5277081.335566581],[515653.0455053021,5277082.324105205],[515654.06666222855,5277065.65589352]]]},"properties":{"id_build":219,"id_source":"w144656759","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515606.0010994042,5277205.451778047],[515607.9653545673,5277201.122593612],[515610.89073546015,5277202.464112923],[515608.85137718293,5277206.793095051],[515606.0010994042,5277205.451778047]]]},"properties":{"id_build":220,"id_source":"w144656761","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515724.6652056351,5277204.326223015],[515726.55564886157,5277199.552319853],[515729.63180691627,5277200.672026708],[515727.6659599146,5277205.55686495],[515724.6652056351,5277204.326223015]]]},"properties":{"id_build":221,"id_source":"w144656766","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516154.03330959525,5277308.972775783],[516154.1016258591,5277311.418040961],[516150.57161546877,5277311.519387816],[516150.5029894372,5277309.185261626],[516152.4258904713,5277309.068342061],[516154.03330959525,5277308.972775783]]]},"properties":{"id_build":222,"id_source":"w144656768","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.4739445069,5277160.16337086],[516159.7024049836,5277160.505749337],[516159.23359514034,5277167.061695064],[516155.9300363666,5277166.719108451],[516156.4739445069,5277160.16337086]]]},"properties":{"id_build":223,"id_source":"w144656771","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515410.2548447406,5277727.7318401765],[515421.55584393104,5277713.869290363],[515424.4032638055,5277716.2107698135],[515418.2029460424,5277723.751851971],[515413.1025565631,5277729.962175126],[515410.2548447406,5277727.7318401765]]]},"properties":{"id_build":224,"id_source":"w144656772","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.8026481104,5277493.194674936],[516178.43595841335,5277499.9787434535],[516177.00817732915,5277500.3081955565],[516176.33998791483,5277497.538957024],[516175.374865461,5277493.524127441],[516176.8026481104,5277493.194674936]]]},"properties":{"id_build":225,"id_source":"w144656781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516190.5417107792,5276900.413251257],[516180.2436314287,5276903.496540096],[516178.3854517855,5276896.489574071],[516188.4579172133,5276893.516794438],[516189.34351463977,5276896.453345428],[516190.5417107792,5276900.413251257]]]},"properties":{"id_build":226,"id_source":"w144656784","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516143.09355324064,5277029.092478339],[516140.01183764497,5277029.973053526],[516139.3408333073,5277028.192957636],[516142.2732666249,5277026.978548995],[516143.09355324064,5277029.092478339]]]},"properties":{"id_build":227,"id_source":"w144656785","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515388.85539747885,5277755.1267650705],[515391.86592790904,5277752.578508425],[515397.93063707656,5277759.374074712],[515396.3500425687,5277760.736913904],[515394.84471935075,5277762.03326869],[515388.85539747885,5277755.1267650705]]]},"properties":{"id_build":228,"id_source":"w144656790","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516229.0100771546,5277237.562791944],[516228.79096962366,5277235.339385309],[516235.6267127137,5277234.80274335],[516235.77071665035,5277237.025940829],[516229.0100771546,5277237.562791944]]]},"properties":{"id_build":229,"id_source":"w144656792","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.9210161022,5277008.025637972],[516122.725049703,5277007.474934059],[516124.3647188268,5277012.036203874],[516122.41017095867,5277012.697630278],[516120.9210161022,5277008.025637972]]]},"properties":{"id_build":230,"id_source":"w144656795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516278.3875563938,5277394.007666649],[516278.99549544073,5277391.45315038],[516281.3213894004,5277392.237632896],[516280.6386612165,5277394.680799966],[516278.3875563938,5277394.007666649]]]},"properties":{"id_build":231,"id_source":"w144656801","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515536.7157228817,5277727.512268161],[515536.49281174457,5277726.622554728],[515538.89702781854,5277726.18441227],[515539.0448439425,5277727.073925354],[515537.8802833684,5277727.29309664],[515536.7157228817,5277727.512268161]]]},"properties":{"id_build":232,"id_source":"w144656803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516027.03892089875,5277335.962205159],[516027.9281855627,5277340.299105084],[516017.1828180758,5277342.492330433],[516016.2938514905,5277338.044293198],[516027.03892089875,5277335.962205159]]]},"properties":{"id_build":233,"id_source":"w144656807","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516079.9838131099,5277281.8719676435],[516079.0210120282,5277276.9791579945],[516082.96596723807,5277276.200961122],[516083.86111334787,5277281.115812503],[516079.9838131099,5277281.8719676435]]]},"properties":{"id_build":234,"id_source":"w144656808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515975.6390140786,5277525.269856193],[515970.6795447856,5277526.367647569],[515970.3132044765,5277523.032447991],[515975.04738456296,5277521.934038116],[515975.6390140786,5277525.269856193]]]},"properties":{"id_build":235,"id_source":"w144656810","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515409.718441617,5277476.443371884],[515415.604527458,5277477.059108801],[515422.857040184,5277477.811838961],[515422.01006135845,5277485.700518481],[515408.9462840622,5277484.443390998],[515409.718441617,5277476.443371884]]]},"properties":{"id_build":236,"id_source":"w144656815","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.1062026985,5277317.016680703],[516173.3170494638,5277315.13899942],[516174.883960576,5277318.810965766],[516170.59801601997,5277320.688437339],[516169.1062026985,5277317.016680703]]]},"properties":{"id_build":237,"id_source":"w144656818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516267.90915904514,5277166.25291395],[516264.90228811867,5277167.244771853],[516264.67977646017,5277166.24389221],[516267.5358229853,5277165.473892379],[516267.90915904514,5277166.25291395]]]},"properties":{"id_build":238,"id_source":"w144656822","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515264.771619884,5277679.558442187],[515258.3841525328,5277681.208794095],[515256.7489501323,5277674.758401167],[515263.13642407325,5277673.108047467],[515264.771619884,5277679.558442187]]]},"properties":{"id_build":239,"id_source":"w144656824","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.32569932606,5277450.038484958],[516081.2025772328,5277438.804736106],[516088.4926500459,5277436.824359802],[516089.84534360515,5277441.92941556],[516091.4655626259,5277448.057697434],[516084.32569932606,5277450.038484958]]]},"properties":{"id_build":240,"id_source":"w144656833","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516153.1521906211,5277166.377982125],[516153.69547899725,5277160.044522125],[516156.4739445069,5277160.16337086],[516155.9300363666,5277166.719108451],[516153.1521906211,5277166.377982125]]]},"properties":{"id_build":241,"id_source":"w144656836","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516158.4002941879,5277548.491211817],[516159.60801564367,5277546.2717670305],[516163.3659519705,5277545.1708005285],[516160.79969569447,5277549.831549852],[516158.4002941879,5277548.491211817]]]},"properties":{"id_build":242,"id_source":"w144656837","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515211.373538131,5277710.204393273],[515207.6135686033,5277712.195086109],[515206.56746622466,5277710.191837404],[515210.3274366807,5277708.201143899],[515211.373538131,5277710.204393273]]]},"properties":{"id_build":243,"id_source":"w144656844","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516018.51823432016,5277261.097224239],[516018.72570320225,5277262.1202810025],[516019.16277342994,5277264.310937165],[516017.7198625913,5277264.662614785],[516017.09809752007,5277261.3600528445],[516018.51823432016,5277261.097224239]]]},"properties":{"id_build":244,"id_source":"w144656846","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515334.8984151101,5277211.066423092],[515340.69474327174,5277211.648504385],[515340.4325469638,5277214.248482745],[515334.6361920967,5277213.677515597],[515334.8984151101,5277211.066423092]]]},"properties":{"id_build":245,"id_source":"w144656848","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515340.69474327174,5277211.648504385],[515334.8984151101,5277211.066423092],[515335.4658278063,5277203.788266746],[515341.2775348417,5277204.237021434],[515340.69474327174,5277211.648504385]]]},"properties":{"id_build":246,"id_source":"w144656850","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516080.79214503214,5276934.78473223],[516073.45638471626,5276936.764993649],[516066.9624170493,5276938.525307456],[516064.88125088613,5276930.628644822],[516078.63589121884,5276926.88785728],[516080.79214503214,5276934.78473223]]]},"properties":{"id_build":247,"id_source":"w144656855","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515377.4667514132,5277347.324852382],[515374.990813858,5277346.429195726],[515375.6711124834,5277344.763896226],[515378.07165751804,5277345.770493768],[515377.4667514132,5277347.324852382]]]},"properties":{"id_build":248,"id_source":"w144656858","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515358.2451798635,5277602.006436774],[515354.7048094554,5277606.109269943],[515352.3072988757,5277603.991291347],[515355.92276516516,5277599.888654811],[515358.2451798635,5277602.006436774]]]},"properties":{"id_build":249,"id_source":"w144656859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516289.7734567484,5277162.868708632],[516286.61668726325,5277163.748996193],[516286.39386832976,5277162.859254633],[516289.5506382623,5277161.978966955],[516289.7734567484,5277162.868708632]]]},"properties":{"id_build":250,"id_source":"w144656867","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515873.0424989721,5277700.756869482],[515872.38633978384,5277693.530990695],[515878.8466409956,5277692.7706290325],[515879.35169276665,5277700.329515943],[515873.0424989721,5277700.756869482]]]},"properties":{"id_build":251,"id_source":"w144656869","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516119.57489226875,5277195.848108742],[516119.1022699037,5277190.234241546],[516118.6296465832,5277184.620374436],[516126.51686197636,5277184.08651506],[516127.3869910128,5277195.314042651],[516119.57489226875,5277195.848108742]]]},"properties":{"id_build":252,"id_source":"w144656870","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515635.9798770052,5277228.538131948],[515635.7560659738,5277227.9818322295],[515640.94252054597,5277226.328666191],[515641.166331147,5277226.884966107],[515635.9798770052,5277228.538131948]]]},"properties":{"id_build":253,"id_source":"w144656873","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.5280390105,5277486.706177973],[516195.7411812089,5277488.246034894],[516194.76055632636,5277484.408982708],[516200.4946327024,5277482.94677582],[516201.5280390105,5277486.706177973]]]},"properties":{"id_build":254,"id_source":"w144656877","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515703.83087862644,5276909.527471614],[515702.0268550217,5276910.078305198],[515701.73033005575,5276908.632689671],[515703.4589491285,5276908.192792335],[515703.83087862644,5276909.527471614]]]},"properties":{"id_build":255,"id_source":"w144656880","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515326.47272325045,5277518.901299633],[515330.0914427449,5277513.576118645],[515331.06595313427,5277514.245523308],[515327.3721358226,5277519.5705059925],[515326.47272325045,5277518.901299633]]]},"properties":{"id_build":256,"id_source":"w144656886","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515415.3844257619,5277693.481019908],[515418.6047396258,5277693.967449148],[515418.299355393,5277695.8560169395],[515415.0717390412,5277695.291770668],[515415.3844257619,5277693.481019908]]]},"properties":{"id_build":257,"id_source":"w144656889","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515628.6153281381,5277062.36447394],[515627.95669966633,5277055.916603156],[515654.3257352266,5277053.097802781],[515655.0597369426,5277059.4347396],[515628.6153281381,5277062.36447394]]]},"properties":{"id_build":258,"id_source":"w144656891","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515249.057203749,5277686.96362463],[515252.5948300221,5277683.860978131],[515256.1138201469,5277687.871231049],[515252.57619440934,5277690.973875428],[515249.057203749,5277686.96362463]]]},"properties":{"id_build":259,"id_source":"w144656892","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515240.2672219499,5277631.037299222],[515242.824847244,5277629.376898583],[515244.02201672527,5277631.04712978],[515241.38871401723,5277632.929611316],[515240.2672219499,5277631.037299222]]]},"properties":{"id_build":260,"id_source":"w144656896","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.0420315912,5277045.629822663],[516171.9099098308,5277037.619060442],[516183.940073611,5277032.762335213],[516187.0712546447,5277041.106520573],[516180.5529222829,5277043.555706339],[516175.0420315912,5277045.629822663]]]},"properties":{"id_build":261,"id_source":"w144656902","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.53789942345,5277290.211744121],[516081.0201781151,5277287.320679627],[516084.4015361494,5277286.663180934],[516084.9189488103,5277289.665384672],[516081.53789942345,5277290.211744121]]]},"properties":{"id_build":262,"id_source":"w144656906","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.89142670005,5277504.371655525],[516040.2437950441,5277504.153101644],[516040.91109906643,5277507.266855284],[516039.48332772,5277507.596341097],[516038.89142670005,5277504.371655525]]]},"properties":{"id_build":263,"id_source":"w144656908","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516126.1582607928,5277286.445264595],[516126.0862386048,5277285.333667167],[516128.11394887563,5277285.339283604],[516128.1111781663,5277286.339534082],[516127.0220381361,5277286.40320113],[516126.1582607928,5277286.445264595]]]},"properties":{"id_build":264,"id_source":"w144656910","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515507.7762362284,5277371.45438292],[515504.77996129077,5277368.556769463],[515509.5999344231,5277363.457178659],[515512.6716050524,5277366.243855704],[515507.7762362284,5277371.45438292]]]},"properties":{"id_build":265,"id_source":"w144656913","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.4220629415,5277211.723757573],[516199.2435058973,5277211.939975632],[516198.5898559019,5277203.936092368],[516200.76810667804,5277203.831012989],[516201.4220629415,5277211.723757573]]]},"properties":{"id_build":266,"id_source":"w144656915","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515679.0248110042,5277168.416148415],[515675.50824788556,5277166.2839112645],[515677.613136913,5277162.744220973],[515681.06243892707,5277164.754024528],[515679.0248110042,5277168.416148415]]]},"properties":{"id_build":267,"id_source":"w144656919","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516029.78717286524,5277608.873594352],[516031.25491963245,5277615.834990004],[516031.60331127886,5277617.491933038],[516031.8925134156,5277618.826407556],[516029.2629267525,5277619.263726226],[516028.7579649299,5277617.195134832],[516028.2097197617,5277614.481813237],[516027.1576430682,5277609.288686176],[516029.78717286524,5277608.873594352]]]},"properties":{"id_build":268,"id_source":"w144656921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.6231701449,5277241.465414279],[516137.6284067186,5277239.5760524],[516138.4545173987,5277239.578342115],[516138.4893878465,5277240.5453549195],[516138.52468955383,5277241.356773221],[516137.6231701449,5277241.465414279]]]},"properties":{"id_build":269,"id_source":"w144656926","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515651.3865583158,5277755.270970555],[515661.59848676214,5277755.631854135],[515661.52159849455,5277756.298486281],[515651.3844667065,5277756.048943755],[515651.3865583158,5277755.270970555]]]},"properties":{"id_build":270,"id_source":"w144656927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515591.37307701947,5276918.6721511865],[515581.3164290339,5276915.866741029],[515582.075807497,5276912.756862035],[515592.2078632314,5276915.451335704],[515591.37307701947,5276918.6721511865]]]},"properties":{"id_build":271,"id_source":"w144656938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.4396625941,5277202.757671189],[516216.6182236637,5277202.541458809],[516217.2718490575,5277210.545344134],[516215.01849911816,5277210.650208191],[516214.4396625941,5277202.757671189]]]},"properties":{"id_build":272,"id_source":"w144656942","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515717.2706770301,5276952.797072691],[515725.2924476429,5276949.817958499],[515725.8890531379,5276951.386639428],[515717.9126771475,5276954.243621663],[515717.2706770301,5276952.797072691]]]},"properties":{"id_build":273,"id_source":"w144656943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515983.29154900875,5277569.0132679045],[515980.1783648021,5277554.111984753],[515987.91822974005,5277552.354997333],[515989.91422285483,5277561.140525507],[515991.3314768188,5277567.368248702],[515983.29154900875,5277569.0132679045]]]},"properties":{"id_build":274,"id_source":"w144656944","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.26492978295,5277216.010020634],[515397.6166295872,5277225.013267567],[515388.2873647149,5277225.633214128],[515383.1194674257,5277225.975205271],[515382.61754279776,5277216.971562419],[515397.26492978295,5277216.010020634]]]},"properties":{"id_build":275,"id_source":"w144656949","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515345.0001949744,5277327.678601569],[515344.6930588767,5277330.234005865],[515343.4917553043,5277330.119700224],[515343.7234981804,5277327.67523691],[515345.0001949744,5277327.678601569]]]},"properties":{"id_build":276,"id_source":"w144656950","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515216.8103350177,5277325.230507308],[515212.64510746114,5277309.771202513],[515224.3697223375,5277306.356517298],[515226.69194700744,5277314.353535431],[515228.76109304396,5277321.483002875],[515216.8103350177,5277325.230507308]]]},"properties":{"id_build":277,"id_source":"w144656951","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sustenance","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516086.14205041673,5277010.0411100555],[516083.7614413669,5277001.810193082],[516087.3170555945,5277000.664162003],[516093.00753108464,5276998.834966499],[516095.61374744656,5277006.955371151],[516086.14205041673,5277010.0411100555]]]},"properties":{"id_build":278,"id_source":"w144656978","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516085.40056052845,5276925.01716448],[516096.8248196143,5276922.047961001],[516098.902873031,5276931.056023843],[516093.7091586118,5276932.47536966],[516087.6285332721,5276934.136777116],[516085.40056052845,5276925.01716448]]]},"properties":{"id_build":279,"id_source":"w144656991","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515702.0268550217,5276910.078305198],[515701.349409775,5276910.632176937],[515700.1459286503,5276911.295770124],[515698.9424478006,5276911.95936356],[515698.04058637196,5276912.179211601],[515697.66925493436,5276910.62225493],[515696.69228815037,5276910.841900713],[515692.2580864517,5276911.94134644],[515693.0749584345,5276915.38887817],[515697.50915767037,5276914.289433063],[515698.1788121405,5276916.625171787],[515696.9765309793,5276916.844210107],[515697.79399867874,5276920.069464769],[515699.8233340462,5276919.519237352],[515700.86401724967,5276923.523072128],[515693.5764326702,5276924.392544492],[515689.51956361765,5276924.826171091],[515687.73650523246,5276917.59728734],[515689.61533080396,5276917.157790573],[515689.22146590124,5276915.600773726],[515688.7978581596,5276913.932537084],[515684.8896956971,5276914.922266028],[515683.92350645305,5276911.140914236],[515683.6230856792,5276911.140105087],[515683.10213854734,5276909.360467031],[515683.4043554061,5276908.69444287],[515682.9579145836,5276907.137284876],[515683.7164504838,5276904.360835692],[515686.4974416249,5276903.590348782],[515686.86877650884,5276905.147304716],[515691.22757756745,5276904.158791383],[515690.93134908564,5276902.602037551],[515694.76441553136,5276901.612110232],[515695.13574833795,5276903.169066691],[515698.36737342674,5276902.399800066],[515697.69861616485,5276899.73064474],[515700.40420638944,5276899.071100884],[515704.61610070505,5276896.859664905],[515707.5885377351,5276908.648489063],[515703.83087862644,5276909.527471614],[515703.4589491285,5276908.192792335],[515701.73033005575,5276908.632689671],[515702.0268550217,5276910.078305198]]]},"properties":{"id_build":280,"id_source":"w144656992","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.699084173,5277598.649586543],[516203.551262005,5277596.229013786],[516203.8480973142,5277594.807249794],[516203.18774398684,5277594.627588104],[516203.4558089512,5277592.750070615],[516204.12398146384,5277592.818614241],[516204.3688991925,5277591.163312079],[516203.78361097525,5277590.994973247],[516204.036316729,5277589.239666884],[516204.6966706438,5277589.419328669],[516204.8587041242,5277587.863821705],[516207.6965775715,5277588.149571145],[516208.7668960116,5277581.339677839],[516211.4467911512,5277581.725015128],[516212.01735018933,5277579.092589374],[516210.83144293685,5277578.867007411],[516211.37320121145,5277575.789941993],[516212.4167659108,5277575.892873835],[516212.9275271574,5277573.160255796],[516216.8251812537,5277570.425957035],[516226.11837440165,5277571.807756881],[516225.39330957155,5277575.9845946375],[516226.8873298916,5277576.133240444],[516226.6424051558,5277577.788541633],[516227.24302315526,5277577.845785632],[516226.946181296,5277579.267548406],[516226.3377440205,5277579.321422501],[516226.17573555297,5277580.865814958],[516226.7763532389,5277580.92305891],[516226.45636315225,5277582.567036911],[516225.9461402705,5277582.410019055],[516225.73218391265,5277583.731987038],[516227.6535089845,5277584.148559639],[516227.02634873264,5277588.225644301],[516226.53687199875,5277591.402879947],[516229.72695235605,5277591.956357481],[516228.9922399852,5277596.900033059],[516230.6285661239,5277597.182444382],[516229.56821307994,5277603.103242854],[516221.48412119836,5277601.724806008],[516222.45407188125,5277595.903780086],[516219.2639620566,5277595.36142043],[516218.699084173,5277598.649586543]]]},"properties":{"id_build":281,"id_source":"w144656996","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515599.13911336544,5277187.762173167],[515601.2428521915,5277187.4343904555],[515603.4199059017,5277187.7736433325],[515605.37105876487,5277188.334571031],[515609.04656886705,5277190.011519047],[515609.49956202,5277189.123615611],[515609.801756168,5277188.457587389],[515613.62627600826,5277190.579496705],[515613.02188712044,5277191.911552777],[515616.7721962397,5277193.699846003],[515612.9229444016,5277200.802465889],[515611.9478174612,5277200.355292281],[515610.89073546015,5277202.464112923],[515607.9653545673,5277201.122593612],[515606.0010994042,5277205.451778047],[515604.201048699,5277204.557835849],[515604.80543427286,5277203.225778843],[515603.455693478,5277202.444183488],[515605.79634882766,5277197.782587856],[515605.07623828854,5277197.4583526235],[515604.29610603687,5277197.111728673],[515603.0143174581,5277198.997669058],[515601.7393791256,5277198.327414294],[515601.211584179,5277199.103978179],[515596.48644282453,5277196.75738502],[515597.1659289502,5277195.425528411],[515597.8412472183,5277195.649616916],[515598.74693162873,5277193.984947264],[515593.57236625947,5277191.192593606],[515596.131773806,5277188.976654041],[515599.13911336544,5277187.762173167]]]},"properties":{"id_build":282,"id_source":"w144657001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515746.43986055435,5277000.632609263],[515746.4582743069,5277002.155273064],[515749.4671800388,5277003.185895923],[515751.67094437784,5277002.0026620645],[515758.25233387324,5277003.954300183],[515757.09205486666,5277008.085557518],[515756.0638525606,5277007.816039931],[515755.2066677793,5277010.958974372],[515755.8220386712,5277011.138462976],[515754.5869596307,5277015.158378731],[515748.4255321196,5277013.441273859],[515747.5144345591,5277011.5272067785],[515746.0553752248,5277012.279011091],[515745.10020346957,5277012.776556925],[515745.7345894159,5277014.256430491],[515739.8682864277,5277017.2746844115],[515739.2479888331,5277016.139382667],[515738.9311708494,5277016.649768986],[515736.607156988,5277015.087531826],[515734.87256053515,5277017.750197304],[515733.7481053548,5277016.969180883],[515731.03325814754,5277021.074015131],[515728.6344403663,5277019.400439346],[515734.7121626036,5277010.403429061],[515733.1275869896,5277007.576198813],[515739.4460221784,5277004.003461682],[515741.20970425516,5277004.475015995],[515743.05260660785,5277003.424171018],[515743.1984893305,5277002.246484525],[515746.43986055435,5277000.632609263]]]},"properties":{"id_build":283,"id_source":"w144657008","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515526.61548757093,5277234.691571468],[515527.0681683187,5277233.914800531],[515528.1946837094,5277233.917804766],[515529.3209026787,5277234.0319481585],[515529.76943381276,5277234.811122571],[515529.9175608069,5277235.589495764],[515529.53968437563,5277236.477605728],[515530.3646095295,5277236.924364918],[515528.2528898228,5277240.252924579],[515529.30222808843,5277241.033701321],[515526.88832863804,5277245.028293928],[515525.6887889894,5277244.247117103],[515523.9546530818,5277246.798707066],[515522.08009443537,5277245.682312082],[515521.52177038067,5277246.647739329],[515520.7974543655,5277247.901687449],[515522.67171624163,5277249.129220968],[515521.2385788222,5277251.459334755],[515520.18894512486,5277250.789698396],[515518.60531133076,5277253.230551403],[515515.0812017091,5277251.109504756],[515514.25183536997,5277252.3298318405],[515512.5978414033,5277252.992263302],[515511.096714037,5277252.65484489],[515509.8983580761,5277251.429115541],[515510.0521123448,5277250.095848353],[515510.73098038044,5277248.986259479],[515511.5573856083,5277248.877321309],[515512.15996884386,5277248.212088297],[515511.1857304468,5277247.43151471],[515511.78920205333,5277246.43286484],[515510.5145598111,5277245.651491063],[515511.79749252764,5277243.320974505],[515510.7487444801,5277242.317923037],[515510.676604231,5277241.206333573],[515510.90545987873,5277239.873266494],[515511.5077478787,5277239.319172361],[515512.5600495702,5277238.98855668],[515516.61461288226,5277239.332779668],[515517.2934834113,5277238.223191575],[515516.47211157077,5277236.442766968],[515517.15305573377,5277234.555206291],[515518.4312541031,5277234.0029142415],[515519.556584531,5277234.450472558],[515522.27148012305,5277230.234399948],[515526.39522274403,5277232.8016087115],[515525.64095247147,5277234.022134418],[515526.61548757093,5277234.691571468]]]},"properties":{"id_build":284,"id_source":"w144657022","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515283.0537452079,5277260.420621023],[515283.4728251976,5277255.264838489],[515285.4325461329,5277255.42557853],[515288.87896977656,5277255.7013626145],[515288.45237495855,5277260.857125053],[515283.0537452079,5277260.420621023]]]},"properties":{"id_build":285,"id_source":"w144657044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516283.3405240204,5276992.473442348],[516284.16791303473,5276992.031197094],[516284.21580388106,5276991.019959225],[516284.2479901286,5276990.253184904],[516283.8724691714,5276990.252134745],[516283.9584514333,5276986.362483672],[516291.5433579086,5276986.605979458],[516291.766183017,5276987.495720955],[516294.92242661346,5276986.837713982],[516294.6992909543,5276986.059111257],[516296.87855826895,5276985.620651008],[516297.3232736911,5276987.733551083],[516301.6070147099,5276986.745284223],[516302.57901358546,5276988.303962097],[516303.8392926251,5276994.197897947],[516293.76911794767,5276996.392505978],[516293.6223305817,5276995.169557879],[516286.1876436001,5276994.926479473],[516286.0997948655,5276999.48296391],[516280.456424407,5277003.245934548],[516276.41758273804,5276997.23309663],[516283.3405240204,5276992.473442348]]]},"properties":{"id_build":286,"id_source":"w144657048","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515674.27185167844,5277176.405412347],[515667.4483563139,5277172.38601733],[515672.20160862996,5277164.285608966],[515675.50824788556,5277166.2839112645],[515679.0248110042,5277168.416148415],[515674.27185167844,5277176.405412347]]]},"properties":{"id_build":287,"id_source":"w144657052","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516195.7894600067,5277011.901007267],[516203.89975437475,5277012.256990142],[516203.5832566728,5277018.0353766475],[516203.5050601455,5277019.146556597],[516195.16946389485,5277018.789947586],[516195.7894600067,5277011.901007267]]]},"properties":{"id_build":288,"id_source":"w144657056","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516153.6901375674,5277053.6837513065],[516151.43518681993,5277054.344334585],[516150.5410365178,5277051.78564005],[516151.66974540404,5277051.010792526],[516152.04402925837,5277051.456389772],[516153.6901375674,5277053.6837513065]]]},"properties":{"id_build":289,"id_source":"w144657058","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.7220359426,5277554.968756755],[516175.3453489611,5277558.207433205],[516172.1302307424,5277563.955545414],[516166.52218778746,5277560.628002547],[516169.7220359426,5277554.968756755]]]},"properties":{"id_build":290,"id_source":"w144657061","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516144.62837362266,5276990.19782182],[516148.3103280957,5276989.541193078],[516148.82681077166,5276992.8768177815],[516142.1388439816,5276994.191950709],[516141.6226656873,5276990.745187712],[516144.62837362266,5276990.19782182]]]},"properties":{"id_build":291,"id_source":"w144657063","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515943.91698706447,5277522.782276181],[515929.6363354237,5277524.443624138],[515925.2116761932,5277524.9538765075],[515924.5516083049,5277519.17280054],[515928.14992719545,5277518.760312667],[515943.256937478,5277517.001198069],[515943.91698706447,5277522.782276181]]]},"properties":{"id_build":292,"id_source":"w144657064","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516230.4282191401,5277545.135091832],[516230.6696218743,5277539.356492635],[516238.47879102314,5277539.711688226],[516238.1673133604,5277546.379210505],[516238.0794369603,5277548.268342879],[516230.34537626826,5277547.913357144],[516230.4282191401,5277545.135091832]]]},"properties":{"id_build":293,"id_source":"w144657068","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516266.6339667567,5277380.749177109],[516273.8397577512,5277382.102991664],[516274.29004191514,5277382.215390109],[516272.99347616336,5277389.324714977],[516265.3383415093,5277387.525086767],[516266.6339667567,5277380.749177109]]]},"properties":{"id_build":294,"id_source":"w144657069","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516172.40766282106,5276993.609101196],[516166.47042412247,5276995.037431046],[516165.5024011093,5276992.033970382],[516164.5386964057,5276987.474565439],[516170.9268764152,5276985.936346146],[516172.40766282106,5276993.609101196]]]},"properties":{"id_build":295,"id_source":"w144657073","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516212.3293766663,5277086.744094369],[516208.2747457679,5277086.399387147],[516208.5832012584,5277083.510611823],[516208.8922757992,5277080.3995587155],[516212.94691084273,5277080.744266353],[516212.3293766663,5277086.744094369]]]},"properties":{"id_build":296,"id_source":"w144657076","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515664.21071412123,5277231.281366474],[515664.70365512796,5277229.504456795],[515665.04489915195,5277228.282837731],[515668.1216517962,5277229.180234272],[515667.8939559897,5277230.068739487],[515667.2874653036,5277232.178762584],[515664.21071412123,5277231.281366474]]]},"properties":{"id_build":297,"id_source":"w144657079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515658.5530349462,5277463.992808077],[515658.1715665703,5277466.214577757],[515657.7909951666,5277468.102930531],[515651.8612402751,5277466.975588302],[515652.6983740826,5277462.865666991],[515658.5530349462,5277463.992808077]]]},"properties":{"id_build":298,"id_source":"w144657081","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.0420445465,5277581.302130545],[516085.9768740229,5277586.300480282],[516080.566549475,5277587.508072126],[516078.6281602426,5277582.390285643],[516079.23660642636,5277579.613470017],[516087.0420445465,5277581.302130545]]]},"properties":{"id_build":299,"id_source":"w144657089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.370649024,5276947.047104922],[516212.84101381036,5276956.934283065],[516204.05717542785,5276955.687295845],[516203.76696273533,5276952.018876707],[516203.9354190712,5276945.462100635],[516214.370649024,5276947.047104922]]]},"properties":{"id_build":300,"id_source":"w144657094","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516089.9070702359,5277359.808379536],[516096.29359338345,5277358.714634263],[516096.3686928165,5277358.714841885],[516097.0362914039,5277361.717462318],[516090.49957264255,5277362.810791678],[516089.9070702359,5277359.808379536]]]},"properties":{"id_build":301,"id_source":"w144657101","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516286.82573460776,5276909.106147936],[516286.8008095026,5276909.961854252],[516283.76693128824,5276909.82000178],[516283.7780159062,5276908.541925723],[516285.33257014997,5276908.59072901],[516286.90214541747,5276908.639574728],[516286.82573460776,5276909.106147936]]]},"properties":{"id_build":302,"id_source":"w144657103","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515680.4204444778,5277673.5946444925],[515680.7172336729,5277674.929121735],[515670.34779421473,5277677.235137045],[515667.9713649955,5277667.337296953],[515678.3408210902,5277665.031277407],[515680.4204444778,5277673.5946444925]]]},"properties":{"id_build":303,"id_source":"w144657105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516228.0297733412,5277058.447189608],[516223.0738838287,5277058.099960479],[516223.76684493787,5277051.989204195],[516227.2976335904,5277051.665623597],[516228.4241845499,5277051.66876323],[516228.0297733412,5277058.447189608]]]},"properties":{"id_build":304,"id_source":"w144657113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.4982159386,5277233.31764429],[515672.09512924997,5277231.747142175],[515672.24652796594,5277231.302990721],[515672.6259223258,5277229.859195294],[515678.0287113681,5277231.54083683],[515677.4982159386,5277233.31764429]]]},"properties":{"id_build":305,"id_source":"w144657118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516033.88091895904,5277551.258861849],[516031.2056926401,5277551.89610575],[516030.46931420936,5277552.04967387],[516029.6315818996,5277548.101903227],[516033.0581164208,5277547.344473774],[516033.88091895904,5277551.258861849]]]},"properties":{"id_build":306,"id_source":"w144657120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515342.840311375,5277491.826309444],[515352.8110131357,5277498.409839686],[515351.0738046111,5277502.184010683],[515348.8135527506,5277504.956545423],[515338.6926625497,5277498.3726262385],[515342.840311375,5277491.826309444]]]},"properties":{"id_build":307,"id_source":"w144657123","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.9665685445,5277221.5474064015],[516129.7948369568,5277220.771722366],[516129.79699213314,5277219.99374985],[516133.1765471786,5277220.003113034],[516133.2476450748,5277221.448127226],[516131.2122484743,5277221.498057716],[516128.9665685445,5277221.5474064015]]]},"properties":{"id_build":308,"id_source":"w144657124","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.2115954797,5277219.56960047],[516169.23790148745,5277220.914464951],[516168.32911509136,5277220.934169258],[516167.58555136836,5277220.954332486],[516167.57238274754,5277220.287457196],[516167.5592449819,5277219.609468016],[516169.2115954797,5277219.56960047]]]},"properties":{"id_build":309,"id_source":"w144657126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516229.78623630805,5277559.914902383],[516229.95254099194,5277554.136093679],[516229.9550196054,5277553.246981773],[516237.83957705577,5277553.491246925],[516237.5205910549,5277560.158748432],[516229.78623630805,5277559.914902383]]]},"properties":{"id_build":310,"id_source":"w144657130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515443.60208971,5277754.160343883],[515444.50499057706,5277753.495900327],[515447.12532948924,5277756.503627616],[515438.84697896766,5277763.261195913],[515436.2266388647,5277760.253472323],[515443.60208971,5277754.160343883]]]},"properties":{"id_build":311,"id_source":"w144657131","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516148.3103280957,5276989.541193078],[516144.62837362266,5276990.19782182],[516142.8591488171,5276978.189824463],[516151.57556838123,5276976.658038935],[516152.5885285189,5276982.417887461],[516153.6458091775,5276988.444594565],[516148.3103280957,5276989.541193078]]]},"properties":{"id_build":312,"id_source":"w144657132","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515613.15821110987,5277729.161598536],[515612.3640260484,5277728.481515704],[515611.210220932,5277727.489277104],[515613.01755993924,5277725.6047469685],[515614.2941696052,5277725.608170872],[515614.4383971142,5277727.831354179],[515613.15821110987,5277729.161598536]]]},"properties":{"id_build":313,"id_source":"w144657143","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515958.86318089085,5277576.948321517],[515958.10764515656,5277578.61334794],[515961.70832037943,5277580.06803655],[515959.89442498726,5277584.286377262],[515953.5188346576,5277581.490407072],[515953.2166211579,5277582.156417908],[515953.0664280636,5277582.1560063455],[515953.36864154786,5277581.489995503],[515952.09352273465,5277580.930802339],[515951.2619793799,5277582.929040874],[515942.33583904663,5277579.125836827],[515944.5273371282,5277574.13054608],[515935.30140052666,5277570.104252256],[515934.861467137,5277566.213154206],[515933.98099017976,5277558.653236264],[515933.17378283956,5277551.760358018],[515931.07046033116,5277551.976881745],[515931.07137269457,5277551.643464772],[515933.0995983805,5277551.426735524],[515932.2188126082,5277543.977957021],[515931.33802450966,5277536.52917875],[515930.0607650239,5277536.747963394],[515930.05985272257,5277537.081380355],[515929.7594642124,5277537.080558434],[515929.76068059163,5277536.636002482],[515929.0094051806,5277536.745086741],[515928.93491620757,5277536.522603296],[515929.68588755105,5277536.52465802],[515929.5399505457,5277534.96830124],[515929.84033916384,5277534.969123147],[515929.8397309714,5277535.191401124],[515930.96649236523,5277535.083344428],[515930.6004340153,5277531.637008369],[515938.2630864694,5277530.657722386],[515938.11654308863,5277529.323643373],[515944.65243691317,5277528.452421103],[515945.5322961044,5277536.234618294],[515947.00014332955,5277548.686298849],[515945.19720707496,5277548.903640285],[515945.5644732139,5277551.905421418],[515947.3674085554,5277551.688080092],[515947.4415921958,5277552.021702771],[515948.7625866074,5277563.250443766],[515948.9878769772,5277563.251060942],[515950.5655185629,5277563.033103435],[515950.41745641665,5277562.254718999],[515950.64274682524,5277562.255336242],[515950.7901999459,5277563.2559986655],[515948.98726805,5277563.473338929],[515949.0602335781,5277564.2515176],[515956.26099531417,5277567.383163734],[515961.96164366795,5277569.843866764],[515958.86318089085,5277576.948321517]]]},"properties":{"id_build":314,"id_source":"w144657147","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.8638352594,5277353.726982747],[516037.5679393721,5277355.062787],[516037.1832078955,5277352.961185077],[516035.28173944255,5277342.575490858],[516043.27641408925,5277341.11935535],[516044.0606489141,5277345.411512517],[516045.01510005124,5277350.615485243],[516044.31630685105,5277350.746927312],[516044.8638352594,5277353.726982747]]]},"properties":{"id_build":315,"id_source":"w144657149","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515610.9932120228,5277108.2179026585],[515605.7464519374,5277104.313948216],[515616.9775914281,5277089.117919431],[515615.5676254782,5277082.779174452],[515621.13001641014,5277081.015859031],[515622.0735373736,5277084.852710391],[515623.21023721836,5277089.468058244],[515617.3128670431,5277098.521238367],[515610.9932120228,5277108.2179026585]]]},"properties":{"id_build":316,"id_source":"w144657150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516273.8397577512,5277382.102991664],[516266.6339667567,5277380.749177109],[516261.9803025882,5277379.847058549],[516262.89422053733,5277375.292878489],[516264.79840187903,5277365.7401728695],[516276.80746198725,5277368.218809418],[516275.07251864433,5277376.327166594],[516273.8397577512,5277382.102991664]]]},"properties":{"id_build":317,"id_source":"w144657151","height_wall":6.0,"height_roof":6.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515305.61087335896,5277598.75590897],[515307.959315171,5277590.982299484],[515320.04077155865,5277594.459412032],[515318.0926645799,5277601.344951896],[515317.08452708455,5277604.898772195],[515307.1651031153,5277607.428897583],[515309.5129590734,5277599.877566627],[515305.61087335896,5277598.75590897]]]},"properties":{"id_build":318,"id_source":"w144657155","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516057.48228195467,5277622.697915106],[516060.62111822865,5277614.60447859],[516068.9405058595,5277617.806034932],[516066.14958554803,5277625.000194404],[516062.698818698,5277623.668108265],[516060.40330277407,5277622.783770423],[516060.05534701806,5277623.694157287],[516057.48228195467,5277622.697915106]]]},"properties":{"id_build":319,"id_source":"w144657160","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9300363666,5277166.719108451],[516159.23359514034,5277167.061695064],[516159.07321293285,5277170.728862618],[516151.56549331703,5277169.818913578],[516151.950559973,5277166.3746486725],[516153.1521906211,5277166.377982125],[516155.9300363666,5277166.719108451]]]},"properties":{"id_build":320,"id_source":"w144657163","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.6565832165,5277633.823662392],[516050.12545618636,5277632.635758645],[516052.8109780422,5277633.698991601],[516049.70299767074,5277641.5035539195],[516041.6989747825,5277638.3251217725],[516044.338074014,5277631.708459409],[516046.8960568544,5277632.726882201],[516049.6565832165,5277633.823662392]]]},"properties":{"id_build":321,"id_source":"w144657167","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515670.344474007,5277240.41133021],[515669.9656790949,5277241.632847933],[515667.489441804,5277240.848205979],[515667.7171371401,5277239.959700735],[515667.9445334747,5277239.182334441],[515670.496171485,5277239.856039769],[515670.344474007,5277240.41133021]]]},"properties":{"id_build":322,"id_source":"w144657170","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516097.66337777965,5277678.13430061],[516093.3595953195,5277686.569031135],[516084.13639569137,5277681.653388009],[516084.99708781333,5277679.9886681],[516085.5708828344,5277678.878854898],[516083.0213269445,5277677.538132592],[516086.94071768015,5277672.325388286],[516097.66337777965,5277678.13430061]]]},"properties":{"id_build":323,"id_source":"w144657175","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515571.1596780821,5277540.222586509],[515573.6864954961,5277541.707504383],[515581.95670208655,5277546.586441878],[515577.4309586085,5277554.020696657],[515564.23440559034,5277546.316756746],[515562.67578806286,5277539.421923407],[515570.41613819206,5277537.442103247],[515571.1596780821,5277540.222586509]]]},"properties":{"id_build":324,"id_source":"w144657185","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9361213361,5277408.11476621],[516166.4481013852,5277408.810784322],[516166.37176820065,5277409.255131651],[516166.0571777767,5277414.366689885],[516165.8238583064,5277417.255677397],[516160.665627863,5277416.863481915],[516155.0869057627,5277416.447896257],[516155.9361213361,5277408.11476621]]]},"properties":{"id_build":325,"id_source":"w144657186","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516019.6855395455,5277584.717330156],[516021.16130368935,5277591.500921227],[516007.7785928481,5277594.387086292],[516006.0209611546,5277586.324615594],[516010.9727849318,5277585.260175372],[516015.87955262756,5277584.195615401],[516016.1538936512,5277585.474478239],[516019.6855395455,5277584.717330156]]]},"properties":{"id_build":326,"id_source":"w144657189","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516016.15834508365,5277551.09893994],[516015.4913387771,5277547.874049953],[516019.47395632474,5277546.984774471],[516019.60003101407,5277547.563048496],[516021.6289038559,5277547.112958199],[516022.21492126136,5277549.748584908]]]},"properties":{"id_build":327,"id_source":"w144657200","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515596.1081763767,5276889.343956598],[515602.4876747374,5276891.028141497],[515600.6820021225,5276897.80282389],[515600.0598855875,5276900.135090427],[515597.3578797232,5276899.461014327],[515598.723768471,5276894.241108275],[515595.04598456976,5276893.34214012],[515596.1081763767,5276889.343956598]]]},"properties":{"id_build":328,"id_source":"w144657203","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515327.4251495757,5277727.624311448],[515324.2644454532,5277730.172205936],[515320.27565630386,5277733.495901435],[515315.1855984231,5277727.258679862],[515323.31337340845,5277720.611680005],[515325.70587226,5277724.61901057],[515327.4251495757,5277727.624311448]]]},"properties":{"id_build":329,"id_source":"w144657204","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516257.2063854118,5276884.03916631],[516257.6675686259,5276880.261702833],[516255.8659647755,5276879.923253988],[516256.71074277686,5276873.2572281975],[516263.01744877803,5276874.052816441],[516261.7111671887,5276884.60744334],[516257.2063854118,5276884.03916631]]]},"properties":{"id_build":330,"id_source":"w144657206","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515575.5972695869,5277116.569730071],[515585.86757578986,5277123.599013977],[515581.0487223889,5277130.988022146],[515575.1590292169,5277140.019037627],[515569.011640958,5277135.890427592],[515576.55219608516,5277124.574343932],[515572.3544848534,5277121.562343677],[515575.5972695869,5277116.569730071]]]},"properties":{"id_build":331,"id_source":"w144657207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515556.067935968,5277454.826892765],[515553.2937569035,5277453.152384525],[515553.89780852257,5277451.931460771],[515545.6503588179,5277446.908143696],[515550.7036135402,5277438.808435609],[515556.82875767566,5277442.714690805],[515561.7243611771,5277445.839687591],[515556.067935968,5277454.826892765]]]},"properties":{"id_build":332,"id_source":"w144657213","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.55907598545,5277509.912218195],[516164.92762872216,5277507.432046552],[516165.4762109027,5277507.3002019245],[516165.3127553147,5277506.666251003],[516165.86887819064,5277506.523313366],[516166.29984560946,5277508.180493626],[516166.678861768,5277509.615249985],[516165.55907598545,5277509.912218195]]]},"properties":{"id_build":333,"id_source":"w144657223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516226.3285654805,5276968.1969663035],[516226.6289833758,5276968.197803458],[516223.879393422,5276984.638824925],[516212.6944283651,5276982.607156626],[516216.13181311614,5276961.9002791755],[516217.04842006817,5276956.390300449],[516228.0841540754,5276958.088141642],[516226.3285654805,5276968.1969663035]]]},"properties":{"id_build":334,"id_source":"w144657224","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516060.76736155193,5277645.979661349],[516052.6581554361,5277642.823151848],[516055.4488361189,5277635.70678307],[516058.20191119943,5277636.7813188145],[516060.70744496846,5277637.755147095],[516061.0326566263,5277636.922495405],[516063.8832626905,5277638.03064487],[516060.76736155193,5277645.979661349]]]},"properties":{"id_build":335,"id_source":"w144657227","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516124.10345347755,5277486.046676311],[516126.3289892113,5277495.94428529],[516118.73950969864,5277497.590365662],[516116.4089479117,5277487.648012955],[516115.3253179447,5277483.0215965],[516123.66671731765,5277481.044174476],[516124.8547392054,5277485.937617216],[516124.10345347755,5277486.046676311]]]},"properties":{"id_build":336,"id_source":"w144657228","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.8026481104,5277493.194674936],[516183.4161886898,5277491.434817425],[516186.16328793304,5277502.778717596],[516178.04749944474,5277504.64553718],[516177.00817732915,5277500.3081955565],[516178.43595841335,5277499.9787434535],[516176.8026481104,5277493.194674936]]]},"properties":{"id_build":337,"id_source":"w144657231","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.83825201914,5277526.159113887],[516127.9020138977,5277524.511580002],[516130.79200897797,5277538.523206161],[516122.450689329,5277540.500617976],[516121.7098744832,5277536.830951838],[516122.83756264707,5277536.389515314],[516122.1118900469,5277532.675435146],[516120.83825201914,5277526.159113887]]]},"properties":{"id_build":338,"id_source":"w144657234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516001.5355586594,5277622.610556863],[515999.93452944007,5277614.948621506],[516012.07712427917,5277612.414675152],[516013.91535798693,5277621.199778778],[516010.45895324677,5277621.912681276],[516010.22167175735,5277620.811744292],[516006.4646997488,5277621.590506493],[516001.5355586594,5277622.610556863]]]},"properties":{"id_build":339,"id_source":"w144657235","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516141.7306868707,5277114.332894997],[516138.12822696875,5277113.4337912295],[516139.19229342684,5277108.880010101],[516139.2680121876,5277108.657940447],[516143.0957828228,5277109.557669549],[516142.03171342827,5277114.111449977],[516141.7306868707,5277114.332894997]]]},"properties":{"id_build":340,"id_source":"w144657238","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515552.3884753124,5277314.1141296],[515551.86574396386,5277313.001335872],[515554.0466131695,5277311.895764079],[515554.56964111555,5277312.897419049],[515555.0917781156,5277314.232490924],[515554.04640373454,5277314.785396897],[515552.98600955814,5277315.338262937],[515552.3884753124,5277314.1141296]]]},"properties":{"id_build":341,"id_source":"w144657243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515248.3901008867,5277282.190918067],[515257.849838266,5277283.32709717],[515256.6237695255,5277292.659620261],[515251.16526149237,5277292.156304916],[515244.0849358153,5277291.515380592],[515244.4744046987,5277286.181694107],[515247.9278562943,5277286.6352959825],[515248.3901008867,5277282.190918067]]]},"properties":{"id_build":342,"id_source":"w144657264","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.7955356759,5277147.987230883],[516293.4979260474,5277146.986139997],[516303.3444011681,5277144.124067225],[516303.9402396403,5277145.903972187],[516295.9722540399,5277148.437881659],[516295.6746448076,5277147.436790657],[516293.7955356759,5277147.987230883]]]},"properties":{"id_build":343,"id_source":"w144657266","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515525.17337444925,5277719.145989136],[515525.7637585937,5277723.037457113],[515525.91098400066,5277724.149247901],[515519.3008725149,5277724.798461665],[515517.94857552066,5277725.0171364695],[515517.0607697375,5277720.0134784],[515525.17337444925,5277719.145989136]]]},"properties":{"id_build":344,"id_source":"w144657272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516021.16130368935,5277591.500921227],[516019.6855395455,5277584.717330156],[516023.48036068305,5277583.838654721],[516023.25034499046,5277582.826649139],[516027.6011577597,5277581.849480791],[516034.00339381193,5277580.411177852],[516035.78406860825,5277588.273668863],[516021.16130368935,5277591.500921227]]]},"properties":{"id_build":345,"id_source":"w144657273","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516116.72826137656,5277573.048747366],[516112.2249218914,5277572.147163719],[516114.50643133174,5277561.81747294],[516123.5804343323,5277563.720859461],[516130.56791153323,5277565.1961472845],[516128.6661685627,5277573.970926204],[516116.957551112,5277571.604564145],[516116.72826137656,5277573.048747366]]]},"properties":{"id_build":346,"id_source":"w144657276","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515540.5474416603,5277389.21298388],[515544.3006124925,5277389.889841553],[515542.3195563083,5277400.553969624],[515536.20923614537,5277399.515175536],[515529.70857739996,5277398.408662846],[515531.30759351683,5277390.18858613],[515540.09032139217,5277391.656838424],[515540.5474416603,5277389.21298388]]]},"properties":{"id_build":347,"id_source":"w144657278","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.81823763635,5277635.9268748155],[516075.62994743645,5277634.7288736915],[516075.99304692354,5277633.774073613],[516072.39966666535,5277632.4193598945],[516067.800980992,5277630.706226195],[516070.4184742186,5277623.767210379],[516081.79884251195,5277628.033064159],[516078.81823763635,5277635.9268748155]]]},"properties":{"id_build":348,"id_source":"w144657280","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516085.00773505867,5277175.969633571],[516086.55069759086,5277188.343752934],[516088.24066259316,5277201.8741328325],[516080.8779574081,5277202.85405162],[516077.3482731307,5277175.6150599085],[516077.64868030726,5277175.6158894],[516084.8612157215,5277174.635551557],[516085.00773505867,5277175.969633571]]]},"properties":{"id_build":349,"id_source":"w144657284","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516249.4081167436,5277040.946726895],[516245.1281453751,5277040.601365351],[516245.2885847299,5277036.934200788],[516250.4698017895,5277037.282077574],[516250.30904901214,5277041.060380902],[516250.2339454788,5277041.060171304],[516249.4081167436,5277040.946726895]]]},"properties":{"id_build":350,"id_source":"w144657290","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.0887155148,5276953.136847694],[516136.90735800785,5276952.344452024],[516141.0338394421,5276951.188921693],[516143.4362424298,5276959.664429573],[516133.1613478102,5276962.558928029],[516130.92265275226,5276954.628462628],[516134.2448956067,5276953.692979116],[516134.0887155148,5276953.136847694]]]},"properties":{"id_build":351,"id_source":"w144657295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.01941954694,5276959.711964022],[516044.84410765534,5276962.97063042],[516045.74310305837,5276966.518465023],[516036.82195597974,5276968.761139317],[516033.8946669797,5276957.194546287],[516044.71729476715,5276954.479205668],[516045.92091289314,5276959.228188685],[516044.01941954694,5276959.711964022]]]},"properties":{"id_build":352,"id_source":"w144657299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.49284776073,5277268.667075628],[516088.462198203,5277268.469702426],[516087.5435717973,5277263.899318891],[516086.52112327924,5277258.850747619],[516094.8619730124,5277257.184473338],[516097.60312106623,5277270.7844473645],[516088.3004502265,5277272.6481115315],[516087.49284776073,5277268.667075628]]]},"properties":{"id_build":353,"id_source":"w144657303","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.9371355099,5276914.734737209],[516156.5507515723,5276913.233278757],[516153.5970214851,5276913.980834343],[516149.4407465462,5276915.036247463],[516147.2787318509,5276906.539176392],[516158.13915270596,5276903.790808926],[516160.6800251445,5276913.789321885],[516156.9371355099,5276914.734737209]]]},"properties":{"id_build":354,"id_source":"w144657304","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516277.56259540806,5277151.831720558],[516287.48508918105,5277148.6364141805],[516287.93228224094,5277149.860202771],[516286.12827676005,5277150.410855556],[516286.3517179542,5277151.078319251],[516278.2332323158,5277153.722971769],[516277.56259540806,5277151.831720558]]]},"properties":{"id_build":355,"id_source":"w144657310","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516093.6991157111,5277639.813431562],[516089.2357067145,5277638.067312861],[516086.25011716696,5277636.892094065],[516085.8720277282,5277637.835738113],[516081.7461778321,5277636.223925707],[516085.156921554,5277627.57555397],[516096.73926245724,5277632.119844744],[516093.6991157111,5277639.813431562]]]},"properties":{"id_build":356,"id_source":"w144657313","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516108.10674440395,5276970.53608259],[516095.02843438333,5276974.1675299965],[516093.4597656727,5276968.361700074],[516092.3520119575,5276964.268696326],[516100.5445506709,5276962.068548221],[516100.69353056286,5276962.513519095],[516105.5039100617,5276961.193145069],[516108.10674440395,5276970.53608259]]]},"properties":{"id_build":357,"id_source":"w144657314","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.0386219565,5277282.105446985],[516083.86111334787,5277281.115812503],[516082.96596723807,5277276.200961122],[516082.7070756541,5277274.766542731],[516085.33682184695,5277274.329248075],[516086.7437724364,5277281.557221485],[516084.0386219565,5277282.105446985]]]},"properties":{"id_build":358,"id_source":"w144657315","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515303.9926307106,5277557.296521115],[515309.4910669474,5277551.087150599],[515315.93419913366,5277556.883365067],[515311.67895036296,5277561.540042307],[515307.1224448198,5277566.529349877],[515298.13186409924,5277558.503655296],[515301.295278247,5277554.95549616],[515303.9926307106,5277557.296521115]]]},"properties":{"id_build":359,"id_source":"w144657318","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.35004770063,5277071.423437108],[516175.8870814024,5277065.859606319],[516194.83998338575,5277056.243129572],[516197.5251539558,5277062.918984103],[516190.9831361814,5277065.790423388],[516193.14691185474,5277070.90886953],[516178.35004770063,5277071.423437108]]]},"properties":{"id_build":360,"id_source":"w144657324","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.21965592814,5277379.686690198],[516087.0443977925,5277379.327733036],[516095.188127671,5277378.272184073],[516096.4420763797,5277386.49999652],[516079.16315057606,5277388.675047906],[516078.2126437001,5277379.336679158],[516083.9226365227,5277378.463331798],[516084.21965592814,5277379.686690198]]]},"properties":{"id_build":361,"id_source":"w144657326","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.6084623813,5277718.887306964],[516047.53378905164,5277720.117908537],[516047.38237408164,5277720.562050611],[516047.08015691256,5277721.228056728],[516044.3798087214,5277720.109215278],[516044.3813402239,5277719.553520185],[516044.6084623813,5277718.887306964]]]},"properties":{"id_build":362,"id_source":"w144657327","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515348.15218823036,5277641.879000833],[515351.0131534606,5277639.108049451],[515359.17631091794,5277647.576203801],[515359.02582633705,5277647.686946575],[515357.1434502778,5277649.571357104],[515351.2270114894,5277643.443064945],[515350.3989070524,5277644.218859881],[515348.15218823036,5277641.879000833]]]},"properties":{"id_build":363,"id_source":"w144657335","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516257.46405438555,5277033.856268749],[516258.83205666963,5277028.080820717],[516261.0978928849,5277023.530417668],[516265.5224952644,5277025.876710613],[516264.56324525503,5277027.818976979],[516263.19086509733,5277027.092735322],[516259.2187793678,5277034.8280841615],[516257.46405438555,5277033.856268749]]]},"properties":{"id_build":364,"id_source":"w144657336","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516061.1647525513,5276973.75172193],[516063.31935658585,5276982.248740983],[516051.2190800884,5276985.293944096],[516047.34097494173,5276986.2723988425],[516045.9442363721,5276980.744904985],[516049.78473152814,5276979.788573582],[516049.0269074015,5276976.796826019],[516056.03153674374,5276975.037900401],[516061.1647525513,5276973.75172193]]]},"properties":{"id_build":365,"id_source":"w144657342","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.5615497224,5277509.884127351],[516005.2189062668,5277503.834429826],[516015.95676782413,5277501.530022887],[516017.7439008943,5277509.792628291],[516013.160203342,5277510.7802775875],[516010.8833746483,5277511.274144894],[516011.3432021378,5277513.375952137],[516007.50340080215,5277514.2100559985],[516006.5615497224,5277509.884127351]]]},"properties":{"id_build":366,"id_source":"w144657344","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.93797739083,5277118.168475768],[516072.2491367959,5277118.364003364],[516071.7982148362,5277118.473898473],[516070.99079871445,5277111.692144576],[516070.9172298338,5277111.136242729],[516078.57984590024,5277110.379418583],[516081.20905203413,5277110.16439983],[516081.93797739083,5277118.168475768]]]},"properties":{"id_build":367,"id_source":"w144657348","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.39526110794,5276984.073272857],[516182.7989065447,5276983.968812689],[516183.5502581214,5276983.859761103],[516187.23407484434,5276982.536323628],[516190.1089047931,5276991.246558391],[516192.670946905,5276999.000123051],[516185.6803982525,5277001.092342822],[516185.6052942043,5277001.09213406],[516180.39526110794,5276984.073272857]]]},"properties":{"id_build":368,"id_source":"w144657350","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516185.6052942043,5277001.09213406],[516185.6803982525,5277001.092342822],[516192.670946905,5276999.000123051],[516193.7215691806,5277002.003818054],[516194.38474051055,5277003.89503817],[516197.91772071,5277002.793467471],[516200.151670837,5277009.690346877],[516189.4779506159,5277012.883713639],[516185.6052942043,5277001.09213406]]]},"properties":{"id_build":369,"id_source":"w144657351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.5797057388,5277438.290978917],[516180.40879798395,5277438.635038684],[516180.080721269,5277443.1908598365],[516184.1279660123,5277443.402160543],[516183.68133857107,5277450.080422728],[516178.68026297,5277452.60051147],[516179.0617667791,5277445.032949308],[516166.0492643009,5277444.263280488],[516166.28320010717,5277441.152014925],[516166.5971722562,5277436.262734422],[516172.078184894,5277436.700287779],[516176.6582009275,5277437.0686589265],[516176.5797057388,5277438.290978917]]]},"properties":{"id_build":370,"id_source":"w144657353","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516251.4116039241,5277507.0726592615],[516242.9296146259,5277505.604170952],[516244.0753034128,5277498.716697125],[516221.55654241017,5277494.875156063],[516222.32052556163,5277490.209411471],[516244.8396142516,5277493.939816441],[516253.3967177758,5277495.408517118],[516251.4116039241,5277507.0726592615]]]},"properties":{"id_build":371,"id_source":"w144657354","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516133.0615219184,5277153.096648013],[516139.51660459203,5277154.448214282],[516137.458970502,5277165.223069216],[516127.76866666833,5277165.974198872],[516127.3365249237,5277159.304615529],[516130.64162897086,5277159.091491303],[516131.1381951454,5277158.77056164],[516131.8454165192,5277158.316847918],[516133.0615219184,5277153.096648013]]]},"properties":{"id_build":372,"id_source":"w144657356","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516210.0661024705,5277710.787897046],[516205.6101373067,5277709.097279139],[516199.18878511665,5277706.645444307],[516202.2154720982,5277698.429516367],[516202.82025372726,5277696.986381201],[516206.3463188539,5277698.218734656],[516205.8163221318,5277699.773217517],[516213.093112243,5277702.460835662],[516210.0661024705,5277710.787897046]]]},"properties":{"id_build":373,"id_source":"w144657362","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516197.5249356287,5277386.958157811],[516205.70167779515,5277387.5366105605],[516204.6273561497,5277401.170476432],[516196.5559260859,5277400.536748135],[516196.92954098183,5277395.814345097],[516197.0228443113,5277394.669864507],[516195.371006989,5277394.543015617],[516195.97835849755,5277386.787145672],[516197.5249356287,5277386.958157811]]]},"properties":{"id_build":374,"id_source":"w144657363","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515994.69644033414,5277586.282378052],[515996.84089383064,5277595.690700143],[515985.47918134695,5277598.260164385],[515985.6127068571,5277598.860686131],[515981.7653644185,5277599.728128029],[515979.6283672664,5277590.330945997],[515984.2496972699,5277589.287803921],[515984.108692258,5277588.676147696],[515989.31614319864,5277587.501251082],[515994.69644033414,5277586.282378052]]]},"properties":{"id_build":375,"id_source":"w144657369","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515312.94039489893,5277695.8002123125],[515317.30204927333,5277693.477751026],[515322.4216787123,5277688.48993296],[515327.8138990923,5277694.06111716],[515322.6945623935,5277698.937791507],[515313.5201064819,5277703.803802133],[515310.9782774751,5277699.462664669],[515313.9867557431,5277697.6923411405],[515312.94039489893,5277695.8002123125]]]},"properties":{"id_build":376,"id_source":"w144657370","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.84410286864,5277659.810257634],[516218.46958754316,5277664.854964358],[516218.0112294253,5277670.343997053],[516217.9257451072,5277671.377359714],[516217.0960054506,5277686.178879306],[516208.76164364786,5277685.722223161],[516208.9673502468,5277681.966268205],[516209.0454161384,5277680.899542787],[516200.77158635226,5277680.276356854],[516202.4089959843,5277658.575297255],[516218.84410286864,5277659.810257634]]]},"properties":{"id_build":377,"id_source":"w144657371","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516105.75873514026,5277531.541002567],[516109.5788763714,5277532.385120594],[516107.62477127893,5277541.093077032],[516103.84218403965,5277540.249064127],[516103.659645411,5277541.082107995],[516097.9407511309,5277539.79929799],[516091.80155627115,5277538.426420022],[516093.54272420175,5277530.673672374],[516105.35580081923,5277533.318125284],[516105.75873514026,5277531.541002567]]]},"properties":{"id_build":378,"id_source":"w144657372","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515523.87151266227,5277503.309036056],[515525.3312632169,5277490.976413535],[515527.8085984042,5277491.316439593],[515529.11846082914,5277478.872278669],[515537.97793280234,5277479.673894692],[515536.96844238235,5277492.118855312],[515533.88973338465,5277491.999500326],[515532.5801600066,5277504.332521465],[515523.87151266227,5277503.309036056]]]},"properties":{"id_build":379,"id_source":"w144657373","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.887558486,5277648.383150499],[516071.6145827259,5277647.498870381],[516070.70607113425,5277650.1637188615],[516063.95482059004,5277647.477729682],[516066.75329855183,5277640.261361859],[516069.94134208973,5277641.548269339],[516073.12938422646,5277642.835178568],[516073.50762470264,5277641.835964191],[516076.035559735,5277642.854316886],[516073.887558486,5277648.383150499]]]},"properties":{"id_build":380,"id_source":"w144657374","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516070.39086106594,5277519.506850777],[516062.823957601,5277521.1530661825],[516062.11142453796,5277518.105869013],[516064.01261477254,5277517.666555166],[516061.5557432346,5277507.20151883],[516069.5813729373,5277505.334288208],[516070.9174212043,5277511.02833527],[516072.023334123,5277515.754830873],[516069.64121251955,5277516.303954465],[516070.39086106594,5277519.506850777]]]},"properties":{"id_build":381,"id_source":"w144657377","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516011.8213751436,5277265.768902591],[516017.7198625913,5277264.662614785],[516019.16277342994,5277264.310937165],[516021.2517335508,5277263.894353698],[516022.00733143603,5277267.686299421],[516020.66980674036,5277267.949354481],[516020.99581513845,5277269.561778348],[516021.7292186753,5277273.23140924],[516013.63639787404,5277274.842900371],[516011.8213751436,5277265.768902591]]]},"properties":{"id_build":382,"id_source":"w144657379","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.5583950943,5276970.551753559],[516080.2476007529,5276968.791986335],[516080.3978096773,5276968.792401142],[516082.70118426386,5276977.801081057],[516071.3524527262,5276980.659380636],[516069.0490617711,5276971.650705207],[516070.9504920008,5276971.189165816],[516073.5583950943,5276970.551753559]]]},"properties":{"id_build":383,"id_source":"w144657380","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515703.26028482756,5277037.558866836],[515703.7647286887,5277045.451146785],[515694.90132190683,5277045.871808396],[515694.8971280017,5277047.4277530555],[515687.23627808003,5277047.5182486875],[515686.083424534,5277029.399370274],[515693.8206001054,5277028.864519885],[515694.18790248496,5277034.700344578],[515694.39686607756,5277037.979529236],[515703.26028482756,5277037.558866836]]]},"properties":{"id_build":384,"id_source":"w144657384","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516103.22315733286,5277568.565783017],[516106.75085861055,5277569.242380712],[516104.6977298883,5277578.461307881],[516101.6206136159,5277577.785957567],[516101.1660381534,5277579.22951832],[516091.0341422176,5277576.978709084],[516092.78624841926,5277567.981224814],[516099.3155152209,5277569.499664497],[516102.9178519749,5277570.343176028],[516103.22315733286,5277568.565783017]]]},"properties":{"id_build":385,"id_source":"w144657386","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516029.6315818996,5277548.101903227],[516030.46931420936,5277552.04967387],[516031.2056926401,5277551.89610575],[516033.6818225421,5277563.561493087],[516024.6949543646,5277565.459468975],[516023.3233748507,5277559.020697523],[516022.226194657,5277553.838561729],[516023.0227113472,5277553.662930115],[516022.21492126136,5277549.748584908]]]},"properties":{"id_build":386,"id_source":"w144657389","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515575.4552921903,5277281.945264476],[515570.7275330893,5277280.598942306],[515573.6832041825,5277270.604270704],[515587.6423860084,5277274.198096886],[515587.1873200043,5277275.863974735],[515592.44048487267,5277277.32285702],[515590.1669372609,5277284.985411155],[515580.7338694221,5277282.326148705],[515575.833470058,5277280.946018476],[515575.4552921903,5277281.945264476]]]},"properties":{"id_build":387,"id_source":"w144657390","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516285.3579529346,5276727.633094783],[516277.2454025219,5276727.943832573],[516276.0557957256,5276723.606058853],[516281.464166542,5276723.398897957],[516281.19791547913,5276711.172785467],[516290.2868908193,5276710.864784404],[516290.47739338496,5276723.312964923],[516285.2946558181,5276723.409608722],[516285.3579529346,5276727.633094783]]]},"properties":{"id_build":388,"id_source":"w144657391","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515576.0059897577,5277721.72684873],[515577.00749839214,5277712.282643861],[515582.1124612994,5277712.852004653],[515582.34429038427,5277710.407549179],[515586.39822375646,5277710.862960774],[515586.1663929844,5277713.30741609],[515591.27135413676,5277713.876784915],[515590.5773447557,5277720.654455274],[515587.6043068689,5277720.37975849],[515585.54718670296,5277720.196427099],[515584.8552673856,5277726.196125021],[515584.70507802896,5277726.195722953],[515576.5218397279,5277725.395842978],[515576.2968530279,5277725.284101177],[515576.60645027034,5277721.839595148],[515576.0059897577,5277721.72684873]]]},"properties":{"id_build":389,"id_source":"w144657393","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515972.57998281036,5277504.30049284],[515980.99578967394,5277502.545350512],[515982.3001776031,5277508.8616728615],[515983.2933030767,5277513.665639487],[515982.6171210967,5277513.774922997],[515983.28323430446,5277517.333225945],[515974.04076723143,5277519.308376332],[515973.1490514825,5277515.860595313],[515974.95230400574,5277515.532123531],[515972.57998281036,5277504.30049284]]]},"properties":{"id_build":390,"id_source":"w144657394","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516126.9268584407,5277117.40378799],[516121.22460366646,5277115.38748169],[516122.96704215364,5277109.946457778],[516127.73175440426,5277097.956558712],[516129.9072725448,5277098.851702941],[516130.7284769736,5277100.632214066],[516130.27385795786,5277102.075771565],[516132.1495790688,5277102.747806617],[516126.9268584407,5277117.40378799]]]},"properties":{"id_build":391,"id_source":"w144657395","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.9210161022,5277008.025637972],[516122.41017095867,5277012.697630278],[516123.15474748035,5277015.033626585],[516123.5271893885,5277016.146055334],[516117.3634438643,5277018.018366922],[516116.24826778163,5277013.903109678],[516113.5420676454,5277014.784738216],[516112.351784306,5277010.669273914],[516116.31317543914,5277009.446585527],[516120.9210161022,5277008.025637972]]]},"properties":{"id_build":392,"id_source":"w144657399","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515423.5559713232,5277610.847999653],[515427.54667037004,5277606.857541218],[515434.36215775885,5277613.766272735],[515430.22038287466,5277618.089745484],[515428.42161162506,5277616.751300801],[515426.3887164529,5277618.746429904],[515420.9895158602,5277618.654327906],[515410.54403630766,5277618.482187105],[515410.48953347025,5277610.702257896],[515423.5559713232,5277610.847999653]]]},"properties":{"id_build":393,"id_source":"w144657400","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516145.08232029335,5277286.942268127],[516145.1531061054,5277288.498421568],[516143.4782144458,5277288.549347324],[516141.77328268206,5277288.600190285],[516141.77698009333,5277287.266522977],[516140.2749729752,5277287.26235906],[516140.20202923013,5277286.484178279],[516144.2580653208,5277286.2731438065],[516144.256216331,5277286.939977456],[516145.08232029335,5277286.942268127]]]},"properties":{"id_build":394,"id_source":"w144657403","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516161.23569817,5277473.924250991],[516162.87180902384,5277479.708064099],[516159.9405240626,5277480.589045794],[516160.0888688722,5277481.256296542],[516155.2937091608,5277482.654464564],[516150.6188316019,5277484.008514258],[516148.61122783466,5277476.77885639],[516158.1560653705,5277474.13798281],[516158.30441055546,5277474.805233507],[516161.23569817,5277473.924250991]]]},"properties":{"id_build":395,"id_source":"w144657404","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516045.094140762,5277428.213514946],[516039.8650475697,5277429.010427161],[516036.85231099534,5277429.468915111],[516035.8783975654,5277423.153491337],[516038.53805141273,5277422.738486132],[516037.6379209029,5277416.901166561],[516045.41397291934,5277415.7111676615],[516046.09275129164,5277420.114174843],[516046.5207268533,5277422.871621686],[516048.71455578547,5277422.533135145],[516049.4817946947,5277427.536541614],[516045.094140762,5277428.213514946]]]},"properties":{"id_build":396,"id_source":"w144657405","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516289.70991732954,5277695.561763285],[516295.2893525559,5277687.575306427],[516296.743337118,5277688.601863344],[516297.98749028414,5277689.472237353],[516298.59011856664,5277688.807085178],[516303.61215830856,5277692.155343784],[516302.93443466397,5277692.820285147],[516304.463293803,5277693.92485161],[516306.00710912223,5277695.051688348],[516300.27716504363,5277703.148853536],[516289.70991732954,5277695.561763285]]]},"properties":{"id_build":397,"id_source":"w144657406","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516237.83957705577,5277553.491246925],[516229.9550196054,5277553.246981773],[516229.95254099194,5277554.136093679],[516216.0614688514,5277553.430546425],[516216.4620285263,5277544.429334327],[516230.4282191401,5277545.135091832],[516230.34537626826,5277547.913357144],[516238.0794369603,5277548.268342879],[516237.83957705577,5277553.491246925]]]},"properties":{"id_build":398,"id_source":"w144657408","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.6309589086,5277593.514593866],[516155.80212057603,5277591.71740194],[516156.7125306886,5277588.385732905],[516155.81198985165,5277588.160954099],[516157.26018157526,5277583.174793791],[516158.0107626526,5277580.609546383],[516155.8345041208,5277580.04780754],[516156.9720565068,5277576.049929835],[516166.80292549374,5277578.522297708],[516162.6309589086,5277593.514593866]]]},"properties":{"id_build":399,"id_source":"w144657410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515647.92432361736,5276760.583179381],[515648.61595091695,5276763.1412500115],[515642.9262233877,5276764.659690517],[515642.14542053675,5276761.745734128],[515638.9886232961,5276762.59303084],[515632.66001017403,5276764.287589081],[515630.07953757735,5276754.689310174],[515647.69741936366,5276749.990960438],[515650.3670976161,5276759.922905923],[515647.92432361736,5276760.583179381]]]},"properties":{"id_build":400,"id_source":"w144657412","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516123.65741489455,5277728.441455647],[516133.2197012088,5277730.190615588],[516142.19655198354,5277731.827028053],[516141.12766279094,5277738.159037182],[516135.57313118764,5277737.254520086],[516134.8095564974,5277741.809138619],[516127.00342382636,5277740.453830167],[516127.6922058994,5277735.787863574],[516122.28785917064,5277734.883775242],[516123.65741489455,5277728.441455647]]]},"properties":{"id_build":401,"id_source":"w144657413","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516076.035559735,5277642.854316886],[516079.3813009007,5277644.141665025],[516078.97286778886,5277645.196365568],[516081.68093804934,5277646.248560209],[516085.0791816055,5277647.558284646],[516082.37898406293,5277654.530407654],[516075.6274984031,5277651.933316101],[516076.5956281672,5277649.435342785],[516073.887558486,5277648.383150499],[516076.035559735,5277642.854316886]]]},"properties":{"id_build":402,"id_source":"w144657416","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.1160755713,5277454.36608489],[516150.7787136416,5277453.445504772],[516151.013565883,5277450.000821658],[516145.60772419523,5277449.541268563],[516146.0743409501,5277443.763291696],[516151.6306929544,5277444.112122906],[516151.55251142586,5277445.22330427],[516156.8609447722,5277445.604794666],[516162.89019779966,5277446.03274688],[516162.1160755713,5277454.36608489]]]},"properties":{"id_build":403,"id_source":"w144657417","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516166.37176820065,5277409.255131651],[516166.4481013852,5277408.810784322],[516166.6078656609,5277405.365893529],[516166.83964291203,5277403.0326009095],[516169.9183876459,5277403.152290507],[516170.0722893955,5277401.819040107],[516180.1336860333,5277402.513831474],[516179.58668321517,5277410.180958997],[516173.459765769,5277409.752718396],[516166.37176820065,5277409.255131651]]]},"properties":{"id_build":404,"id_source":"w144657420","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515558.0227604912,5277032.3899894105],[515551.92808703677,5277036.597016765],[515547.9648097364,5277030.140330465],[515545.7832431371,5277031.468182081],[515540.62274524156,5277023.34120929],[515554.6166827361,5277014.153979855],[515559.92707992735,5277022.39250524],[515554.20821006043,5277026.489394742],[515558.0227604912,5277032.3899894105]]]},"properties":{"id_build":405,"id_source":"w144657424","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515475.1105126824,5277285.678727925],[515475.54929879797,5277290.125483515],[515479.8311978025,5277289.69230719],[515480.9384946133,5277296.919334015],[515476.8070966702,5277297.241769823],[515476.95522908797,5277298.020141734],[515471.49447013886,5277298.372389692],[515465.46283235995,5277298.767582253],[515463.99388877687,5277286.31603048],[515475.1105126824,5277285.678727925]]]},"properties":{"id_build":406,"id_source":"w144657426","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516068.3669847598,5277382.087993583],[516071.6731872376,5277381.430280264],[516073.1533859891,5277389.3252927],[516069.8465743051,5277390.205283096],[516069.5495524381,5277388.981925413],[516059.48137593386,5277390.732382385],[516058.00177208777,5277382.615095531],[516063.4863385109,5277381.785562342],[516068.14444785827,5277381.087121169],[516068.3669847598,5277382.087993583]]]},"properties":{"id_build":407,"id_source":"w144657427","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515404.00435233396,5277507.325104728],[515405.064833612,5277503.882577962],[515409.19225678925,5277505.004898298],[515409.6782138976,5277505.828618777],[515410.16411203536,5277506.674567098],[515414.2170232746,5277507.574414253],[515412.245658813,5277514.682140304],[515401.13947545347,5277511.540836537],[515402.5035785229,5277506.876575065],[515404.00435233396,5277507.325104728]]]},"properties":{"id_build":408,"id_source":"w144657433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516119.2136318894,5276916.686275185],[516121.07994034054,5276923.493193213],[516117.8554728058,5276924.373385038],[516118.2643974507,5276925.874903292],[516113.27361087804,5276927.239223544],[516108.448211344,5276928.548435707],[516106.5001042403,5276921.441218219],[516116.436561845,5276918.734673451],[516116.1094213557,5276917.53345896],[516119.2136318894,5276916.686275185]]]},"properties":{"id_build":409,"id_source":"w144657434","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516045.06175173784,5277390.914905928],[516045.8035530233,5277394.251144433],[516037.83846971305,5277395.896295409],[516036.8728977292,5277392.003742542],[516038.15049921,5277391.673842341],[516035.1799029934,5277379.551421552],[516042.99450324936,5277378.016992024],[516044.3975537138,5277383.944609791],[516045.96385882853,5277390.583972647],[516045.06175173784,5277390.914905928]]]},"properties":{"id_build":410,"id_source":"w144657437","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515470.47023429483,5277562.293251602],[515478.5901429691,5277558.758361258],[515477.91899899486,5277556.978340434],[515482.8813029018,5277554.768739566],[515487.4350128689,5277565.005711558],[515468.5644663853,5277572.957606792],[515465.7573066833,5277566.7485490665],[515464.08494079666,5277563.054265952],[515469.4984056995,5277560.623572531],[515470.47023429483,5277562.293251602]]]},"properties":{"id_build":411,"id_source":"w144657442","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.67171933234,5277424.159929094],[516218.125821154,5277424.325145562],[516218.3004805906,5277420.935867353],[516228.9480418336,5277421.476780397],[516228.81321796763,5277424.043734627],[516230.1347983169,5277424.102988505],[516229.9995402369,5277426.825537269],[516229.8564626063,5277429.659204078],[516228.6700608574,5277429.600327052],[516228.52682903863,5277432.489563391],[516225.82365525194,5277432.348661423],[516224.87819817103,5277450.928606414],[516213.33714504715,5277450.340756323],[516214.67171933234,5277424.159929094]]]},"properties":{"id_build":412,"id_source":"w144657443","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516212.681300561,5276933.372212806],[516210.42908106255,5276933.032523321],[516210.965335261,5276929.2552650105],[516211.49076067784,5276929.367867523],[516212.02763473114,5276925.368331573],[516212.7783755499,5276925.481561508],[516213.07738117245,5276923.292941148],[516213.6218601879,5276919.260084629],[516214.44770687114,5276919.3735238975],[516218.8022550988,5276919.941349558],[516218.4962628845,5276921.941012605],[516222.1751728599,5276922.395819299],[516220.4137021659,5276934.616283893],[516212.681300561,5276933.372212806]]]},"properties":{"id_build":413,"id_source":"w144657444","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515721.6881510569,5276804.88207746],[515718.15814248234,5276804.872548203],[515718.0118291286,5276803.42733755],[515707.59388639306,5276803.643734341],[515698.78334513615,5276803.820027019],[515698.8860164776,5276793.595454303],[515718.1890409808,5276793.425245549],[515718.3458541417,5276790.980596095],[515721.9512779375,5276790.879189366],[515721.6881510569,5276804.88207746]]]},"properties":{"id_build":414,"id_source":"w144657447","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515735.9810970465,5277024.421575613],[515731.03325814754,5277021.074015131],[515733.7481053548,5277016.969180883],[515734.87256053515,5277017.750197304],[515736.607156988,5277015.087531826],[515738.9311708494,5277016.649768986],[515738.40304086974,5277017.537459188],[515739.90241354273,5277018.541769364],[515735.9810970465,5277024.421575613]]]},"properties":{"id_build":415,"id_source":"w144657454","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516290.28627453407,5277677.447575455],[516297.9004604502,5277666.910598038],[516306.06905623997,5277672.935025347],[516305.11167181097,5277674.2437944515],[516303.9582928909,5277675.818750531],[516304.5574993673,5277676.376128077],[516301.24054513033,5277680.923574451],[516300.6410276217,5277680.477336252],[516299.5553302305,5277682.01914075],[516298.5299585269,5277683.472202432],[516290.28627453407,5277677.447575455]]]},"properties":{"id_build":416,"id_source":"w144657458","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516037.5679393721,5277355.062787],[516044.8638352594,5277353.726982747],[516045.6555158316,5277358.041388707],[516046.291753133,5277361.532931876],[516045.20977053564,5277361.730001644],[516046.31218049553,5277367.745703038],[516038.3926714872,5277369.190927335],[516036.5652693519,5277359.183311737],[516038.2708835178,5277358.876818416],[516038.16724443773,5277358.331947912],[516037.5679393721,5277355.062787]]]},"properties":{"id_build":417,"id_source":"w144657459","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.30590462167,5277629.6802070895],[516038.8806753985,5277628.214744574],[516041.5962397034,5277629.278055096],[516039.29718661215,5277635.1287905555],[516036.7841692012,5277634.143836916],[516035.86150953645,5277636.497460165],[516029.027560553,5277633.833511882],[516031.674524206,5277627.08349773],[516035.14025399653,5277628.437834642],[516038.30590462167,5277629.6802070895]]]},"properties":{"id_build":418,"id_source":"w144657461","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.002239962,5277530.879971681],[516179.0355505901,5277527.431950079],[516178.2172016493,5277524.65117992],[516180.9225575962,5277523.991859221],[516180.55108652724,5277522.546008864],[516182.5052541702,5277521.962399111],[516185.3613317898,5277521.114561681],[516184.9147642735,5277519.668502276],[516188.97342113574,5277518.457248401],[516191.42598016775,5277527.688675614],[516180.002239962,5277530.879971681]]]},"properties":{"id_build":419,"id_source":"w144657462","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515627.06882067147,5277078.920139982],[515631.87959157676,5277077.37709709],[515633.0704983868,5277081.381323954],[515638.55749452295,5277079.728962444],[515639.0793351165,5277081.175180267],[515646.06899086636,5277079.304582513],[515647.18388858467,5277083.642027225],[515629.4491469981,5277087.484286578],[515629.1499285814,5277087.038924571],[515628.19854438916,5277083.3354185745],[515627.06882067147,5277078.920139982]]]},"properties":{"id_build":420,"id_source":"w144657464","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516228.79096962366,5277235.339385309],[516227.7022438918,5277221.777295927],[516237.16716500977,5277221.025704397],[516245.4301589913,5277220.381914404],[516253.39306017815,5277219.626158632],[516254.481416276,5277233.299391841],[516245.2418158519,5277234.051583808],[516235.7018137492,5277234.8029527655],[516235.6267127137,5277234.80274335],[516228.79096962366,5277235.339385309]]]},"properties":{"id_build":421,"id_source":"w144657465","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516043.81688143814,5277243.095551745],[516044.26105568156,5277245.4307110505],[516039.377048389,5277246.30637307],[516039.37490527617,5277247.084345623],[516035.2572655818,5277247.839868523],[516029.75709815894,5277248.836095457],[516028.423945816,5277242.052898851],[516038.79277329653,5277240.303215515],[516038.57022570586,5277239.302344481],[516042.9585416305,5277238.436429921],[516043.81688143814,5277243.095551745]]]},"properties":{"id_build":422,"id_source":"w144657468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515762.7914063527,5277685.3311758395],[515753.92505876726,5277687.196553063],[515752.29401511716,5277679.412351527],[515757.1782168524,5277678.314170984],[515758.98140660604,5277677.985632365],[515759.8095610045,5277677.2098953985],[515760.2622389983,5277676.433142059],[515760.56562907744,5277675.322565114],[515760.3439535424,5277673.988287059],[515761.61213653267,5277679.882131309],[515762.7914063527,5277685.3311758395]]]},"properties":{"id_build":423,"id_source":"w144657470","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.74888712296,5277490.72241816],[516082.99382368725,5277491.767809149],[516079.87524255004,5277492.49271793],[516080.0459720422,5277493.215598346],[516073.9215821059,5277494.621276141],[516071.5770005232,5277495.170502612],[516071.67349233973,5277495.581986335],[516066.9542917665,5277496.6803591335],[516064.675780391,5277486.893766995],[516080.9825276334,5277483.126688943],[516082.74888712296,5277490.72241816]]]},"properties":{"id_build":424,"id_source":"w144657473","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516139.3408333073,5277028.192957636],[516137.40168954316,5277023.297434192],[516140.3338168459,5277022.194163475],[516140.1842254181,5277021.971469328],[516144.58303487924,5277020.094288114],[516150.03453375556,5277017.775470805],[516153.09220932535,5277025.563734778],[516143.392119245,5277029.760144589],[516143.09355324064,5277029.092478339],[516142.2732666249,5277026.978548995],[516139.3408333073,5277028.192957636]]]},"properties":{"id_build":425,"id_source":"w144657477","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516171.73739171476,5277289.016758203],[516175.34251651354,5277288.915632791],[516175.3468391322,5277287.359687601],[516175.282854021,5277283.358477065],[516183.3195243309,5277283.047390005],[516183.44871906046,5277290.605255529],[516183.9747301828,5277290.49557781],[516184.1141183934,5277294.385858308],[516171.79674880014,5277294.6850528745],[516171.73739171476,5277289.016758203]]]},"properties":{"id_build":426,"id_source":"w144657479","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515500.7059071132,5277618.143621341],[515493.1900328087,5277617.65682777],[515493.86478316924,5277609.612102519],[515492.83614297217,5277609.5426811585],[515492.93909173144,5277607.542438877],[515490.22155677754,5277604.35660961],[515493.45820799173,5277601.542271668],[515493.53720848245,5277600.075436683],[515497.5090632379,5277600.363857773],[515500.1281252728,5277598.225832278],[515502.261534359,5277600.798841868],[515510.9109691221,5277601.4442627495],[515510.08253772114,5277610.78891219],[515503.91823772306,5277610.361275659],[515501.3504221984,5277610.176614252],[515500.7059071132,5277618.143621341]]]},"properties":{"id_build":427,"id_source":"w144657480","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.5615497224,5277509.884127351],[516003.4430796446,5277510.575735355],[516003.59889022575,5277511.265230545],[515999.4810142678,5277512.176373204],[515994.08568932407,5277513.37297277],[515992.3127496184,5277505.399377266],[516001.8034030528,5277503.302684119],[516001.9962435066,5277504.18121873],[516005.14475585317,5277503.489692532],[516005.2189062668,5277503.834429826],[516006.5615497224,5277509.884127351]]]},"properties":{"id_build":428,"id_source":"w144657484","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516106.05421734543,5277033.768918788],[516114.6243350464,5277030.791856876],[516115.6746532896,5277033.917790655],[516117.603871029,5277039.691283426],[516103.921808234,5277044.432436848],[516101.0158208869,5277036.088919441],[516100.1964419297,5277033.6415793365],[516104.4816519425,5277032.097473051],[516105.3010293226,5277034.544813752],[516106.27829855744,5277034.214097598],[516106.05421734543,5277033.768918788]]]},"properties":{"id_build":429,"id_source":"w144657490","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515737.29513414897,5277088.441604085],[515736.6056915453,5277093.441028306],[515738.3982466129,5277097.11348406],[515742.8350208177,5277095.013823231],[515746.27171769814,5277101.691499513],[515736.94636254176,5277106.334157112],[515730.7470692046,5277093.647477127],[515718.28149764176,5277093.058114821],[515718.2964984021,5277087.50116924],[515737.29513414897,5277088.441604085]]]},"properties":{"id_build":430,"id_source":"w144657494","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516062.823957601,5277521.1530661825],[516070.39086106594,5277519.506850777],[516070.58620623185,5277519.474048043],[516071.401999474,5277523.199484296],[516072.46151587076,5277522.969015523],[516073.410672154,5277527.350545265],[516074.70100873813,5277533.2778608855],[516067.2994583324,5277534.880071042],[516065.0302207692,5277524.460006655],[516063.6100232948,5277524.76727948],[516062.823957601,5277521.1530661825]]]},"properties":{"id_build":431,"id_source":"w144657496","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516188.31239175476,5276945.863205743],[516177.79062348994,5276948.390178158],[516177.93928907113,5276948.946289892],[516175.76001723716,5276949.38479464],[516174.4118368551,5276948.047372796],[516173.9957573647,5276946.4235768765],[516173.5946368554,5276944.822050489],[516176.7511986143,5276944.052840608],[516176.00910415454,5276940.827726629],[516186.605990128,5276938.300959762],[516188.31239175476,5276945.863205743]]]},"properties":{"id_build":432,"id_source":"w144657497","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515902.0431481502,5277758.95104196],[515897.60079320014,5277708.2591367345],[515924.7179630576,5277705.44361506],[515928.35107595415,5277749.909495653],[515930.3786242667,5277749.915043593],[515930.96113101294,5277756.585029104],[515924.7267843539,5277757.123671068],[515913.3103258427,5277757.870431655],[515904.2214890774,5277758.734712999],[515902.0431481502,5277758.95104196]]]},"properties":{"id_build":433,"id_source":"w144657498","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sports_centre","main_use":"entertainment, arts and culture","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516280.28023707855,5276690.164815276],[516280.50897903804,5276688.9429180045],[516277.65704666945,5276688.156967725],[516276.081019326,5276687.7080038525],[516277.8280767308,5276680.71108563],[516282.1812439819,5276681.83465225],[516282.78863507265,5276679.5024167355],[516280.76226725127,5276678.941052753],[516281.9770493581,5276674.276581523],[516286.3302206447,5276675.400151223],[516286.0260579071,5276676.732977031],[516290.90436232364,5276678.08029819],[516289.1591536518,5276684.410379488],[516287.9583560215,5276684.073601694],[516287.1234631607,5276687.183178349],[516288.84970599983,5276687.632565377],[516287.6352319241,5276692.185896443],[516280.28023707855,5276690.164815276]]]},"properties":{"id_build":434,"id_source":"w144825729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516263.8402797597,5276552.527940518],[516262.1233051666,5276548.744396724],[516266.9368569086,5276546.423906742],[516268.7289389447,5276550.207661764],[516263.8402797597,5276552.527940518]]]},"properties":{"id_build":435,"id_source":"w144825737","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516255.09996866266,5276589.2907728255],[516251.739586676,5276582.279594161],[516269.5653657445,5276573.438191846],[516273.07563990896,5276580.560939308],[516255.09996866266,5276589.2907728255]]]},"properties":{"id_build":436,"id_source":"w144825739","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516277.65704666945,5276688.156967725],[516280.50897903804,5276688.9429180045],[516280.28023707855,5276690.164815276],[516277.35319720855,5276689.378655171],[516277.65704666945,5276688.156967725]]]},"properties":{"id_build":437,"id_source":"w144825746","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516265.37226707506,5276568.758612488],[516260.9665557636,5276559.521715651],[516266.5315063541,5276557.092183758],[516270.8627220911,5276566.106597309],[516265.37226707506,5276568.758612488]]]},"properties":{"id_build":438,"id_source":"w144825751","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516278.6380902928,5276579.020529477],[516274.67995970574,5276570.896269914],[516284.0820224576,5276566.143545705],[516288.18974067183,5276574.490509394],[516278.6380902928,5276579.020529477]]]},"properties":{"id_build":439,"id_source":"w144825754","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.6889797832,5277001.9258882925],[517287.5374518078,5277002.369997866],[517286.7870710367,5277002.1454904],[517286.25540374493,5277004.144429533],[517286.0667738064,5277006.966822038],[517278.06771096477,5277004.57580222],[517279.5314994479,5276999.767789896],[517278.06081118784,5276999.307752384],[517280.4332389615,5276992.012903715],[517284.13985655876,5276993.213101335],[517287.71141711925,5276994.36844441],[517286.79927895305,5276998.033351805],[517288.7500062348,5276998.7059825165],[517287.6889797832,5277001.9258882925]]]},"properties":{"id_build":440,"id_source":"w145186970","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516330.7886838716,5277628.1260326],[516330.3390121601,5277627.802465595],[516331.95990465087,5277625.550873055],[516333.7165013254,5277623.110723913],[516334.18119242054,5277623.434333318],[516334.6561683752,5277622.768826732],[516336.2921455148,5277620.49504975],[516344.6186873479,5277626.442175873],[516336.9363725135,5277637.123382875],[516328.6098694225,5277631.165153721],[516330.1855468719,5277628.969003804],[516330.7886838716,5277628.1260326]]]},"properties":{"id_build":441,"id_source":"w145186981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516672.83317734336,5277412.350546547],[516675.5210738218,5277415.203425156],[516679.12236980675,5277419.036952515],[516673.6999877244,5277424.356135022],[516672.11260749,5277422.706719115],[516671.2290532606,5277421.792842112],[516669.4973297549,5277423.34384193],[516666.4278308387,5277420.000858243],[516669.9670142267,5277416.676794419],[516668.8514800228,5277415.473289927],[516667.9026907887,5277416.359692582],[516661.491336291,5277420.864734146],[516658.5633742118,5277417.9222632265],[516669.6939851967,5277407.11798386],[516673.66180995,5277411.463800586],[516672.83317734336,5277412.350546547]]]},"properties":{"id_build":442,"id_source":"w145186993","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.3796900457,5277728.830584184],[517311.90204910317,5277724.518489275],[517316.7988500157,5277721.799009392],[517313.8442660352,5277727.9696049625],[517309.44614451984,5277742.293585212],[517306.60709022195,5277737.394984774],[517308.6382788488,5277736.178483625],[517307.00206635264,5277733.361777297],[517304.3796900457,5277728.830584184]]]},"properties":{"id_build":443,"id_source":"w145187029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.4561747102,5277703.161060319],[516753.48089594423,5277702.546064392],[516754.8650858159,5277743.449543388],[516755.70224287675,5277765.679940613],[516748.7926168969,5277765.99347698],[516745.78852923255,5277766.09597478],[516738.2784703456,5277766.296656543],[516735.4561747102,5277703.161060319]]]},"properties":{"id_build":444,"id_source":"w145187102","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.0984979578,5277566.460217418],[516925.9216607178,5277566.120468529],[516925.30990097043,5277569.897447385],[516915.25178224006,5277568.201116336],[516915.8635356275,5277564.4241364505],[516918.7906961145,5277564.988341859],[516920.77551430813,5277553.880118093],[516927.98191224196,5277554.901326522],[516927.2254301976,5277559.378065829],[516926.8357473536,5277561.677529218],[516928.8620693617,5277562.127980689],[516928.0984979578,5277566.460217418]]]},"properties":{"id_build":445,"id_source":"w145187104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.34558343835,5277575.960932379],[516641.8035238041,5277574.74827703],[516642.10518124327,5277574.304579744],[516646.91581707017,5277572.762374642],[516649.59641336685,5277580.772112681],[516648.4690111296,5277581.102308287],[516649.51051025564,5277584.550623546],[516643.0461715013,5277586.643798259],[516641.92989007797,5277583.084130496],[516640.95268183044,5277583.414756892],[516640.05135146884,5277580.844849008],[516638.34558343835,5277575.960932379]]]},"properties":{"id_build":446,"id_source":"w145187117","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.05033588957,5276938.546326868],[517314.8163055045,5276944.0025977595],[517314.5197704403,5276947.74712909],[517310.6076708747,5276947.446534297],[517310.45151430485,5276949.44658745],[517306.79470578395,5276949.168982108],[517307.5290330635,5276939.635365302],[517314.92524399684,5276940.201938709],[517315.05033588957,5276938.546326868]]]},"properties":{"id_build":447,"id_source":"w145187124","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517156.9042417747,5277469.993699263],[517156.8245585772,5277471.549423459],[517156.744220399,5277473.327425594],[517156.3487527432,5277480.105795993],[517145.8370106008,5277479.407989953],[517147.88972210133,5277445.405217769],[517158.3267546434,5277445.991667045],[517157.93095602404,5277452.88117602],[517157.84996223677,5277454.881456011],[517157.770606143,5277456.326041198],[517156.9042417747,5277469.993699263]]]},"properties":{"id_build":448,"id_source":"w145187136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.5003958358,5277294.491182594],[516728.9178889209,5277294.558686094],[516722.43631982314,5277294.684548592],[516722.31580476125,5277284.348196051],[516717.28407721274,5277284.333746759],[516716.85984550166,5277248.990056638],[516766.8783030348,5277248.689320033],[516766.99874024745,5277259.025673103],[516727.11960911634,5277259.133248656],[516727.42263271747,5277284.36286545],[516732.3044788287,5277284.265752921],[516732.5003958358,5277294.491182594]]]},"properties":{"id_build":449,"id_source":"w145187161","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"commercial","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.48292923224,5277484.422114126],[517291.48651434557,5277478.2827887675],[517293.8611103043,5277480.312588816],[517303.0599121508,5277488.15305862],[517302.31393371354,5277488.995505221],[517296.23591071385,5277494.912318488],[517295.29441597423,5277495.843097101],[517294.56421851023,5277496.429969697],[517288.35462592414,5277491.021239656],[517289.47675103764,5277489.957628401],[517284.2927868124,5277485.6300061485],[517285.48292923224,5277484.422114126]]]},"properties":{"id_build":450,"id_source":"w145187164","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.3024682542,5276824.27447078],[516695.381643689,5276829.597937315],[516682.26670030336,5276819.557771975],[516680.38139974576,5276822.219725746],[516673.261250669,5276816.975765768],[516677.03089546587,5276811.985270848],[516679.7289994605,5276813.993514264],[516683.5740766842,5276808.892099859],[516693.2424304957,5276816.032752685],[516691.4328673132,5276818.4726404715],[516699.3024682542,5276824.27447078]]]},"properties":{"id_build":451,"id_source":"w145187172","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.85723972163,5276716.977010619],[516642.28887064813,5276713.860615435],[516652.8185774599,5276708.778288568],[516653.640314,5276710.33659491],[516658.3787825228,5276708.016213043],[516662.1131871834,5276715.362120029],[516657.29897959245,5276717.904561709],[516657.89634428,5276719.1288076565],[516647.5165491829,5276724.322693653],[516645.94818407035,5276721.20629744],[516643.85723972163,5276716.977010619]]]},"properties":{"id_build":452,"id_source":"w145187180","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.62934312975,5277219.43275449],[516834.5092550071,5277234.991986873],[516827.59899467975,5277235.305430955],[516827.52806925675,5277233.860407859],[516823.6975937808,5277233.960478545],[516823.6282730069,5277231.959760872],[516821.67532357527,5277232.065258162],[516821.5339323855,5277218.616927508],[516830.0510579963,5277218.41926043],[516830.12294676265,5277219.530866748],[516834.62934312975,5277219.43275449]]]},"properties":{"id_build":453,"id_source":"w145187183","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516511.71387437213,5277423.338786094],[516513.06249720504,5277424.454009542],[516514.0962242091,5277430.68077356],[516507.84161912283,5277438.220546468],[516501.45636344835,5277438.869284558],[516494.1885050841,5277432.958277578],[516493.6810769003,5277426.510728412],[516499.4841391451,5277419.303080373],[516502.5641294026,5277418.978390061],[516502.3441886207,5277417.088389127],[516511.71387437213,5277423.338786094]]]},"properties":{"id_build":454,"id_source":"w145187184","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516789.5719723143,5277764.999544698],[516783.9318201318,5277765.183332813],[516780.559705637,5277765.30697962],[516771.47202559526,5277765.725351171],[516770.84472763987,5277741.050477284],[516770.7030375476,5277735.49307223],[516769.85225010896,5277702.37092103],[516787.4257668431,5277701.9770103],[516788.4225539184,5277731.309713717],[516788.67202937545,5277738.545643171],[516789.5719723143,5277764.999544698]]]},"properties":{"id_build":455,"id_source":"w145187188","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516486.4120931778,5276917.025252349],[516482.1405374171,5276913.678967251],[516481.0849755873,5276915.120796526],[516469.61777482805,5276906.641730167],[516475.04673659644,5276899.099583818],[516480.6683158125,5276903.116522843],[516484.26613502606,5276905.682921138],[516485.3216993393,5276904.241092456],[516486.60352413316,5276902.466485273],[516493.5738392193,5276907.598653238],[516492.14148816187,5276909.483972347],[516486.4120931778,5276917.025252349]]]},"properties":{"id_build":456,"id_source":"w145187193","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516602.98359054496,5276735.309531168],[516598.33136110107,5276733.740312728],[516602.2689535313,5276722.526423215],[516603.46972537215,5276722.863265902],[516605.3626282671,5276717.53395553],[516612.79068314796,5276720.222494993],[516610.7481930945,5276725.329096829],[516612.3986584222,5276726.000643323],[516608.3108338152,5276737.214097677],[516604.10893533163,5276735.757298706],[516602.98359054496,5276735.309531168]]]},"properties":{"id_build":457,"id_source":"w145187203","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.8622035109,5276783.904895468],[516605.2897054012,5276785.251195936],[516601.57683498634,5276796.688004494],[516600.07596830616,5276796.239166856],[516598.2582018918,5276801.56869361],[516590.52950115094,5276798.990455044],[516592.1970477931,5276793.6604979085],[516590.920866562,5276793.434582343],[516594.6343514586,5276781.775489396],[516599.36165027454,5276783.344919181],[516600.8622035109,5276783.904895468]]]},"properties":{"id_build":458,"id_source":"w145187212","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516307.29133105144,5277745.957354433],[516317.34121448436,5277750.542250463],[516313.33567409293,5277759.6444960125],[516307.6356703226,5277757.072308405],[516307.9376042036,5277756.517454735],[516306.745192401,5277755.947301072],[516305.3878218845,5277755.287773708],[516304.1791536382,5277757.840606078],[516299.07865402004,5277755.714665504],[516304.5960240911,5277743.0601677755],[516307.9712284038,5277744.514440392],[516307.29133105144,5277745.957354433]]]},"properties":{"id_build":459,"id_source":"w145187232","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.3371534928,5276919.560307952],[516624.40317528124,5276883.075380361],[516638.49253936036,5276893.785039421],[516626.5076162986,5276908.865816557],[516611.3566121012,5276928.04975752],[516607.88783486903,5276932.930013501],[516598.5800765409,5276925.790528468],[516600.6765194449,5276922.806844729],[516596.3371534928,5276919.560307952]]]},"properties":{"id_build":460,"id_source":"w145187236","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516700.891425809,5277108.241203948],[516699.69265163667,5277107.237507335],[516706.17699315684,5277098.364922624],[516714.1209826992,5277104.278130832],[516707.7120570621,5277113.039783386],[516705.16398848617,5277111.143095542],[516695.5893053282,5277123.8967133965],[516688.0198812254,5277118.318023207],[516694.5780207481,5277109.890196368],[516697.8755260868,5277112.344727777],[516700.891425809,5277108.241203948]]]},"properties":{"id_build":461,"id_source":"w145187240","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.52625149005,5277568.869760477],[516722.4112926098,5277564.865521336],[516725.1170121146,5277564.09531439],[516730.3782596405,5277562.554472655],[516731.493532905,5277566.447574334],[516733.67325597495,5277565.786999629],[516734.9658513901,5277570.691984811],[516736.5703999422,5277576.798178102],[516727.85152576084,5277579.440477498],[516726.73689124855,5277575.325098463],[516724.0311767337,5277576.095304655],[516722.0230397785,5277569.310002259],[516723.52625149005,5277568.869760477]]]},"properties":{"id_build":462,"id_source":"w145187241","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517251.8789001233,5277529.178523568],[517250.40296971163,5277520.394094248],[517253.7089013956,5277519.848190881],[517254.99688770203,5277518.56278464],[517255.8178870447,5277517.742782339],[517255.8966079466,5277516.520476235],[517258.0806930462,5277514.415291103],[517259.5072153171,5277514.5306598665],[517265.57132269675,5277520.883617448],[517257.8896467253,5277528.196078461],[517251.8789001233,5277529.178523568]]]},"properties":{"id_build":463,"id_source":"w145187252","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517309.62978846015,5276910.056181681],[517309.46618688415,5276912.033984643],[517310.56996948126,5276912.126177688],[517311.83143998473,5276912.22995373],[517311.4652291749,5276916.6744589275],[517309.21260259574,5276916.489938749],[517309.10355709295,5276917.80106482],[517303.4044296798,5276917.32845354],[517302.87459352607,5276923.761876356],[517297.98640831996,5276923.358363981],[517299.16259186494,5276909.19152757],[517309.62978846015,5276910.056181681]]]},"properties":{"id_build":464,"id_source":"w145187281","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516993.8670442567,5277623.666608716],[516995.5936043393,5277623.893928715],[516994.75489496783,5277628.225937992],[516993.1486194794,5277627.954513358],[516986.34819817904,5277626.812154189],[516985.1471485237,5277626.641940065],[516985.7605627765,5277622.309272119],[516984.1094221482,5277621.971035126],[516984.79825645493,5277617.5274472],[516986.3743021891,5277617.865465274],[516986.7412491544,5277615.643737176],[516987.5211745065,5277610.866995577],[516995.7027677333,5277612.224553794],[516993.8670442567,5277623.666608716]]]},"properties":{"id_build":465,"id_source":"w145187300","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516402.1214377822,5276738.1856527],[516402.1211247505,5276738.296791544],[516402.3439427876,5276739.186536939],[516402.1186204888,5276739.185902292],[516398.9625434446,5276739.7327123955],[516398.2969042765,5276736.063227035],[516405.3604507781,5276734.860584811],[516405.1382592083,5276733.748561618],[516406.3406054837,5276733.529669425],[516406.930819309,5276737.310082936],[516402.1214377822,5276738.1856527]]]},"properties":{"id_build":466,"id_source":"w145187304","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.6458155916,5277641.393473947],[516977.10709684034,5277641.133364733],[516978.3374018695,5277633.8461725125],[516979.20058346575,5277633.993171848],[516979.43740014924,5277632.615727272],[516980.08702851506,5277628.738838088],[516985.8591528902,5277629.700365744],[516986.34819817904,5277626.812154189],[516993.1486194794,5277627.954513358],[516992.65953846497,5277630.853838252],[516988.91406676633,5277630.220523439],[516987.3323073508,5277639.562776856],[516989.0136432965,5277639.845532945],[516988.4711225814,5277643.04478013],[516984.86827546917,5277642.4341120515],[516978.6458155916,5277641.393473947]]]},"properties":{"id_build":467,"id_source":"w145187330","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.4317805809,5277534.486231401],[516928.6447349652,5277533.564389298],[516934.574504515,5277534.581893772],[516934.26991324406,5277536.025826734],[516936.6717294624,5277536.477373073],[516940.0494850133,5277537.042899927],[516939.2855787751,5277541.486274026],[516941.9123602305,5277542.0496170195],[516940.919928101,5277547.60372514],[516926.7715713428,5277545.006354521],[516928.4317805809,5277534.486231401]]]},"properties":{"id_build":468,"id_source":"w145187349","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516877.16630695213,5277652.33464859],[516877.1321743449,5277651.156466349],[516890.4854123403,5277650.772860854],[516890.7514897828,5277660.009361429],[516885.0436784216,5277660.181741812],[516882.3024968005,5277660.240476007],[516882.32828078093,5277661.707597917],[516877.506856582,5277661.793644234],[516877.43927059,5277661.793448297],[516877.3847037183,5277659.892797222],[516877.16630695213,5277652.33464859]]]},"properties":{"id_build":469,"id_source":"w145187397","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.5877038311,5277719.516605635],[516890.20248194574,5277712.054602645],[516897.05095634086,5277706.9620386325],[516899.519088835,5277710.414541127],[516899.06690623134,5277710.968928235],[516899.8372865862,5277712.038108039],[516904.52688990993,5277718.542296503],[516896.4749710554,5277724.298198485],[516894.3807040095,5277721.40248187],[516896.1868494475,5277720.074044255],[516895.81363335025,5277719.294981444],[516895.5877038311,5277719.516605635]]]},"properties":{"id_build":470,"id_source":"w145187416","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516877.619403831,5277700.681834897],[516872.3846537707,5277693.109145124],[516877.5014339794,5277689.567498823],[516878.2343379997,5277690.614339058],[516879.22153415444,5277692.017564485],[516882.4570718625,5277689.804147659],[516886.1970022162,5277694.927431733],[516882.05839106743,5277697.805067265],[516883.8526149468,5277700.588769129],[516878.05869660847,5277704.573006443],[516876.03918611666,5277701.7886532815],[516877.619403831,5277700.681834897]]]},"properties":{"id_build":471,"id_source":"w145187428","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517207.7036440277,5276798.19193115],[517203.64821073227,5276798.0688090185],[517203.73316754587,5276794.73486552],[517201.47996530414,5276794.72820933],[517201.52605433844,5276791.83871027],[517201.57083022455,5276789.393766605],[517207.80535229156,5276789.189906592],[517207.81126374763,5276787.189407384],[517213.218956137,5276787.205389569],[517213.21304282424,5276789.205888775],[517217.49380256166,5276789.329683743],[517217.54294991225,5276798.10987461],[517207.7036440277,5276798.19193115]]]},"properties":{"id_build":472,"id_source":"w145187447","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.71210992924,5277468.034676799],[516650.53042772604,5277466.878626851],[516653.49940768705,5277465.975771606],[516654.4368686881,5277469.045913848],[516655.61692512844,5277468.693642001],[516656.89665564155,5277472.876162621],[516658.68231191824,5277478.716115374],[516650.7149415581,5277481.138401034],[516648.93672429596,5277475.320699991],[516645.7948656823,5277476.278633209],[516644.6268217521,5277472.429853976],[516647.7611406639,5277471.483012552],[516646.71210992924,5277468.034676799]]]},"properties":{"id_build":473,"id_source":"w145187460","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.18131284905,5276702.787586663],[516462.89748382807,5276706.793468139],[516459.965136244,5276707.89657639],[516461.6065129049,5276711.791106389],[516462.65110985993,5276714.2391333245],[516459.64334418956,5276715.453168253],[516458.82249895146,5276713.561472878],[516455.6641727858,5276714.897338029],[516451.75389163365,5276716.542271734],[516448.09935343114,5276707.418490987],[516458.1003182923,5276703.334577051],[516458.32375737146,5276704.002046886],[516461.18131284905,5276702.787586663]]]},"properties":{"id_build":474,"id_source":"w145187465","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.4906596337,5277381.661283954],[516722.0815115916,5277365.924180469],[516730.84290632885,5277374.729400322],[516729.71322415315,5277375.8375528585],[516737.80093683547,5277383.8628686145],[516759.580003863,5277383.814380327],[516760.02699482534,5277411.156076679],[516751.99078616477,5277411.355228471],[516752.04605860956,5277418.246059989],[516716.9736962433,5277418.589811573],[516716.8994462845,5277392.138308451],[516706.4906596337,5277381.661283954]]]},"properties":{"id_build":475,"id_source":"w145187549","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"religious","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.7329473166,5277622.768422309],[517211.34021711303,5277620.904596138],[517208.5040160922,5277620.073776252],[517210.24995346216,5277613.743959535],[517207.849175283,5277612.958883182],[517213.01124905574,5277594.191490311],[517216.0124770137,5277595.089484276],[517214.79647451866,5277599.97604665],[517215.9222625426,5277600.201655569],[517214.0995756904,5277607.086943368],[517221.45276308176,5277609.220349403],[517218.492125547,5277619.992168546],[517217.7329473166,5277622.768422309]]]},"properties":{"id_build":476,"id_source":"w145187558","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.03348842403,5277696.075369012],[516935.5804930976,5277705.073477707],[516931.75258799986,5277704.395503589],[516925.14713606174,5277703.376036361],[516925.3002341316,5277702.37622194],[516923.19854264986,5277702.036692204],[516920.94666085835,5277701.69672669],[516922.2465365359,5277693.698428924],[516931.17897912563,5277695.058079784],[516931.86517889344,5277691.503597244],[516937.7200150067,5277692.4097481435],[516937.03348842403,5277696.075369012]]]},"properties":{"id_build":477,"id_source":"w145187568","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.90204910317,5277724.518489275],[517304.3796900457,5277728.830584184],[517302.7358648309,5277726.047198477],[517302.20954107994,5277726.267914158],[517299.639559031,5277721.792448984],[517296.4569652325,5277716.24822097],[517304.5059900112,5277711.604261359],[517307.9421830263,5277717.727175663],[517313.2077458966,5277714.742053153],[517315.598220388,5277718.972482403],[517315.2971799676,5277719.193866984],[517316.7988500157,5277721.799009392],[517311.90204910317,5277724.518489275]]]},"properties":{"id_build":478,"id_source":"w145187585","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.35914887313,5276741.246617147],[516580.81327421847,5276740.025372973],[516575.636239569,5276738.121259195],[516578.4370466805,5276730.460589839],[516583.6891947832,5276732.364919957],[516584.1433215047,5276731.1436760565],[516595.3232601017,5276735.065416505],[516593.73333519144,5276739.506475578],[516593.27952377335,5276740.616579907],[516591.61386124283,5276745.279703264],[516580.35914887313,5276741.246617147]]]},"properties":{"id_build":479,"id_source":"w145187602","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517059.2697021393,5277651.531735],[517055.6725980245,5277648.964976726],[517057.482059207,5277646.525199196],[517066.22900415305,5277634.325439504],[517066.3795217693,5277634.214740798],[517069.0806935165,5277635.00063951],[517071.5569027744,5277635.6747398535],[517069.294250316,5277639.00230385],[517069.06928862847,5277638.890504318],[517067.27448098647,5277641.452575157],[517061.15100272134,5277650.2035686225],[517060.55186556483,5277649.646113066],[517059.2697021393,5277651.531735]]]},"properties":{"id_build":480,"id_source":"w145187644","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.88409707794,5277528.341236534],[516707.2041310714,5277525.589477363],[516708.1708273605,5277528.926448391],[516706.1412879632,5277529.587463612],[516709.1148754966,5277540.154287198],[516701.7473878009,5277542.911644338],[516701.30031240615,5277541.687822939],[516697.91743695736,5277542.900658352],[516695.9063893696,5277537.11561624],[516699.89068266295,5277535.682224969],[516699.44408449216,5277534.29169526],[516697.5833892732,5277528.451513977],[516697.88409707794,5277528.341236534]]]},"properties":{"id_build":481,"id_source":"w145187649","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517115.4146423225,5277584.123435694],[517118.82352909073,5277586.856387018],[517122.08254654467,5277589.477759652],[517117.03212948743,5277595.909025439],[517116.9570330825,5277595.908804645],[517114.4697036637,5277599.013410622],[517110.5738386812,5277595.890040683],[517106.6698053367,5277595.545148044],[517106.8973805652,5277594.767837124],[517109.460130801,5277591.552309646],[517110.2140351195,5277590.554265791],[517114.96242935996,5277584.677805995],[517115.4146423225,5277584.123435694]]]},"properties":{"id_build":482,"id_source":"w145187658","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.05540182214,5276777.645329541],[516732.7726602163,5276778.9588397015],[516736.0619056781,5276784.347456651],[516734.5492021255,5276790.633620187],[516734.0635045787,5276792.377118799],[516728.66476546397,5276791.861478313],[516724.52158524067,5276790.904889599],[516724.60419006593,5276796.139809872],[516720.70942967443,5276800.218568791],[516712.75032706227,5276794.194173432],[516711.5733839638,5276793.412817381],[516707.7431779562,5276790.7011305],[516707.2964099772,5276786.732159095],[516716.8432515716,5276773.411671532],[516721.8008033214,5276775.870979917],[516723.04091894196,5276780.8091466],[516732.05540182214,5276777.645329541]]]},"properties":{"id_build":483,"id_source":"w145187707","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.5778148249,5277548.014509103],[517004.28006595455,5277555.234813913],[517003.59250817285,5277559.233843223],[516999.1637396638,5277558.554070539],[516998.88926965685,5277559.964746228],[516998.7063438094,5277560.886673532],[516991.12512961787,5277559.6420036815],[516992.95794731803,5277549.200199831],[516996.1854961921,5277549.765320916],[516996.4133828429,5277548.876866782],[517001.81777090003,5277549.781766217],[517003.1009115384,5277547.562714979],[517005.5778148249,5277548.014509103]]]},"properties":{"id_build":484,"id_source":"w145187719","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.5925347735,5277543.471027715],[516959.6599360129,5277549.103105004],[516956.31222811784,5277548.537654227],[516956.0837002059,5277549.648387875],[516946.4010402149,5277547.953096724],[516947.84891300794,5277540.733216484],[516952.3601782414,5277541.457646194],[516954.1541574852,5277541.751834],[516954.3059699483,5277541.196576493],[516957.6089477164,5277541.650755876],[516957.456163811,5277542.539430237],[516960.75881680375,5277543.104750395],[516960.5925347735,5277543.471027715]]]},"properties":{"id_build":485,"id_source":"w145187740","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.97609346453,5277659.9838217385],[516946.89873322344,5277660.761576137],[516952.00264252105,5277661.665555317],[516949.48080676084,5277676.662104977],[516942.61284830334,5277675.51959992],[516943.7214301801,5277668.754403742],[516933.9638695935,5277667.058913934],[516934.19335870224,5277665.614762234],[516933.0300573019,5277665.377984652],[516932.01688217,5277665.163871926],[516932.17095209827,5277663.830640742],[516932.0961798183,5277663.719283325],[516933.0905242043,5277657.49833876],[516946.97609346453,5277659.9838217385]]]},"properties":{"id_build":486,"id_source":"w145187764","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.1343817542,5277421.340842922],[517135.71803767246,5277421.807717853],[517135.3183392449,5277430.0308955265],[517127.6599224143,5277429.4526612],[517127.82156289543,5277425.56323955],[517124.1725226558,5277425.296883971],[517116.7092569357,5277424.752580056],[517116.47285203566,5277428.530642252],[517108.9646286327,5277427.952874093],[517109.5886061647,5277420.063773668],[517117.02206777025,5277420.530182852],[517117.2594535602,5277416.418703861],[517128.2963496943,5277417.340282379],[517128.1343817542,5277421.340842922]]]},"properties":{"id_build":487,"id_source":"w145187767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517124.2617765489,5277257.064674367],[517112.61886980006,5277257.808422535],[517112.4758544168,5277255.362924677],[517109.997201513,5277255.466780202],[517110.14021793316,5277257.912277998],[517096.8450982403,5277258.651202644],[517096.48950106674,5277251.8706254605],[517101.29693422513,5277251.551323867],[517100.7317069629,5277239.4354163455],[517116.50553117605,5277238.592646667],[517116.79221282015,5277243.261364618],[517123.55227918754,5277242.947822004],[517124.2617765489,5277257.064674367]]]},"properties":{"id_build":488,"id_source":"w145187781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.23697561247,5276740.822978762],[516465.51369377115,5276743.121328302],[516461.1364121532,5276745.242836127],[516456.80531157396,5276736.339416384],[516459.5129500697,5276735.013391974],[516458.9158595555,5276733.678027597],[516459.5962249122,5276732.123994357],[516463.3569426061,5276730.245249658],[516465.0847304908,5276730.138994809],[516465.9058855694,5276731.919552285],[516468.91458700236,5276730.372104051],[516473.9926607102,5276740.722462406],[516470.9088558418,5276742.2696956005],[516470.23697561247,5276740.822978762]]]},"properties":{"id_build":489,"id_source":"w145187789","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.10214697296,5277681.304354864],[516643.481530267,5277681.280673179],[516647.93477623194,5277681.260064229],[516647.9125246606,5277678.537072685],[516651.8551563403,5277678.503892577],[516651.8778193306,5277681.082403437],[516652.4260149573,5277681.083971483],[516652.47726729186,5277689.41961181],[516640.7921389734,5277689.497338863],[516640.8030916615,5277690.919961096],[516636.8154113937,5277690.953019907],[516636.76242159604,5277683.217530382],[516640.11173388234,5277683.204874806],[516640.10214697296,5277681.304354864]]]},"properties":{"id_build":490,"id_source":"w145187791","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517234.2284779952,5276794.158198632],[517232.1258178817,5276794.040836303],[517232.1419329395,5276788.595032898],[517239.5027304551,5276788.50567957],[517239.5758631555,5276789.17273499],[517240.6051226448,5276789.07575631],[517241.75461889023,5276788.9569058465],[517241.8353197866,5276787.067767872],[517246.8687947999,5276786.6381140435],[517246.8572742143,5276790.5279736],[517249.6365549129,5276790.42506583],[517249.4600045133,5276799.315728514],[517234.0637921805,5276799.047863295],[517234.2284779952,5276794.158198632]]]},"properties":{"id_build":491,"id_source":"w145187800","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.7653300292,5277733.002798851],[516910.4854041112,5277735.452873979],[516917.1539669957,5277740.584686433],[516913.1967803077,5277745.641170239],[516912.5560880488,5277746.461744539],[516912.7056312011,5277746.6844588965],[516911.8009462688,5277747.904370168],[516912.5502762583,5277748.462246816],[516909.3089487531,5277752.67614936],[516902.94044801407,5277747.656356936],[516906.4077026603,5277743.220827099],[516905.5191556299,5277738.883788619],[516903.7990804912,5277736.433714949],[516908.7653300292,5277733.002798851]]]},"properties":{"id_build":492,"id_source":"w145187803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516873.8372935645,5277660.88277361],[516869.98453712725,5277660.993861846],[516870.0113869932,5277662.094224999],[516862.7865518973,5277662.295573371],[516862.66436745063,5277652.626045327],[516864.1662807544,5277652.630395827],[516864.1743293473,5277649.8519208515],[516868.45510632545,5277649.753182902],[516868.52182932897,5277652.643014465],[516877.16630695213,5277652.33464859],[516877.3847037183,5277659.892797222],[516873.75726547,5277659.993422184],[516873.8372935645,5277660.88277361]]]},"properties":{"id_build":493,"id_source":"w145187818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516955.9225024057,5277579.211138613],[516956.3041356864,5277577.100591484],[516960.28199132887,5277577.8901579445],[516960.2043045393,5277578.779051055],[516969.21168778185,5277580.250117379],[516967.4556380356,5277590.136453017],[516961.8263166652,5277589.119789977],[516962.0541965757,5277588.231334459],[516960.3128643641,5277587.915069507],[516958.3013140374,5277587.5535619855],[516958.07343467354,5277588.442017645],[516954.47042117105,5277587.875824116],[516954.62320348853,5277586.987149617],[516955.9225024057,5277579.211138613]]]},"properties":{"id_build":494,"id_source":"w145187825","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.4972665067,5276874.56480383],[516540.9965390561,5276875.569320281],[516542.3531770989,5276873.906077604],[516544.45203177375,5276875.356857317],[516535.85747739294,5276886.779840862],[516534.7327878621,5276886.109808618],[516531.5660498919,5276890.435268358],[516525.04511912697,5276885.748889301],[516528.212170208,5276881.312287183],[516526.86279276194,5276880.419339203],[516534.17580726,5276870.659800036],[516538.1485204895,5276873.4495755145],[516539.4972665067,5276874.56480383]]]},"properties":{"id_build":495,"id_source":"w145187830","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.15112898295,5277367.709474002],[516409.786602794,5277368.314238415],[516408.3562318499,5277372.211215417],[516405.1677697445,5277371.0463761855],[516404.19144243735,5277373.722095363],[516407.39489179256,5277374.89809029],[516404.8747347205,5277381.7594308695],[516391.6032443325,5277376.909696852],[516394.1385328247,5277370.003937322],[516397.22198388237,5277371.124018818],[516399.6210069843,5277364.606867353],[516401.369037654,5277365.245288383],[516408.15112898295,5277367.709474002]]]},"properties":{"id_build":496,"id_source":"w145187883","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516405.1382592083,5276733.748561618],[516405.3604507781,5276734.860584811],[516398.2969042765,5276736.063227035],[516395.66689108283,5276736.500380592],[516394.3286281126,5276728.972453596],[516393.6705893663,5276725.26964833],[516392.46824187733,5276725.488543134],[516391.8758275644,5276722.486103073],[516407.2062421934,5276719.528503046],[516407.94541965413,5276723.753895165],[516405.9913687977,5276724.192948696],[516403.5115648963,5276724.630521909],[516404.0285523397,5276727.7438904485],[516405.1382592083,5276733.748561618]]]},"properties":{"id_build":497,"id_source":"w145187916","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516547.5573908152,5276808.059443543],[516547.4709149679,5276812.060228897],[516535.6791948666,5276812.026733296],[516535.8056782892,5276801.868919246],[516535.8745374341,5276796.134303717],[516528.28686780564,5276796.77960112],[516528.30043199076,5276792.00063047],[516528.3016937751,5276791.5560750635],[516536.1162684936,5276790.355723232],[516544.68191441224,5276789.1575157065],[516544.6623373781,5276796.048124525],[516545.71351545386,5276796.162250893],[516545.67972708936,5276808.054108223],[516547.5573908152,5276808.059443543]]]},"properties":{"id_build":498,"id_source":"w145187977","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.17849962576,5276744.5809412645],[517315.11826195085,5276743.940676773],[517315.77109560464,5276751.722405279],[517310.36204855953,5276752.150883292],[517310.50730758865,5276753.81841238],[517310.02503531,5276754.350449935],[517309.6030471379,5276754.815982827],[517307.27406147437,5276755.031340167],[517307.41932130925,5276756.698869182],[517302.16049399704,5276757.1278012525],[517301.79783582035,5276752.792270804],[517301.3653528603,5276746.678295877],[517306.3237600596,5276746.248470228],[517306.17849962576,5276744.5809412645]]]},"properties":{"id_build":499,"id_source":"w145188003","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.2399259516,5276800.444250611],[517255.2698941102,5276790.3306156695],[517259.30352453387,5276790.209201502],[517261.95505818166,5276790.128148954],[517261.9530814962,5276790.794982025],[517268.56280893914,5276790.703439104],[517268.61056096165,5276799.928185993],[517268.0097075507,5276799.926404229],[517268.06965419673,5276805.039013891],[517268.21920827933,5276805.2617370235],[517268.27882507624,5276810.485485576],[517262.9452723123,5276810.803091404],[517262.60005008144,5276800.577204211],[517255.2399259516,5276800.444250611]]]},"properties":{"id_build":500,"id_source":"w145188029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.83694601967,5277139.803944831],[516854.6640777052,5277121.687650621],[516872.6145445282,5277121.406219108],[516872.2399312669,5277095.176132022],[516878.47346829664,5277095.194197938],[516878.5434165683,5277096.972638071],[516883.95114279765,5277096.877176277],[516884.6470821183,5277167.675274046],[516879.3896254569,5277167.771170475],[516879.38479268097,5277169.438254193],[516872.9263514969,5277169.308395293],[516872.63683038944,5277139.633217625],[516854.83694601967,5277139.803944831]]]},"properties":{"id_build":501,"id_source":"w145188032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.48947549495,5277062.531856577],[516775.45106287685,5277062.332508772],[516775.46226953634,5277058.442647391],[516826.459355175,5277057.922953933],[516826.43012927455,5277068.036593511],[516820.75964470464,5277068.086893868],[516803.28258398356,5277068.225370425],[516788.058684424,5277068.348167268],[516775.28324600385,5277068.444715386],[516768.87486112147,5277076.972908747],[516756.57076597057,5277093.363953082],[516744.40246796684,5277109.566476286],[516739.4718386662,5277116.1317769615],[516743.81883980124,5277119.256190739],[516736.95805708395,5277128.438843448],[516724.6388838715,5277144.91882407],[516719.61773721594,5277151.639477415],[516711.5239328026,5277145.614691085],[516735.8752202032,5277113.231802851],[516731.60363232973,5277109.9964719545],[516767.48947549495,5277062.531856577]]]},"properties":{"id_build":502,"id_source":"w145188046","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.57093036914,5276889.982401481],[517183.9269711364,5276889.034094829],[517184.15261489275,5276914.37464255],[517184.2126331328,5276919.487252095],[517184.26674760407,5276926.600361319],[517149.4920011933,5276926.875717678],[517138.5264697755,5276926.91011727],[517138.28983414196,5276905.23715386],[517138.30488071236,5276900.12476605],[517128.39031673543,5276900.317874013],[517123.2828242758,5276900.413992616],[517123.21915728773,5276896.523911494],[517123.16300680576,5276890.077636533],[517123.3132178237,5276890.078078239],[517128.57093036914,5276889.982401481]]]},"properties":{"id_build":503,"id_source":"w145188106","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sports_centre","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516827.33421649766,5277612.73572542],[516826.1320352137,5277612.954530595],[516824.2132581399,5277601.279293686],[516835.33362079,5277599.199782094],[516837.25237630494,5277610.875022681],[516836.5007714528,5277611.095128855],[516839.74778171047,5277630.887426479],[516836.0661519817,5277631.543617885],[516836.28822569567,5277632.6556593655],[516830.8036529557,5277633.528920185],[516827.5546864202,5277614.403461488],[516829.65802138014,5277614.1872615935],[516829.3630984211,5277612.297030374],[516827.33421649766,5277612.73572542]]]},"properties":{"id_build":504,"id_source":"w145188122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.72895723255,5276715.323646533],[516569.525652173,5276715.875921313],[516569.1460026441,5276717.319657694],[516569.444219957,5276718.098484374],[516570.715042307,5276720.213755426],[516561.46225800854,5276725.299861716],[516557.7252051941,5276718.843130154],[516560.0570203859,5276717.627223544],[516558.11464802007,5276713.954089038],[516558.7243586477,5276710.843910079],[516562.4024283819,5276711.632347832],[516564.74961674353,5276710.294233105],[516570.9035240367,5276706.7663834905],[516574.4906709164,5276713.111557022],[516570.72895723255,5276715.323646533]]]},"properties":{"id_build":505,"id_source":"w145188139","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516997.49163191876,5277591.113188429],[516996.5758734129,5277596.111811912],[516995.9637463243,5277599.999922608],[516992.28597157064,5277599.3223474175],[516992.4403813149,5277597.8779789405],[516986.43584915064,5277596.771284946],[516982.6079433212,5277596.071049868],[516984.059416076,5277587.62864915],[516987.887716454,5277588.195518379],[516988.5749358692,5277584.307626048],[516993.8290990919,5277585.212079923],[516993.1418762664,5277589.099971644],[516994.5680606954,5277589.326414524],[516994.41462348675,5277590.437365964],[516997.49163191876,5277591.113188429]]]},"properties":{"id_build":506,"id_source":"w145188145","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.6955466802,5276837.921808367],[516572.1194009371,5276839.0372578995],[516564.9571276676,5276848.574898744],[516563.6828542232,5276847.682155937],[516560.4412840836,5276851.896247316],[516554.070545071,5276847.210263271],[516557.38785127277,5276842.774104209],[516556.0387852694,5276841.770010673],[516563.1259459164,5276832.2321453495],[516564.2500103918,5276833.124460725],[516564.551699864,5276832.68075986],[516567.3243065448,5276834.911442556],[516567.09803936305,5276835.244218099],[516570.6955466802,5276837.921808367]]]},"properties":{"id_build":507,"id_source":"w145188153","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516958.67057598336,5277718.588628605],[516965.1892505046,5277723.608919481],[516965.6391712428,5277723.83251056],[516963.1516531098,5277727.048320497],[516961.35326579155,5277725.709401108],[516959.3185853092,5277728.148552366],[516962.3152489076,5277730.602361972],[516958.0940842911,5277736.035922126],[516954.7225959859,5277733.358743104],[516955.5515501466,5277732.360897808],[516949.7825299313,5277727.787360062],[516952.62405362626,5277724.205813469],[516955.58618564456,5277720.469023607],[516956.48505716736,5277721.249621338],[516958.67057598336,5277718.588628605]]]},"properties":{"id_build":508,"id_source":"w145188205","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516923.64545945486,5277625.795992669],[516922.7291235034,5277631.016905863],[516919.05103710754,5277630.450515872],[516918.8979383239,5277631.450330345],[516916.54070086643,5277631.176744498],[516914.91914514505,5277630.994209004],[516914.76572417584,5277632.105162582],[516907.40955056425,5277630.972394982],[516908.71006819734,5277622.751817107],[516916.06625196786,5277623.884586307],[516916.2212880591,5277622.217937814],[516920.4247292758,5277622.896992782],[516920.5027324701,5277621.896960099],[516924.1808241398,5277622.463350991],[516923.64545945486,5277625.795992669]]]},"properties":{"id_build":509,"id_source":"w145188229","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.1363247266,5277713.717687192],[517099.34014271223,5277713.220828837],[517050.15624407347,5277711.965173119],[517050.41082420206,5277701.963322308],[517050.4111497062,5277701.852183302],[517052.06324049906,5277701.857022186],[517059.64718777017,5277702.1015210925],[517059.9239310311,5277684.542218567],[517060.1912305765,5277670.205947542],[517067.3997415991,5277670.449356128],[517066.70579506457,5277702.233349805],[517119.9439235375,5277703.834485862],[517119.6892239893,5277713.836333949],[517117.1363247266,5277713.717687192]]]},"properties":{"id_build":510,"id_source":"w145188259","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.05670342164,5277664.695618526],[516965.50915371784,5277665.372518244],[516965.6635552003,5277663.928148929],[516969.6413501846,5277664.717722038],[516968.19024058187,5277673.048988273],[516963.83697403234,5277672.258322017],[516963.6822493633,5277673.8138304],[516957.0770918005,5277672.683188062],[516956.77217816864,5277674.238259162],[516953.2443131042,5277673.672284919],[516954.8485052449,5277664.341201402],[516958.3012803103,5277664.906957847],[516958.4537375451,5277664.129422348],[516962.05670342164,5277664.695618526]]]},"properties":{"id_build":511,"id_source":"w145188295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516625.7584061779,5276742.487452376],[516622.90686306066,5276741.590193945],[516626.2382430323,5276732.263965566],[516634.2671295302,5276734.954248081],[516638.4291607794,5276724.074442976],[516642.4808440291,5276725.530837391],[516643.90661815676,5276725.979471208],[516648.78384675964,5276727.660509067],[516644.5457382067,5276738.8735087225],[516643.1199672946,5276738.424874732],[516640.8502291558,5276744.197655296],[516633.49637277395,5276741.842710898],[516628.6939418057,5276740.273039097],[516627.6341870867,5276743.15964652],[516625.7584061779,5276742.487452376]]]},"properties":{"id_build":512,"id_source":"w145188309","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516453.75711796194,5277336.596770183],[516452.7833339574,5277335.704899679],[516447.0566027245,5277342.468249727],[516444.73447769013,5277340.350033675],[516447.9744388278,5277336.580431264],[516448.87375167,5277337.249810899],[516450.7575250848,5277335.032336447],[516441.61983560777,5277326.337618328],[516444.3315919081,5277323.455641031],[516445.6045231288,5277324.792914377],[516444.3231167041,5277326.456392571],[516448.8174909188,5277330.581261884],[516449.79692841467,5277329.472630669],[516455.64026522654,5277334.601575206],[516453.75711796194,5277336.596770183]]]},"properties":{"id_build":513,"id_source":"w145188351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.1892505046,5277723.608919481],[516958.67057598336,5277718.588628605],[516961.7607969574,5277714.707733076],[516962.43535545823,5277715.154258311],[516962.8045832305,5277714.721888326],[516963.1888947999,5277714.267334325],[516962.5904026168,5277713.487610783],[516962.8182779332,5277712.599155137],[516965.45599186135,5277709.383782802],[516968.6025284803,5277711.949172253],[516968.97832694615,5277711.839127677],[516970.02965561027,5277711.842192211],[516972.5022791541,5277713.738779651],[516969.6383068635,5277717.286909154],[516969.9377142911,5277717.621201781],[516965.1892505046,5277723.608919481]]]},"properties":{"id_build":514,"id_source":"w145188378","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.37579862226,5277694.830044276],[516967.9856296497,5277691.7199030975],[516966.2594125654,5277691.381452209],[516967.174482881,5277686.605101316],[516977.8328196694,5277688.414413903],[516976.9928360175,5277693.190982147],[516976.3169797087,5277693.189011264],[516975.40222694504,5277697.854221778],[516976.3030438789,5277697.967988506],[516975.6922367977,5277701.411545875],[516966.5355005388,5277699.717753064],[516967.1459784526,5277696.38533376],[516967.9717006663,5277696.498880333],[516968.35171129694,5277694.944028638],[516967.37579862226,5277694.830044276]]]},"properties":{"id_build":515,"id_source":"w145188381","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.80858518643,5277046.442881533],[517271.2760843469,5277040.753907011],[517271.7434525099,5277035.10938813],[517270.3168129223,5277034.9940167405],[517270.7045278237,5277030.88299171],[517279.93997391773,5277031.688370583],[517279.62735617586,5277035.799617895],[517279.31803690153,5277038.79947637],[517283.14733065217,5277039.144260674],[517284.2699257272,5277040.481271233],[517284.0366975123,5277043.1479357565],[517282.6818649668,5277044.144173147],[517282.44764801516,5277047.1442544125],[517278.54358578834,5277046.688108803],[517278.54259641527,5277047.021525471],[517270.80858518643,5277046.442881533]]]},"properties":{"id_build":516,"id_source":"w145188393","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516871.4412696711,5277681.770137322],[516869.42174802703,5277678.985786581],[516868.8951146401,5277679.317680394],[516866.4263067398,5277676.087469133],[516866.9587362622,5277673.755073042],[516868.4635423684,5277672.759173638],[516870.33996131684,5277673.098030715],[516871.16311201523,5277674.100675564],[516874.022535185,5277672.108443988],[516877.029643056,5277676.1626544995],[516878.06189918553,5277677.566010314],[516879.79231454077,5277676.459627976],[516882.1856972888,5277679.800766159],[516874.4272953609,5277685.324155751],[516872.8619965258,5277686.464360217],[516870.0866559222,5277682.76647119],[516871.4412696711,5277681.770137322]]]},"properties":{"id_build":517,"id_source":"w145188454","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.9637463243,5277599.999922608],[516996.5758734129,5277596.111811912],[516999.5036593795,5277596.453780004],[516999.7331673989,5277595.009631],[517001.6249154156,5277595.248549079],[517003.33649682405,5277595.464713582],[517003.259128265,5277596.242467171],[517009.4888820757,5277597.3720645355],[517008.95346632734,5277600.7046983605],[517011.20505752636,5277601.155836771],[517010.8227563519,5277603.488658403],[517009.6911163255,5277605.26359097],[516998.5820588627,5277603.45290502],[516998.58303237654,5277603.119488053],[516995.50570597994,5277602.554803972],[516995.9637463243,5277599.999922608]]]},"properties":{"id_build":518,"id_source":"w145188528","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.2109570713,5277654.066055053],[516591.19005096174,5277653.06858613],[516592.60197590454,5277653.0281541515],[516630.6184425372,5277652.069686682],[516631.7817175886,5277691.749958427],[516631.78140007734,5277691.8610974355],[516636.88818801247,5277691.764549268],[516636.9582013982,5277693.542988009],[516636.730057553,5277694.5425952785],[516636.9378743218,5277700.655884599],[516607.04782964656,5277701.348521583],[516606.70088745654,5277691.344939653],[516600.5427676032,5277691.438516309],[516600.2065883574,5277677.656208735],[516590.8190381317,5277677.851728],[516590.37452725664,5277659.912480195],[516590.2109570713,5277654.066055053]]]},"properties":{"id_build":519,"id_source":"w145188561","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516409.21823611634,5277364.800617691],[516402.4361731445,5277362.325316955],[516397.59689464764,5277360.6668162085],[516399.9966111006,5277353.905159304],[516403.1551690893,5277355.025455432],[516404.28310713946,5277351.850034057],[516407.77179010306,5277353.082402661],[516406.65899554605,5277356.21341011],[516409.6825286059,5277357.277759395],[516410.8180737259,5277354.06901875],[516414.44180773676,5277355.346227962],[516413.2759704373,5277358.643794391],[516416.216985676,5277359.674572512],[516413.83990780637,5277366.391830765],[516409.21823611634,5277364.800617691]]]},"properties":{"id_build":520,"id_source":"w145188577","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516848.00444674515,5277736.049694267],[516846.5012685139,5277736.489903943],[516850.29988845676,5277747.281472434],[516835.04061067157,5277752.460902346],[516831.46660684276,5277741.892273156],[516832.9697825263,5277741.452059602],[516834.2476748636,5277741.011194976],[516829.2597152525,5277725.992881152],[516830.83831089886,5277725.441745124],[516825.7004602165,5277710.311861548],[516840.4341748207,5277705.130886619],[516845.49657557777,5277720.371704866],[516844.5193785727,5277720.702297138],[516843.16638621705,5277721.142942239],[516848.00444674515,5277736.049694267]]]},"properties":{"id_build":521,"id_source":"w145188588","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.0499646221,5277678.207883762],[516830.51626467647,5277680.984839135],[516827.66457084083,5277680.309755951],[516825.5583689384,5277681.526207569],[516817.0369943937,5277667.831374149],[516822.378407008,5277664.512608362],[516820.73433366796,5277661.729359648],[516833.7506081673,5277653.209207735],[516835.6947388279,5277656.104467761],[516841.1866857043,5277652.675014577],[516847.6907401177,5277662.807566996],[516837.9857368136,5277668.892185558],[516837.6869621954,5277668.335621765],[516834.9484737393,5277670.061484996],[516833.3233914962,5277671.101501229],[516835.86442255834,5277675.332166578],[516831.0499646221,5277678.207883762]]]},"properties":{"id_build":522,"id_source":"w145188600","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516939.0644310766,5277746.538815998],[516938.01537223294,5277745.757783936],[516941.2570478387,5277741.432758347],[516941.9328985368,5277741.434725172],[516943.3802446092,5277739.538444194],[516945.40051018423,5277736.888079506],[516947.42806386383,5277736.893981657],[516950.5752406107,5277739.237083467],[516951.70262974134,5277738.906946316],[516954.92457452347,5277741.361408169],[516954.3215526176,5277742.137631635],[516954.5439230534,5277743.138538867],[516953.11130182334,5277745.134885939],[516952.2101681287,5277745.13226179],[516946.631824146,5277752.451257628],[516945.50799649995,5277751.558866588],[516939.0644310766,5277746.538815998]]]},"properties":{"id_build":523,"id_source":"w145188618","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.33538717363,5277708.705396627],[516691.80972261843,5277708.703889413],[516621.9641330177,5277711.060264398],[516692.33538717363,5277708.705396627]]]},"properties":{"id_build":524,"id_source":"w145188679","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517219.0371513902,5277410.317162406],[517218.9342310174,5277412.10621082],[517220.10557473905,5277412.176359121],[517219.87611908943,5277416.12114785],[517218.8324111271,5277416.06249106],[517218.68980508397,5277418.573831654],[517219.73351259617,5277418.632488418],[517219.3365878607,5277425.877637757],[517209.75551752787,5277425.338065353],[517209.77936118236,5277424.893576126],[517207.2414550536,5277424.74159292],[517207.3076623564,5277404.881083989],[517214.05819655885,5277405.190002758],[517213.7864128027,5277408.212205139],[517219.14030190953,5277408.450316724],[517219.0371513902,5277410.317162406]]]},"properties":{"id_build":525,"id_source":"w145188727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.2153020375,5277404.542959224],[516550.9508709273,5277408.312946484],[516549.13445043814,5277410.608378198],[516554.16974379745,5277414.612613812],[516546.0299286935,5277424.847684519],[516540.96466237365,5277420.821142737],[516533.2017288296,5277430.579400671],[516522.90637465386,5277422.381394295],[516526.9310272069,5277417.324839927],[516517.227596908,5277409.595311597],[516518.9083226804,5277407.477308763],[516525.254292268,5277399.515475745],[516539.978078251,5277411.226970153],[516543.88969452656,5277406.314588174],[516544.45167250664,5277406.760744507],[516546.2153020375,5277404.542959224]]]},"properties":{"id_build":526,"id_source":"w145188743","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.5868382216,5277646.165097523],[517274.81245528755,5277646.054627018],[517275.0344447083,5277647.166685456],[517279.2427754291,5277646.178914755],[517278.9460208584,5277644.955494274],[517283.90564170876,5277643.858816841],[517284.9444437023,5277648.085219987],[517287.0487744178,5277647.5357683385],[517288.01313783537,5277651.539671084],[517281.2499068198,5277653.075550765],[517281.6955321353,5277654.7439732],[517276.9612078748,5277655.841321086],[517277.1835263261,5277656.842240632],[517262.75462083094,5277660.35591679],[517260.1582374233,5277649.567641122],[517271.29530289,5277646.944425419],[517274.5868382216,5277646.165097523]]]},"properties":{"id_build":527,"id_source":"w145188778","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516362.61505892815,5277355.411511538],[516366.1282913485,5277345.240977658],[516373.3234684572,5277347.706283608],[516372.1498617685,5277351.103862117],[516374.7158279684,5277351.977968823],[516376.94191687094,5277345.527005837],[516383.93450789765,5277347.9250711985],[516382.8365887652,5277351.111694891],[516386.07028233184,5277352.221079161],[516383.6700497407,5277359.171677972],[516376.9850986102,5277356.8745039925],[516374.9635013968,5277362.7147731045],[516378.1896800402,5277363.824131906],[516375.7289132313,5277370.941273513],[516365.81028494955,5277367.53473373],[516369.2174704218,5277357.68620895],[516362.61505892815,5277355.411511538]]]},"properties":{"id_build":528,"id_source":"w145188813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.13847808616,5277355.523905617],[517271.29204674996,5277351.856743772],[517271.4452858984,5277348.300720894],[517271.60735394096,5277344.300164555],[517271.7444855199,5277341.110855676],[517281.62648394454,5277341.518054594],[517281.33530989557,5277348.530119327],[517281.18987155164,5277351.986139201],[517280.3810186101,5277371.477681031],[517280.2436189879,5277374.7559010275],[517279.9445092034,5277381.91242453],[517270.06257925916,5277381.50522827],[517270.20040158555,5277378.082527382],[517270.36213844694,5277374.193109771],[517270.51570622885,5277370.525947801],[517270.66143457225,5277366.969902524],[517271.13847808616,5277355.523905617]]]},"properties":{"id_build":529,"id_source":"w145188820","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.1620274906,5277685.061987704],[516895.6854363829,5277685.841486308],[516896.9646360091,5277684.956079427],[516896.5166450305,5277684.065659657],[516895.39473172487,5277682.50644441],[516897.12547151605,5277681.288928206],[516897.655654794,5277679.7345079025],[516897.5064319092,5277679.4006549595],[516898.78595583065,5277678.404109481],[516899.3109779304,5277678.627913388],[516902.77181681397,5277676.415161833],[516907.555971114,5277683.986570197],[516898.526796483,5277690.073051005],[516899.1249770279,5277690.96390691],[516896.26587697165,5277692.844987214],[516892.1524129128,5277687.053773144],[516895.1620274906,5277685.061987704]]]},"properties":{"id_build":530,"id_source":"w145188830","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.0889506391,5277366.935837414],[516880.09571722883,5277364.601919487],[516880.1105392766,5277359.489527866],[516880.11795029487,5277356.933332071],[516880.12632796523,5277354.043719446],[516890.33953986864,5277354.184478796],[516890.2428387671,5277361.630570413],[516890.23413364263,5277364.63132202],[516890.17964593443,5277383.413804617],[516890.24539505504,5277386.637052092],[516890.22411568573,5277393.972222997],[516879.9349079211,5277394.1646628035],[516880.02225127263,5277389.941600303],[516879.9532743659,5277387.829742462],[516880.0438399816,5277382.495290483],[516880.0509288059,5277380.050233547],[516880.0889506391,5277366.935837414]]]},"properties":{"id_build":531,"id_source":"w145188835","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.31746463437,5277336.162821931],[516408.7096911235,5277329.401147668],[516415.1619462045,5277331.664359864],[516416.2369179886,5277328.633273317],[516413.145843993,5277327.546502382],[516415.5002499085,5277320.884750173],[516425.3511825764,5277324.346753034],[516423.08009754674,5277330.753114761],[516429.58485274285,5277333.038719037],[516426.0115477931,5277343.16458963],[516419.14666889113,5277340.755719862],[516420.33519965626,5277337.40264875],[516417.244131083,5277336.315875615],[516414.9048431967,5277342.944327934],[516408.26507061074,5277340.602789574],[516409.44605383376,5277337.260808985],[516406.31746463437,5277336.162821931]]]},"properties":{"id_build":532,"id_source":"w145188855","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.144209608,5276841.39678773],[517273.15442927065,5276837.951483285],[517274.2092127419,5276836.843213836],[517276.91270622035,5276836.962374037],[517279.8418479806,5276836.971065251],[517280.5952186289,5276836.195322039],[517280.62325231615,5276826.748519654],[517286.40643979126,5276826.765684308],[517286.41171848326,5276824.987462699],[517290.99320606195,5276825.00106475],[517290.9562454019,5276837.44861611],[517290.1300772767,5276837.446163015],[517290.1181976181,5276841.447161718],[517280.8050360573,5276841.419516767],[517280.8020677417,5276842.4197664475],[517274.1927284101,5276842.400156487],[517273.144209608,5276841.39678773]]]},"properties":{"id_build":533,"id_source":"w145188869","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.8764923033,5277366.849394003],[516926.8839238723,5277364.293198188],[516926.8227182182,5277359.514005099],[516926.90524922754,5277356.95802765],[516926.83984303824,5277353.623640914],[516936.82840301836,5277353.541548926],[516936.8818413143,5277360.98807683],[516936.9485348491,5277363.877907936],[516936.96737907326,5277383.216303652],[516937.03374891245,5277386.2172738165],[516937.0875096107,5277393.552663154],[516927.0239192523,5277393.6345362],[516927.03587458644,5277389.52239494],[516926.9682071859,5277386.965980701],[516926.98177803215,5277382.298144723],[516926.98888656835,5277379.8530878],[516926.8764923033,5277366.849394003]]]},"properties":{"id_build":534,"id_source":"w145188872","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.02329491527,5277504.507054715],[517083.2798929511,5277505.008558837],[517082.89560025197,5277508.008209299],[517083.56821691594,5277509.121582219],[517084.54774607724,5277508.013057268],[517088.5269369256,5277508.358155303],[517087.67900890036,5277515.802041853],[517081.9732341194,5277515.22959836],[517081.66404012986,5277518.22946929],[517080.838294735,5277518.115906679],[517076.03303860826,5277517.76839092],[517076.41732716816,5277514.768739971],[517075.9684049297,5277514.200609616],[517075.36987440306,5277513.431988637],[517075.98695277696,5277507.876802087],[517075.7619861289,5277507.765002331],[517076.14787244523,5277504.220770451],[517079.02329491527,5277504.507054715]]]},"properties":{"id_build":535,"id_source":"w145188877","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.4040490381,5276883.363994468],[516792.03402991,5276885.2234578645],[516787.8915592876,5276863.205835831],[516802.0194750921,5276860.468088358],[516800.76255556993,5276853.573795089],[516815.5664549729,5276850.838030716],[516822.372823819,5276886.644701787],[516836.95133298147,5276883.908340903],[516840.9440351841,5276905.703286859],[516819.07651597523,5276909.752257393],[516817.5952746755,5276902.523892488],[516810.5312018422,5276903.948312465],[516813.933738213,5276922.073923062],[516792.06758168124,5276925.678439445],[516786.7423590104,5276897.10015836],[516804.62738872546,5276893.706410887],[516802.4040490381,5276883.363994468]]]},"properties":{"id_build":536,"id_source":"w145188885","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516370.0771560082,5277329.714731166],[516373.4158427563,5277320.199436164],[516380.2207784801,5277322.574741124],[516379.16087562736,5277325.594762613],[516382.05691618525,5277326.603168822],[516384.2448785208,5277320.363267187],[516391.18486437754,5277322.783420957],[516390.02651260246,5277326.092126891],[516393.1251016095,5277327.178906679],[516390.6418653146,5277334.262636532],[516384.519698758,5277332.122634228],[516383.5808931751,5277334.809576257],[516386.3568939202,5277335.773190932],[516383.9266770532,5277342.701477144],[516373.8130586107,5277339.1832355745],[516376.36439356755,5277331.91075244],[516370.0771560082,5277329.714731166]]]},"properties":{"id_build":537,"id_source":"w145188894","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516401.38484419003,5277319.6446600985],[516402.67900986684,5277316.1140593765],[516399.85813021037,5277315.083626674],[516397.4060474373,5277321.767337949],[516390.4138683871,5277319.213662041],[516391.5188382173,5277316.1937694745],[516388.09775098553,5277314.950487091],[516390.6709246227,5277307.933693421],[516397.16795751476,5277310.308151327],[516399.32486898307,5277304.43492938],[516396.1663766372,5277303.281293798],[516398.67141139833,5277296.464363517],[516408.67209461826,5277300.104583252],[516405.56909277895,5277308.575807812],[516411.9611041931,5277310.905530412],[516407.8818909898,5277322.008016147],[516401.38484419003,5277319.6446600985]]]},"properties":{"id_build":538,"id_source":"w145188899","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.85030389344,5277569.32212131],[517072.81944111356,5277563.659758698],[517084.14797225,5277567.471748846],[517085.2081332098,5277564.474081602],[517089.10925253783,5277565.819210616],[517088.5332321838,5277567.61798686],[517087.97236201336,5277569.372351652],[517088.94307386456,5277571.264579885],[517087.5808944502,5277574.817059737],[517085.85073539446,5277575.81224132],[517084.7141749103,5277579.2542440565],[517080.66287033935,5277577.908677289],[517077.661939015,5277576.899614208],[517078.1925058802,5277575.234071478],[517075.7169235587,5277574.337690468],[517075.338506446,5277575.336840029],[517069.56192837266,5277573.319381472],[517070.85030389344,5277569.32212131]]]},"properties":{"id_build":539,"id_source":"w145188910","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516358.12578905904,5277614.065788613],[516352.2451891659,5277622.273618955],[516350.61140412133,5277621.090947521],[516349.32237369654,5277620.153752434],[516348.86992466653,5277620.819321091],[516346.39674759546,5277619.034138379],[516344.29842550633,5277617.472288849],[516344.75087426865,5277616.806719844],[516343.9788819684,5277616.271081122],[516341.6778610536,5277614.686435526],[516342.80960691144,5277612.800234585],[516340.4863049994,5277611.126615036],[516340.86334566853,5277610.571973957],[516339.7240358584,5277609.801911086],[516337.8651120663,5277608.56304146],[516339.90050820773,5277605.79025701],[516343.59520065715,5277600.465914144],[516349.216188906,5277604.4827320585],[516347.6332377387,5277606.589944489],[516358.12578905904,5277614.065788613]]]},"properties":{"id_build":540,"id_source":"w145188917","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.46642968385,5277757.674354193],[516946.5382887264,5277758.785962964],[516943.8999604956,5277762.223622077],[516942.77289977437,5277762.442621722],[516940.67478856276,5277760.880556398],[516939.9963529006,5277761.767701854],[516933.7774305352,5277756.970590608],[516937.3958620989,5277752.202098938],[516936.57144056796,5277751.644000612],[516937.70206006913,5277750.202470591],[516936.8028672059,5277749.533014733],[516939.0644310766,5277746.538815998],[516945.50799649995,5277751.558866588],[516943.397590337,5277754.220082914],[516944.8962425249,5277755.335844466],[516944.2935468775,5277756.000929966],[516946.46642968385,5277757.674354193]]]},"properties":{"id_build":541,"id_source":"w145188928","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516400.0986294759,5277589.621962877],[516406.72058606293,5277584.861606069],[516405.7484026481,5277583.414048042],[516415.4552857648,5277576.550737562],[516416.4277813236,5277577.887158203],[516419.5884216035,5277575.562134052],[516418.61592637515,5277574.225712885],[516425.6137128068,5277569.355297548],[516426.5862072565,5277570.6917198775],[516431.4775309224,5277567.1490469845],[516438.1350964211,5277576.392450535],[516423.6119742665,5277586.79861062],[516422.78936138185,5277585.573751422],[516418.27448105946,5277588.784073582],[516419.0970944333,5277590.008932152],[516406.75621862523,5277598.865330816],[516400.0986294759,5277589.621962877]]]},"properties":{"id_build":542,"id_source":"w145188981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.03348842403,5277696.075369012],[516940.03567571886,5277696.6398038585],[516940.8024738499,5277691.196177771],[516941.47833037964,5277691.198144529],[516941.47897722747,5277690.975866522],[516941.70555645705,5277690.531966102],[516944.40736549074,5277691.095529053],[516945.3046255846,5277692.431820037],[516944.92203304125,5277694.875785262],[516949.7255322396,5277695.778888264],[516948.2744585387,5277704.1101597855],[516943.09452056215,5277703.539382193],[516942.71387033,5277705.316513552],[516940.8072338254,5277705.044229089],[516938.8105478268,5277704.74945525],[516938.582675882,5277705.63791182],[516935.5804930976,5277705.073477707],[516937.03348842403,5277696.075369012]]]},"properties":{"id_build":543,"id_source":"w145188982","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.1181147049,5277759.327010929],[517167.092535075,5277758.654197459],[517167.01678529487,5277758.876254041],[517162.0651482056,5277757.305694606],[517163.4286420653,5277753.3086751],[517164.3291192068,5277753.533609975],[517165.6171933521,5277749.647508605],[517168.7682092028,5277750.65706048],[517169.7460754725,5277750.1042445665],[517172.29666297283,5277751.000887533],[517172.6695122547,5277751.891107217],[517175.67033692263,5277752.900219805],[517174.4583347202,5277756.453123481],[517175.50867172406,5277756.789642187],[517173.0836870042,5277764.228866963],[517168.0569618326,5277762.658080879],[517169.1181147049,5277759.327010929]]]},"properties":{"id_build":544,"id_source":"w145188994","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516941.1996849695,5277580.501956726],[516940.587916735,5277584.278934081],[516939.6722061077,5277589.277566345],[516936.1442878838,5277588.7116026655],[516936.297390696,5277587.711788704],[516931.1930908875,5277586.918962545],[516931.1921212368,5277587.252379509],[516925.2624048342,5277586.234878269],[516926.02435606753,5277582.458335978],[516927.1504815117,5277582.572750026],[516927.8357220519,5277579.351684574],[516929.11527304683,5277578.355145856],[516932.1854320788,5277578.808633946],[516933.6942276035,5277579.035302146],[516933.92113379197,5277578.4802625105],[516937.74912155635,5277579.158237722],[516937.7465348289,5277580.0473496085],[516941.1996849695,5277580.501956726]]]},"properties":{"id_build":545,"id_source":"w145188999","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.6495362397,5277562.560218813],[516387.2715074102,5277557.79984005],[516386.2239049032,5277556.463212975],[516395.8560255289,5277549.488519702],[516396.82853013993,5277550.824936991],[516399.98886406934,5277548.611041273],[516399.01667286106,5277547.163484472],[516405.9396912329,5277542.181695143],[516406.91219477187,5277543.518114106],[516411.7284319721,5277539.975213113],[516418.4608436905,5277549.329944306],[516404.163293536,5277559.625648906],[516403.2655758199,5277558.40058094],[516401.1208691803,5277559.972724736],[516398.7503723408,5277561.722057115],[516399.6480904838,5277562.947124393],[516387.3071874416,5277571.803563972],[516380.6495362397,5277562.560218813]]]},"properties":{"id_build":546,"id_source":"w145189004","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516903.7990804912,5277736.433714949],[516903.34754487756,5277736.765823713],[516900.72988199384,5277733.090605378],[516901.5578589016,5277732.426169455],[516900.1365456525,5277730.532664044],[516897.6535829606,5277732.1925557265],[516895.1106865611,5277728.628696935],[516897.5188779142,5277726.8574471995],[516901.5072867363,5277723.979386517],[516902.18023535877,5277724.9815998245],[516905.64201616007,5277722.4354328485],[516908.4843193616,5277726.333585671],[516908.03278270026,5277726.665694075],[516908.4739369951,5277727.322701064],[516908.93004556664,5277728.001979521],[516912.0908029147,5277725.6772219315],[516914.40905204933,5277729.01815556],[516908.7653300292,5277733.002798851],[516903.7990804912,5277736.433714949]]]},"properties":{"id_build":547,"id_source":"w145189018","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.5778148249,5277548.014509103],[517006.0358636851,5277545.459628727],[517010.53973843827,5277546.139626025],[517010.15645994083,5277548.805864445],[517011.5826536155,5277549.032311458],[517013.0839441851,5277549.258978269],[517013.5429706036,5277546.3706815345],[517017.8212278435,5277547.161165077],[517017.7451562189,5277547.494362503],[517022.473669218,5277548.397305539],[517020.8696631114,5277557.6172300745],[517016.0657356278,5277556.825207799],[517015.7608004138,5277558.380275576],[517011.8573861284,5277557.81316865],[517011.47605623014,5277559.812573146],[517008.0228990698,5277559.357924374],[517008.55831789284,5277556.025290671],[517004.28006595455,5277555.234813913],[517005.5778148249,5277548.014509103]]]},"properties":{"id_build":548,"id_source":"w145189023","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516334.63203091803,5277601.930032975],[516334.1419404796,5277602.628839102],[516329.39775931725,5277599.259106312],[516329.8425734384,5277598.637970702],[516328.50102958543,5277597.678405035],[516326.8446727321,5277596.5067910515],[516328.04341177567,5277594.8319409285],[516325.8024551673,5277593.247470185],[516326.30759583274,5277592.53759159],[516324.8236160729,5277591.488715459],[516323.18975448795,5277590.328279604],[516329.040306552,5277582.120336096],[516334.4290535147,5277585.947550317],[516332.77038266434,5277588.276834013],[516343.44293664687,5277595.853182065],[516337.60745948023,5277604.038925645],[516335.6962778373,5277602.688770217],[516334.63203091803,5277601.930032975]]]},"properties":{"id_build":549,"id_source":"w145189043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517067.92396812694,5277594.0977481045],[517069.1362640134,5277590.433684245],[517070.186637036,5277590.770183769],[517070.5426536883,5277589.726512203],[517070.94411942456,5277588.5496059945],[517067.49293869536,5277587.428087966],[517067.8716795147,5277586.317798899],[517068.4718000554,5277586.54183818],[517069.2286306216,5277584.543538169],[517068.478316798,5277584.319058472],[517068.70556150493,5277583.652885069],[517072.1570701564,5277584.663264822],[517075.5334810852,5277585.673426364],[517075.3055837368,5277586.561877474],[517079.8825590357,5277587.908982731],[517079.1234429444,5277590.685254276],[517081.9745000754,5277591.582738476],[517080.00308074243,5277598.023071151],[517077.1523524805,5277597.014448917],[517067.92396812694,5277594.0977481045]]]},"properties":{"id_build":550,"id_source":"w145189136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516912.08241886954,5277539.851229287],[516912.8015367986,5277535.307695702],[516917.0351123955,5277535.975721347],[516917.19585213054,5277534.931473199],[516919.8831039704,5277535.361614037],[516920.12787234504,5277533.828594543],[516923.49070847174,5277534.360726437],[516923.26115250104,5277535.827106064],[516923.6214574017,5277535.8837233735],[516924.0493174426,5277535.951651073],[516924.3858512356,5277533.852084931],[516928.4317805809,5277534.486231401],[516926.7715713428,5277545.006354521],[516926.2973100067,5277547.9835255025],[516922.3264545504,5277547.360712663],[516922.8696257767,5277543.9280680055],[516915.7986464642,5277542.818347526],[516915.98220555723,5277541.674139716],[516911.8987636358,5277541.02877891],[516912.08241886954,5277539.851229287]]]},"properties":{"id_build":551,"id_source":"w145189185","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.6458155916,5277641.393473947],[516984.86827546917,5277642.4341120515],[516983.7276573377,5277649.8660465935],[516984.1015146937,5277650.422836978],[516981.239773725,5277653.192987525],[516980.7895239275,5277653.080534275],[516980.4888171114,5277653.190797125],[516979.5857242881,5277653.855002759],[516978.98301425105,5277654.520084596],[516978.6042947417,5277655.630379512],[516971.2481628835,5277654.49753111],[516971.86091602384,5277650.3871395355],[516973.2922706468,5277648.8353532925],[516973.81664452143,5277649.281441906],[516975.92561154,5277647.131476307],[516976.75412777846,5277646.289228723],[516977.0603445473,5277644.289602736],[516978.1864570705,5277644.404026702],[516978.6458155916,5277641.393473947]]]},"properties":{"id_build":552,"id_source":"w145189223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.6578204403,5277499.911898796],[517297.4280634623,5277498.083348838],[517298.4148809704,5277497.063793268],[517296.23591071385,5277494.912318488],[517302.31393371354,5277488.995505221],[517311.6742571232,5277498.070122355],[517315.4708012051,5277501.749030971],[517308.7738060638,5277508.730933917],[517299.87721848197,5277500.291196898],[517298.26560495683,5277501.8090255745],[517297.77661186364,5277502.096536571],[517297.39331681986,5277502.195423728],[517297.0926291696,5277502.294556337],[517296.5673090447,5277502.170741696],[517296.27512170037,5277501.936479748],[517296.05766876735,5277501.824693781],[517295.76581155317,5277501.479292895],[517295.699214186,5277501.145675202],[517295.5650619542,5277500.800742826],[517295.58206246246,5277500.133953638],[517295.6578204403,5277499.911898796]]]},"properties":{"id_build":553,"id_source":"w145189270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517120.59046737954,5276896.516182256],[517080.4828658835,5276896.842958794],[517080.42737080413,5276966.9720270615],[517078.7750714521,5276966.967180639],[517079.01942161424,5276986.0839489475],[517080.44640273205,5276986.088134537],[517080.4108682793,5276998.202272637],[517036.9993901123,5276998.519654616],[517036.9694852065,5276983.071130301],[517047.2594259894,5276982.878966366],[517047.0439286759,5276953.870839767],[517053.7285710279,5276953.779273304],[517053.36370453535,5276873.2018342605],[517053.73923315806,5276873.202934026],[517053.6635564068,5276847.751695435],[517122.83851840446,5276847.176711629],[517122.9916130201,5276871.739061793],[517122.9896521962,5276872.405894954],[517120.4357303834,5276872.5095255235],[517120.59046737954,5276896.516182256]]]},"properties":{"id_build":554,"id_source":"w145189278","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sports_centre","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.82668075233,5277277.433854216],[516438.5385004917,5277276.582730831],[516438.99277484557,5277275.283677481],[516437.70996790734,5277274.779926541],[516438.30023900885,5277273.192293544],[516436.8823133031,5277272.665933349],[516438.39552622783,5277268.7025137395],[516439.21977109084,5277266.704324083],[516440.6376352805,5277267.252912626],[516441.0612429026,5277266.176052497],[516448.3900979841,5277269.19752716],[516448.0120205106,5277270.107805649],[516449.4899321151,5277270.66767997],[516449.8078351132,5277269.790573517],[516454.71372871933,5277271.816066783],[516451.309991981,5277280.375328969],[516441.2728178358,5277276.357057706],[516440.82668075233,5277277.433854216]]]},"properties":{"id_build":555,"id_source":"w145189283","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516441.62654433947,5277249.49556174],[516439.99129136093,5277248.801877418],[516440.14274831844,5277248.357745792],[516440.59335351846,5277248.359018125],[516441.7280263315,5277245.472586873],[516441.5030374549,5277245.360811725],[516441.73053704354,5277244.583475414],[516442.70904594735,5277243.808259925],[516443.76453930954,5277242.366423109],[516444.58077735023,5277240.546035365],[516444.97619922645,5277238.813371022],[516444.97965212836,5277237.590842786],[516445.36017967365,5277235.813680485],[516436.4115763398,5277231.909632834],[516440.8512661284,5277220.852641843],[516451.08003140445,5277226.205130645],[516441.62654433947,5277249.49556174]]]},"properties":{"id_build":556,"id_source":"w145189332","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.23641539493,5277253.03281632],[517197.2702346011,5277253.72337894],[517196.1764799303,5277268.057195216],[517197.75326501735,5277268.172992268],[517196.5771895951,5277284.951643457],[517192.90536986856,5277284.740747991],[517188.5427572352,5277284.483359518],[517188.9353208161,5277278.705243644],[517176.696562517,5277277.780006001],[517177.56135875126,5277264.668049475],[517175.0167872704,5277261.659765773],[517167.1866512891,5277268.305067391],[517157.606848385,5277257.051700389],[517158.6612069827,5277256.054548442],[517155.294114926,5277251.821310773],[517162.29585587484,5277245.951530687],[517167.01082967204,5277251.522425037],[517172.5823874076,5277246.759839586],[517175.2020675897,5277249.768343674],[517181.9378602126,5277257.679149429],[517188.920263162,5277258.366597944],[517189.23641539493,5277253.03281632]]]},"properties":{"id_build":557,"id_source":"w145189333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.7594032795,5277296.394970356],[517217.98472040374,5277293.850532834],[517213.6825244292,5277293.4821642395],[517214.4213446814,5277284.904348016],[517219.1890380524,5277285.318549726],[517219.3133730201,5277283.9074406605],[517223.11253437784,5277284.229869372],[517223.57143602887,5277283.964491091],[517228.151246953,5277284.422600316],[517229.20133742085,5277284.870267189],[517229.87526788085,5277285.5391009],[517230.62100957497,5277287.31954626],[517230.9158197054,5277289.209797109],[517230.8811748668,5277290.765653258],[517230.8301943517,5277292.76602069],[517230.3795924405,5277292.764687191],[517230.29034958704,5277297.54343907],[517229.2396037445,5277297.318049855],[517226.2283593381,5277299.754217869],[517226.6779742258,5277300.088967852],[517225.695752753,5277302.086580155],[517217.7594032795,5277296.394970356]]]},"properties":{"id_build":558,"id_source":"w145189359","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517016.56061005587,5277747.209383724],[517004.69536233466,5277747.285853292],[517004.8095162566,5277759.622722713],[516980.0615773244,5277722.429739675],[516984.56758767436,5277722.331744316],[516984.65208571777,5277719.108932115],[517004.6273055175,5277719.167244568],[517004.76710682083,5277722.724131582],[517015.3548190538,5277722.977347649],[517015.4019776696,5277732.535522075],[517013.8246654388,5277732.6420520535],[517013.81816925673,5277734.864832293],[517016.6720892632,5277734.762033749],[517016.7111238208,5277747.098683715],[517016.56061005587,5277747.209383724]]]},"properties":{"id_build":559,"id_source":"w145189376","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.2790926324,5277685.815230502],[516582.0858203597,5277685.606639914],[516582.35676045436,5277695.943423312],[516584.15935940144,5277695.8374182],[516584.2357209159,5277695.393076088],[516586.48857406055,5277695.399494275],[516586.48730747297,5277695.844050312],[516588.51487514947,5277695.8498274265],[516588.9201583838,5277711.743989875],[516580.5085806403,5277712.053446559],[516580.51965934894,5277708.163581137],[516540.11542392644,5277709.160045342],[516539.90655860474,5277703.380176671],[516533.7481372826,5277703.584962961],[516533.5348464844,5277699.361040726],[516531.95753478317,5277699.467701257],[516531.92014696833,5277696.766895353],[516531.8316461473,5277690.909570997],[516535.5113090399,5277690.920021358],[516535.6567642161,5277692.587533091],[516539.63712236384,5277692.487700255],[516539.6532257304,5277686.819610804],[516577.2790926324,5277685.815230502]]]},"properties":{"id_build":560,"id_source":"w145189416","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516333.3883249916,5277638.36930806],[516325.75820822135,5277649.195158117],[516327.1072813214,5277650.143630417],[516315.79785859416,5277666.193864366],[516307.8757399079,5277660.648015373],[516309.18760192604,5277658.795654373],[516309.91141506465,5277657.764081277],[516309.139425044,5277657.228447133],[516310.91123975726,5277654.710535805],[516312.53978257073,5277652.403389333],[516313.1618619184,5277652.838577965],[516313.83289152867,5277651.884655364],[516315.28049026534,5277649.83262433],[516316.5169810083,5277648.080079652],[516317.27850037796,5277646.993043217],[516316.7688462541,5277646.635967162],[516318.5858806843,5277644.062614978],[516317.7989327794,5277643.504709801],[516319.1711588006,5277641.552494373],[516319.8949446807,5277640.532036437],[516319.2578765008,5277640.085691095],[516321.0070473826,5277637.612175338],[516322.5601914649,5277635.415960185],[516323.2122479184,5277635.873461891],[516323.96619820676,5277634.80863309],[516325.3987232152,5277632.778790298],[516326.9201778972,5277633.84999977],[516333.3883249916,5277638.36930806]]]},"properties":{"id_build":561,"id_source":"w145189595","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.58886161743,5276972.936181041],[516763.70010450686,5276970.052623844],[516770.2952138868,5276974.961765516],[516767.2785567515,5276979.28753058],[516765.6297810486,5276978.060245302],[516764.0465101014,5276980.167343184],[516769.8180212679,5276984.184994962],[516764.6904513707,5276991.283177581],[516762.6667973817,5276989.832534201],[516751.8866086535,5277003.8051264],[516743.94219970243,5276998.003006726],[516748.2397562281,5276992.236096184],[516736.02396819403,5276983.087509472],[516744.99557678454,5276971.22134339],[516751.06592892745,5276975.795534796],[516752.64919633395,5276973.688433408],[516751.07520069514,5276972.572507228],[516752.50794030837,5276970.576112582],[516749.7348297379,5276968.567618678],[516753.95762871735,5276962.689357642],[516756.2059683506,5276964.362924028],[516761.15199108707,5276968.155912032],[516759.11553336866,5276971.150825185],[516761.58886161743,5276972.936181041]]]},"properties":{"id_build":562,"id_source":"w145189638","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516447.0566027245,5277342.468249727],[516452.7833339574,5277335.704899679],[516453.75711796194,5277336.596770183],[516462.146919403,5277344.177994639],[516464.17492372997,5277344.072589212],[516473.43450475385,5277336.207852183],[516475.9790896761,5277339.326967772],[516478.3122129461,5277337.555333121],[516481.37997557025,5277341.565050529],[516479.34725152777,5277343.3375342],[516481.74194555666,5277346.345088284],[516471.68383059866,5277355.085557763],[516470.52443740034,5277356.093650406],[516472.0983821414,5277357.20950154],[516470.7399893129,5277359.53959525],[516468.8650184182,5277358.645172666],[516467.9031552571,5277380.092441645],[516463.24732108,5277379.968134832],[516463.16656520084,5277381.968423678],[516459.56243467226,5277381.735953896],[516459.56714756397,5277380.068869564],[516454.9867264995,5277379.833642707],[516455.64531727234,5277359.385773249],[516455.0539449206,5277356.049906682],[516444.2688125425,5277345.683430558],[516447.0566027245,5277342.468249727]]]},"properties":{"id_build":563,"id_source":"w145189710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516304.0295693628,5277650.367918061],[516303.2983401657,5277651.366129144],[516301.9187989332,5277653.251643898],[516293.44947718084,5277647.337520978],[516297.45261590055,5277641.79173235],[516301.0637077897,5277636.800548096],[516298.06609640905,5277634.569358014],[516301.9866426774,5277629.02334133],[516298.46428917575,5277626.457262128],[516305.852956257,5277616.030804065],[516314.17243065056,5277621.83338478],[516313.011685107,5277623.352748422],[516312.1373637594,5277624.49503926],[516312.811670782,5277625.052628013],[516311.002516301,5277627.492636169],[516309.3438665631,5277629.821926643],[516308.6692484293,5277629.375477287],[516307.9830422544,5277630.38492788],[516306.63325277856,5277632.370550713],[516307.23277481477,5277632.816789485],[516310.08019186463,5277635.04756351],[516308.6101559802,5277637.066190983],[516307.81859861553,5277638.153144391],[516308.4181199629,5277638.5993832955],[516306.9850730943,5277640.81816657],[516309.5330372773,5277642.714681975],[516307.9124072773,5277644.877369587],[516307.120944487,5277645.930981402],[516307.7204650817,5277646.377220238],[516306.21294725273,5277648.373515364],[516304.5543053211,5277650.702807262],[516304.0295693628,5277650.367918061]]]},"properties":{"id_build":564,"id_source":"w145189739","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.3140977976,5276961.228161117],[517130.61801633553,5276985.568680108],[517126.3370725091,5276985.556087499],[517126.4036778747,5276988.445919285],[517124.1505506617,5276988.439292832],[517124.14728228,5276989.550681637],[517121.96893292584,5276989.655415776],[517121.8977502444,5276988.32152837],[517119.6442962355,5276988.42604254],[517119.5773607645,5276985.647349724],[517090.7360138311,5276986.007186325],[517090.0102483007,5276926.211826279],[517119.00308159564,5276925.519010389],[517118.8597328353,5276923.184652535],[517121.2634222308,5276923.080579662],[517121.2673435472,5276921.746913234],[517123.22007616225,5276921.752655089],[517123.44179646653,5276922.975845209],[517125.6949490088,5276922.982471326],[517125.68710434303,5276925.649804194],[517129.8185359902,5276925.439676599],[517130.03077337827,5276929.885894214],[517130.85725529277,5276929.777185755],[517130.8718722981,5276950.3380980315],[517130.87154533603,5276950.449236907],[517130.27070749016,5276950.4474693155],[517130.3140977976,5276961.228161117]]]},"properties":{"id_build":565,"id_source":"w145189790","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sports_centre","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.41620173404,5276741.749701179],[516962.13872820156,5276741.968259627],[516961.1037331321,5276736.297116176],[516958.77443005494,5276736.623751711],[516957.07349501934,5276727.505336597],[516956.69763339974,5276727.6153819235],[516956.62479109847,5276726.83719137],[516963.83933035535,5276725.413386002],[516963.76648897864,5276724.635195359],[516966.44190751,5276724.098404613],[516972.93512751756,5276722.77253478],[516972.93609929364,5276722.439118271],[516973.5372845604,5276722.329730738],[516973.98307139333,5276723.998126787],[516981.12218677386,5276722.685262729],[516981.2707816801,5276723.241394937],[516980.81981166796,5276723.351219693],[516982.37146806915,5276732.135787196],[516979.81619136373,5276732.684034902],[516980.7757373626,5276738.466101517],[516979.34804752364,5276738.684218175],[516979.9391853681,5276742.020135298],[516980.2402631564,5276741.7987336265],[516980.3134261683,5276742.465785663],[516963.9312697305,5276745.418814404],[516963.7072426237,5276744.97360267],[516964.0831032598,5276744.863557793],[516963.41620173404,5276741.749701179]]]},"properties":{"id_build":566,"id_source":"w145189808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516301.6070147099,5276986.745284223],[516302.2081597542,5276986.63582743],[516302.57901358546,5276988.303962097],[516301.6070147099,5276986.745284223]]]},"properties":{"id_build":567,"id_source":"w145189958","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.64388857683,5276718.981942136],[516760.13853585406,5276720.089007037],[516759.7693945277,5276717.865149487],[516761.64388857683,5276718.981942136]]]},"properties":{"id_build":568,"id_source":"w145189998","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5779305658,5276731.431489265],[516757.3624104408,5276729.52789732],[516761.4435464667,5276736.3969657635],[516754.5779305658,5276731.431489265]]]},"properties":{"id_build":569,"id_source":"w145190019","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516793.9254580695,5276724.187377017],[516798.41332186875,5276730.646427358],[516800.14432254544,5276729.428883522],[516801.8644214753,5276731.99006071],[516800.2839568692,5276733.096898561],[516801.85512230464,5276735.213087047],[516803.4359073318,5276733.995110778],[516805.15632417996,5276736.445150125],[516803.57586014376,5276737.551987089],[516808.1388102413,5276744.011261837],[516798.6557232758,5276750.763424112],[516784.5171428325,5276731.050917582],[516793.9254580695,5276724.187377017]]]},"properties":{"id_build":570,"id_source":"w145190034","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.2726181079,5277265.696563462],[517262.355956397,5277262.918312935],[517257.0247945844,5277262.569089835],[517258.279443417,5277244.679284375],[517261.583225784,5277244.911357797],[517263.235116873,5277245.027395216],[517270.14374361694,5277245.270162741],[517269.51557601604,5277254.492911465],[517266.43710182846,5277254.261501652],[517265.8112479452,5277262.7062784005],[517268.8900473161,5277262.826548969],[517268.7339126267,5277264.826604177],[517269.93519385776,5277264.94130708],[517270.09132895863,5277262.941251907],[517280.75397970644,5277263.528587994],[517286.01003864233,5277263.87760986],[517285.776157809,5277266.766553084],[517285.07220705395,5277276.211355396],[517268.0270227895,5277275.271658813],[517267.5510398677,5277283.828020051],[517256.738553625,5277283.12912393],[517255.913766281,5277282.682119813],[517256.53828632,5277274.681897492],[517256.914447888,5277274.460732563],[517261.6454533882,5277274.585896507],[517261.95376355667,5277271.91945282],[517263.91132188187,5277270.258158212],[517264.8876298101,5277270.261053119],[517265.0450812759,5277267.816442085],[517263.9936722968,5277267.813324472],[517262.2726181079,5277265.696563462]]]},"properties":{"id_build":571,"id_source":"w145190049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.94233278395,5277759.794728824],[516880.52041002514,5277762.039496896],[516888.17325328063,5277764.39563172],[516887.7939132827,5277765.728210717],[516854.78013486054,5277756.0744980145],[516864.9842706023,5277759.104829133],[516865.5144383675,5277757.550405747],[516872.94233278395,5277759.794728824]]]},"properties":{"id_build":572,"id_source":"w145190059","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517186.2258854489,5277178.893624008],[517234.4441925489,5277178.035888094],[517234.6372591148,5277188.928168516],[517188.52352867165,5277189.236415377],[517188.5874752901,5277193.015360204],[517186.7099351956,5277193.009817885],[517186.69714110426,5277197.344235613],[517165.7428262586,5277197.615841176],[517165.4752548,5277211.952097367],[517147.4502740579,5277212.121265344],[517147.49347842217,5277197.450928148],[517111.9681610564,5277198.124393182],[517111.870871093,5277180.119447396],[517172.3284495001,5277180.075158951],[517172.41043462907,5277177.7414632635],[517177.0670741144,5277177.6440589465],[517177.1477496941,5277175.754918984],[517177.82399401115,5277175.645774121],[517177.8295680063,5277173.756412608],[517178.28017911623,5277173.7577420175],[517178.28181857034,5277173.202047457],[517160.25769993436,5277173.037759332],[517160.1904591557,5277170.370204097],[517178.59009551594,5277170.535599857],[517180.23872996576,5277171.763002777],[517180.68638980517,5277172.764582583],[517180.81494952773,5277180.100194041],[517186.29770679196,5277180.005234814],[517186.2258854489,5277178.893624008]]]},"properties":{"id_build":573,"id_source":"w145190068","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.1226506469,5277462.932587453],[517212.0429526103,5277464.488310913],[517211.96358317725,5277465.932895417],[517211.32468638226,5277478.8232391905],[517211.2453172923,5277480.267823732],[517211.16463403765,5277482.156964149],[517210.448343014,5277495.825059108],[517210.44341494224,5277497.492143637],[517210.3640462866,5277498.936728234],[517210.0429581845,5277505.937595346],[517206.81409122015,5277505.816911633],[517206.6451734596,5277512.15138907],[517199.66209208244,5277511.797335189],[517199.57977127424,5277514.242170705],[517192.371399626,5277513.887459998],[517190.6444860907,5277513.771220715],[517189.4432547655,5277513.656533999],[517176.3776068881,5277513.173412442],[517174.8759852735,5277513.057842513],[517173.22416864726,5277512.941829938],[517159.3327732746,5277512.345171038],[517157.68095615954,5277512.229162872],[517155.9540414963,5277512.112933884],[517142.51322756166,5277511.517642912],[517140.9365073986,5277511.40186062],[517139.2092650018,5277511.396775568],[517132.301276555,5277511.043023572],[517132.7822777858,5277500.708425224],[517200.0608917429,5277503.907577576],[517202.00771851867,5277455.011757679],[517212.44505747635,5277455.487165074],[517212.1226506469,5277462.932587453]]]},"properties":{"id_build":574,"id_source":"w145190089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516320.3624122452,5277181.736991974],[516337.640174227,5277180.229489022],[516338.1456157959,5277187.454994096],[516333.80522496096,5277197.978869468],[516327.3325301822,5277213.653655223],[516326.3577713073,5277213.095222908],[516324.921186466,5277216.536528752],[516325.8965681484,5277216.87268297],[516324.686222976,5277219.98120384],[516323.9317832165,5277221.201626477],[516322.2007166439,5277222.530451162],[516319.64540693077,5277223.190127254],[516319.64852199686,5277222.078737961],[516317.5450654054,5277222.295122262],[516317.69215311296,5277223.406932498],[516305.1327140403,5277224.271980349],[516300.7158627278,5277224.581918653],[516299.7778160578,5277210.909097223],[516313.2237593404,5277209.946495565],[516320.4082313081,5277192.184261242],[516320.93363089365,5277192.29687374],[516320.3624122452,5277181.736991974]]]},"properties":{"id_build":575,"id_source":"w145190156","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"office","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516318.8217665332,5277517.0415244],[516324.4646708209,5277486.493884801],[516328.222677359,5277485.393024655],[516329.13725469244,5277480.616576208],[516325.3795565425,5277481.60629679],[516329.4981194943,5277459.056458083],[516330.3999207117,5277458.836707798],[516330.7053011557,5277457.059326853],[516334.35335733026,5277457.680829803],[516343.8534089882,5277454.984564574],[516341.3364873339,5277468.758840528],[516357.77452290576,5277471.80577792],[516358.4610219769,5277468.0289518805],[516368.90621013613,5277465.724372649],[516371.7279666076,5277450.395007664],[516403.44291629846,5277442.148787809],[516399.78153101064,5277462.254786154],[516372.87671841105,5277469.180872575],[516366.01479880454,5277505.837731028],[516357.98342112434,5277504.370341682],[516357.1439211793,5277509.146996813],[516348.43729239405,5277507.455443793],[516353.6232178265,5277479.240485745],[516348.4377187148,5277480.55960062],[516347.36949723266,5277486.558153064],[516340.83910874324,5277485.428421869],[516335.12039639783,5277516.198112997],[516330.6170458309,5277515.296360527],[516330.8463908267,5277513.852185733],[516327.3934670511,5277513.286801911],[516326.47764940636,5277518.507806783],[516318.8217665332,5277517.0415244]]]},"properties":{"id_build":576,"id_source":"w145190178","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.1634093542,5277439.419560811],[516889.49146025075,5277439.42631384],[516896.926525983,5277439.3367472375],[516899.25457692164,5277439.343504171],[516903.7604819661,5277439.356584752],[516906.46402499074,5277439.364434772],[516913.5235990838,5277439.2737990115],[516915.7765516471,5277439.280344388],[516920.582850444,5277439.294310768],[516923.211618148,5277439.190811352],[516927.71752335207,5277439.203910471],[516927.687794895,5277449.428694992],[516920.02744650736,5277449.517567532],[516916.7231218867,5277449.507965519],[516902.82961615315,5277449.578752904],[516899.45019330614,5277449.568942667],[516885.3313932951,5277449.639117862],[516882.4776584962,5277449.630842111],[516867.8331710782,5277449.69953541],[516864.9794363306,5277449.691268235],[516851.0108340392,5277449.761961734],[516847.6314113713,5277449.752181575],[516842.07381703454,5277449.847241882],[516841.95287682064,5277439.73316175],[516845.8583157437,5277439.633320658],[516848.6369569862,5277439.64136112],[516853.2179601155,5277439.654619911],[516855.62110929744,5277439.661576785],[516863.13127239235,5277439.572184445],[516865.60952003195,5277439.579362958],[516870.1154248294,5277439.592417498],[516872.5188961354,5277439.488242384],[516879.95363918797,5277439.50979307],[516882.2816900427,5277439.516543216],[516887.1634093542,5277439.419560811]]]},"properties":{"id_build":577,"id_source":"w145190219","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517181.2682065722,5277349.723240912],[517186.194340247,5277354.961355654],[517171.2982251527,5277368.9654891705],[517176.5312746844,5277374.53792086],[517170.95842567255,5277379.778400677],[517171.9241568236,5277380.814850117],[517166.3965084833,5277386.011011646],[517165.31845619733,5277384.863092049],[517154.8505983449,5277394.701464104],[517170.69202094624,5277411.54140355],[517178.4864205678,5277404.218047201],[517171.06732818746,5277396.327455447],[517179.41151303233,5277388.48336426],[517184.4349159704,5277393.832904927],[517187.10086849966,5277391.317898036],[517196.9829537712,5277401.838686808],[517186.09333816473,5277412.075861067],[517188.5339133395,5277414.672625969],[517172.0046012072,5277429.927817931],[517162.64109318296,5277419.275231817],[517157.47514183476,5277424.072364405],[517148.33296599856,5277414.754132873],[517143.9095206131,5277409.684239653],[517152.51724892104,5277401.58526428],[517150.09163928125,5277398.999672716],[517147.034144556,5277401.869191059],[517136.9647780414,5277391.15899845],[517152.79460356926,5277376.26840877],[517151.4245436832,5277374.819553751],[517162.4873871238,5277364.4161159685],[517152.08108336484,5277353.349257147],[517158.97185187566,5277346.867876385],[517151.61254278995,5277339.0441708],[517162.3064163992,5277328.995293679],[517172.4357608718,5277339.76127559],[517176.3970221267,5277336.038659468],[517185.523142656,5277345.7347617885],[517181.2682065722,5277349.723240912]]]},"properties":{"id_build":578,"id_source":"w145190274","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516443.47414930066,5277680.212181112],[516435.27213275054,5277686.079434457],[516431.8312414235,5277681.290705956],[516430.1756949387,5277682.50857219],[516424.1168078146,5277674.044843834],[516419.82790790155,5277677.033522651],[516417.35947769624,5277673.581224422],[516419.6167275573,5277672.031631912],[516418.56978008675,5277670.4727207],[516420.52633623086,5277669.033420414],[516413.94394555496,5277659.790247196],[516415.5994950442,5277658.572376382],[516412.3081357935,5277654.006361203],[516410.72768132424,5277655.224444637],[516404.5936415918,5277646.760525409],[516400.30441869923,5277649.860357503],[516397.8359653085,5277646.408067756],[516400.0935334975,5277644.747328726],[516398.97148007987,5277643.188209583],[516401.0782320413,5277641.74932588],[516397.63728619914,5277636.960618047],[516407.4948892439,5277629.875438979],[516410.93583124236,5277634.664152593],[516412.0647759747,5277633.778216014],[516418.49763468385,5277642.7986850785],[516419.77645712753,5277642.02431256],[516422.91825297306,5277646.36763018],[516420.5852696671,5277648.139287559],[516423.8766258055,5277652.705307381],[516426.2096083012,5277650.933651307],[516429.4261764775,5277655.38832341],[516427.0180991756,5277657.159766312],[516430.45932253497,5277661.837352738],[516431.58795133594,5277661.062558923],[516438.09584484587,5277670.083262122],[516439.14937764587,5277669.30825772],[516442.3659256914,5277673.76293715],[516440.0332611894,5277675.423447795],[516443.47414930066,5277680.212181112]]]},"properties":{"id_build":579,"id_source":"w145190323","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.19147495995,5277352.895527593],[517027.4013554672,5277352.805468743],[517029.8793151325,5277352.923856033],[517034.38561246666,5277352.8258986],[517036.78879766964,5277352.832930165],[517044.0737781615,5277352.743111713],[517046.7022620247,5277352.750806912],[517051.2082343623,5277352.764001443],[517053.536320069,5277352.770819984],[517059.3193102025,5277352.676621441],[517059.3657534159,5277362.457068709],[517051.8480091094,5277362.535072265],[517048.96412656474,5277362.548854823],[517034.6723831602,5277362.618162578],[517031.51794779825,5277362.6978461435],[517017.26378738397,5277362.756192575],[517014.03438288905,5277362.791210532],[516999.88507022307,5277362.949931807],[516996.73089517374,5277362.94072306],[516982.87476300425,5277363.000315639],[516979.81064246653,5277363.013606716],[516974.05022653175,5277363.096835992],[516974.1201417214,5277364.8752781],[516960.00178196275,5277364.722994808],[516960.10893209843,5277353.720457817],[516973.9275684661,5277353.649587641],[516974.0793875728,5277353.094330793],[516978.209861847,5277353.106374126],[516980.68814640853,5277353.113601533],[516984.81862068037,5277353.125649555],[516987.2218057092,5277353.132660661],[516994.65698379517,5277353.043218608],[516996.83487026795,5277353.049576061],[517001.5664654159,5277352.952250944],[517004.1198496046,5277352.959707623],[517011.4045044902,5277352.9809872415],[517013.883113911,5277352.877089831],[517017.7131902626,5277352.888283371],[517020.19147495995,5277352.895527593]]]},"properties":{"id_build":580,"id_source":"w145190333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516420.7201475874,5277264.818314036],[516417.619397477,5277272.478217547],[516419.65975057654,5277273.3286337815],[516417.49683280004,5277278.657246012],[516415.8314823375,5277277.985711515],[516415.5293883536,5277278.585014826],[516404.7419016761,5277274.309069746],[516404.34070626716,5277275.430451566],[516393.5982659595,5277271.15465414],[516399.2184626191,5277256.8890145365],[516397.6206945171,5277256.217675666],[516404.7612473116,5277238.121999974],[516411.00929057784,5277222.279955848],[516412.8734921347,5277221.685055502],[516414.4065907564,5277221.322615926],[516415.7580366111,5277221.459793756],[516421.7975405092,5277223.655164754],[516421.04000906897,5277225.964736366],[516431.29479506833,5277230.083611849],[516429.82673187496,5277234.013818549],[516434.8529810822,5277235.9840644915],[516436.4115763398,5277231.909632834],[516445.36017967365,5277235.813680485],[516444.97965212836,5277237.590842786],[516444.97619922645,5277238.813371022],[516444.58077735023,5277240.546035365],[516443.76453930954,5277242.366423109],[516442.70904594735,5277243.808259925],[516441.73053704354,5277244.583475414],[516441.5030374549,5277245.360811725],[516441.7280263315,5277245.472586873],[516440.59335351846,5277248.359018125],[516440.14274831844,5277248.357745792],[516439.99129136093,5277248.801877418],[516441.62654433947,5277249.49556174],[516437.5125999896,5277259.564327746],[516436.3721357244,5277259.183232787],[516434.0888168294,5277264.58929683],[516430.2178254396,5277263.089098466],[516422.5439289058,5277259.911077829],[516420.7201475874,5277264.818314036]]]},"properties":{"id_build":581,"id_source":"w145190350","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516691.90699353215,5277046.088285671],[516694.530198495,5277047.985182768],[516699.43232252443,5277040.886291875],[516708.6512433471,5277047.469987041],[516702.01631650777,5277056.453276476],[516694.82169012644,5277051.097933157],[516690.5248668164,5277056.642605639],[516683.4056520246,5277051.176352828],[516682.2749614192,5277052.617930817],[516664.36437144934,5277038.896448787],[516661.19761899003,5277043.221839101],[516663.89562061947,5277045.230076156],[516652.2100818469,5277060.756218734],[516683.8886061441,5277084.452996053],[516674.1716129067,5277097.072873033],[516642.78659241204,5277073.17693519],[516641.5047569993,5277074.951508493],[516634.16020948975,5277069.484671863],[516637.70371408906,5277064.715784116],[516639.05271414976,5277065.719897077],[516642.0679608506,5277061.838620922],[516640.7940636925,5277060.834721905],[516640.944905521,5277060.61287338],[516656.62711359304,5277039.430009732],[516657.75112358294,5277040.322343574],[516660.6165065932,5277036.3295085225],[516661.31628971524,5277027.996025618],[516663.1229134512,5277026.556377872],[516663.3526773136,5277025.001078162],[516661.70103074657,5277024.774072264],[516658.94158742164,5277017.986649149],[516663.08820092794,5277012.441523862],[516670.2965860143,5277013.017855205],[516673.43153764127,5277019.806358938],[516669.50832169724,5277026.01895529],[516667.4060531834,5277025.790657762],[516666.4192070112,5277029.455446574],[516686.2796465517,5277044.18278014],[516687.3349177382,5277042.8521266],[516691.90699353215,5277046.088285671]]]},"properties":{"id_build":582,"id_source":"w145190370","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516346.8888312345,5276828.498085541],[516352.24103867414,5276821.511309287],[516356.97032328806,5276825.058835111],[516361.909462539,5276828.762550093],[516356.4067255067,5276835.860034492],[516346.8888312345,5276828.498085541]]]},"properties":{"id_build":583,"id_source":"w145190378","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516618.8209548177,5277523.113718153],[516610.2528835621,5277525.53434428],[516606.6089385187,5277512.9651423665],[516615.2521241754,5277510.544725205],[516617.17779905867,5277517.329754023],[516618.8209548177,5277523.113718153]]]},"properties":{"id_build":584,"id_source":"w145190389","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.8759852735,5277513.057842513],[517174.7956420472,5277514.835844527],[517173.2185955487,5277514.831192461],[517173.22416864726,5277512.941829938],[517174.8759852735,5277513.057842513]]]},"properties":{"id_build":585,"id_source":"w145190401","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.3818001258,5277731.788476628],[516479.75379266666,5277730.3277233085],[516480.2093945172,5277728.550774533],[516486.06300228473,5277729.901027242],[516485.3818001258,5277731.788476628]]]},"properties":{"id_build":586,"id_source":"w145190408","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4484362991,5277181.676966661],[517299.7490755641,5277189.565821217],[517300.0943450314,5277189.633531014],[517299.5797532132,5277196.000318094],[517296.9428957671,5277196.259219994],[517297.42886373884,5277189.41444611],[517292.3904339627,5277189.099402634],[517292.9399113352,5277181.098962209],[517296.4388940522,5277181.364976911],[517300.4484362991,5277181.676966661]]]},"properties":{"id_build":587,"id_source":"w145190437","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.46576563176,5277209.910836336],[517264.7052401728,5277205.132530943],[517265.90686337196,5277205.136094061],[517265.7424892333,5277209.914622106],[517264.46576563176,5277209.910836336]]]},"properties":{"id_build":588,"id_source":"w145190447","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516992.63426737295,5277222.670234612],[516992.51826865505,5277185.2157612005],[517002.28148941917,5277185.244262217],[517002.4725265502,5277222.698955282],[516992.63426737295,5277222.670234612]]]},"properties":{"id_build":589,"id_source":"w145190463","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516629.23975760984,5277477.4649767],[516622.0991093596,5277479.6673831],[516620.6560753391,5277474.806450761],[516619.1237461048,5277469.656300257],[516626.26440545963,5277467.4538902175],[516629.23975760984,5277477.4649767]]]},"properties":{"id_build":590,"id_source":"w145190481","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516901.208342332,5277102.595373595],[516900.5866690614,5277058.026495267],[516914.5565352133,5277057.844779611],[516914.877367686,5277102.523925881],[516901.208342332,5277102.595373595]]]},"properties":{"id_build":591,"id_source":"w145190510","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.0429526103,5277464.488310913],[517212.1226506469,5277462.932587453],[517214.1502999668,5277462.938582265],[517214.14537088695,5277464.6056667045],[517212.0429526103,5277464.488310913]]]},"properties":{"id_build":592,"id_source":"w145190613","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0115500395,5277533.590402691],[516851.673640301,5277532.118547681],[516853.27288078936,5277524.454523206],[516857.17626798415,5277525.043751482],[516862.20559892064,5277525.814067214],[516861.0115500395,5277533.590402691]]]},"properties":{"id_build":593,"id_source":"w145190629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.73395074013,5277727.848398711],[516973.05702592764,5277729.522270609],[516971.77004822786,5277733.074997124],[516968.77274197317,5277730.843460649],[516970.73395074013,5277727.848398711]]]},"properties":{"id_build":594,"id_source":"w145190647","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517314.82518301846,5277044.573085632],[517314.58334849006,5277050.129360099],[517311.50476784824,5277049.897926793],[517311.82170297136,5277044.341875497],[517314.82518301846,5277044.573085632]]]},"properties":{"id_build":595,"id_source":"w145190653","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.26461351285,5276718.442357971],[516845.684908661,5276720.780401437],[516841.0953047239,5276723.545620855],[516839.6746870405,5276721.318717339],[516844.26461351285,5276718.442357971]]]},"properties":{"id_build":596,"id_source":"w145190655","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517018.16384554276,5277378.562916823],[517022.29430182267,5277378.574991476],[517022.28195431526,5277382.798271581],[517018.1511761756,5277382.89733588],[517018.16384554276,5277378.562916823]]]},"properties":{"id_build":597,"id_source":"w145190678","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.0106342476,5277534.219685274],[516617.5052416035,5277539.425297828],[516618.9850171936,5277544.564184555],[516611.84413785976,5277546.877742546],[516608.4942576857,5277536.5321757225],[516616.0106342476,5277534.219685274]]]},"properties":{"id_build":598,"id_source":"w145190707","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.8448474734,5277632.399719374],[517022.66427858826,5277637.309812786],[517019.6933497084,5277641.457760568],[517016.7827615365,5277645.516974282],[517009.96365989564,5277640.495748689],[517015.8448474734,5277632.399719374]]]},"properties":{"id_build":599,"id_source":"w145190724","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.93783734017,5277695.217502345],[517216.4459444905,5277702.451974304],[517207.2715389248,5277706.759308901],[517203.76309461193,5277699.635981445],[517206.29744458065,5277698.4098176425],[517212.93783734017,5277695.217502345]]]},"properties":{"id_build":600,"id_source":"w145190727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.7424892333,5277209.914622106],[517265.90686337196,5277205.136094061],[517278.3723848355,5277205.617631697],[517278.2080004745,5277210.396159421],[517265.7424892333,5277209.914622106]]]},"properties":{"id_build":601,"id_source":"w145190733","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516836.0540565685,5277376.032946171],[516833.5006826781,5277376.025563175],[516833.428475406,5277375.025095483],[516836.05727035756,5277374.921556659],[516836.0540565685,5277376.032946171]]]},"properties":{"id_build":602,"id_source":"w145190740","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516422.7646277575,5277700.825743677],[516419.9166590381,5277698.817192152],[516424.4408620277,5277692.272700586],[516426.535058931,5277695.279386437],[516422.7646277575,5277700.825743677]]]},"properties":{"id_build":603,"id_source":"w145190766","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517122.26779535745,5277552.024143449],[517116.68970720674,5277559.12069711],[517113.10830887256,5277556.309442194],[517109.7217018871,5277553.654357894],[517115.29945996386,5277546.6689366065],[517122.26779535745,5277552.024143449]]]},"properties":{"id_build":604,"id_source":"w145190767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.7179976846,5276895.870610231],[517308.3593162381,5276895.293033727],[517308.62584056234,5276891.537299209],[517308.90784881404,5276887.626014968],[517316.2668703974,5276888.092453275],[517315.7179976846,5276895.870610231]]]},"properties":{"id_build":605,"id_source":"w145190779","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516948.84189372056,5277457.603451896],[516948.84545266366,5277456.380923289],[516951.2482714518,5277456.499058619],[516951.3204573603,5277457.499527947],[516948.84189372056,5277457.603451896]]]},"properties":{"id_build":606,"id_source":"w145190785","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.4298729909,5276750.02741027],[517231.7043217779,5276758.808267498],[517227.2947068521,5276759.073070358],[517222.8400280257,5276759.337743273],[517222.49045859673,5276750.556664362],[517231.4298729909,5276750.02741027]]]},"properties":{"id_build":607,"id_source":"w145190793","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.4553018264,5277091.79751278],[517310.987502738,5277097.57539574],[517308.0591527476,5277097.344410737],[517308.4518460283,5277091.566304306],[517311.4553018264,5277091.79751278]]]},"properties":{"id_build":608,"id_source":"w145190808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.0659374689,5277257.856784983],[517127.640003721,5277257.519170532],[517128.17126713664,5277255.631355234],[517129.59687434736,5277256.080108739],[517129.0659374689,5277257.856784983]]]},"properties":{"id_build":609,"id_source":"w145190813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517140.8565017328,5277513.068724097],[517140.9365073986,5277511.40186062],[517142.51322756166,5277511.517642912],[517142.4335486875,5277513.073367397],[517140.8565017328,5277513.068724097]]]},"properties":{"id_build":610,"id_source":"w145190815","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516925.14713606174,5277703.376036361],[516924.06625252153,5277703.206184102],[516923.0454449336,5277703.03650668],[516923.19854264986,5277702.036692204],[516925.3002341316,5277702.37622194],[516925.14713606174,5277703.376036361]]]},"properties":{"id_build":611,"id_source":"w145190848","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.0509288059,5277380.050233547],[516880.0438399816,5277382.495290483],[516878.9176749282,5277382.380885675],[516878.9244410807,5277380.046967691],[516880.0509288059,5277380.050233547]]]},"properties":{"id_build":612,"id_source":"w145190852","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516863.13127239235,5277439.572184445],[516863.13416951295,5277438.571933787],[516865.5376411,5277438.46775579],[516865.60952003195,5277439.579362958],[516863.13127239235,5277439.572184445]]]},"properties":{"id_build":613,"id_source":"w145190874","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516718.78593390365,5277493.61443614],[516716.15049374313,5277496.051946235],[516713.75438721577,5277493.599989468],[516716.540022955,5277491.162909546],[516718.78593390365,5277493.61443614]]]},"properties":{"id_build":614,"id_source":"w145190882","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517233.60896351124,5277206.485227453],[517233.7476530158,5277210.3755341545],[517230.442863348,5277210.476893346],[517230.45470338804,5277206.475892296],[517233.60896351124,5277206.485227453]]]},"properties":{"id_build":615,"id_source":"w145190916","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517025.97977320506,5277479.389665226],[517031.08480516926,5277479.960296223],[517030.8526842027,5277482.293555501],[517025.8224271267,5277481.834283281],[517025.97977320506,5277479.389665226]]]},"properties":{"id_build":616,"id_source":"w145190921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.3391604726,5277314.684484141],[517307.10389394726,5277299.96071835],[517314.6890948839,5277315.109413202],[517306.3391604726,5277314.684484141]]]},"properties":{"id_build":617,"id_source":"w145190973","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.35030776873,5277112.201523419],[517278.02691785205,5277104.379283665],[517286.18112982565,5277105.059211006],[517285.63198538224,5277112.948512207],[517281.412239578,5277112.591453128],[517277.35030776873,5277112.201523419]]]},"properties":{"id_build":618,"id_source":"w145190986","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516394.79148749856,5277607.500535068],[516393.5123479044,5277608.386052038],[516386.9292195001,5277599.365188496],[516388.20836005546,5277598.47967009],[516392.11336896615,5277603.825377896],[516394.79148749856,5277607.500535068]]]},"properties":{"id_build":619,"id_source":"w145191014","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516915.7765516471,5277439.280344388],[516913.5235990838,5277439.2737990115],[516913.5261819978,5277438.384687319],[516915.8545562424,5277438.280311927],[516915.7765516471,5277439.280344388]]]},"properties":{"id_build":620,"id_source":"w145191031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517011.4045044902,5277352.9809872415],[517011.33265217824,5277351.869378363],[517013.8863616223,5277351.765700377],[517013.883113911,5277352.877089831],[517011.4045044902,5277352.9809872415]]]},"properties":{"id_build":621,"id_source":"w145191034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.20811512624,5277481.529333127],[516685.24751527474,5277482.959933018],[516684.4294013271,5277480.179091366],[516689.3149054349,5277478.748275497],[516690.20811512624,5277481.529333127]]]},"properties":{"id_build":622,"id_source":"w145191043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.84472763987,5277741.050477284],[516767.0371152942,5277741.15064943],[516766.9029310304,5277735.593266106],[516770.7030375476,5277735.49307223],[516770.84472763987,5277741.050477284]]]},"properties":{"id_build":623,"id_source":"w145191044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517158.7767792895,5277471.666316657],[517158.6967680624,5277473.333179801],[517156.744220399,5277473.327425594],[517156.8245585772,5277471.549423459],[517158.7767792895,5277471.666316657]]]},"properties":{"id_build":624,"id_source":"w145191073","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.66143457225,5277366.969902524],[517270.51570622885,5277370.525947801],[517269.5479140003,5277370.1896573445],[517269.63059537666,5277367.633684351],[517270.66143457225,5277366.969902524]]]},"properties":{"id_build":625,"id_source":"w145191079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.82854175055,5277467.339041585],[516970.97521519114,5277467.325985126],[516970.97812470875,5277468.904180333],[516969.4010659045,5277468.8995835055],[516967.83148451126,5277468.906122892],[516967.82854175055,5277467.339041585]]]},"properties":{"id_build":626,"id_source":"w145191129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.3452677645,5277447.654483011],[517007.057509314,5277447.6594844265],[517007.0675618172,5277449.359954421],[517007.08564357925,5277450.882624021],[517005.41095211543,5277450.877732269],[517005.3452677645,5277447.654483011]]]},"properties":{"id_build":627,"id_source":"w145191165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516371.80360164377,5277610.436620839],[516374.06117622077,5277608.7758717965],[516375.18324299017,5277610.3349860255],[516372.85057251866,5277611.995523439],[516371.80360164377,5277610.436620839]]]},"properties":{"id_build":628,"id_source":"w145191171","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517205.3749447519,5276722.054280499],[517196.0596234794,5276722.693604554],[517195.6532961381,5276717.85782333],[517195.2613333141,5276713.244364193],[517204.7268851979,5276712.605482631],[517205.3749447519,5276722.054280499]]]},"properties":{"id_build":629,"id_source":"w145191217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517100.9222737141,5277506.949731851],[517104.00029381167,5277507.292193523],[517102.4872425896,5277511.066506285],[517100.5353605073,5277510.838492954],[517100.9222737141,5277506.949731851]]]},"properties":{"id_build":630,"id_source":"w145191221","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517014.03438288905,5277362.791210532],[517017.26378738397,5277362.756192575],[517017.2744219667,5277364.25661226],[517015.6221704345,5277364.274011273],[517014.04501830135,5277364.291630214],[517014.03438288905,5277362.791210532]]]},"properties":{"id_build":631,"id_source":"w145191233","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.23712110886,5277672.133240861],[516418.56978008675,5277670.4727207],[516419.6167275573,5277672.031631912],[516417.35947769624,5277673.581224422],[516416.23712110886,5277672.133240861]]]},"properties":{"id_build":632,"id_source":"w145191243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516727.40424774674,5277630.563550835],[516717.63220049336,5277633.869678852],[516715.3994268008,5277626.8614531765],[516719.203082209,5277625.549810476],[516724.94619638997,5277623.554674202],[516727.40424774674,5277630.563550835]]]},"properties":{"id_build":633,"id_source":"w145191246","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516769.79010329506,5276798.281389898],[516768.8588430596,5276790.432240269],[516772.65308006713,5276789.976380402],[516773.58430325694,5276797.836644533],[516769.79010329506,5276798.281389898]]]},"properties":{"id_build":634,"id_source":"w145191253","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.1585517689,5276759.144462703],[517269.5847204794,5276750.0292960545],[517279.5763024947,5276749.2809565775],[517280.15044802596,5276758.284985399],[517275.3197683455,5276758.704098205],[517270.1585517689,5276759.144462703]]]},"properties":{"id_build":635,"id_source":"w145191271","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516929.9574657032,5277495.336076017],[516939.63989459997,5277497.142478429],[516938.03309629334,5277507.362675515],[516932.34370870737,5277506.312524842],[516928.20048880635,5277505.555838996],[516929.9574657032,5277495.336076017]]]},"properties":{"id_build":636,"id_source":"w145191275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.4446186602,5277443.402256795],[516995.4368323774,5277446.069591873],[516994.53565237287,5277446.066961285],[516994.54343824537,5277443.399626207],[516995.4446186602,5277443.402256795]]]},"properties":{"id_build":637,"id_source":"w145191295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.31998225074,5277461.814912916],[516673.63855175534,5277456.29755929],[516671.82315051625,5277450.357491051],[516678.287332333,5277448.375487325],[516681.78415258904,5277459.8329130635],[516675.31998225074,5277461.814912916]]]},"properties":{"id_build":638,"id_source":"w145191313","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.99414098973,5277549.55871708],[516894.5766799195,5277550.358695305],[516893.5665570814,5277562.025455497],[516885.833839535,5277561.225042914],[516886.5068783071,5277554.436346082],[516886.99414098973,5277549.55871708]]]},"properties":{"id_build":639,"id_source":"w145191340","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.29204674996,5277351.856743772],[517271.13847808616,5277355.523905617],[517270.19321324804,5277355.187681899],[517270.35132427927,5277352.520792794],[517271.29204674996,5277351.856743772]]]},"properties":{"id_build":640,"id_source":"w145191349","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.0324733625,5277723.497699123],[517117.0416231547,5277720.385806872],[517119.5194246969,5277720.504232767],[517119.5106004061,5277723.504986005],[517117.0324733625,5277723.497699123]]]},"properties":{"id_build":641,"id_source":"w145191358","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.78879766964,5277352.832930165],[517034.38561246666,5277352.8258986],[517034.4636384781,5277351.825867813],[517036.7917245447,5277351.832679657],[517036.78879766964,5277352.832930165]]]},"properties":{"id_build":642,"id_source":"w145191360","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516865.5144383675,5277757.550405747],[516866.045572383,5277755.662565364],[516873.5485633215,5277757.907106766],[516872.94233278395,5277759.794728824],[516865.5144383675,5277757.550405747]]]},"properties":{"id_build":643,"id_source":"w145191367","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.39031673543,5276900.317874013],[517138.30488071236,5276900.12476605],[517138.28983414196,5276905.23715386],[517128.45071109047,5276905.319343881],[517128.39031673543,5276900.317874013]]]},"properties":{"id_build":644,"id_source":"w145191396","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.3191740858,5277725.000644323],[516716.18302616134,5277720.110096499],[516725.9463068041,5277719.804719271],[516726.1578605842,5277724.5843440825],[516716.3191740858,5277725.000644323]]]},"properties":{"id_build":645,"id_source":"w145191447","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516906.46402499074,5277439.364434772],[516903.7604819661,5277439.356584752],[516903.8384844967,5277438.356552138],[516906.4669295557,5277438.36418412],[516906.46402499074,5277439.364434772]]]},"properties":{"id_build":646,"id_source":"w145191454","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.0565711807,5277476.6694372315],[516537.46505127376,5277478.981805867],[516534.19167527265,5277468.080801773],[516541.85799032904,5277465.879781216],[516543.50193050754,5277471.419217676],[516545.0565711807,5277476.6694372315]]]},"properties":{"id_build":647,"id_source":"w145191455","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.73893089656,5277279.250055908],[516999.63229087356,5277266.902103999],[516999.52639650047,5277254.298532797],[517015.9815680288,5277254.146547635],[517016.1940319211,5277279.098071513],[516999.73893089656,5277279.250055908]]]},"properties":{"id_build":648,"id_source":"w145191464","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.05033588957,5276938.546326868],[517314.92524399684,5276940.201938709],[517307.5290330635,5276939.635365302],[517307.63129409263,5276938.079711321],[517312.3395449973,5276938.371557059],[517315.05033588957,5276938.546326868]]]},"properties":{"id_build":649,"id_source":"w145191477","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.974226132,5277393.921846064],[516795.96685196826,5277396.478042028],[516794.7652684957,5277396.4745758],[516794.8474205373,5277394.029735422],[516795.974226132,5277393.921846064]]]},"properties":{"id_build":650,"id_source":"w145191489","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.3974209982,5277433.8440869665],[516995.39028361184,5277436.289144086],[516994.4133548185,5277436.508572219],[516994.3460421182,5277433.841017974],[516995.3974209982,5277433.8440869665]]]},"properties":{"id_build":651,"id_source":"w145191499","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516468.8549585564,5277760.415796282],[516460.22508897324,5277758.279730824],[516460.6049599237,5277756.724846171],[516469.2345172658,5277758.972051203],[516468.8549585564,5277760.415796282]]]},"properties":{"id_build":652,"id_source":"w145191539","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.9293477012,5277159.036834298],[517273.4549965727,5277167.037498978],[517265.57094048505,5277166.458415906],[517265.83792060724,5277162.535969562],[517266.1203828683,5277158.45797332],[517273.9293477012,5277159.036834298]]]},"properties":{"id_build":653,"id_source":"w145191542","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.5462931591,5276973.368531876],[517214.55089302716,5276971.812587597],[517224.8405324925,5276971.731876294],[517224.7608254351,5276973.287598402],[517214.5462931591,5276973.368531876]]]},"properties":{"id_build":654,"id_source":"w145191552","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517057.79924817296,5277666.420179994],[517054.95180558256,5277664.300178453],[517058.6467919812,5277659.08742647],[517061.49423579976,5277661.207429799],[517057.79924817296,5277666.420179994]]]},"properties":{"id_build":655,"id_source":"w145191576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.67212820065,5277405.603726367],[516838.6089222773,5277401.4913678],[516842.73968349275,5277401.392176154],[516842.80288650095,5277405.504534772],[516838.67212820065,5277405.603726367]]]},"properties":{"id_build":656,"id_source":"w145191583","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517191.3120201554,5277720.048955483],[517196.4623736981,5277730.622464829],[517193.1084577247,5277732.201860305],[517189.1680179011,5277734.04626182],[517184.09274898574,5277723.472980556],[517191.3120201554,5277720.048955483]]]},"properties":{"id_build":657,"id_source":"w145191637","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516806.1594873648,5277429.738280173],[516807.6615543852,5277429.709274267],[516807.70902195,5277431.476535503],[516807.7501988431,5277432.821447018],[516806.22560307465,5277432.850387863],[516806.1594873648,5277429.738280173]]]},"properties":{"id_build":658,"id_source":"w145191654","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.77521221543,5277492.635284065],[517000.7804345693,5277493.541936076],[517000.396832754,5277496.319313886],[516994.2417422262,5277495.301084872],[516994.77521221543,5277492.635284065]]]},"properties":{"id_build":659,"id_source":"w145191722","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.62110929744,5277439.661576785],[516853.2179601155,5277439.654619911],[516853.2208555329,5277438.654369252],[516855.6991035534,5277438.661543543],[516855.62110929744,5277439.661576785]]]},"properties":{"id_build":660,"id_source":"w145191729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.96737907326,5277383.216303652],[516938.63467703963,5277383.187812136],[516938.6531973874,5277384.56600068],[516938.67116804793,5277386.133125449],[516937.03374891245,5277386.2172738165],[516936.96737907326,5277383.216303652]]]},"properties":{"id_build":661,"id_source":"w145191733","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.31951109186,5277430.761141661],[517006.919272133,5277430.71024452],[517006.92997404066,5277432.188436553],[517006.9485429015,5277433.544397668],[517005.3113956983,5277433.539615642],[517005.31951109186,5277430.761141661]]]},"properties":{"id_build":662,"id_source":"w145191746","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516850.29988845676,5277747.281472434],[516846.5012685139,5277736.489903943],[516848.00444674515,5277736.049694267],[516851.57745913876,5277746.951750624],[516850.29988845676,5277747.281472434]]]},"properties":{"id_build":663,"id_source":"w145191751","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.8176487976,5277392.060872907],[516805.82695209485,5277388.837843242],[516807.253834348,5277388.841962121],[516807.2868922422,5277390.398015872],[516807.3199501165,5277391.954069626],[516805.8176487976,5277392.060872907]]]},"properties":{"id_build":664,"id_source":"w145191757","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.77296408534,5277529.776161401],[517273.4036985379,5277526.063744083],[517274.20493145246,5277526.844101012],[517270.5666872441,5277530.556495558],[517269.77296408534,5277529.776161401]]]},"properties":{"id_build":665,"id_source":"w145191761","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517233.7476530158,5277210.3755341545],[517233.60896351124,5277206.485227453],[517237.7398712711,5277206.386315729],[517237.8782289877,5277210.387761455],[517233.7476530158,5277210.3755341545]]]},"properties":{"id_build":666,"id_source":"w145191766","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.20493145246,5277526.844101012],[517273.4036985379,5277526.063744083],[517277.50896920095,5277521.87483547],[517278.31020214973,5277522.655192957],[517274.20493145246,5277526.844101012]]]},"properties":{"id_build":667,"id_source":"w145191792","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516400.0986294759,5277589.621962877],[516399.12613216473,5277588.285544943],[516405.7484026481,5277583.414048042],[516406.72058606293,5277584.861606069],[516400.0986294759,5277589.621962877]]]},"properties":{"id_build":668,"id_source":"w145191807","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516899.25457692164,5277439.343504171],[516896.926525983,5277439.3367472375],[516896.9294289083,5277438.336496585],[516899.2574802487,5277438.343253518],[516899.25457692164,5277439.343504171]]]},"properties":{"id_build":669,"id_source":"w145191819","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.6723831602,5277362.618162578],[517034.71272784384,5277364.229809143],[517032.9026699652,5277364.280083515],[517031.55829335295,5277364.309492686],[517031.51794779825,5277362.6978461435],[517034.6723831602,5277362.618162578]]]},"properties":{"id_build":670,"id_source":"w145191821","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516897.84165613924,5277538.031640144],[516888.60825376125,5277536.782308954],[516889.75695813773,5277529.11698727],[516894.41869187774,5277529.752896576],[516898.84017796227,5277530.365884282],[516897.84165613924,5277538.031640144]]]},"properties":{"id_build":671,"id_source":"w145191879","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.6669629954,5277382.285020421],[516534.994793036,5277383.61678965],[516532.0399584471,5277382.174694634],[516532.6971396212,5277380.831768522],[516535.6669629954,5277382.285020421]]]},"properties":{"id_build":672,"id_source":"w145191888","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516987.2218057092,5277353.132660661],[516984.81862068037,5277353.125649555],[516984.8218628438,5277352.014260099],[516987.2250483323,5277352.021271207],[516987.2218057092,5277353.132660661]]]},"properties":{"id_build":673,"id_source":"w145191911","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.43382727704,5276740.591171092],[517206.74879171007,5276740.062988126],[517207.689720467,5276752.068867661],[517198.299339623,5276752.70796611],[517197.85953269934,5276746.493951999],[517197.43382727704,5276740.591171092]]]},"properties":{"id_build":674,"id_source":"w145191920","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.2354639504,5277557.601636666],[517123.65769944526,5277564.587044739],[517119.9714010272,5277561.697679048],[517116.68970720674,5277559.12069711],[517122.26779535745,5277552.024143449],[517129.2354639504,5277557.601636666]]]},"properties":{"id_build":675,"id_source":"w145191926","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.60735394096,5277344.300164555],[517271.4452858984,5277348.300720894],[517270.44092921994,5277347.630902098],[517270.52361122385,5277345.074929208],[517271.60735394096,5277344.300164555]]]},"properties":{"id_build":676,"id_source":"w145191933","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.6829457644,5277492.492982495],[516630.31606717216,5277495.028151935],[516628.7678435705,5277490.189144916],[516626.9665065862,5277484.571436347],[516634.5583729217,5277482.148045356],[516637.6829457644,5277492.492982495]]]},"properties":{"id_build":677,"id_source":"w145191934","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.4280634623,5277498.083348838],[517295.29441597423,5277495.843097101],[517296.23591071385,5277494.912318488],[517298.4148809704,5277497.063793268],[517297.4280634623,5277498.083348838]]]},"properties":{"id_build":678,"id_source":"w145191959","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516576.9895429067,5277444.640849535],[516568.28531162103,5277447.372341576],[516565.0381557465,5277448.385588623],[516562.4324792833,5277440.376105241],[516574.45929597487,5277436.52043564],[516576.9895429067,5277444.640849535]]]},"properties":{"id_build":679,"id_source":"w145191961","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.54510487174,5277656.156891116],[516693.0805084563,5277658.361149367],[516690.4012829767,5277649.906834097],[516697.09085614,5277647.814358017],[516697.54206799716,5277647.59337231],[516697.0959562,5277646.036134021],[516705.0631210898,5277643.613911688],[516707.07284616766,5277649.84351404],[516711.35744819226,5277648.410992578],[516713.81295254716,5277656.308975743],[516708.100582519,5277658.070817321],[516707.20709018264,5277655.400895095],[516703.89975763485,5277656.4805758055],[516700.81790440803,5277657.494221265],[516700.22160303086,5277655.936551855],[516699.54510487174,5277656.156891116]]]},"properties":{"id_build":680,"id_source":"w145191969","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.72377498174,5277079.233365161],[517272.0722881948,5277078.6994201355],[517272.5192663631,5277072.332431341],[517272.92658383504,5277066.676620162],[517280.6605679747,5277067.255266996],[517279.72377498174,5277079.233365161]]]},"properties":{"id_build":681,"id_source":"w145191989","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.35901714297,5276875.997521685],[517285.98229690804,5276868.441862869],[517293.49122594425,5276869.019857076],[517293.01814786537,5276876.575961199],[517290.7053876651,5276876.402383685],[517285.35901714297,5276875.997521685]]]},"properties":{"id_build":682,"id_source":"w145191998","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.32741632016,5277427.492046618],[517284.42730399955,5277427.670926597],[517284.25020927715,5277431.671438535],[517280.1503244122,5277431.492558669],[517280.32741632016,5277427.492046618]]]},"properties":{"id_build":683,"id_source":"w145192006","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517196.70900861727,5276731.697846235],[517206.0243155693,5276731.05852325],[517206.74879171007,5276740.062988126],[517197.43382727704,5276740.591171092],[517197.08588179055,5276736.333489014],[517196.70900861727,5276731.697846235]]]},"properties":{"id_build":684,"id_source":"w145192013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516712.5186112724,5276877.5483384],[516683.66502451553,5276855.793343286],[516687.8875189022,5276850.026174205],[516716.6663320628,5276871.669835541],[516712.5186112724,5276877.5483384]]]},"properties":{"id_build":685,"id_source":"w145192029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516973.0238327579,5277457.562759047],[516973.10249498,5277456.340449379],[516975.8060301961,5277456.348331619],[516975.8024655923,5277457.570860223],[516973.0238327579,5277457.562759047]]]},"properties":{"id_build":686,"id_source":"w145192035","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.5024547672,5277704.316216019],[517252.94707128993,5277700.892934707],[517257.79760968074,5277711.243330016],[517253.81181454594,5277713.176465435],[517250.502863885,5277714.778189201],[517245.5024547672,5277704.316216019]]]},"properties":{"id_build":687,"id_source":"w145192044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517261.583225784,5277244.911357797],[517261.9007632028,5277239.133024376],[517263.5523264002,5277239.360200797],[517263.235116873,5277245.027395216],[517261.583225784,5277244.911357797]]]},"properties":{"id_build":688,"id_source":"w145192057","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516934.574504515,5277534.581893772],[516935.63279296184,5277534.785024017],[516936.9763213092,5277535.033440231],[516936.6717294624,5277536.477373073],[516934.26991324406,5277536.025826734],[516934.574504515,5277534.581893772]]]},"properties":{"id_build":689,"id_source":"w145192059","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516717.58055825427,5277756.456867363],[516716.81164672377,5277736.560611246],[516726.57521914743,5277736.144096114],[516727.3437780423,5277756.151492604],[516717.58055825427,5277756.456867363]]]},"properties":{"id_build":690,"id_source":"w145192065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.191248049,5277076.775009245],[517304.5639998645,5277085.664335236],[517300.41917325003,5277085.363055088],[517296.45452739584,5277085.084541092],[517297.0820933982,5277076.0840753745],[517305.191248049,5277076.775009245]]]},"properties":{"id_build":691,"id_source":"w145192076","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.2436189879,5277374.7559010275],[517280.3810186101,5277371.477681031],[517281.58247553324,5277371.5257030465],[517281.5173159088,5277373.237064488],[517281.4525851618,5277374.803945305],[517280.2436189879,5277374.7559010275]]]},"properties":{"id_build":692,"id_source":"w145192079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.40730385546,5277387.529332524],[517278.21605394554,5277387.36426527],[517278.35931298824,5277384.641762191],[517281.55056438525,5277384.806829521],[517281.40730385546,5277387.529332524]]]},"properties":{"id_build":693,"id_source":"w145192115","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.6137128068,5277569.355297548],[516430.5050369934,5277565.812623849],[516431.4775309224,5277567.1490469845],[516426.5862072565,5277570.6917198775],[516425.6137128068,5277569.355297548]]]},"properties":{"id_build":694,"id_source":"w145192138","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516979.81064246653,5277363.013606716],[516982.87476300425,5277363.000315639],[516982.87809101795,5277364.434029969],[516981.06065345614,5277364.43984297],[516979.81400364713,5277364.436207148],[516979.81064246653,5277363.013606716]]]},"properties":{"id_build":695,"id_source":"w145192141","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.99707138195,5276898.963820276],[517261.6354913696,5276897.932837287],[517262.18330325803,5276890.488091973],[517267.1316687075,5276890.869524592],[517272.62066125765,5276891.297020945],[517271.99707138195,5276898.963820276]]]},"properties":{"id_build":696,"id_source":"w145192146","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517251.0864914057,5276909.460119416],[517239.5229131353,5276908.536754676],[517240.0720120268,5276900.647451771],[517245.10278861073,5276901.09579361],[517251.710381995,5276901.682178925],[517251.0864914057,5276909.460119416]]]},"properties":{"id_build":697,"id_source":"w145192191","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.68095615954,5277512.229162872],[517157.6009457078,5277513.896026138],[517156.02389896667,5277513.89137873],[517155.9540414963,5277512.112933884],[517157.68095615954,5277512.229162872]]]},"properties":{"id_build":698,"id_source":"w145192209","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.54614990245,5277497.498359916],[517212.54187838384,5277498.943166512],[517210.3640462866,5277498.936728234],[517210.44341494224,5277497.492143637],[517212.54614990245,5277497.498359916]]]},"properties":{"id_build":699,"id_source":"w145192223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516768.6121288577,5277689.697396852],[516787.16256215837,5277689.084019258],[516787.37214412185,5277694.530480225],[516768.7469531611,5277695.032501799],[516768.6121288577,5277689.697396852]]]},"properties":{"id_build":700,"id_source":"w145192224","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.595538003,5276978.559527645],[517274.69175917015,5276977.992245901],[517275.3031453089,5276974.4375843415],[517278.90683858574,5276974.892836148],[517278.595538003,5276978.559527645]]]},"properties":{"id_build":701,"id_source":"w145192248","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.5994352537,5277418.446147886],[517298.94089809473,5277418.6005570935],[517298.89240460447,5277419.756268336],[517297.0752476116,5277419.673071488],[517295.55094242626,5277419.601859155],[517295.5994352537,5277418.446147886]]]},"properties":{"id_build":702,"id_source":"w145192258","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517143.1776200995,5277005.277395519],[517129.3574988846,5277005.570143742],[517129.2246184744,5276999.679341074],[517143.194961859,5276999.387034734],[517143.1776200995,5277005.277395519]]]},"properties":{"id_build":703,"id_source":"w145192270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.2030243897,5277480.112764153],[517019.3692082457,5277480.037176532],[517019.5714345031,5277487.928701877],[517007.40494247084,5277488.115428002],[517007.3311656428,5277485.092206738],[517007.2030243897,5277480.112764153]]]},"properties":{"id_build":704,"id_source":"w145192305","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.1771697487,5276758.005086063],[517293.3993935506,5276758.313201207],[517288.1859300722,5276758.642254762],[517287.6859145225,5276749.971864595],[517297.6774991334,5276749.223556169],[517298.1771697487,5276758.005086063]]]},"properties":{"id_build":705,"id_source":"w145192306","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.09274898574,5277723.472980556],[517179.01746149885,5277712.899703942],[517182.4994724769,5277711.1761964625],[517186.1619758629,5277709.364311913],[517191.3120201554,5277720.048955483],[517184.09274898574,5277723.472980556]]]},"properties":{"id_build":706,"id_source":"w145192351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.23861044773,5277386.06499503],[516849.4678718758,5277386.074339614],[516849.45682396967,5277387.296846362],[516847.5943666079,5277387.2914567115],[516846.23507312965,5277387.287523511],[516846.23861044773,5277386.06499503]]]},"properties":{"id_build":707,"id_source":"w145192373","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.49146025075,5277439.42631384],[516887.1634093542,5277439.419560811],[516887.2417313942,5277438.308389019],[516889.49468430673,5277438.314924223],[516889.49146025075,5277439.42631384]]]},"properties":{"id_build":708,"id_source":"w145192377","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517159.8025160894,5277454.887210569],[517159.64773373905,5277456.442713353],[517157.770606143,5277456.326041198],[517157.84996223677,5277454.881456011],[517159.8025160894,5277454.887210569]]]},"properties":{"id_build":709,"id_source":"w145192384","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.9371193109,5277494.340426582],[516856.236948171,5277486.3421167955],[516864.26822874526,5277487.810193664],[516862.8932914649,5277495.808284189],[516858.87017944705,5277495.063109648],[516854.9371193109,5277494.340426582]]]},"properties":{"id_build":710,"id_source":"w145192409","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516901.7323471347,5277491.253031263],[516910.8149779941,5277492.72422469],[516909.05835676484,5277502.83285435],[516904.5846374266,5277502.097453449],[516900.12593650084,5277501.362099592],[516901.7323471347,5277491.253031263]]]},"properties":{"id_build":711,"id_source":"w145192435","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.6009457078,5277513.896026138],[517157.68095615954,5277512.229162872],[517159.3327732746,5277512.345171038],[517159.25276235037,5277514.012034282],[517157.6009457078,5277513.896026138]]]},"properties":{"id_build":712,"id_source":"w145192458","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.87796341465,5277114.336385445],[517304.4268021832,5277106.558224784],[517312.3860385634,5277107.137583522],[517311.9122918224,5277114.915966759],[517307.82753545506,5277114.625973797],[517303.87796341465,5277114.336385445]]]},"properties":{"id_build":713,"id_source":"w145192460","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.05670342164,5277664.695618526],[516962.33847502904,5277663.351646177],[516963.99727661174,5277663.634329423],[516965.6635552003,5277663.928148929],[516965.50915371784,5277665.372518244],[516962.05670342164,5277664.695618526]]]},"properties":{"id_build":714,"id_source":"w145192468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517057.62509040267,5277443.917521117],[517057.09154310665,5277449.161761955],[517056.46540434274,5277455.250394983],[517049.858714042,5277454.564204169],[517050.8678651311,5277443.342028119],[517057.62509040267,5277443.917521117]]]},"properties":{"id_build":715,"id_source":"w145192512","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516621.84219457384,5277622.259128125],[516614.1751026575,5277624.793460479],[516610.9010029355,5277614.22582721],[516618.6432034671,5277611.691704921],[516620.22039375396,5277616.897554667],[516621.84219457384,5277622.259128125]]]},"properties":{"id_build":716,"id_source":"w145192520","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.1000503148,5277253.841394322],[517310.4481626265,5277253.725343035],[517310.5404454466,5277247.946342236],[517312.2677661277,5277247.951477924],[517312.1000503148,5277253.841394322]]]},"properties":{"id_build":717,"id_source":"w145192522","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516811.2414656909,5277386.297257548],[516814.6209251395,5277386.307016496],[516814.6167525194,5277387.751822888],[516812.8143745928,5277387.746617872],[516811.27484344743,5277387.742172364],[516811.2414656909,5277386.297257548]]]},"properties":{"id_build":718,"id_source":"w145192527","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.1620274906,5277685.061987704],[516895.7866405045,5277684.60812668],[516896.5166450305,5277684.065659657],[516896.9646360091,5277684.956079427],[516895.6854363829,5277685.841486308],[516895.1620274906,5277685.061987704]]]},"properties":{"id_build":719,"id_source":"w145192545","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516662.2216301324,5277656.383368361],[516657.89217968995,5277657.749113633],[516653.50259124883,5277659.136918071],[516650.6724816548,5277650.904469583],[516659.5423589825,5277647.929067426],[516662.2216301324,5277656.383368361]]]},"properties":{"id_build":720,"id_source":"w145192563","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.4547944704,5276863.292256154],[517270.0756900237,5276863.059953915],[517270.39160542196,5276857.837318638],[517273.845489136,5276858.180982703],[517273.4547944704,5276863.292256154]]]},"properties":{"id_build":721,"id_source":"w145192570","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516367.2544956785,5277572.413993694],[516368.5339515824,5277571.417332008],[516372.17681498255,5277576.528895267],[516374.9669471687,5277580.437751765],[516373.7629012694,5277581.323484268],[516367.2544956785,5277572.413993694]]]},"properties":{"id_build":722,"id_source":"w145192579","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.2721196279,5277588.827695341],[516852.48615224054,5277588.69111603],[516852.66787347646,5277577.799930052],[516861.4541791842,5277577.825370609],[516861.36327809363,5277583.282077357],[516861.2721196279,5277588.827695341]]]},"properties":{"id_build":723,"id_source":"w145192615","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.7022620247,5277352.750806912],[517044.0737781615,5277352.743111713],[517044.0016067355,5277351.742641364],[517046.7802901549,5277351.750776289],[517046.7022620247,5277352.750806912]]]},"properties":{"id_build":724,"id_source":"w145192617","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.25609902584,5277426.3755049],[516796.3241438367,5277428.820778686],[516795.19766558864,5277428.817529005],[516795.2047188851,5277426.372471872],[516796.25609902584,5277426.3755049]]]},"properties":{"id_build":725,"id_source":"w145192637","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.32386682415,5277128.705717237],[517269.9654762633,5277128.128188331],[517270.0448639914,5277126.6836053375],[517277.4783588285,5277127.26135719],[517277.32386682415,5277128.705717237]]]},"properties":{"id_build":726,"id_source":"w145192649","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.347729882,5277480.385179253],[517213.34247241204,5277482.163402708],[517211.16463403765,5277482.156964149],[517211.2453172923,5277480.267823732],[517213.347729882,5277480.385179253]]]},"properties":{"id_build":727,"id_source":"w145192668","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516431.58795133594,5277661.062558923],[516432.7165804381,5277660.287765321],[516436.4491008889,5277665.521877046],[516439.14937764587,5277669.30825772],[516438.09584484587,5277670.083262122],[516431.58795133594,5277661.062558923]]]},"properties":{"id_build":728,"id_source":"w145192681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516806.46728671837,5277453.189685249],[516807.9241924952,5277453.193891044],[516807.9352977703,5277454.549829779],[516807.9537203476,5277455.972473572],[516806.45926616655,5277455.968159376],[516806.46728671837,5277453.189685249]]]},"properties":{"id_build":729,"id_source":"w145192683","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.6170990961,5277368.443056712],[517317.446498333,5277372.7770065],[517316.17996469175,5277371.884120074],[517316.2633276153,5277369.105869796],[517317.6170990961,5277368.443056712]]]},"properties":{"id_build":730,"id_source":"w145192688","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516626.6777309937,5277638.2770823445],[516619.2362626741,5277640.700912472],[516616.1104699618,5277630.800538699],[516623.62704554916,5277628.376919018],[516625.18214230577,5277633.427111338],[516626.6777309937,5277638.2770823445]]]},"properties":{"id_build":731,"id_source":"w145192697","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8020198006,5277219.555926856],[517293.881742491,5277218.000205054],[517299.6638810031,5277218.239661671],[517299.7346895066,5277219.6846907595],[517293.8020198006,5277219.555926856]]]},"properties":{"id_build":732,"id_source":"w145192700","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516342.43353261234,5276703.231110933],[516352.27079436195,5276703.925563935],[516351.8845719828,5276710.403924825],[516351.24571054423,5276721.260481283],[516341.2582626374,5276720.565608401],[516342.43353261234,5276703.231110933]]]},"properties":{"id_build":733,"id_source":"w145192756","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.8480091094,5277362.535072265],[517051.8587975305,5277363.979922563],[517050.34926715796,5277363.986615726],[517048.967405761,5277363.993683123],[517048.96412656474,5277362.548854823],[517051.8480091094,5277362.535072265]]]},"properties":{"id_build":734,"id_source":"w145192763","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.2082343623,5277352.764001443],[517051.21148919757,5277351.652611997],[517053.5395753484,5277351.659430536],[517053.536320069,5277352.770819984],[517051.2082343623,5277352.764001443]]]},"properties":{"id_build":735,"id_source":"w145192765","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.4618089982,5277646.782776263],[517305.22921247734,5277645.144702261],[517306.2633734079,5277650.927055184],[517296.495649118,5277652.6762664355],[517295.4618089982,5277646.782776263]]]},"properties":{"id_build":736,"id_source":"w145192834","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.06596263323,5277090.871572535],[517298.6729484465,5277096.760818468],[517295.66949473927,5277096.529616578],[517296.06250590045,5277090.640370454],[517299.06596263323,5277090.871572535]]]},"properties":{"id_build":737,"id_source":"w145192859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517016.56061005587,5277747.209383724],[517016.52455025684,5277759.5458144285],[517004.8095162566,5277759.622722713],[517004.69536233466,5277747.285853292],[517016.56061005587,5277747.209383724]]]},"properties":{"id_build":738,"id_source":"w145192865","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.2996409306,5277685.360176225],[516680.00299573055,5277688.331443378],[516677.3228103001,5277680.21055076],[516681.9825725892,5277678.879108422],[516687.69456377736,5277677.239494134],[516690.2996409306,5277685.360176225]]]},"properties":{"id_build":739,"id_source":"w145192904","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517061.15100272134,5277650.2035686225],[517059.8917261743,5277651.967003548],[517059.2697021393,5277651.531735],[517060.55186556483,5277649.646113066],[517061.15100272134,5277650.2035686225]]]},"properties":{"id_build":740,"id_source":"w145192914","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516968.2215784252,5277378.861711008],[516972.65275519347,5277378.763486972],[516972.715866828,5277382.875847075],[516968.3597923356,5277382.974289922],[516968.2215784252,5277378.861711008]]]},"properties":{"id_build":741,"id_source":"w145192923","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.32492412464,5277375.777422989],[517317.14615270286,5277380.33362839],[517315.8570909086,5277379.440675011],[517316.0162139205,5277376.440370154],[517317.32492412464,5277375.777422989]]]},"properties":{"id_build":742,"id_source":"w145192925","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517071.5730002417,5277476.522398783],[517079.45600202936,5277477.323498359],[517078.5245070938,5277487.656778725],[517070.5664213776,5277486.85546017],[517071.06977555685,5277481.66670164],[517071.5730002417,5277476.522398783]]]},"properties":{"id_build":743,"id_source":"w145192940","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517091.01270973834,5276917.323582347],[517090.8872902729,5276908.87658753],[517099.22495381127,5276908.567645259],[517099.27492967667,5276917.125558605],[517091.01270973834,5276917.323582347]]]},"properties":{"id_build":744,"id_source":"w145192947","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517144.9357714689,5277581.431799837],[517149.6845356586,5277575.444229363],[517156.87776726385,5277580.911280667],[517152.1290000574,5277586.898845336],[517148.32260813384,5277583.997993632],[517144.9357714689,5277581.431799837]]]},"properties":{"id_build":745,"id_source":"w145192976","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516409.2481489033,5277700.565349721],[516404.66072601895,5277697.573871941],[516397.62970564474,5277692.975100043],[516402.53155599337,5277685.653676086],[516413.99981734535,5277693.2435119795],[516409.2481489033,5277700.565349721]]]},"properties":{"id_build":746,"id_source":"w145192977","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.1758507032,5277452.777546677],[516548.26122708694,5277458.896166238],[516545.70567892515,5277459.666882147],[516543.845279003,5277453.6600426575],[516546.1758507032,5277452.777546677]]]},"properties":{"id_build":747,"id_source":"w145192998","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.4837950692,5277611.783490525],[516805.998560198,5277615.563733747],[516801.41609185946,5277616.106206741],[516800.90100307687,5277612.437102922],[516805.4837950692,5277611.783490525]]]},"properties":{"id_build":748,"id_source":"w145193018","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.15112898295,5277367.709474002],[516401.369037654,5277365.245288383],[516402.4361731445,5277362.325316955],[516409.21823611634,5277364.800617691],[516408.15112898295,5277367.709474002]]]},"properties":{"id_build":749,"id_source":"w145193040","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.10660908604,5277692.732281565],[517309.8518900829,5277691.703868796],[517312.1311076846,5277690.421422356],[517312.3192092181,5277690.2997277435],[517317.75807069783,5277699.75168905],[517313.3956155238,5277702.072653294],[517308.10660908604,5277692.732281565]]]},"properties":{"id_build":750,"id_source":"w145193044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516885.0436784216,5277660.181741812],[516885.0694294753,5277661.659977639],[516883.6275304654,5277661.678023769],[516882.32828078093,5277661.707597917],[516882.3024968005,5277660.240476007],[516885.0436784216,5277660.181741812]]]},"properties":{"id_build":751,"id_source":"w145193063","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516788.05271396635,5277257.9638281735],[516777.9738085334,5277258.068143868],[516777.7532127348,5277235.583916151],[516777.18348930473,5277177.8784670485],[516787.2700436941,5277177.774171325],[516787.35099374165,5277186.165462753],[516787.5484688195,5277206.237887937],[516787.7514012587,5277227.0216245465],[516787.83177254617,5277235.612966701],[516787.9368003534,5277246.071529592],[516788.05271396635,5277257.9638281735]]]},"properties":{"id_build":752,"id_source":"w145193092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.7043217779,5276758.808267498],[517231.4298729909,5276750.02741027],[517241.27057699655,5276749.500838274],[517241.92087610444,5276758.171669039],[517236.51961474045,5276758.511326784],[517231.7043217779,5276758.808267498]]]},"properties":{"id_build":753,"id_source":"w145193111","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.35901714297,5276875.997521685],[517279.82498059236,5276875.558765757],[517278.07541346893,5276875.420206478],[517278.47336643265,5276867.863878351],[517285.98229690804,5276868.441862869],[517285.35901714297,5276875.997521685]]]},"properties":{"id_build":754,"id_source":"w145193113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.21977109084,5277266.704324083],[516439.6584927597,5277265.594164585],[516441.0612429026,5277266.176052497],[516440.6376352805,5277267.252912626],[516439.21977109084,5277266.704324083]]]},"properties":{"id_build":755,"id_source":"w145193126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516879.9532743659,5277387.829742462],[516880.02225127263,5277389.941600303],[516879.04596357205,5277389.938769882],[516878.9769863098,5277387.826912053],[516879.9532743659,5277387.829742462]]]},"properties":{"id_build":756,"id_source":"w145193132","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.4268021832,5277106.558224784],[517303.87796341465,5277114.336385445],[517299.6355237762,5277114.034815645],[517295.76853083796,5277113.756592133],[517296.3924615466,5277105.978653837],[517304.4268021832,5277106.558224784]]]},"properties":{"id_build":757,"id_source":"w145193143","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517227.78967767867,5277726.3806281],[517223.1423133286,5277728.567448667],[517218.6153011818,5277730.687944911],[517215.2570749015,5277723.565054411],[517224.5062260521,5277719.369093528],[517227.78967767867,5277726.3806281]]]},"properties":{"id_build":758,"id_source":"w145193146","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.5443799553,5277456.606386101],[516796.5373260273,5277459.051443348],[516795.4859517873,5277459.0484102545],[516795.4930052726,5277456.603353008],[516796.5443799553,5277456.606386101]]]},"properties":{"id_build":759,"id_source":"w145193156","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.50476784824,5277049.897926793],[517308.6514973401,5277049.667164855],[517308.89332622127,5277044.110890161],[517311.82170297136,5277044.341875497],[517311.50476784824,5277049.897926793]]]},"properties":{"id_build":760,"id_source":"w145193194","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.11795029487,5277356.933332071],[516880.1105392766,5277359.489527866],[516879.0594692188,5277359.3753407765],[516879.0665575779,5277356.930283929],[516880.11795029487,5277356.933332071]]]},"properties":{"id_build":761,"id_source":"w145193199","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516840.4341748207,5277705.130886619],[516842.0878721754,5277704.579970871],[516847.30045869836,5277719.821225193],[516845.49657557777,5277720.371704866],[516840.4341748207,5277705.130886619]]]},"properties":{"id_build":762,"id_source":"w145193204","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517001.5664654159,5277352.952250944],[517001.5697107769,5277351.840861489],[517004.123095452,5277351.848318167],[517004.1198496046,5277352.959707623],[517001.5664654159,5277352.952250944]]]},"properties":{"id_build":763,"id_source":"w145193214","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.209861847,5277353.106374126],[516978.21277865703,5277352.106123617],[516980.69106364576,5277352.113351024],[516980.68814640853,5277353.113601533],[516978.209861847,5277353.106374126]]]},"properties":{"id_build":764,"id_source":"w145193216","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516809.91824026156,5277376.401987762],[516809.8463498221,5277375.290381423],[516812.4000449375,5277375.186615093],[516812.39683566446,5277376.298004606],[516809.91824026156,5277376.401987762]]]},"properties":{"id_build":765,"id_source":"w145193241","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516968.6302513869,5277290.173272554],[516984.6272729903,5277289.997636142],[516984.9298265802,5277315.004992329],[516968.78299752634,5277315.069051062],[516968.7005074962,5277302.143242369],[516968.6302513869,5277290.173272554]]]},"properties":{"id_build":766,"id_source":"w145193254","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.7347461199,5277470.424234589],[516426.87250563543,5277469.221830922],[516426.4153325825,5277471.554478014],[516419.7347461199,5277470.424234589]]]},"properties":{"id_build":767,"id_source":"w145193270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516931.7946060732,5277457.553849934],[516931.797515006,5277456.553599253],[516934.35085368535,5277456.561025444],[516934.3479443126,5277457.561276126],[516931.7946060732,5277457.553849934]]]},"properties":{"id_build":768,"id_source":"w145193275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.06596263323,5277090.871572535],[517302.0694191344,5277091.102776167],[517301.601299077,5277096.991798746],[517298.6729484465,5277096.760818468],[517299.06596263323,5277090.871572535]]]},"properties":{"id_build":769,"id_source":"w145193280","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516828.8152973029,5277386.125747588],[516831.9694595723,5277386.1348653985],[516831.9579976486,5277387.501852809],[516830.2832559472,5277387.508125371],[516828.8413214142,5277387.51507133],[516828.8152973029,5277386.125747588]]]},"properties":{"id_build":770,"id_source":"w145193299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.6822493633,5277673.8138304],[516963.83697403234,5277672.258322017],[516968.19024058187,5277673.048988273],[516967.9607433107,5277674.493138673],[516963.6822493633,5277673.8138304]]]},"properties":{"id_build":771,"id_source":"w145193306","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.2017568973,5277676.955858511],[517206.0397218357,5277666.189578084],[517213.23936025234,5277669.433920221],[517208.40138461447,5277680.200194749],[517204.69656965573,5277678.533259213],[517201.2017568973,5277676.955858511]]]},"properties":{"id_build":772,"id_source":"w145193308","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4892138693,5276965.732311008],[517293.13127948245,5276964.932475722],[517293.2103447798,5276963.599032274],[517300.6443760135,5276964.065674174],[517300.4892138693,5276965.732311008]]]},"properties":{"id_build":773,"id_source":"w145193312","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.3846537707,5277693.109145124],[516869.3927637942,5277688.988297],[516872.8619965258,5277686.464360217],[516874.4272953609,5277685.324155751],[516877.5014339794,5277689.567498823],[516872.3846537707,5277693.109145124]]]},"properties":{"id_build":774,"id_source":"w145193335","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.7619861289,5277507.765002331],[517075.0113366788,5277507.651660814],[517075.38961499673,5277504.140748549],[517076.14787244523,5277504.220770451],[517075.7619861289,5277507.765002331]]]},"properties":{"id_build":775,"id_source":"w145193375","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516920.582850444,5277439.294310768],[516920.66085586656,5277438.294278372],[516923.06432872283,5277438.1901241215],[516923.211618148,5277439.190811352],[516920.582850444,5277439.294310768]]]},"properties":{"id_build":776,"id_source":"w145193416","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517199.3375860384,5276808.058659322],[517199.2680597711,5276806.169077075],[517201.4464792831,5276806.064371714],[517201.59143971396,5276807.843037003],[517199.3375860384,5276808.058659322]]]},"properties":{"id_build":777,"id_source":"w145193435","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.131278305,5277619.7510204],[517283.32172828494,5277620.473233405],[517279.0162811825,5277621.282889032],[517277.68796992145,5277613.388009041],[517285.8023176909,5277612.078416526],[517287.131278305,5277619.7510204]]]},"properties":{"id_build":778,"id_source":"w145193446","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516316.9995908827,5276800.518185244],[516323.9293406349,5276793.424664123],[516329.5851264182,5276798.708544369],[516334.1921529313,5276803.01145873],[516327.33750844595,5276810.10517833],[516316.9995908827,5276800.518185244]]]},"properties":{"id_build":779,"id_source":"w145193455","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.44341494224,5277497.492143637],[517210.448343014,5277495.825059108],[517212.6261762754,5277495.831497412],[517212.54614990245,5277497.498359916],[517210.44341494224,5277497.492143637]]]},"properties":{"id_build":780,"id_source":"w145193468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.36990366125,5277376.124761416],[516826.6663313575,5277376.116947264],[516826.66922215465,5277375.116696701],[516829.29801692977,5277375.013154824],[516829.36990366125,5277376.124761416]]]},"properties":{"id_build":781,"id_source":"w145193495","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517135.6325123722,5277616.713571965],[517138.9869525679,5277612.422330082],[517143.8865327003,5277606.212918843],[517147.16812237864,5277608.812144197],[517150.92921163514,5277611.790659849],[517142.6368856515,5277622.546812207],[517141.48369457514,5277623.977122087],[517136.56126901385,5277620.0949602965],[517137.6315921852,5277618.753317474],[517135.5489252595,5277617.046745799],[517135.6325123722,5277616.713571965]]]},"properties":{"id_build":782,"id_source":"w145193502","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517053.8101809799,5277643.847083078],[517046.5405339796,5277638.824494717],[517050.24271289347,5277633.722898571],[517053.6281929196,5277629.064936865],[517060.67190699157,5277634.309151759],[517053.8101809799,5277643.847083078]]]},"properties":{"id_build":783,"id_source":"w145193514","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516832.9697825263,5277741.452059602],[516827.9821412709,5277726.322607856],[516829.2597152525,5277725.992881152],[516834.2476748636,5277741.011194976],[516832.9697825263,5277741.452059602]]]},"properties":{"id_build":784,"id_source":"w145193516","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.5405339796,5277638.824494717],[517053.8101809799,5277643.847083078],[517047.5515207655,5277652.60880876],[517040.28253002174,5277647.363950136],[517043.42658140947,5277643.08315165],[517046.5405339796,5277638.824494717]]]},"properties":{"id_build":785,"id_source":"w145193535","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.0226204094,5277062.86122438],[517306.1321237025,5277063.441020613],[517305.9743198629,5277065.996768698],[517297.8651502763,5277065.305833783],[517298.0226204094,5277062.86122438]]]},"properties":{"id_build":786,"id_source":"w145193547","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516827.33421649766,5277612.73572542],[516829.3630984211,5277612.297030374],[516829.65802138014,5277614.1872615935],[516827.5546864202,5277614.403461488],[516827.4517683494,5277613.636298551],[516827.33421649766,5277612.73572542]]]},"properties":{"id_build":787,"id_source":"w145193587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.49605039565,5277539.4405856235],[516723.97963390645,5277541.752927086],[516720.8555605,5277531.29680343],[516728.59696161805,5277529.096244261],[516729.92759735155,5277533.8346274365],[516731.49605039565,5277539.4405856235]]]},"properties":{"id_build":788,"id_source":"w145193597","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.96430552274,5276762.49728415],[516467.4529366806,5276763.85437229],[516466.118198384,5276760.427494158],[516469.6295689701,5276759.070405218],[516470.96430552274,5276762.49728415]]]},"properties":{"id_build":789,"id_source":"w145193608","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516551.1422479204,5277502.137765333],[516543.2503684151,5277504.449272486],[516538.6378877285,5277489.098865566],[516546.4550041964,5277486.67599977],[516548.7539812715,5277494.262273285],[516551.1422479204,5277502.137765333]]]},"properties":{"id_build":790,"id_source":"w145193618","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.94707128993,5277700.892934707],[517245.5024547672,5277704.316216019],[517240.4272615276,5277693.742885956],[517243.76642395766,5277692.085675963],[517247.7974518507,5277690.097097695],[517252.94707128993,5277700.892934707]]]},"properties":{"id_build":791,"id_source":"w145193666","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516847.6314113713,5277449.752181575],[516851.0108340392,5277449.761961734],[516851.006652304,5277451.206768268],[516849.30943156104,5277451.201856211],[516847.62723047216,5277451.196988111],[516847.6314113713,5277449.752181575]]]},"properties":{"id_build":792,"id_source":"w145193674","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.2816900427,5277439.516543216],[516879.95363918797,5277439.50979307],[516879.8817629929,5277438.398185724],[516882.28491272125,5277438.405153601],[516882.2816900427,5277439.516543216]]]},"properties":{"id_build":793,"id_source":"w145193714","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516955.1313843909,5277515.636798855],[516956.5857495879,5277506.194141648],[516965.7434412403,5277507.665639611],[516964.28906152514,5277517.1082945885],[516959.6576877045,5277516.361277886],[516955.1313843909,5277515.636798855]]]},"properties":{"id_build":794,"id_source":"w145193750","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517047.94850184035,5277314.42230623],[517031.91405950143,5277314.575430886],[517031.67211304413,5277289.457108605],[517047.7066245402,5277289.30398312],[517047.8095242107,5277300.329361262],[517047.94850184035,5277314.42230623]]]},"properties":{"id_build":795,"id_source":"w145193799","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516874.1066185697,5277280.340533547],[516873.95410966914,5277255.222482002],[516890.10174703284,5277254.935882035],[516890.25319653295,5277267.450670256],[516890.4040648311,5277280.165508815],[516874.1066185697,5277280.340533547]]]},"properties":{"id_build":796,"id_source":"w145193805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.94233278395,5277759.794728824],[516873.5485633215,5277757.907106766],[516881.126642796,5277760.151875611],[516880.52041002514,5277762.039496896],[516872.94233278395,5277759.794728824]]]},"properties":{"id_build":797,"id_source":"w145193809","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.1309403669,5276760.977971567],[516527.1128812888,5276760.544712285],[516527.6282222141,5276764.21378637],[516523.7188680175,5276765.5363691915],[516523.1309403669,5276760.977971567]]]},"properties":{"id_build":798,"id_source":"w145193818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.41592445935,5277757.330132625],[516400.2001927002,5277756.165372995],[516400.90157568856,5277755.100405869],[516401.9434454574,5277755.792408608],[516400.457825312,5277758.011021201],[516399.41592445935,5277757.330132625]]]},"properties":{"id_build":799,"id_source":"w145193826","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516843.06105801393,5277316.259959183],[516842.8277670908,5277303.444857358],[516842.6080160951,5277291.141038357],[516859.0556313729,5277290.966360441],[516859.2082023356,5277316.084412859],[516843.06105801393,5277316.259959183]]]},"properties":{"id_build":800,"id_source":"w145193845","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516537.1797212849,5276870.779469844],[516534.0315914778,5276868.547735087],[516534.786120513,5276867.327340138],[516538.08446220704,5276869.559501905],[516537.1797212849,5276870.779469844]]]},"properties":{"id_build":801,"id_source":"w145193886","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517232.5593970544,5277256.606213909],[517218.89434092445,5277255.454386814],[517220.68312748516,5277234.67651644],[517234.3485610487,5277235.7172086565],[517233.25961337716,5277248.395047811],[517232.5593970544,5277256.606213909]]]},"properties":{"id_build":802,"id_source":"w145193906","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.80328777165,5276951.825143247],[517280.77244959737,5276951.103329806],[517281.2605275078,5276943.5472684335],[517292.2988904286,5276944.269105058],[517292.0706242315,5276947.791560488],[517291.80328777165,5276951.825143247]]]},"properties":{"id_build":803,"id_source":"w145193907","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517077.1523524805,5277597.014448917],[517074.0456951606,5277606.452232242],[517064.81765004416,5277603.424397291],[517066.36326563923,5277598.772164359],[517067.92396812694,5277594.0977481045],[517077.1523524805,5277597.014448917]]]},"properties":{"id_build":804,"id_source":"w145193918","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.31355526915,5277407.088324472],[517006.74043316767,5277407.092492252],[517006.72815107205,5277408.726212953],[517006.7159988367,5277410.315478081],[517005.3038168743,5277410.422493128],[517005.31355526915,5277407.088324472]]]},"properties":{"id_build":805,"id_source":"w145193956","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517288.0195523988,5277219.427614972],[517287.9490709729,5277217.871447118],[517293.881742491,5277218.000205054],[517293.8020198006,5277219.555926856],[517288.0195523988,5277219.427614972]]]},"properties":{"id_build":806,"id_source":"w145193957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516747.58180589415,5277299.31355737],[516757.64587497147,5277299.120234851],[516757.6707010953,5277300.931886011],[516757.70626089524,5277304.232842191],[516747.5674201805,5277304.314809626],[516747.55297809205,5277301.502929656],[516747.58180589415,5277299.31355737]]]},"properties":{"id_build":807,"id_source":"w145193964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516890.24539505504,5277386.637052092],[516890.17964593443,5277383.413804617],[516891.90692612034,5277383.418815693],[516891.9021861649,5277385.052558287],[516891.8978976333,5277386.5307063535],[516890.24539505504,5277386.637052092]]]},"properties":{"id_build":808,"id_source":"w145193971","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517206.0243155693,5276731.05852325],[517196.70900861727,5276731.697846235],[517196.39140042814,5276727.340228032],[517196.0596234794,5276722.693604554],[517205.3749447519,5276722.054280499],[517206.0243155693,5276731.05852325]]]},"properties":{"id_build":809,"id_source":"w145193984","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516396.71391161176,5277644.848949041],[516398.97148007987,5277643.188209583],[516400.0935334975,5277644.747328726],[516397.8359653085,5277646.408067756],[516396.71391161176,5277644.848949041]]]},"properties":{"id_build":810,"id_source":"w145194006","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516649.38742711843,5277417.507026335],[516647.154645205,5277410.443260129],[516644.84739439597,5277403.157002255],[516652.73976981506,5277400.7344938135],[516657.35488377727,5277415.084738894],[516649.38742711843,5277417.507026335]]]},"properties":{"id_build":811,"id_source":"w145194013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.48765249795,5277455.747601688],[517027.6286640556,5277454.832566075],[517027.72033958486,5277449.164698623],[517036.95515328593,5277449.969694157],[517036.48765249795,5277455.747601688]]]},"properties":{"id_build":812,"id_source":"w145194016","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.8619083071,5277219.18705536],[517282.0167290997,5277217.631556308],[517287.9490709729,5277217.871447118],[517288.0195523988,5277219.427614972],[517281.8619083071,5277219.18705536]]]},"properties":{"id_build":813,"id_source":"w145194021","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517059.9239310311,5277684.542218567],[517059.64718777017,5277702.1015210925],[517052.06324049906,5277701.857022186],[517052.41440506873,5277684.520217333],[517059.9239310311,5277684.542218567]]]},"properties":{"id_build":814,"id_source":"w145194033","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517191.95969335176,5277749.936408649],[517189.2758745341,5277748.383637766],[517191.5398666432,5277744.611563722],[517194.1938786001,5277746.086449609],[517191.95969335176,5277749.936408649]]]},"properties":{"id_build":815,"id_source":"w145194037","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.2153020375,5277404.542959224],[516535.6725666292,5277396.1775179375],[516543.8123083868,5277385.975774844],[516554.3024814755,5277394.3410812495],[516546.2153020375,5277404.542959224]]]},"properties":{"id_build":816,"id_source":"w145194046","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.88507022307,5277362.949931807],[516999.88085165824,5277364.394738118],[516998.228665137,5277364.389914276],[516996.7266773928,5277364.385529372],[516996.73089517374,5277362.94072306],[516999.88507022307,5277362.949931807]]]},"properties":{"id_build":817,"id_source":"w145194069","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516883.7117883284,5277490.200485019],[516882.33585802716,5277498.531987958],[516877.2315372711,5277497.716981632],[516872.3523792997,5277496.947088279],[516873.72829565743,5277488.6155830305],[516883.7117883284,5277490.200485019]]]},"properties":{"id_build":818,"id_source":"w145194086","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.41948199185,5277426.286637752],[516995.4123446139,5277428.731694843],[516994.2107676974,5277428.728187437],[516994.2179045692,5277426.283130346],[516995.41948199185,5277426.286637752]]]},"properties":{"id_build":819,"id_source":"w145194103","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517062.6157533072,5277611.642299393],[517071.3941872085,5277614.335392696],[517067.98423158587,5277624.772549581],[517059.3560040423,5277622.079901443],[517060.9328213937,5277617.027654608],[517062.6157533072,5277611.642299393]]]},"properties":{"id_build":820,"id_source":"w145194106","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516950.4358961197,5277467.266150402],[516953.5899498634,5277467.297562002],[516953.5778444851,5277468.875713453],[516951.7755239284,5277468.859351461],[516950.41624943644,5277468.855393891],[516950.4358961197,5277467.266150402]]]},"properties":{"id_build":821,"id_source":"w145194108","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516870.0113869932,5277662.094224999],[516869.98453712725,5277660.993861846],[516873.8372935645,5277660.88277361],[516873.871620043,5277661.994272449],[516871.94901305524,5277662.044270169],[516870.0113869932,5277662.094224999]]]},"properties":{"id_build":822,"id_source":"w145194118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517090.352082201,5277628.505787879],[517098.3047489782,5277631.085358018],[517095.1193893301,5277641.745439037],[517087.091313722,5277639.276791756],[517088.8430569897,5277633.480427983],[517090.352082201,5277628.505787879]]]},"properties":{"id_build":823,"id_source":"w145194135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.2686980227,5277279.634809371],[516936.96593664924,5277254.627457553],[516952.8876300829,5277254.5626541795],[516953.1387436319,5277266.333097785],[516953.41562452435,5277279.570663006],[516937.2686980227,5277279.634809371]]]},"properties":{"id_build":824,"id_source":"w145194167","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.43716531934,5277467.3810069775],[516936.40994799347,5277468.992456451],[516934.4650058382,5277468.953456952],[516932.8504626973,5277468.926533013],[516932.88512419834,5277467.337333161],[516936.43716531934,5277467.3810069775]]]},"properties":{"id_build":825,"id_source":"w145194187","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.3723295036,5277148.55370975],[516840.31649107626,5277148.653117837],[516840.2635679686,5277140.984315788],[516844.31941173534,5277140.884907654],[516844.3723295036,5277148.55370975]]]},"properties":{"id_build":826,"id_source":"w145194192","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.9199670508,5277386.697597406],[516795.91259292787,5277389.253793339],[516794.7857864316,5277389.361682711],[516794.7931600596,5277386.805486776],[516795.9199670508,5277386.697597406]]]},"properties":{"id_build":827,"id_source":"w145194205","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.60682870145,5277587.640296946],[517241.9398319822,5277588.720095426],[517241.50702654495,5277582.717255879],[517245.8035055966,5277582.407675685],[517251.87265978224,5277581.969983399],[517252.60682870145,5277587.640296946]]]},"properties":{"id_build":828,"id_source":"w145194207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516613.57809241186,5276775.939097028],[516614.2496159097,5276777.496969423],[516603.4212237654,5276782.022815377],[516602.3022250389,5276779.352270934],[516600.063590856,5276774.233460432],[516598.8697988378,5276771.45156374],[516609.9983183154,5276767.037705118],[516610.74495087564,5276768.595791311],[516615.8582561272,5276766.498723685],[516618.84160625516,5276773.8424605625],[516613.57809241186,5276775.939097028]]]},"properties":{"id_build":829,"id_source":"w145194215","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516892.4910156998,5277570.3578286255],[516889.4877914476,5277570.1268355325],[516889.528757458,5277568.94887123],[516889.5696590013,5277567.793134722],[516892.72340044996,5277567.913424668],[516892.4910156998,5277570.3578286255]]]},"properties":{"id_build":830,"id_source":"w145194228","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.98455877596,5277412.288813229],[516807.4489846632,5277412.293040558],[516807.49693373515,5277413.8935933085],[516807.53804666636,5277415.26073257],[516806.0509956642,5277415.289781872],[516805.98455877596,5277412.288813229]]]},"properties":{"id_build":831,"id_source":"w145194247","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.3090744112,5277434.04430986],[516796.3023412614,5277436.37822806],[516795.3260613782,5277436.3754116595],[516795.25769565627,5277434.041276819],[516796.3090744112,5277434.04430986]]]},"properties":{"id_build":832,"id_source":"w145194270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.43324737216,5276727.306105856],[516404.0285523397,5276727.7438904485],[516403.5115648963,5276724.630521909],[516405.9913687977,5276724.192948696],[516406.43324737216,5276727.306105856]]]},"properties":{"id_build":833,"id_source":"w145194272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.90524922754,5277356.95802765],[516926.8227182182,5277359.514005099],[516925.62112705014,5277359.510511883],[516925.6285580511,5277356.954316099],[516926.90524922754,5277356.95802765]]]},"properties":{"id_build":834,"id_source":"w145194281","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.0970944333,5277590.008932152],[516418.27448105946,5277588.784073582],[516422.78936138185,5277585.573751422],[516423.6119742665,5277586.79861062],[516421.3394830835,5277588.4148424845],[516419.0970944333,5277590.008932152]]]},"properties":{"id_build":835,"id_source":"w145194290","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516852.48615224054,5277588.69111603],[516861.2721196279,5277588.827695341],[516861.14328433,5277594.417660229],[516861.0152861194,5277599.71866379],[516852.30410980294,5277599.693441195],[516852.48615224054,5277588.69111603]]]},"properties":{"id_build":836,"id_source":"w145194292","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.48508601607,5277535.17299389],[517265.21141942375,5277535.886443514],[517261.656057049,5277539.510177449],[517260.9297236612,5277538.7967282655],[517264.48508601607,5277535.17299389]]]},"properties":{"id_build":837,"id_source":"w145194310","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516813.25016676163,5277574.907462288],[516812.879818738,5277573.128154147],[516814.98381001706,5277572.689670962],[516815.13878457836,5277573.634807829],[516815.2790928568,5277574.457648437],[516813.25016676163,5277574.907462288]]]},"properties":{"id_build":838,"id_source":"w145194312","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.2597152525,5277725.992881152],[516827.59972004854,5277720.931215317],[516824.2723719864,5277710.7522939965],[516825.7004602165,5277710.311861548],[516830.83831089886,5277725.441745124],[516829.2597152525,5277725.992881152]]]},"properties":{"id_build":839,"id_source":"w145194317","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.92688177474,5277542.650726148],[517187.18012268806,5277542.546237668],[517186.4753772522,5277552.324472463],[517182.0443280734,5277552.422533476],[517184.92688177474,5277542.650726148]]]},"properties":{"id_build":840,"id_source":"w145194324","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9682071859,5277386.965980701],[516927.03587458644,5277389.52239494],[516925.90938867274,5277389.519119989],[516925.8417207767,5277386.962705763],[516926.9682071859,5277386.965980701]]]},"properties":{"id_build":841,"id_source":"w145194357","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516885.35779362987,5277570.003715786],[516892.4910156998,5277570.3578286255],[516892.0088334944,5277581.24814184],[516884.72543156514,5277580.893593954],[516885.35779362987,5277570.003715786]]]},"properties":{"id_build":842,"id_source":"w145194399","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517173.4385678831,5277440.256946549],[517169.7600566058,5277439.8015375305],[517170.1450538239,5277436.579615086],[517173.97376402095,5277437.035467389],[517173.4385678831,5277440.256946549]]]},"properties":{"id_build":843,"id_source":"w145194409","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.62325231615,5276826.748519654],[517280.6285292404,5276824.970298046],[517283.44501750916,5276824.978656738],[517286.41171848326,5276824.987462699],[517286.40643979126,5276826.765684308],[517280.62325231615,5276826.748519654]]]},"properties":{"id_build":844,"id_source":"w145194443","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.5404454466,5277247.946342236],[517309.26406056085,5277247.831407698],[517309.50786581135,5277241.608297774],[517310.70948150445,5277241.611870156],[517310.5404454466,5277247.946342236]]]},"properties":{"id_build":845,"id_source":"w145194461","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.28071626223,5277683.4169762945],[516698.70488812623,5277687.273658222],[516695.723390775,5277679.485312505],[516707.59961380326,5277675.629486721],[516708.85078522045,5277679.26735299],[516710.28071626223,5277683.4169762945]]]},"properties":{"id_build":846,"id_source":"w145194537","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.1552775183,5277409.259671939],[516796.07376632886,5277411.48223444],[516795.0220628996,5277411.5903404085],[516794.9536966827,5277409.256205665],[516796.1552775183,5277409.259671939]]]},"properties":{"id_build":847,"id_source":"w145194576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9794363306,5277449.691268235],[516867.8331710782,5277449.69953541],[516867.8289851682,5277451.144341937],[516866.304490404,5277451.13992535],[516864.975251127,5277451.136074761],[516864.9794363306,5277449.691268235]]]},"properties":{"id_build":848,"id_source":"w145194579","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.10557473905,5277412.176359121],[517218.9342310174,5277412.10621082],[517219.0371513902,5277410.317162406],[517220.2085283431,5277410.376196827],[517220.10557473905,5277412.176359121]]]},"properties":{"id_build":849,"id_source":"w145194582","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.8818413143,5277360.98807683],[516938.75932704547,5277360.9935387205],[516938.7552206524,5277362.405003354],[516938.7509202578,5277363.883151361],[516936.9485348491,5277363.877907936],[516936.8818413143,5277360.98807683]]]},"properties":{"id_build":850,"id_source":"w145194591","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517029.8793151325,5277352.923856033],[517027.4013554672,5277352.805468743],[517027.4793802795,5277351.805437867],[517029.88256589754,5277351.812466579],[517029.8793151325,5277352.923856033]]]},"properties":{"id_build":851,"id_source":"w145194597","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516890.23413364263,5277364.63132202],[516890.2428387671,5277361.630570413],[516891.819926576,5277361.635145728],[516891.8377164976,5277363.268953631],[516891.8563447576,5277364.6138002705],[516890.23413364263,5277364.63132202]]]},"properties":{"id_build":852,"id_source":"w145194654","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.11259217444,5277467.375964834],[516988.1157240501,5277468.876362787],[516986.6287504466,5277468.8831381425],[516985.31450233865,5277468.890417788],[516985.303859935,5277467.389997932],[516988.11259217444,5277467.375964834]]]},"properties":{"id_build":853,"id_source":"w145194670","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517211.2453172923,5277480.267823732],[517211.32468638226,5277478.8232391905],[517213.4270994913,5277478.940594735],[517213.347729882,5277480.385179253],[517211.2453172923,5277480.267823732]]]},"properties":{"id_build":854,"id_source":"w145194671","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.36213844694,5277374.193109771],[517270.20040158555,5277378.082527382],[517269.2257599743,5277377.523936803],[517269.3835403908,5277374.968186528],[517270.36213844694,5277374.193109771]]]},"properties":{"id_build":855,"id_source":"w145194709","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.6638810031,5277218.239661671],[517299.7429448478,5277216.906217784],[517305.67594748177,5277216.923848815],[517305.7470848416,5277218.257739056],[517299.6638810031,5277218.239661671]]]},"properties":{"id_build":856,"id_source":"w145194710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.2823730947,5277619.116844486],[517032.0910600237,5277623.733854854],[517029.74864814826,5277628.661615914],[517021.64933057583,5277624.859171459],[517026.25879133854,5277615.092335448],[517034.2823730947,5277619.116844486]]]},"properties":{"id_build":857,"id_source":"w145194738","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.20872779284,5277519.389398417],[516837.73295465513,5277520.008419005],[516843.29619109415,5277520.535754698],[516842.4456847988,5277528.979927142],[516830.28378417925,5277527.611077517],[516831.20872779284,5277519.389398417]]]},"properties":{"id_build":858,"id_source":"w145194752","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9343111592,5277315.602119993],[516540.3875948698,5277314.658719042],[516543.82243861735,5277316.335575543],[516543.361676057,5277317.267840992],[516539.9343111592,5277315.602119993]]]},"properties":{"id_build":859,"id_source":"w145194759","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517140.9365073986,5277511.40186062],[517140.8565017328,5277513.068724097],[517139.2043573043,5277513.063860146],[517139.2092650018,5277511.396775568],[517140.9365073986,5277511.40186062]]]},"properties":{"id_build":860,"id_source":"w145194768","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.335142646,5277403.724991164],[516995.3276809325,5277406.281187121],[516994.20119822863,5277406.277898948],[516994.1335605678,5277403.7214837875],[516995.335142646,5277403.724991164]]]},"properties":{"id_build":861,"id_source":"w145194787","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.3273372146,5277408.523514167],[517292.1899199638,5277408.333400427],[517292.6436818823,5277407.267804792],[517295.49743793765,5277407.2762815375],[517296.3273372146,5277408.523514167]]]},"properties":{"id_build":862,"id_source":"w145194840","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.5217925365,5277746.47253719],[516404.3261927198,5277741.673240736],[516408.04379464954,5277736.204520452],[516411.4899349032,5277731.135140918],[516418.6855419539,5277735.934446135],[516411.5217925365,5277746.47253719]]]},"properties":{"id_build":863,"id_source":"w145194842","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516484.35889001976,5276793.3208933715],[516488.5667554266,5276792.665967896],[516489.378453261,5276797.780694486],[516485.0222658296,5276797.768361015],[516484.35889001976,5276793.3208933715]]]},"properties":{"id_build":864,"id_source":"w145194861","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.1421808529,5277592.971199198],[517183.57049618155,5277595.104778822],[517180.8388185433,5277604.654752816],[517175.9165347101,5277603.273207215],[517173.2603218038,5277602.520733577],[517176.1421808529,5277592.971199198]]]},"properties":{"id_build":865,"id_source":"w145194872","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.75020335964,5276771.4740845235],[516737.87343169685,5276770.782497833],[516724.92267403996,5276761.087242847],[516726.2722635922,5276759.290654948],[516739.2301823274,5276769.108187221],[516740.1071457761,5276769.733090808],[516738.75020335964,5276771.4740845235]]]},"properties":{"id_build":866,"id_source":"w145194910","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516405.9396912329,5277542.181695143],[516410.7559289382,5277538.638793354],[516411.7284319721,5277539.975213113],[516406.91219477187,5277543.518114106],[516405.9396912329,5277542.181695143]]]},"properties":{"id_build":867,"id_source":"w145194943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516938.62854077114,5277457.573728427],[516938.6317742241,5277456.462338786],[516941.33530934545,5277456.470205019],[516941.33207537653,5277457.581594661],[516938.62854077114,5277457.573728427]]]},"properties":{"id_build":868,"id_source":"w145194945","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.29786166846,5277693.441332153],[517138.2103336844,5277697.664393235],[517136.10799822526,5277697.54706462],[517136.19519754517,5277693.435142516],[517138.29786166846,5277693.441332153]]]},"properties":{"id_build":869,"id_source":"w145195019","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517219.73351259617,5277418.632488418],[517218.68980508397,5277418.573831654],[517218.8324111271,5277416.06249106],[517219.87611908943,5277416.12114785],[517219.8046514733,5277417.432387611],[517219.73351259617,5277418.632488418]]]},"properties":{"id_build":870,"id_source":"w145195052","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517275.7351776161,5277233.839340454],[517276.86169381574,5277233.842683017],[517276.69401353825,5277239.732600221],[517275.4172964689,5277239.728812033],[517275.7351776161,5277233.839340454]]]},"properties":{"id_build":871,"id_source":"w145195071","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.3853079628,5277227.687051336],[517261.03381657734,5277227.571904731],[517261.5203373053,5277215.459098316],[517263.1722367564,5277215.575135687],[517262.3853079628,5277227.687051336]]]},"properties":{"id_build":872,"id_source":"w145195075","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.8839238723,5277364.293198188],[516926.8764923033,5277366.849394003],[516925.90052380326,5277366.735416785],[516925.7574330771,5277364.289923276],[516926.8839238723,5277364.293198188]]]},"properties":{"id_build":873,"id_source":"w145195091","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516537.5403127205,5277378.456016348],[516534.5704878453,5277377.002763502],[516535.19747266924,5277375.715321851],[516538.17480796756,5277377.168596342],[516537.5403127205,5277378.456016348]]]},"properties":{"id_build":874,"id_source":"w145195093","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.5193785727,5277720.702297138],[516849.4325306114,5277735.609267633],[516848.00444674515,5277736.049694267],[516843.16638621705,5277721.142942239],[516844.5193785727,5277720.702297138]]]},"properties":{"id_build":875,"id_source":"w145195157","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516935.3185296994,5277407.8845637925],[516931.2625467858,5277408.095047099],[516931.1246306173,5277403.871330008],[516935.1055175863,5277403.660628159],[516935.3185296994,5277407.8845637925]]]},"properties":{"id_build":876,"id_source":"w145195164","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.26573153574,5277277.06290451],[516855.276992279,5277273.173041843],[516858.73193981266,5277273.071904714],[516858.79577727197,5277276.961984829],[516855.26573153574,5277277.06290451]]]},"properties":{"id_build":877,"id_source":"w145195181","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.4776584962,5277449.630842111],[516885.3313932951,5277449.639117862],[516885.3272030411,5277451.083924389],[516883.77266894485,5277451.079416108],[516882.47346895,5277451.0756486375],[516882.4776584962,5277449.630842111]]]},"properties":{"id_build":878,"id_source":"w145195223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.1642120366,5276835.812861056],[516375.0550810935,5276833.422914182],[516376.549560453,5276830.80421904],[516380.67352630926,5276833.260892528],[516379.1642120366,5276835.812861056]]]},"properties":{"id_build":879,"id_source":"w145195271","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.6444860907,5277513.771220715],[517190.5634817337,5277515.771500468],[517189.287153377,5277515.656592047],[517189.4432547655,5277513.656533999],[517190.6444860907,5277513.771220715]]]},"properties":{"id_build":880,"id_source":"w145195311","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.9293477012,5277159.036834298],[517266.1203828683,5277158.45797332],[517266.4719204681,5277153.880052469],[517266.74558797764,5277150.235475779],[517274.4797913591,5277150.70297584],[517273.9293477012,5277159.036834298]]]},"properties":{"id_build":881,"id_source":"w145195340","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.57144056796,5277751.644000612],[516937.3958620989,5277752.202098938],[516936.34066075576,5277753.532708473],[516935.5913336849,5277752.974828752],[516936.0813870697,5277752.309414661],[516936.57144056796,5277751.644000612]]]},"properties":{"id_build":882,"id_source":"w145195355","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516811.2452807978,5277280.936671295],[516811.04991736,5277267.966085541],[516810.86751930264,5277255.706832581],[516828.4417450302,5277255.5353205865],[516828.7446511652,5277280.653804616],[516811.2452807978,5277280.936671295]]]},"properties":{"id_build":883,"id_source":"w145195364","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516879.01957285556,5277463.802266741],[516882.92499640404,5277463.702450543],[516883.0642348989,5277467.48161094],[516879.1588138818,5277467.581427042],[516879.01957285556,5277463.802266741]]]},"properties":{"id_build":884,"id_source":"w145195366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517149.94832343695,5277575.122700571],[517149.6845356586,5277575.444229363],[517144.9357714689,5277581.431799837],[517138.9794976261,5277576.690814342],[517134.1620347114,5277572.853420071],[517141.797047476,5277563.462342093],[517145.70774063695,5277566.652460375],[517143.1751617761,5277569.812490804],[517146.411910791,5277572.344899467],[517149.94832343695,5277575.122700571]]]},"properties":{"id_build":885,"id_source":"w145195387","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516525.8491155407,5276835.3381762365],[516535.5286628186,5276838.588707022],[516534.24176012457,5276842.1415250935],[516524.5622180608,5276838.890996416],[516525.8491155407,5276835.3381762365]]]},"properties":{"id_build":886,"id_source":"w145195389","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.5833187064,5277190.371323687],[517263.7740661838,5277189.903604638],[517264.23535608844,5277183.77005039],[517264.6337973374,5277178.569884949],[517272.3673038454,5277179.259660148],[517271.5833187064,5277190.371323687]]]},"properties":{"id_build":887,"id_source":"w145195390","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.416307038,5277448.937364209],[516796.4089325517,5277451.4935603915],[516795.50775346125,5277451.490960609],[516795.44002926175,5277448.934547783],[516796.416307038,5277448.937364209]]]},"properties":{"id_build":888,"id_source":"w145195399","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.5188961354,5277439.488242384],[516870.1154248294,5277439.592417498],[516870.0435467572,5277438.480810274],[516872.5217948689,5277438.487991727],[516872.5188961354,5277439.488242384]]]},"properties":{"id_build":889,"id_source":"w145195418","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68603405985,5277216.274875673],[517305.6779294405,5277216.257015304],[517305.6832146694,5277214.478792606],[517311.6909906801,5277214.607791896],[517311.68603405985,5277216.274875673]]]},"properties":{"id_build":890,"id_source":"w145195426","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.0019662698,5277160.204846987],[517292.5720054596,5277165.893932389],[517292.1421774659,5277171.538562302],[517284.3329011741,5277171.070815752],[517285.1930047635,5277159.625960421],[517293.0019662698,5277160.204846987]]]},"properties":{"id_build":891,"id_source":"w145195433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517183.71475726995,5277088.196075975],[517186.11837988195,5277088.092030011],[517186.17970545654,5277092.760085387],[517183.7009818755,5277092.863909682],[517183.71475726995,5277088.196075975]]]},"properties":{"id_build":892,"id_source":"w145195464","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.53204385866,5277419.218883036],[517315.9110552044,5277419.373413641],[517315.8632194337,5277420.306846843],[517314.0761022985,5277420.223734032],[517312.48420862923,5277420.152316264],[517312.53204385866,5277419.218883036]]]},"properties":{"id_build":893,"id_source":"w145195484","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516588.9201583838,5277711.743989875],[516588.51487514947,5277695.8498274265],[516592.87102443364,5277695.6399618955],[516593.4264855916,5277711.534552757],[516588.9201583838,5277711.743989875]]]},"properties":{"id_build":894,"id_source":"w145195489","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.7131902626,5277352.888283371],[517017.6413391544,5277351.776674411],[517020.26982342586,5277351.784357677],[517020.19147495995,5277352.895527593],[517017.7131902626,5277352.888283371]]]},"properties":{"id_build":895,"id_source":"w145195501","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516899.45019330614,5277449.568942667],[516902.82961615315,5277449.578752904],[516902.82542155666,5277451.023559429],[516901.00053367356,5277451.018261657],[516899.5210978157,5277451.013967177],[516899.45019330614,5277449.568942667]]]},"properties":{"id_build":896,"id_source":"w145195527","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.218956137,5276787.205389569],[517207.81126374763,5276787.189407384],[517207.8145478885,5276786.07801894],[517213.29734816396,5276786.094223135],[517213.218956137,5276787.205389569]]]},"properties":{"id_build":897,"id_source":"w145195541","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.46660684276,5277741.892273156],[516835.04061067157,5277752.460902346],[516833.3118331872,5277753.011602964],[516829.9631100899,5277742.443626112],[516831.46660684276,5277741.892273156]]]},"properties":{"id_build":898,"id_source":"w145195587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.20437265426,5277211.618687517],[517279.7811715237,5277211.734506737],[517279.53871638083,5277217.513061863],[517277.8861581888,5277217.619297683],[517278.20437265426,5277211.618687517]]]},"properties":{"id_build":899,"id_source":"w145195606","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.4618089982,5277646.782776263],[517294.5033927242,5277640.778370427],[517299.529846807,5277639.937526757],[517304.2708059851,5277639.140294812],[517305.22921247734,5277645.144702261],[517295.4618089982,5277646.782776263]]]},"properties":{"id_build":900,"id_source":"w145195628","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516819.3062856879,5277376.206820714],[516816.6023924247,5277376.310150188],[516816.60528149473,5277375.309899629],[516819.2340759797,5277375.206353209],[516819.3062856879,5277376.206820714]]]},"properties":{"id_build":901,"id_source":"w145195662","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516435.97674881,5277729.092564567],[516436.5825267513,5277727.316036443],[516442.1345113902,5277729.1099529425],[516441.4536372898,5277730.886268415],[516435.97674881,5277729.092564567]]]},"properties":{"id_build":902,"id_source":"w145195672","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.9838082491,5276857.449694463],[516528.93638188334,5276859.019706733],[516527.9518036945,5276861.906545859],[516523.0746534863,5276860.22560866],[516523.9838082491,5276857.449694463]]]},"properties":{"id_build":903,"id_source":"w145195673","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.7956420472,5277514.835844527],[517174.8759852735,5277513.057842513],[517176.3776068881,5277513.173412442],[517176.29726320447,5277514.951414435],[517174.7956420472,5277514.835844527]]]},"properties":{"id_build":904,"id_source":"w145195751","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.5857495879,5277506.194141648],[516955.1313843909,5277515.636798855],[516950.34981337015,5277514.889352162],[516946.42396392033,5277514.277768046],[516947.87831530743,5277504.835108718],[516956.5857495879,5277506.194141648]]]},"properties":{"id_build":905,"id_source":"w145195767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.4489454403,5276953.250029925],[517141.0776097573,5276953.257767289],[517141.2121154341,5276958.592875445],[517138.5080217919,5276958.696055837],[517138.4489454403,5276953.250029925]]]},"properties":{"id_build":906,"id_source":"w145195789","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517083.02790318645,5277437.323606809],[517075.67053687305,5277436.524044345],[517076.1737691952,5277431.37974223],[517076.6771327585,5277426.190984616],[517084.0345120068,5277426.990548309],[517083.02790318645,5277437.323606809]]]},"properties":{"id_build":907,"id_source":"w145195802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.06415363576,5277446.254597263],[516667.3220269016,5277448.677505469],[516665.83504534094,5277443.438560625],[516664.4224596523,5277438.444336884],[516672.16396222095,5277436.243702758],[516675.06415363576,5277446.254597263]]]},"properties":{"id_build":908,"id_source":"w145195814","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.47943152505,5277630.731485588],[516697.8807030333,5277634.257554004],[516695.4254862747,5277626.248438909],[516700.07085052104,5277624.716917791],[516706.09932384145,5277622.722581531],[516708.47943152505,5277630.731485588]]]},"properties":{"id_build":909,"id_source":"w145195827","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.4032744343,5277654.793121017],[517041.07279779116,5277659.591657805],[517034.1360380073,5277669.129392728],[517027.31665398955,5277664.219285514],[517030.890097126,5277659.472948352],[517034.4032744343,5277654.793121017]]]},"properties":{"id_build":910,"id_source":"w145195881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.84996223677,5277454.881456011],[517157.93095602404,5277452.88117602],[517159.8835105472,5277452.886930605],[517159.8025160894,5277454.887210569],[517157.84996223677,5277454.881456011]]]},"properties":{"id_build":911,"id_source":"w145195888","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.43694908696,5277050.248986054],[517314.58334849006,5277050.129360099],[517314.82518301846,5277044.573085632],[517317.43694908696,5277050.248986054]]]},"properties":{"id_build":912,"id_source":"w145195902","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517082.24409024045,5277653.266201008],[517082.3296213724,5277649.709973456],[517097.2733411832,5277649.8649810245],[517097.262896585,5277653.421428921],[517082.24409024045,5277653.266201008]]]},"properties":{"id_build":913,"id_source":"w145195943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517041.5150981888,5277405.860495103],[517050.22396145645,5277406.775111744],[517049.3685832574,5277416.775198584],[517046.59838440677,5277416.444781361],[517040.66006012197,5277415.749444217],[517041.5150981888,5277405.860495103]]]},"properties":{"id_build":914,"id_source":"w145195993","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517282.8270093339,5277516.444762345],[517286.1187987703,5277513.0758806225],[517286.9275085393,5277513.867375482],[517283.62820933363,5277517.236234456],[517282.8270093339,5277516.444762345]]]},"properties":{"id_build":915,"id_source":"w145196004","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516352.1291580542,5277583.374337768],[516354.38673741,5277581.713581157],[516355.50912693003,5277583.161552508],[516353.32633214723,5277584.933658622],[516352.1291580542,5277583.374337768]]]},"properties":{"id_build":916,"id_source":"w145196037","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.18987155164,5277351.986139201],[517281.33530989557,5277348.530119327],[517282.22138621775,5277348.566091369],[517282.14081041917,5277350.410774891],[517282.07594734855,5277352.022111221],[517281.18987155164,5277351.986139201]]]},"properties":{"id_build":917,"id_source":"w145196062","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.1930047635,5277159.625960421],[517286.128873623,5277147.959050562],[517293.9375206054,5277148.649077243],[517293.46193570906,5277154.526964783],[517293.0019662698,5277160.204846987],[517285.1930047635,5277159.625960421]]]},"properties":{"id_build":918,"id_source":"w145196082","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.5395180197,5277539.821060907],[517275.82066322037,5277539.118746039],[517278.07289532485,5277536.824832636],[517278.1362279134,5277538.258726001],[517276.5395180197,5277539.821060907]]]},"properties":{"id_build":919,"id_source":"w145196112","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.14021793316,5277257.912277998],[517109.997201513,5277255.466780202],[517112.4758544168,5277255.362924677],[517112.61886980006,5277257.808422535],[517110.14021793316,5277257.912277998]]]},"properties":{"id_build":920,"id_source":"w145196130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517292.76348599605,5277619.767747338],[517291.2883015194,5277610.761028219],[517301.5056809977,5277609.346564172],[517302.9060842547,5277618.241923713],[517298.48090822366,5277618.906727162],[517292.76348599605,5277619.767747338]]]},"properties":{"id_build":921,"id_source":"w145196168","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516300.4643084678,5276804.695186008],[516298.5947314887,5276801.800320108],[516301.6800143119,5276799.697301421],[516303.5499016044,5276802.481029451],[516300.4643084678,5276804.695186008]]]},"properties":{"id_build":922,"id_source":"w145196173","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517314.4412418741,5277097.919084362],[517310.987502738,5277097.57539574],[517311.4553018264,5277091.79751278],[517314.8342719452,5277092.029839446],[517314.4412418741,5277097.919084362]]]},"properties":{"id_build":923,"id_source":"w145196175","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.20183937385,5277457.513742424],[516956.20475250104,5277456.513491746],[516958.6829930254,5277456.520709893],[516958.7551776576,5277457.521179318],[516956.20183937385,5277457.513742424]]]},"properties":{"id_build":924,"id_source":"w145196238","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516873.4289341219,5277203.207506251],[516873.328974356,5277185.869399601],[516933.7120226891,5277185.600138216],[516933.887227367,5277202.827325823],[516873.4289341219,5277203.207506251]]]},"properties":{"id_build":925,"id_source":"w145196251","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.81164672377,5277736.560611246],[516716.3191740858,5277725.000644323],[516726.1578605842,5277724.5843440825],[516726.57521914743,5277736.144096114],[516716.81164672377,5277736.560611246]]]},"properties":{"id_build":926,"id_source":"w145196275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.15261489275,5276914.37464255],[517186.2555604248,5276914.380848817],[517186.3910099695,5276919.382541184],[517184.2126331328,5276919.487252095],[517184.15261489275,5276914.37464255]]]},"properties":{"id_build":927,"id_source":"w145196280","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.8224268599,5277457.503534341],[516990.82534593536,5277456.503283667],[516993.07861628674,5277456.39872001],[516993.1504706268,5277457.5103288395],[516990.8224268599,5277457.503534341]]]},"properties":{"id_build":928,"id_source":"w145196291","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.8985267964,5277362.460202318],[516522.36851956794,5277363.153440728],[516519.34694846265,5277369.346470374],[516517.90702816204,5277368.642204046],[516520.8985267964,5277362.460202318]]]},"properties":{"id_build":929,"id_source":"w145196299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516298.1075784323,5276734.337146298],[516308.10092099383,5276732.920307196],[516309.10981778137,5276740.091644324],[516310.08929163875,5276747.040619878],[516299.9457581596,5276748.457035082],[516298.1075784323,5276734.337146298]]]},"properties":{"id_build":930,"id_source":"w145196311","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.12868258834,5276872.118682175],[516540.4098994632,5276870.566364602],[516541.75864572066,5276871.681593436],[516540.477428728,5276873.233910716],[516539.12868258834,5276872.118682175]]]},"properties":{"id_build":931,"id_source":"w145196315","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.191248049,5277076.775009245],[517313.2252977372,5277077.465731105],[517312.52293436485,5277086.354832968],[517308.4608870927,5277085.998223278],[517304.5639998645,5277085.664335236],[517305.191248049,5277076.775009245]]]},"properties":{"id_build":932,"id_source":"w145196322","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.98888656835,5277379.8530878],[516926.98177803215,5277382.298144723],[516925.7801915677,5277382.294651464],[516925.7872995978,5277379.84959454],[516926.98888656835,5277379.8530878]]]},"properties":{"id_build":933,"id_source":"w145196347","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.23588252475,5277562.306815518],[517225.4220958865,5277562.108750697],[517225.6330163183,5277566.966190716],[517225.84406789945,5277571.779175189],[517217.58244271565,5277572.088156272],[517217.23588252475,5277562.306815518]]]},"properties":{"id_build":934,"id_source":"w145196351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.942728484,5276804.423666107],[517249.3700834298,5276804.316754137],[517249.2083479722,5276808.206168846],[517247.85610054893,5276808.3133033095],[517247.942728484,5276804.423666107]]]},"properties":{"id_build":935,"id_source":"w145196358","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.2093945172,5277728.550774533],[516471.65489084227,5277726.303765908],[516471.95967214345,5277724.748669588],[516480.66468201124,5277726.884964817],[516480.2093945172,5277728.550774533]]]},"properties":{"id_build":936,"id_source":"w145196373","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.1959692812,5276963.967931166],[517217.87849290465,5276964.042636651],[517217.81456153287,5276960.263692824],[517230.1323747584,5276960.077848313],[517230.1959692812,5276963.967931166]]]},"properties":{"id_build":937,"id_source":"w145196390","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516860.16967771424,5277539.044934224],[516859.67975470854,5277542.255458889],[516853.82443393266,5277541.460526054],[516854.2846688333,5277538.127661071],[516860.16967771424,5277539.044934224]]]},"properties":{"id_build":938,"id_source":"w145196395","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516473.9519332466,5277763.764415017],[516468.4741424296,5277762.304097477],[516468.8549585564,5277760.415796282],[516474.6331280354,5277761.876964218],[516473.9519332466,5277763.764415017]]]},"properties":{"id_build":939,"id_source":"w145196410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.8900473161,5277262.826548969],[517270.09132895863,5277262.941251907],[517269.93519385776,5277264.94130708],[517268.7339126267,5277264.826604177],[517268.8900473161,5277262.826548969]]]},"properties":{"id_build":940,"id_source":"w145196435","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.0429526103,5277464.488310913],[517214.14537088695,5277464.6056667045],[517214.0663295361,5277465.939112218],[517211.96358317725,5277465.932895417],[517212.0429526103,5277464.488310913]]]},"properties":{"id_build":941,"id_source":"w145196451","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517261.90142218943,5277238.91074653],[517260.54894499923,5277239.129016797],[517260.7920395152,5277233.128182887],[517262.0690875191,5277233.020828944],[517261.90142218943,5277238.91074653]]]},"properties":{"id_build":942,"id_source":"w145196460","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516905.7718195098,5277315.663729674],[516905.5443490513,5277290.54545752],[516921.7666678239,5277290.370302577],[516921.9175309021,5277303.062914785],[516922.06916833017,5277315.488793799],[516905.7718195098,5277315.663729674]]]},"properties":{"id_build":943,"id_source":"w145196468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517054.95180558256,5277664.300178453],[517057.79924817296,5277666.420179994],[517057.12045807234,5277667.4184507355],[517054.12249914405,5277665.409148552],[517054.95180558256,5277664.300178453]]]},"properties":{"id_build":944,"id_source":"w145196480","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516620.6914244003,5277604.473458569],[516612.4983187771,5277607.117431384],[516608.92508855456,5277596.1043864405],[516617.4182764402,5277593.572404996],[516619.13666480454,5277599.301014815],[516620.6914244003,5277604.473458569]]]},"properties":{"id_build":945,"id_source":"w145196498","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.65698379517,5277353.043218608],[516994.7356517901,5277351.820909417],[516996.7633396212,5277351.826828425],[516996.83487026795,5277353.049576061],[516994.65698379517,5277353.043218608]]]},"properties":{"id_build":946,"id_source":"w145196521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.85573722294,5277604.671654621],[517196.72491842194,5277608.691580712],[517194.6379432247,5277616.076223713],[517190.841195859,5277615.009181658],[517187.0894720082,5277613.953389004],[517188.95639501075,5277607.33495936],[517191.77768419764,5277608.132383637],[517193.1285436661,5277603.346240729],[517197.85573722294,5277604.671654621]]]},"properties":{"id_build":947,"id_source":"w145196543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.5634817337,5277515.771500468],[517190.6444860907,5277513.771220715],[517192.371399626,5277513.887459998],[517192.2903946762,5277515.887739731],[517190.5634817337,5277515.771500468]]]},"properties":{"id_build":948,"id_source":"w145196587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.80077339703,5277236.166286236],[517309.37385342555,5277236.162044042],[517309.69143868826,5277230.383713186],[517310.89305669884,5277230.3872856],[517310.80077339703,5277236.166286236]]]},"properties":{"id_build":949,"id_source":"w145196610","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516969.95688675315,5277066.897161568],[516969.83680302626,5277056.560806584],[517000.17888366757,5277056.538173877],[517000.2995625029,5277066.652251825],[516969.95688675315,5277066.897161568]]]},"properties":{"id_build":950,"id_source":"w145196620","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516848.6369569862,5277439.64136112],[516845.8583157437,5277439.633320658],[516845.8608883243,5277438.744208961],[516848.5644315685,5277438.752032095],[516848.6369569862,5277439.64136112]]]},"properties":{"id_build":951,"id_source":"w145196638","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.29792917485,5277633.568970658],[516680.6013226529,5277636.7642370835],[516677.9955729241,5277628.865838024],[516683.16711190745,5277627.157986983],[516687.6921911137,5277625.670567273],[516690.29792917485,5277633.568970658]]]},"properties":{"id_build":952,"id_source":"w145196640","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.37579862226,5277694.830044276],[516968.35171129694,5277694.944028638],[516967.9717006663,5277696.498880333],[516967.1459784526,5277696.38533376],[516967.37579862226,5277694.830044276]]]},"properties":{"id_build":953,"id_source":"w145196646","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516916.7231218867,5277449.507965519],[516920.02744650736,5277449.517567532],[516920.02357063355,5277450.85123509],[516918.3939381832,5277450.846499317],[516916.71924677,5277450.84163308],[516916.7231218867,5277449.507965519]]]},"properties":{"id_build":954,"id_source":"w145196650","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517216.4459444905,5277702.451974304],[517212.93783734017,5277695.217502345],[517219.0141689704,5277692.3124901485],[517222.1876892291,5277690.799259853],[517225.69545877486,5277698.144876363],[517216.4459444905,5277702.451974304]]]},"properties":{"id_build":955,"id_source":"w145196667","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.92357068206,5277271.546105418],[517211.50206911884,5277266.39092412],[517223.5518124393,5277267.749121285],[517222.9733034519,5277272.904301424],[517210.92357068206,5277271.546105418]]]},"properties":{"id_build":956,"id_source":"w145196682","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.84083455725,5277480.980381867],[517004.1214139152,5277480.9928823635],[517004.18580001575,5277484.660687647],[516999.9048988374,5277484.759326065],[516999.84083455725,5277480.980381867]]]},"properties":{"id_build":957,"id_source":"w145196695","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.3374018695,5277633.8461725125],[516978.48963567434,5277633.146434862],[516978.61176631827,5277632.468837408],[516979.43740014924,5277632.615727272],[516979.20058346575,5277633.993171848],[516978.3374018695,5277633.8461725125]]]},"properties":{"id_build":958,"id_source":"w145196699","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.7161777157,5277573.8607542515],[517245.29921731644,5277567.5801115995],[517244.92550345894,5277561.910866895],[517252.70636021625,5277561.656069768],[517252.9266130099,5277573.493127849],[517245.7161777157,5277573.8607542515]]]},"properties":{"id_build":959,"id_source":"w145196705","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.3145784396,5277477.230775467],[516900.0438122746,5277477.911340852],[516898.9717955733,5277485.021183072],[516894.2428899008,5277484.22947957],[516895.3145784396,5277477.230775467]]]},"properties":{"id_build":960,"id_source":"w145196710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.90740549844,5277627.636759148],[517251.37884961173,5277626.9690910885],[517258.1263917516,5277625.666524069],[517259.16257993435,5277630.782034374],[517249.39351929695,5277632.975880612],[517247.90740549844,5277627.636759148]]]},"properties":{"id_build":961,"id_source":"w145196728","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.6130010012,5277457.482499225],[516983.615918836,5277456.48224855],[516986.1692576008,5277456.489697467],[516986.1663393261,5277457.48994814],[516983.6130010012,5277457.482499225]]]},"properties":{"id_build":962,"id_source":"w145196731","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.1479783252,5277091.334204552],[517304.75528831035,5277097.112311196],[517301.601299077,5277096.991798746],[517302.0694191344,5277091.102776167],[517305.1479783252,5277091.334204552]]]},"properties":{"id_build":963,"id_source":"w145196753","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.40714176255,5277174.0977338115],[516718.1260181611,5277174.1965799],[516718.06208504067,5277170.306502182],[516722.3432114985,5277170.207656042],[516722.40714176255,5277174.0977338115]]]},"properties":{"id_build":964,"id_source":"w145196770","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516852.87692793837,5277375.859337179],[516850.3986531884,5277375.852164152],[516850.40186971694,5277374.740774641],[516852.95524418884,5277374.748165048],[516852.87692793837,5277375.859337179]]]},"properties":{"id_build":965,"id_source":"w145196773","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516613.56470921607,5277549.216589817],[516615.66932811064,5277548.555756661],[516616.3322038094,5277550.480368619],[516616.8536002688,5277551.982245266],[516614.68133178604,5277552.665112908],[516613.56470921607,5277549.216589817]]]},"properties":{"id_build":966,"id_source":"w145196783","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.6019330817,5277561.223592925],[516386.2239049032,5277556.463212975],[516387.2715074102,5277557.79984005],[516380.6495362397,5277562.560218813],[516379.6019330817,5277561.223592925]]]},"properties":{"id_build":967,"id_source":"w145196786","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517064.16151769436,5277161.085653414],[517064.03704460413,5277152.3052392835],[517073.27558362205,5277151.998901822],[517073.32461489085,5277160.890234871],[517064.16151769436,5277161.085653414]]]},"properties":{"id_build":968,"id_source":"w145196794","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517082.73230345326,5277410.093460582],[517090.4687848513,5277409.671605578],[517090.965440319,5277419.564515754],[517086.2786956891,5277419.750811504],[517083.22929812217,5277419.875231117],[517082.73230345326,5277410.093460582]]]},"properties":{"id_build":969,"id_source":"w145196795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516842.3936127678,5277458.717130597],[516846.37381555134,5277458.728646089],[516846.43701503833,5277462.841005126],[516842.53191317857,5277462.829706834],[516842.3936127678,5277458.717130597]]]},"properties":{"id_build":970,"id_source":"w145196812","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.3127574956,5277411.393579065],[516995.30562019657,5277413.838636095],[516994.3290120485,5277413.946925289],[516994.2613745628,5277411.390510097],[516995.3127574956,5277411.393579065]]]},"properties":{"id_build":971,"id_source":"w145196817","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.9646033933,5277457.5421836525],[516965.89242000086,5277456.5417141365],[516968.82124970964,5277456.55024966],[516968.893432598,5277457.550719215],[516965.9646033933,5277457.5421836525]]]},"properties":{"id_build":972,"id_source":"w145196842","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516839.6017333061,5276746.547233754],[516841.93906115694,5276743.442079556],[516844.56203326856,5276745.4501819685],[516842.3001335723,5276748.444413508],[516839.6017333061,5276746.547233754]]]},"properties":{"id_build":973,"id_source":"w145196843","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.099323886,5276914.29794121],[516726.26120117377,5276930.490334541],[516721.839263077,5276927.254580605],[516733.75216579594,5276911.173533078],[516738.099323886,5276914.29794121]]]},"properties":{"id_build":974,"id_source":"w145196858","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.4895450287,5277453.738399509],[516994.58804179763,5277453.846907871],[516994.52137826715,5277450.957075624],[516995.4976557851,5277450.959925434],[516995.4895450287,5277453.738399509]]]},"properties":{"id_build":975,"id_source":"w145196876","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.41839374206,5277375.840646045],[516843.6394005285,5277375.943745667],[516843.6426157656,5277374.832356158],[516846.42128793296,5277374.840395489],[516846.41839374206,5277375.840646045]]]},"properties":{"id_build":976,"id_source":"w145196892","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.85045208485,5277647.496662686],[517013.14187223604,5277652.785999676],[517009.3267048827,5277658.020657148],[517005.3154843789,5277663.532594315],[516998.01656115055,5277658.243245095],[517005.85045208485,5277647.496662686]]]},"properties":{"id_build":977,"id_source":"w145196925","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516412.0647759747,5277633.778216014],[516413.2685036241,5277633.003630375],[516416.51500466093,5277637.502835462],[516419.77645712753,5277642.02431256],[516418.49763468385,5277642.7986850785],[516412.0647759747,5277633.778216014]]]},"properties":{"id_build":978,"id_source":"w145196946","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.09571722883,5277364.601919487],[516880.0889506391,5277366.935837414],[516879.1126590796,5277366.933006991],[516879.11974747817,5277364.4879501145],[516880.09571722883,5277364.601919487]]]},"properties":{"id_build":979,"id_source":"w145196962","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.52293436485,5277086.354832968],[517313.2252977372,5277077.465731105],[517316.2923439498,5277086.621663307],[517312.52293436485,5277086.354832968]]]},"properties":{"id_build":980,"id_source":"w145197010","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517156.9042417747,5277469.993699263],[517158.85711810924,5277469.8883145545],[517158.7767792895,5277471.666316657],[517156.8245585772,5277471.549423459],[517156.9042417747,5277469.993699263]]]},"properties":{"id_build":981,"id_source":"w145197017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.6791097383,5277293.211405957],[516996.63773254835,5277289.376959242],[517000.1675790268,5277289.342808645],[517000.20895389235,5277293.177255387],[516996.6791097383,5277293.211405957]]]},"properties":{"id_build":982,"id_source":"w145197031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.56476083334,5277141.492233982],[517308.83120904403,5277140.802400232],[517309.26889586117,5277135.046655199],[517309.69070398575,5277129.579826748],[517317.49937301344,5277130.2698849505],[517316.56476083334,5277141.492233982]]]},"properties":{"id_build":983,"id_source":"w145197039","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517183.71475726995,5277088.196075975],[517183.7009818755,5277092.863909682],[517181.52299790696,5277092.85748257],[517181.4613406588,5277088.300566147],[517183.71475726995,5277088.196075975]]]},"properties":{"id_build":984,"id_source":"w145197047","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517203.64821073227,5276798.0688090185],[517207.7036440277,5276798.19193115],[517207.77185401524,5276800.526068871],[517203.64065900823,5276800.625002493],[517203.64821073227,5276798.0688090185]]]},"properties":{"id_build":985,"id_source":"w145197049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516538.1485204895,5276873.4495755145],[516539.12868258834,5276872.118682175],[516540.477428728,5276873.233910716],[516539.4972665067,5276874.56480383],[516538.1485204895,5276873.4495755145]]]},"properties":{"id_build":986,"id_source":"w145197062","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.0936090755,5277408.285688449],[517290.6360383335,5277418.220239584],[517288.6086373925,5277418.12530701],[517289.0586947962,5277408.190733423],[517291.0936090755,5277408.285688449]]]},"properties":{"id_build":987,"id_source":"w145197063","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516881.768955281,5277616.338656036],[516886.86034420226,5277616.397878026],[516893.8591103092,5277616.484867036],[516893.75885873125,5277625.153490605],[516881.59330341016,5277625.1182010025],[516881.768955281,5277616.338656036]]]},"properties":{"id_build":988,"id_source":"w145197080","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.7003671664,5277669.996885787],[516995.2599511239,5277661.013695755],[517002.15413667314,5277666.03512363],[516999.3645694025,5277669.805735658],[516995.594872084,5277674.907166976],[516988.7003671664,5277669.996885787]]]},"properties":{"id_build":989,"id_source":"w145197093","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.2095358689,5277416.483920857],[516796.20280279365,5277418.817838991],[516795.0760020094,5277418.9257283],[516795.0079565236,5277416.48045457],[516796.2095358689,5277416.483920857]]]},"properties":{"id_build":990,"id_source":"w145197095","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516463.49213043,5277293.390894466],[516468.2577125375,5277281.290130402],[516474.03447190486,5277283.4181291675],[516481.8367352992,5277286.329845872],[516483.8782899845,5277281.445472913],[516481.70257942437,5277280.661334836],[516479.9105494328,5277276.988648018],[516478.41986297426,5277272.983395152],[516483.4578926005,5277270.774859265],[516484.35280644434,5277273.000189408],[516487.9617242665,5277271.565590292],[516487.06681157503,5277269.3402595995],[516492.255048914,5277267.13215664],[516495.2373484116,5277274.809253027],[516494.2541149771,5277277.251543783],[516499.35559466574,5277279.155375068],[516501.8502896663,5277273.383173854],[516513.92855351017,5277277.974151579],[516513.09519844904,5277280.528004139],[516510.9002664704,5277286.523330353],[516516.60158964456,5277288.76229739],[516521.4026507189,5277290.665295912],[516517.2424960799,5277301.100637133],[516509.29038467916,5277298.077307991],[516507.1740292806,5277302.850320346],[516513.24989288475,5277305.423765622],[516509.08976322104,5277315.859112852],[516506.98412744724,5277316.853401293],[516507.8042402439,5277318.967383377],[516506.21516818204,5277323.186192006],[516501.7138988395,5277321.506335139],[516500.66848434496,5277319.391715399],[516498.63826616976,5277320.275080743],[516497.65598357224,5277322.383954252],[516469.8250393943,5277311.302317794],[516472.0943911454,5277305.529466326],[516460.46706743975,5277300.828710068],[516463.49213043,5277293.390894466]]]},"properties":{"id_build":991,"id_source":"w145197116","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sustenance","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516648.26892002265,5277257.129017302],[516646.3821863695,5277260.346678209],[516643.37498073984,5277261.449479777],[516641.9398081406,5277264.3350134],[516638.9329230228,5277265.326678331],[516636.4482502863,5277267.54237516],[516630.98272965424,5277261.636349524],[516631.509704415,5277261.193295416],[516627.4666442689,5277256.847294291],[516624.53009860497,5277259.506265111],[516626.2520201979,5277261.40055915],[516620.60455638607,5277266.608007727],[516607.2033861764,5277251.899309892],[516625.3487000289,5277235.835817229],[516627.7449505609,5277238.287736278],[516634.8228611386,5277231.861843103],[516626.13906261703,5277222.056734685],[516629.00052652333,5277219.397550303],[516628.5543626784,5277217.840318432],[516631.7108380911,5277217.071355055],[516631.3391411721,5277215.736615351],[516633.6688687637,5277215.187571247],[516634.42210436583,5277214.411744302],[516639.73841662216,5277219.983926601],[516641.0164082427,5277219.543019689],[516641.6089592517,5277222.434348934],[516643.2624565465,5277221.994515777],[516643.78054039396,5277224.663352734],[516645.20873367,5277224.222876099],[516645.8015998375,5277227.003066875],[516649.9948694533,5277231.349510027],[516640.8087133034,5277239.658736266],[516647.5477826056,5277246.679810437],[516649.2044514779,5277245.128589664],[516650.70233801013,5277246.577690936],[516652.12989074725,5277246.359493852],[516652.87390660914,5277248.806698243],[516655.04515562986,5277251.146845304],[516652.786408882,5277253.140901755],[516650.8996714504,5277256.358561186],[516648.26892002265,5277257.129017302]]]},"properties":{"id_build":992,"id_source":"w145197142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7301105095,5276705.41738373],[516761.6819556981,5276705.756420674],[516764.4248722142,5276692.205266224],[516767.6535583496,5276692.547981002],[516768.1096468387,5276690.659918435],[516771.12645236036,5276686.334155411],[516773.15885327547,5276684.784052354],[516771.5883038529,5276682.445594177],[516783.2512109431,5276675.143971165],[516782.5036513788,5276673.919279489],[516783.4110365673,5276671.810239225],[516794.68273239717,5276669.953359428],[516796.1800909575,5276671.624774202],[516795.6485630893,5276673.62375675],[516809.60972263414,5276676.775952118],[516809.2300110336,5276678.219672908],[516812.98317654367,5276679.008485713],[516812.5257891704,5276681.34110009],[516814.8518967809,5276682.125794353],[516816.3242107046,5276684.664032178],[516828.00542076945,5276704.836299897],[516835.1528793628,5276700.633647281],[516845.3180504434,5276717.778566534],[516844.26461351285,5276718.442357971],[516839.6746870405,5276721.318717339],[516835.46126721194,5276723.862749478],[516829.0331640895,5276713.063612292],[516826.1748937373,5276714.5001698695],[516827.1458352625,5276716.392351358],[516818.89242495934,5276721.24754413],[516819.2428310098,5276722.148788253],[516818.7119416455,5276723.925491185],[516822.91508006613,5276724.9378897315],[516822.304587511,5276728.270319103],[516818.6262416504,5276727.592855907],[516817.9416071687,5276730.591652312],[516813.36325502413,5276729.467034236],[516812.678944335,5276732.354692424],[516806.82504729,5276730.781837957],[516807.8126725819,5276726.894796662],[516809.1800078348,5276721.564034645],[516810.5309834673,5276721.901353648],[516811.06411635876,5276719.34667812],[516809.2711555506,5276716.007309618],[516817.8482027456,5276710.91964439],[516806.11497165915,5276690.547195279],[516806.7986423297,5276687.8818141725],[516792.7623998248,5276684.7294088425],[516793.2948871975,5276682.39700951],[516791.26792777114,5276682.0577454325],[516789.9901273944,5276682.387480471],[516788.86158228724,5276683.051065345],[516789.75839436194,5276684.609607442],[516777.7947454889,5276692.021490768],[516777.12165467645,5276691.0192938],[516776.6710062839,5276691.017995526],[516775.4651152422,5276692.459338449],[516774.93583733955,5276693.680351101],[516775.085092963,5276694.014200308],[516776.0608569836,5276694.23929068],[516773.09131029586,5276708.234346101],[516770.61403170926,5276707.782652381],[516770.3059189568,5276710.449119237],[516771.9534895624,5276712.12096049],[516773.4588465955,5276711.013898648],[516784.1563399236,5276725.937448634],[516778.96270662773,5276729.812373586],[516780.3836656001,5276731.928123433],[516776.01846368646,5276735.0274598915],[516763.52542032476,5276717.65368098],[516761.64388857683,5276718.981942136],[516759.7693945277,5276717.865149487],[516757.9224042862,5276707.190417573],[516759.7301105095,5276705.41738373]]]},"properties":{"id_build":993,"id_source":"w145197166","height_wall":15.0,"height_roof":15.0,"nb_lev":5,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516404.5164179041,5277620.864715114],[516392.3258213585,5277629.721567807],[516389.1092105633,5277625.266916482],[516390.76445167646,5277624.160177658],[516387.4733661888,5277619.483037862],[516385.81781157525,5277620.700916616],[516379.60860281583,5277612.23681298],[516375.3944641633,5277615.33687457],[516372.85057251866,5277611.995523439],[516375.18324299017,5277610.3349860255],[516374.06117622077,5277608.7758717965],[516376.16824698873,5277607.225840149],[516369.5103066285,5277598.093646151],[516371.09045530204,5277596.986690622],[516367.72392964276,5277592.420490083],[516366.14378038095,5277593.527446521],[516360.00929803844,5277585.1747143855],[516355.7200539448,5277588.274579078],[516353.32633214723,5277584.933658622],[516355.50912693003,5277583.161552508],[516354.38673741,5277581.713581157],[516356.4938126384,5277580.163542442],[516352.9776968112,5277575.374650655],[516362.68484295486,5277568.4001134],[516366.20126751665,5277573.077872015],[516367.2544956785,5277572.413993694],[516373.7629012694,5277581.323484268],[516374.9669471687,5277580.437751765],[516378.18390644545,5277584.78125589],[516375.7761284289,5277586.441580829],[516379.1423386137,5277591.118924975],[516381.5504283977,5277589.347462431],[516384.69196861197,5277593.801897916],[516382.3592888234,5277595.4624315025],[516385.8753683114,5277600.2513412675],[516386.9292195001,5277599.365188496],[516393.5123479044,5277608.386052038],[516394.79148749856,5277607.500535068],[516397.9333207515,5277611.843838879],[516395.6003313495,5277613.615506194],[516398.89172674395,5277618.181511547],[516401.2998114533,5277616.410057106],[516404.5164179041,5277620.864715114]]]},"properties":{"id_build":994,"id_source":"w145197196","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.1071457761,5276769.733090808],[516739.2301823274,5276769.108187221],[516726.2722635922,5276759.290654948],[516742.0360632537,5276738.852896258],[516749.17855538684,5276744.1748016],[516749.6913314309,5276743.4649819955],[516750.3096415697,5276742.62209828],[516744.7638377596,5276738.382838178],[516744.20753024495,5276735.947277856],[516746.7104313201,5276732.709194105],[516750.3065826813,5276728.01832509],[516754.5779305658,5276731.431489265],[516761.4435464667,5276736.3969657635],[516762.7855070063,5276737.256604633],[516760.50907271187,5276740.095230195],[516761.69308301876,5276741.03221205],[516763.79125975625,5276742.716462097],[516764.74103647866,5276741.530000843],[516767.2610202582,5276745.404919816],[516770.59520028514,5276748.226356887],[516779.77517092664,5276742.39573571],[516793.52929371066,5276765.196807994],[516790.8882914352,5276766.834060976],[516790.3652015098,5276765.910092652],[516787.3479281683,5276767.801883818],[516784.59417213954,5276769.472156537],[516770.8862185781,5276759.318943511],[516770.3433344397,5276760.050902521],[516769.00182833977,5276759.035667484],[516757.18252987496,5276750.277173068],[516756.5080032574,5276749.775103175],[516747.11415508634,5276762.084594029],[516746.2896703551,5276761.49318224],[516740.1071457761,5276769.733090808]]]},"properties":{"id_build":995,"id_source":"w145197234","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.952596158,5276728.393859355],[516932.6000132553,5276728.612205878],[516931.56531010167,5276722.829929036],[516927.8834194285,5276723.374924007],[516926.184370221,5276713.589685222],[516929.7163744365,5276712.933113634],[516929.2801526254,5276710.553454332],[516928.7551579681,5276707.706749968],[516929.88242199935,5276707.487747482],[516929.2177593815,5276703.59592319],[516921.55255449604,5276705.018461959],[516920.4427280361,5276699.235969102],[516916.98582455836,5276699.892764501],[516915.2867498799,5276690.107529321],[516917.46585283754,5276689.780439993],[516916.92644224904,5276686.722529388],[516915.9140868067,5276680.995890634],[516915.5382229847,5276681.105938616],[516915.4653745536,5276680.327748648],[516922.83017745096,5276678.904328797],[516922.16421489965,5276675.457060817],[516930.50543339254,5276674.036488025],[516931.1707449344,5276677.706034619],[516932.59844783455,5276677.487906138],[516933.48326521803,5276683.158607106],[516936.9405037601,5276682.390682658],[516938.56540619,5276691.842289163],[516935.1078498296,5276692.721351475],[516936.06744708994,5276698.503410238],[516934.7899651426,5276698.72197469],[516935.530055753,5276702.502879187],[516937.78458643256,5276702.0648770565],[516938.301937118,5276704.95601591],[516943.7877234522,5276703.971716674],[516944.3795320918,5276707.085352278],[516948.06175809825,5276706.429228894],[516949.61152771395,5276715.880620312],[516947.8079713718,5276716.208790512],[516948.91809078096,5276721.88014998],[516948.6173366287,5276721.9904144285],[516949.2832779883,5276725.437685735],[516949.58370849624,5276725.438560159],[516949.6575221999,5276725.883334114],[516947.55321503984,5276726.321768803],[516947.9970682928,5276728.656995875],[516942.58576532593,5276729.863787326],[516942.58414859365,5276730.41948151],[516934.3932227944,5276731.840473764],[516934.17016246414,5276731.061846671],[516934.5457002343,5276731.0629387265],[516933.952596158,5276728.393859355]]]},"properties":{"id_build":996,"id_source":"w145197250","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516705.5795588951,5277594.491553363],[516717.9819558492,5277590.526118292],[516720.7385001287,5277598.20268824],[516710.80914689606,5277601.352780142],[516707.8852207535,5277602.277963323],[516706.6207028572,5277598.051017989],[516705.5795588951,5277594.491553363]]]},"properties":{"id_build":997,"id_source":"w145197294","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.23641539493,5277253.03281632],[517188.920263162,5277258.366597944],[517181.9378602126,5277257.679149429],[517175.2020675897,5277249.768343674],[517181.67714066914,5277244.230452918],[517189.23641539493,5277253.03281632]]]},"properties":{"id_build":998,"id_source":"w145197297","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.04941684846,5276721.261790785],[517237.6867085034,5276716.926264696],[517243.1255623684,5276716.586719156],[517247.90333697974,5276716.289676592],[517248.47951024945,5276724.626868696],[517238.4127826103,5276725.375039259],[517238.04941684846,5276721.261790785]]]},"properties":{"id_build":999,"id_source":"w145197384","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4892138693,5276965.732311008],[517300.1147778631,5276970.421300479],[517299.86526424054,5276973.510247198],[517288.5274637775,5276972.476315251],[517289.2268328933,5276964.587462017],[517293.13127948245,5276964.932475722],[517300.4892138693,5276965.732311008]]]},"properties":{"id_build":1000,"id_source":"w145197402","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517152.1290000574,5277586.898845336],[517156.87776726385,5277580.911280667],[517157.55592941865,5277580.135299593],[517166.02185662545,5277586.93979262],[517160.89530939906,5277593.704215986],[517156.6170303424,5277590.390750008],[517152.1290000574,5277586.898845336]]]},"properties":{"id_build":1001,"id_source":"w145197430","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.799526758,5277673.598046585],[517236.5150039781,5277670.836466519],[517238.0188873112,5277670.174079485],[517243.01933968544,5277680.636045571],[517239.3943480605,5277682.448005543],[517235.94985057885,5277684.171590167],[517230.799526758,5277673.598046585]]]},"properties":{"id_build":1002,"id_source":"w145197465","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517195.9297337866,5277758.405886916],[517183.59622382955,5277764.482167706],[517189.1820750364,5277754.718339794],[517195.02991513617,5277757.95866912],[517195.9297337866,5277758.405886916]]]},"properties":{"id_build":1003,"id_source":"w145197471","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.6207028572,5277598.051017989],[516700.4569985866,5277600.056079828],[516695.12012293184,5277601.796783432],[516692.81316916394,5277594.4549345365],[516704.46331718675,5277590.931873472],[516705.5795588951,5277594.491553363],[516706.6207028572,5277598.051017989]]]},"properties":{"id_build":1004,"id_source":"w145197477","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.90740549844,5277627.636759148],[517249.39351929695,5277632.975880612],[517247.13899510883,5277633.524900913],[517243.3950619032,5277629.846191687],[517243.32358690724,5277628.623440358],[517247.90740549844,5277627.636759148]]]},"properties":{"id_build":1005,"id_source":"w145197515","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.20242831856,5277030.4267440755],[517303.8103961898,5277035.982572462],[517303.26188265334,5277043.649593439],[517295.4530957932,5277042.959554712],[517296.318189978,5277029.847619942],[517298.42076373845,5277029.965005702],[517304.20242831856,5277030.4267440755]]]},"properties":{"id_build":1006,"id_source":"w145197524","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.7855070063,5276737.256604633],[516763.340054562,5276737.691646007],[516764.4040849555,5276738.56159918],[516766.06763064815,5276739.900065578],[516764.74103647866,5276741.530000843],[516763.79125975625,5276742.716462097],[516761.69308301876,5276741.03221205],[516760.50907271187,5276740.095230195],[516762.7855070063,5276737.256604633]]]},"properties":{"id_build":1007,"id_source":"w145197541","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516398.71353328717,5276852.160967351],[516395.64595459565,5276850.640829004],[516398.44146399066,5276844.758294202],[516401.8168546667,5276846.323756878],[516400.987557888,5276847.432818555],[516398.71353328717,5276852.160967351]]]},"properties":{"id_build":1008,"id_source":"w145197614","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.5225783435,5277627.248403805],[516657.7868080399,5277631.586477376],[516647.11365200067,5277634.890145277],[516646.10169063206,5277631.61973844],[516644.806969002,5277627.43717614],[516655.5555513221,5277624.022579865],[516656.5225783435,5277627.248403805]]]},"properties":{"id_build":1009,"id_source":"w145197624","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516437.70996790734,5277274.779926541],[516436.28453248367,5277274.253545288],[516436.8823133031,5277272.665933349],[516438.30023900885,5277273.192293544],[516437.70996790734,5277274.779926541]]]},"properties":{"id_build":1010,"id_source":"w145197666","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.4847510935,5277583.673046141],[517218.44777502865,5277584.204970552],[517217.6217128813,5277584.202527483],[517217.12496027804,5277574.420742365],[517225.9129166315,5277573.891038037],[517226.19893277495,5277578.748700365],[517226.4847510935,5277583.673046141]]]},"properties":{"id_build":1011,"id_source":"w145197682","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516303.3444011681,5277144.124067225],[516313.11609516956,5277141.1506617665],[516314.2410718799,5277141.709512615],[516313.48662430514,5277142.929936474],[516303.9402396403,5277145.903972187],[516303.3444011681,5277144.124067225]]]},"properties":{"id_build":1012,"id_source":"w145197685","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.00279723626,5277408.821199094],[517299.0230549008,5277408.642663084],[517299.7029731745,5277407.288776134],[517299.9279394684,5277407.400584525],[517302.405870972,5277407.519087884],[517303.00279723626,5277408.821199094]]]},"properties":{"id_build":1013,"id_source":"w145197688","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516488.553915277,5277433.7202963885],[516501.6655935462,5277444.538010367],[516488.4023324022,5277460.726852673],[516475.2906663447,5277449.909168261],[516477.8531293653,5277446.693364192],[516488.553915277,5277433.7202963885]]]},"properties":{"id_build":1014,"id_source":"w145197691","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.3562025153,5277681.870183982],[517023.53809343197,5277677.478345369],[517026.61446550535,5277673.219567837],[517035.45718591067,5277679.580414108],[517029.12382127834,5277688.230801185],[517028.67422527476,5277687.896066208],[517020.3562025153,5277681.870183982]]]},"properties":{"id_build":1015,"id_source":"w145197695","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516757.70626089524,5277304.232842191],[516767.69522173895,5277304.039320911],[516767.80125239235,5277319.37692727],[516762.2888192831,5277319.394396514],[516747.7492431721,5277319.430353633],[516747.5674201805,5277304.314809626],[516757.70626089524,5277304.232842191]]]},"properties":{"id_build":1016,"id_source":"w145197731","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"commercial","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517259.3541438978,5277743.478540203],[517258.8324362067,5277742.143313647],[517256.52229591005,5277736.134906062],[517260.7929086393,5277734.380440959],[517265.394335932,5277732.493592102],[517268.67707155395,5277739.7274280405],[517264.2110827069,5277741.525763957],[517259.3541438978,5277743.478540203]]]},"properties":{"id_build":1017,"id_source":"w145197749","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.76970354444,5277551.530776469],[517218.12374147336,5277541.415130632],[517226.9110900095,5277541.107705671],[517227.3309335036,5277546.421437592],[517227.70723082277,5277551.223796955],[517225.0037393766,5277551.215797633],[517218.76970354444,5277551.530776469]]]},"properties":{"id_build":1018,"id_source":"w145197784","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.22487834597,5277760.403671911],[516425.6788933333,5277759.182413941],[516425.90574410337,5277758.627354479],[516431.307513518,5277760.420837036],[516430.7014268743,5277762.308504815],[516425.22487834597,5277760.403671911]]]},"properties":{"id_build":1019,"id_source":"w145197795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.67053687305,5277436.524044345],[517083.02790318645,5277437.323606809],[517084.0789553536,5277437.437830778],[517083.22645798855,5277446.437662605],[517074.8177264459,5277445.635016322],[517075.27521374635,5277440.723973731],[517075.67053687305,5277436.524044345]]]},"properties":{"id_build":1020,"id_source":"w145197802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517228.6724637682,5276717.344148237],[517218.6053976645,5276718.203491889],[517217.9537444933,5276709.977219691],[517222.7093523363,5276709.557837115],[517227.7955011659,5276709.117208302],[517228.2343115845,5276713.119539407],[517228.6724637682,5276717.344148237]]]},"properties":{"id_build":1021,"id_source":"w145197803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.4424478932,5276826.170246362],[517311.90393475426,5276839.844790589],[517310.3673415558,5276826.170023098],[517310.4424478932,5276826.170246362]]]},"properties":{"id_build":1022,"id_source":"w145197856","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.2354639504,5277557.601636666],[517129.83852818364,5277556.825431443],[517136.356584154,5277562.06819058],[517130.17575219576,5277569.829797029],[517126.9766412319,5277567.26416619],[517123.65769944526,5277564.587044739],[517129.2354639504,5277557.601636666]]]},"properties":{"id_build":1023,"id_source":"w145197878","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.20811512624,5277481.529333127],[516689.3149054349,5277478.748275497],[516697.80829968036,5277476.216411311],[516700.4863212017,5277485.115283402],[516692.14217836445,5277487.980991221],[516690.87014563434,5277483.742914728],[516690.20811512624,5277481.529333127]]]},"properties":{"id_build":1024,"id_source":"w145197922","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.44402513717,5277507.275605005],[516983.29454351787,5277515.163186],[516973.5364122937,5277513.578769837],[516974.1402779822,5277509.946255066],[516974.91246984026,5277505.24728795],[516984.5951929073,5277506.942626253],[516984.44402513717,5277507.275605005]]]},"properties":{"id_build":1025,"id_source":"w145197925","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516856.236948171,5277486.3421167955],[516854.9371193109,5277494.340426582],[516849.75807943475,5277493.391860189],[516845.02936702775,5277492.533513268],[516846.40556683176,5277484.090862744],[516856.3130113121,5277486.008917313],[516856.236948171,5277486.3421167955]]]},"properties":{"id_build":1026,"id_source":"w145197931","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517010.4522160435,5277524.689364563],[517011.6794280985,5277515.912896374],[517011.8328704512,5277514.801945506],[517019.4895611541,5277515.935722661],[517017.9586993752,5277525.822700926],[517013.7550690623,5277525.188031369],[517010.4522160435,5277524.689364563]]]},"properties":{"id_build":1027,"id_source":"w145197956","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.598562462,5277470.247614064],[517054.56431404693,5277471.004466187],[517055.1425036389,5277471.028387892],[517054.5749823992,5277477.61732267],[517053.9763163746,5277484.584042068],[517045.5676361629,5277483.781437856],[517046.598562462,5277470.247614064]]]},"properties":{"id_build":1028,"id_source":"w145197957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.73845716915,5277680.476060629],[516851.17133207485,5277679.7109106155],[516853.63853812456,5277683.496810434],[516840.84983762156,5277691.23959685],[516837.78604365437,5277686.007157752],[516846.73845716915,5277680.476060629]]]},"properties":{"id_build":1029,"id_source":"w145197963","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517097.262896585,5277653.421428921],[517097.15548805695,5277664.423969185],[517077.03021461214,5277664.253760147],[517077.13758510526,5277653.251219603],[517082.24409024045,5277653.266201008],[517097.262896585,5277653.421428921]]]},"properties":{"id_build":1030,"id_source":"w145198005","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.2735769887,5277749.1731302375],[517268.4991899578,5277749.0626594825],[517272.7858380244,5277746.963716769],[517273.98009430204,5277749.4123400925],[517269.5425994045,5277751.7331144195],[517268.2735769887,5277749.1731302375]]]},"properties":{"id_build":1031,"id_source":"w145198043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517260.63113729557,5276755.337461616],[517260.344543638,5276750.668739946],[517269.5847204794,5276750.0292960545],[517270.1585517689,5276759.144462703],[517265.6209563901,5276759.508882837],[517260.8429526967,5276759.894821873],[517260.63113729557,5276755.337461616]]]},"properties":{"id_build":1032,"id_source":"w145198100","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.05208952754,5277755.271882219],[517230.99153994734,5277760.954639639],[517221.5751908865,5277763.305171748],[517218.97875634657,5277760.141115759],[517225.3782134565,5277754.603048323],[517226.05208952754,5277755.271882219]]]},"properties":{"id_build":1033,"id_source":"w145198118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516467.78104707506,5277741.852393426],[516462.90336166136,5277740.6160586905],[516465.0755514202,5277731.96440314],[516466.776878814,5277725.178567001],[516467.15675360523,5277723.623682846],[516471.95967214345,5277724.748669588],[516467.78104707506,5277741.852393426]]]},"properties":{"id_build":1034,"id_source":"w145198122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517049.09251673607,5277434.11221624],[517058.55199572816,5277435.140183624],[517058.1117235049,5277439.306640426],[517057.62509040267,5277443.917521117],[517050.8678651311,5277443.342028119],[517048.16497466015,5277443.111833115],[517049.09251673607,5277434.11221624]]]},"properties":{"id_build":1035,"id_source":"w145198152","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516314.71602842933,5277159.826629046],[516324.79714656295,5277153.631056283],[516326.6778150262,5277152.524931469],[516330.1175500117,5277157.869287499],[516318.2305604537,5277165.282327454],[516314.71602842933,5277159.826629046]]]},"properties":{"id_build":1036,"id_source":"w145198168","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516768.6121288577,5277689.697396852],[516768.7469531611,5277695.032501799],[516768.81884699565,5277696.144108185],[516753.5732621676,5277696.54477404],[516753.44162234647,5277690.0982793905],[516768.6121288577,5277689.697396852]]]},"properties":{"id_build":1037,"id_source":"w145198201","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.55089302716,5276971.812587597],[517214.5462931591,5276973.368531876],[517214.52066530683,5276982.037364343],[517209.2633624945,5276982.021824433],[517209.21814806544,5276971.907964595],[517214.55089302716,5276971.812587597]]]},"properties":{"id_build":1038,"id_source":"w145198231","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.8316908911,5277618.351167357],[517264.31788289215,5277614.348604867],[517272.5840672777,5277612.483744386],[517274.2819302838,5277622.380239104],[517270.7425975534,5277623.147718105],[517265.7153751935,5277624.244206309],[517264.8316908911,5277618.351167357]]]},"properties":{"id_build":1039,"id_source":"w145198240","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.8205342926,5277679.713908819],[516929.8151957845,5277673.3818245465],[516942.61284830334,5277675.51959992],[516949.48080676084,5277676.662104977],[516948.4864479479,5277682.883046969],[516928.8205342926,5277679.713908819]]]},"properties":{"id_build":1040,"id_source":"w145198250","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.33585802716,5277498.531987958],[516883.7117883284,5277490.200485019],[516883.8645622765,5277489.311808819],[516893.6227578269,5277490.896074467],[516892.1694586032,5277500.005330021],[516887.26016869093,5277499.268678694],[516882.33585802716,5277498.531987958]]]},"properties":{"id_build":1041,"id_source":"w145198257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.52041002514,5277762.039496896],[516881.126642796,5277760.151875611],[516888.7047164715,5277762.396654348],[516888.47653194936,5277763.396251952],[516888.17325328063,5277764.39563172],[516880.52041002514,5277762.039496896]]]},"properties":{"id_build":1042,"id_source":"w145198269","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68603405985,5277216.274875673],[517311.6909906801,5277214.607791896],[517317.0979558385,5277214.735010451],[517317.15884368366,5277219.514207313],[517311.8269842338,5277219.387211989],[517311.68603405985,5277216.274875673]]]},"properties":{"id_build":1043,"id_source":"w145198282","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517194.6379432247,5277616.076223713],[517196.72491842194,5277608.691580712],[517206.1262330477,5277611.508971352],[517204.07728758606,5277618.727013513],[517199.2675667814,5277617.379122672],[517194.6379432247,5277616.076223713]]]},"properties":{"id_build":1044,"id_source":"w145198287","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.6943018657,5277600.412466364],[517131.56845467334,5277606.9546376085],[517131.04114566697,5277607.508785695],[517124.37359732424,5277602.043312268],[517130.02609658544,5277595.169264499],[517133.51754333824,5277597.913581467],[517136.6943018657,5277600.412466364]]]},"properties":{"id_build":1045,"id_source":"w145198288","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516497.4462509334,5277687.922390335],[516496.9815075305,5277692.922368944],[516493.67795138183,5277692.690728686],[516494.2976056599,5277686.024090221],[516497.52575540286,5277686.366657019],[516497.4462509334,5277687.922390335]]]},"properties":{"id_build":1046,"id_source":"w145198307","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.92921163514,5277611.790659849],[517158.34637505485,5277617.70293306],[517154.1629849796,5277622.969752894],[517149.9796024498,5277628.236575758],[517142.6368856515,5277622.546812207],[517150.92921163514,5277611.790659849]]]},"properties":{"id_build":1047,"id_source":"w145198309","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.52229591005,5277736.134906062],[517258.8324362067,5277742.143313647],[517259.3541438978,5277743.478540203],[517249.20420137566,5277747.560636712],[517246.2221535472,5277740.216562557],[517251.1090625661,5277738.286092185],[517256.52229591005,5277736.134906062]]]},"properties":{"id_build":1048,"id_source":"w145198320","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516365.93990097067,5276837.776194898],[516370.24094784446,5276830.675341124],[516373.7728272958,5276832.685786314],[516375.0550810935,5276833.422914182],[516379.1642120366,5276835.812861056],[516374.86253294686,5276843.135986039],[516365.93990097067,5276837.776194898]]]},"properties":{"id_build":1049,"id_source":"w145198340","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.1479783252,5277091.334204552],[517308.4518460283,5277091.566304306],[517308.0591527476,5277097.344410737],[517305.0556996871,5277097.113204004],[517304.75528831035,5277097.112311196],[517305.1479783252,5277091.334204552]]]},"properties":{"id_build":1050,"id_source":"w145198351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.64495246415,5276963.001836839],[517312.2674094054,5276970.21291108],[517312.8910454839,5276962.546115093],[517316.64495246415,5276963.001836839]]]},"properties":{"id_build":1051,"id_source":"w145198355","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516940.587916735,5277584.278934081],[516941.1996849695,5277580.501956726],[516941.8114539777,5277576.724979456],[516948.1614272399,5277577.843746841],[516955.9225024057,5277579.211138613],[516954.62320348853,5277586.987149617],[516940.587916735,5277584.278934081]]]},"properties":{"id_build":1052,"id_source":"w145198359","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516742.0360632537,5276738.852896258],[516742.55628572573,5276738.165325393],[516744.20753024495,5276735.947277856],[516744.7638377596,5276738.382838178],[516750.3096415697,5276742.62209828],[516749.6913314309,5276743.4649819955],[516749.17855538684,5276744.1748016],[516742.0360632537,5276738.852896258]]]},"properties":{"id_build":1053,"id_source":"w145198419","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.21977109084,5277266.704324083],[516438.39552622783,5277268.7025137395],[516432.92712247267,5277266.408711072],[516430.2178254396,5277263.089098466],[516434.0888168294,5277264.58929683],[516439.21977109084,5277266.704324083]]]},"properties":{"id_build":1054,"id_source":"w145198430","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517028.78603338404,5277495.624300791],[517028.3208194305,5277500.624236567],[517024.5672378405,5277500.168699529],[517024.8003306171,5277497.502023031],[517024.95702590316,5277495.279682827],[517028.78603338404,5277495.624300791]]]},"properties":{"id_build":1055,"id_source":"w145198466","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.44777502865,5277584.204970552],[517226.4847510935,5277583.673046141],[517226.7527214056,5277589.553142789],[517226.9781984168,5277594.566222096],[517218.94156604086,5277594.987006811],[517218.91353260435,5277594.308970155],[517218.44777502865,5277584.204970552]]]},"properties":{"id_build":1056,"id_source":"w145198496","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516569.444219957,5276718.098484374],[516569.1460026441,5276717.319657694],[516569.525652173,5276715.875921313],[516570.72895723255,5276715.323646533],[516571.6258224656,5276716.882154985],[516569.444219957,5276718.098484374]]]},"properties":{"id_build":1057,"id_source":"w145198528","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516320.9921737129,5277144.618066646],[516321.9669446135,5277145.176497971],[516326.6778150262,5277152.524931469],[516324.79714656295,5277153.631056283],[516320.0105495,5277146.504691626],[516320.9921737129,5277144.618066646]]]},"properties":{"id_build":1058,"id_source":"w145198533","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517206.6812177112,5277652.410118041],[517209.0318520954,5277644.748408378],[517218.06473892834,5277647.698097697],[517220.36046598817,5277648.4495256655],[517217.93472249206,5277656.111008729],[517211.25745413237,5277653.979604906],[517206.6812177112,5277652.410118041]]]},"properties":{"id_build":1059,"id_source":"w145198537","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.65975057654,5277273.3286337815],[516417.619397477,5277272.478217547],[516420.7201475874,5277264.818314036],[516425.02609687555,5277266.542012722],[516421.93285204144,5277274.201935156],[516419.65975057654,5277273.3286337815]]]},"properties":{"id_build":1060,"id_source":"w145198623","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.85725529277,5276929.777185755],[517149.4091715445,5276929.498373813],[517149.43071833707,5276934.933175176],[517149.49784583616,5276950.392924101],[517138.4574502347,5276950.360419199],[517130.8718722981,5276950.3380980315],[517130.85725529277,5276929.777185755]]]},"properties":{"id_build":1061,"id_source":"w145198655","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.594872084,5277674.907166976],[516992.895589884,5277678.622475713],[516989.7137552253,5277683.003217119],[516982.2194649065,5277677.757773318],[516988.1012251639,5277669.439437679],[516988.7003671664,5277669.996885787],[516995.594872084,5277674.907166976]]]},"properties":{"id_build":1062,"id_source":"w145198663","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517260.63113729557,5276755.337461616],[517256.6118783907,5276755.670083226],[517252.8180075433,5276755.981147388],[517252.24414876866,5276746.86598256],[517260.0566318601,5276746.444573673],[517260.344543638,5276750.668739946],[517260.63113729557,5276755.337461616]]]},"properties":{"id_build":1063,"id_source":"w145198696","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.29001413047,5277409.2963406835],[517309.2352066186,5277409.10646048],[517309.9898625848,5277407.875050837],[517312.6176608958,5277408.105144051],[517312.5422315854,5277408.216059689],[517313.29001413047,5277409.2963406835]]]},"properties":{"id_build":1064,"id_source":"w145198701","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.0188873112,5277670.174079485],[517236.5150039781,5277670.836466519],[517230.799526758,5277673.598046585],[517225.7239507906,5277663.135868979],[517228.7471659696,5277661.666653488],[517233.0187458184,5277659.60097891],[517238.0188873112,5277670.174079485]]]},"properties":{"id_build":1065,"id_source":"w145198709","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.99153994734,5277760.954639639],[517226.05208952754,5277755.271882219],[517230.1477155177,5277751.738637133],[517234.4089490773,5277748.07251721],[517239.4975989311,5277754.089143456],[517231.2158358977,5277761.288723498],[517230.99153994734,5277760.954639639]]]},"properties":{"id_build":1066,"id_source":"w145198727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.9804047673,5277139.4038074305],[517286.9645665943,5277144.738474908],[517281.4086508811,5277144.166283085],[517281.7993357643,5277139.0550079355],[517286.9053024706,5277139.403584457],[517286.9804047673,5277139.4038074305]]]},"properties":{"id_build":1067,"id_source":"w145198752","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.96685196826,5277396.478042028],[516795.974226132,5277393.921846064],[516795.91259292787,5277389.253793339],[516795.9199670508,5277386.697597406],[516795.8560893919,5277382.807517402],[516806.2207336119,5277382.504006795],[516806.08817971125,5277376.390930879],[516809.91824026156,5277376.401987762],[516812.39683566446,5277376.298004606],[516816.6023924247,5277376.310150188],[516819.3062856879,5277376.206820714],[516826.6663313575,5277376.116947264],[516829.36990366125,5277376.124761416],[516833.5006826781,5277376.025563175],[516836.0540565685,5277376.032946171],[516843.6394005285,5277375.943745667],[516846.41839374206,5277375.840646045],[516850.3986531884,5277375.852164152],[516852.87692793837,5277375.859337179],[516856.9326083959,5277375.759938181],[516856.9781039489,5277385.98493918],[516849.4678718758,5277386.074339614],[516846.23861044773,5277386.06499503],[516831.9694595723,5277386.1348653985],[516828.8152973029,5277386.125747588],[516814.6209251395,5277386.307016496],[516811.2414656909,5277386.297257548],[516805.6838115704,5277386.392352721],[516805.82695209485,5277388.837843242],[516805.8176487976,5277392.060872907],[516805.98455877596,5277412.288813229],[516806.0509956642,5277415.289781872],[516806.1594873648,5277429.738280173],[516806.22560307465,5277432.850387863],[516806.46728671837,5277453.189685249],[516806.45926616655,5277455.968159376],[516806.4701151141,5277457.413009286],[516806.51254834945,5277463.525825855],[516796.599919438,5277463.386079696],[516796.5373260273,5277459.051443348],[516796.5443799553,5277456.606386101],[516796.4089325517,5277451.4935603915],[516796.416307038,5277448.937364209],[516796.3023412614,5277436.37822806],[516796.3090744112,5277434.04430986],[516796.3241438367,5277428.820778686],[516796.25609902584,5277426.3755049],[516796.20280279365,5277418.817838991],[516796.2095358689,5277416.483920857],[516796.07376632886,5277411.48223444],[516796.1552775183,5277409.259671939],[516795.96685196826,5277396.478042028]]]},"properties":{"id_build":1068,"id_source":"w145198754","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516975.8024655923,5277457.570860223],[516983.6130010012,5277457.482499225],[516986.1663393261,5277457.48994814],[516990.8224268599,5277457.503534341],[516993.1504706268,5277457.5103288395],[516995.55361257825,5277457.5173434885],[516995.4895450287,5277453.738399509],[516995.4976557851,5277450.959925434],[516995.4368323774,5277446.069591873],[516995.4446186602,5277443.402256795],[516995.39028361184,5277436.289144086],[516995.3974209982,5277433.8440869665],[516995.4123446139,5277428.731694843],[516995.41948199185,5277426.286637752],[516995.30562019657,5277413.838636095],[516995.3127574956,5277411.393579065],[516995.3276809325,5277406.281187121],[516995.335142646,5277403.724991164],[516995.27074965026,5277400.057186459],[517005.2589069572,5277400.0863510035],[517005.31355526915,5277407.088324472],[517005.3038168743,5277410.422493128],[517005.31951109186,5277430.761141661],[517005.3113956983,5277433.539615642],[517005.3452677645,5277447.654483011],[517005.41095211543,5277450.877732269],[517005.4578083502,5277460.547041437],[516995.6196266261,5277460.629453708],[516995.6752586634,5277467.298010833],[516988.11259217444,5277467.375964834],[516985.303859935,5277467.389997932],[516970.97521519114,5277467.325985126],[516967.82854175055,5277467.339041585],[516953.5899498634,5277467.297562002],[516950.4358961197,5277467.266150402],[516936.43716531934,5277467.3810069775],[516932.88512419834,5277467.337333161],[516927.48557387304,5277467.321631608],[516927.58910779457,5277457.541621001],[516931.7946060732,5277457.553849934],[516934.3479443126,5277457.561276126],[516938.62854077114,5277457.573728427],[516941.33207537653,5277457.581594661],[516948.84189372056,5277457.603451896],[516951.3204573603,5277457.499527947],[516956.20183937385,5277457.513742424],[516958.7551776576,5277457.521179318],[516965.9646033933,5277457.5421836525],[516968.893432598,5277457.550719215],[516973.0238327579,5277457.562759047],[516975.8024655923,5277457.570860223]]]},"properties":{"id_build":1069,"id_source":"w145198761","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516444.3315919081,5277323.455641031],[516442.83524355944,5277321.4508980205],[516444.8676501007,5277319.789540621],[516447.7258434793,5277318.241656498],[516448.399545355,5277319.021538524],[516451.7095960551,5277317.030373559],[516455.54346441495,5277315.707529894],[516458.6241351962,5277315.160538381],[516464.25757844344,5277314.843046264],[516468.91189286974,5277315.52304847],[516472.5132341596,5277316.755774417],[516475.6633451306,5277318.20950539],[516477.9116260808,5277319.882965389],[516478.6645128423,5277319.218257187],[516483.38825853734,5277321.898984551],[516480.52376562916,5277325.669630109],[516481.94531472446,5277327.5630313065],[516477.35321563715,5277331.439927978],[516474.58552977786,5277327.542201708],[516473.0882495321,5277325.870867725],[516471.0646403859,5277324.420324818],[516468.81510178815,5277323.191423235],[516464.1611077654,5277322.400282134],[516459.72958455107,5277322.610032187],[516457.3251308673,5277323.047794618],[516455.9714478861,5277323.710807467],[516452.8106570585,5277326.0358112985],[516449.79692841467,5277329.472630669],[516448.8174909188,5277330.581261884],[516444.3231167041,5277326.456392571],[516445.6045231288,5277324.792914377],[516444.3315919081,5277323.455641031]]]},"properties":{"id_build":1070,"id_source":"w145198767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517253.71572939714,5277286.932264318],[517265.970993213,5277287.346469401],[517265.63424418634,5277297.070212888],[517271.36386684765,5277297.26503016],[517271.5531145891,5277291.697482023],[517273.3628677684,5277291.758420723],[517273.4866627987,5277288.002259033],[517281.76196609804,5277288.282437341],[517281.70444768254,5277289.949365278],[517287.2913862273,5277290.14377468],[517287.19271927245,5277293.022005442],[517289.6257715266,5277293.095913856],[517289.4937300776,5277297.09655861],[517290.8078526864,5277297.144917004],[517290.7173872094,5277299.789778283],[517290.6107465962,5277302.823581238],[517284.7910097163,5277302.62847747],[517284.57773484517,5277308.696083625],[517282.587779741,5277308.623492515],[517282.47228091693,5277312.112942996],[517274.354688707,5277311.844345386],[517274.40423320944,5277310.332989555],[517268.9600038604,5277310.139015679],[517269.07516497944,5277306.760703896],[517267.0852090499,5277306.688118091],[517267.2165757329,5277302.909750673],[517265.36927587,5277302.848702527],[517265.4182578338,5277301.526282829],[517263.00773891475,5277301.45245132],[517262.97496381024,5277302.374815405],[517262.00906827365,5277303.927910415],[517261.1862612081,5277302.814071922],[517260.50838265754,5277303.478901765],[517259.61179287283,5277301.920285125],[517258.1809358969,5277303.249722645],[517257.35911624494,5277301.802467893],[517255.70197105524,5277303.464655042],[517254.58106746234,5277301.571954662],[517253.37551212276,5277302.902061041],[517252.25361971743,5277301.3427779125],[517250.89720590226,5277302.894717617],[517249.99896709557,5277301.891797135],[517250.54409618955,5277295.336157581],[517250.02004055097,5277294.77890539],[517251.22526749165,5277293.559937258],[517250.17715591914,5277292.445432805],[517251.1557651793,5277291.670352894],[517251.45715441153,5277291.337826165],[517250.1837414244,5277290.222654161],[517251.9904308959,5277288.783188382],[517250.64257562894,5277287.445515896],[517252.74999702035,5277285.895801468],[517252.9752982436,5277285.896469079],[517253.71572939714,5277286.932264318]]]},"properties":{"id_build":1071,"id_source":"w145198772","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.5810001403,5277528.995463378],[517286.63751346356,5277528.070200271],[517284.9577295636,5277529.78788214],[517278.07289532485,5277536.824832636],[517275.82066322037,5277539.118746039],[517276.5395180197,5277539.821060907],[517277.99965728074,5277541.259099455],[517278.1263328721,5277541.592895262],[517278.0505760943,5277541.814950341],[517277.9744894904,5277542.148144402],[517277.8236356259,5277542.369976617],[517277.6727817719,5277542.591808835],[517277.29597700876,5277543.035250427],[517276.9945992006,5277543.367775921],[517276.7085376706,5277543.600320924],[517276.32478399936,5277543.8548040325],[517275.98658329906,5277543.942712411],[517275.5884038816,5277543.997100842],[517275.3180543947,5277543.99629863],[517273.1016107561,5277541.822493115],[517267.50488664134,5277547.540712478],[517263.6710246765,5277543.783926254],[517264.0476306101,5277543.407167169],[517260.88018410164,5277540.308084745],[517261.656057049,5277539.510177449],[517265.21141942375,5277535.886443514],[517264.48508601607,5277535.17299389],[517269.77296408534,5277529.776161401],[517270.5666872441,5277530.556495558],[517274.20493145246,5277526.844101012],[517278.31020214973,5277522.655192957],[517277.50896920095,5277521.87483547],[517282.8270093339,5277516.444762345],[517283.62820933363,5277517.236234456],[517286.9275085393,5277513.867375482],[517287.78622680577,5277512.991919687],[517291.2082791726,5277516.336280679],[517291.584888658,5277515.959523383],[517295.2315689725,5277519.526833844],[517289.53687819623,5277525.34476699],[517291.813234844,5277527.574326631],[517291.8943564318,5277528.074697364],[517291.6824335717,5277528.629767697],[517291.38793676154,5277529.173478796],[517291.1391585311,5277529.495045788],[517290.7555353284,5277529.705072355],[517290.356958714,5277529.892826549],[517290.0263327246,5277529.958528616],[517289.69580576086,5277529.990889011],[517289.2451891935,5277530.000664807],[517288.8998738112,5277529.955183364],[517288.6824547941,5277529.832283772],[517288.33766744303,5277529.608980005],[517287.95552944543,5277529.318881376],[517287.5810001403,5277528.995463378]]]},"properties":{"id_build":1072,"id_source":"w145198776","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8020198006,5277219.555926856],[517299.7346895066,5277219.6846907595],[517299.6638810031,5277218.239661671],[517305.7470848416,5277218.257739056],[517305.67594748177,5277216.923848815],[517305.6779294405,5277216.257015304],[517311.68603405985,5277216.274875673],[517311.8269842338,5277219.387211989],[517317.15884368366,5277219.514207313],[517317.14363855065,5277224.626597609],[517312.1748206831,5277253.952756548],[517312.1000503148,5277253.841394322],[517312.2677661277,5277247.951477924],[517310.5404454466,5277247.946342236],[517310.70948150445,5277241.611870156],[517310.80077339703,5277236.166286236],[517310.89305669884,5277230.3872856],[517310.90197824576,5277227.386534737],[517305.27005155873,5277227.147513353],[517305.1866924229,5277229.925763161],[517299.103830978,5277229.796547409],[517299.1743092522,5277231.352715437],[517275.89494281186,5277230.61675739],[517275.7351776161,5277233.839340454],[517275.4172964689,5277239.728812033],[517275.2492880214,5277245.729868251],[517275.09941591375,5277245.618283683],[517270.14374361694,5277245.270162741],[517263.235116873,5277245.027395216],[517263.5523264002,5277239.360200797],[517261.9007632028,5277239.133024376],[517261.90142218943,5277238.91074653],[517262.0690875191,5277233.020828944],[517262.2353008839,5277230.1539123375],[517262.3853079628,5277227.687051336],[517263.1722367564,5277215.575135687],[517263.33924480824,5277209.907496184],[517264.46576563176,5277209.910836336],[517265.7424892333,5277209.914622106],[517278.2080004745,5277210.396159421],[517278.20437265426,5277211.618687517],[517277.8861581888,5277217.619297683],[517277.8097377198,5277218.063630502],[517276.3077120479,5277218.059173567],[517276.3014464867,5277220.170813034],[517277.95334432827,5277220.286854604],[517277.9477377607,5277222.176216242],[517281.62736818875,5277222.298276383],[517281.5582045634,5277220.297552924],[517281.56051362946,5277219.519580488],[517281.8619083071,5277219.18705536],[517288.0195523988,5277219.427614972],[517293.8020198006,5277219.555926856]]]},"properties":{"id_build":1073,"id_source":"w145198792","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.0722881948,5277078.6994201355],[517279.72377498174,5277079.233365161],[517278.9468784715,5277090.478414992],[517272.26403647126,5277090.014028072],[517272.4837864961,5277086.824965532],[517271.5151559016,5277086.755408363],[517271.6642140699,5277084.610850938],[517272.0722881948,5277078.6994201355]]]},"properties":{"id_build":1074,"id_source":"w145198805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.04941684846,5276721.261790785],[517229.18407889927,5276722.124673508],[517228.6724637682,5276717.344148237],[517228.2343115845,5276713.119539407],[517232.47898728156,5276712.7653371645],[517237.3246575328,5276712.368460998],[517237.6867085034,5276716.926264696],[517238.04941684846,5276721.261790785]]]},"properties":{"id_build":1075,"id_source":"w145198829","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516388.0159817567,5276759.595907595],[516386.78580745275,5276769.706161083],[516372.29421101866,5276768.220583519],[516373.6029050229,5276756.888010903],[516376.90637177246,5276757.3418591395],[516376.7530318722,5276758.452825169],[516379.9517225836,5276758.773012809],[516388.0159817567,5276759.595907595]]]},"properties":{"id_build":1076,"id_source":"w145198855","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516707.2041310714,5277525.589477363],[516697.88409707794,5277528.341236534],[516695.85405287094,5277521.322487316],[516694.09174130316,5277515.215853709],[516701.83315344923,5277513.01525898],[516704.43414080795,5277522.580751888],[516706.23807149095,5277522.030228563],[516707.2041310714,5277525.589477363]]]},"properties":{"id_build":1077,"id_source":"w145198859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.7507537666,5277625.46647911],[516736.4114120963,5277624.265576548],[516741.1694968629,5277622.712184226],[516743.5505152978,5277630.387685748],[516731.599080129,5277634.243222365],[516728.9205378256,5277625.566611593],[516732.3781485362,5277624.465148969],[516732.7507537666,5277625.46647911]]]},"properties":{"id_build":1078,"id_source":"w145198861","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.30244434276,5277349.331020035],[516536.0125784041,5277347.854876917],[516542.1998948657,5277350.8287728885],[516541.45962505013,5277352.338171601],[516535.30244434276,5277349.331020035]]]},"properties":{"id_build":1079,"id_source":"w145198914","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.83120904403,5277140.802400232],[517316.56476083334,5277141.492233982],[517315.70558471355,5277152.603667785],[517308.6473060833,5277152.138122174],[517308.7316588048,5277149.026456032],[517308.20594357885,5277149.024893284],[517308.51083461946,5277144.991421646],[517308.83120904403,5277140.802400232]]]},"properties":{"id_build":1080,"id_source":"w145198926","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516441.41824926453,5276865.773750677],[516442.0979671754,5276864.441992847],[516444.9485357922,5276865.6725795865],[516440.6402060732,5276875.329572671],[516429.689201371,5276870.186236119],[516433.392278691,5276862.083483495],[516437.6978014937,5276864.062809163],[516441.41824926453,5276865.773750677]]]},"properties":{"id_build":1081,"id_source":"w145198952","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.4361986754,5276735.114747594],[516432.6521126781,5276738.449548707],[516421.19606512896,5276739.184097037],[516420.26040760643,5276724.733294286],[516430.3342521982,5276724.083755826],[516430.80178691895,5276731.4091829285],[516431.0464593106,5276735.199737985],[516432.4361986754,5276735.114747594]]]},"properties":{"id_build":1082,"id_source":"w145198991","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.6060773505,5276928.914093929],[517255.9100391946,5276929.146163577],[517255.9834974633,5276929.70208049],[517263.2667057507,5276930.390507137],[517262.9239870775,5276934.523893388],[517262.6437909012,5276937.83503016],[517251.9064247215,5276936.914089875],[517252.6060773505,5276928.914093929]]]},"properties":{"id_build":1083,"id_source":"w145199005","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516847.04784737,5277573.5603475105],[516837.96211284737,5277573.200642968],[516836.7769578576,5277567.529079743],[516842.55265655194,5277569.879724056],[516844.95639510837,5277569.664398686],[516847.5119354086,5277568.893814017],[516847.04784737,5277573.5603475105]]]},"properties":{"id_build":1084,"id_source":"w145199019","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516517.87437857996,5276866.545821611],[516516.29841780796,5276866.0967924455],[516514.1004930917,5276873.092363711],[516504.7210995466,5276869.953858616],[516505.7983120077,5276866.178160099],[516507.60378830886,5276859.848311828],[516518.8595815456,5276863.436703045],[516517.87437857996,5276866.545821611]]]},"properties":{"id_build":1085,"id_source":"w145199024","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516813.8172490181,5277560.572051392],[516816.03580577805,5277572.470429654],[516814.98381001706,5277572.689670962],[516812.879818738,5277573.128154147],[516813.25016676163,5277574.907462288],[516815.2790928568,5277574.457648437],[516818.5277698792,5277593.7053518165],[516809.73731661006,5277595.124782849],[516809.5155572343,5277593.901603477],[516806.0599348033,5277594.302844678],[516802.66121607705,5277574.988031464],[516801.6089646943,5277575.296186379],[516799.5411504937,5277563.198196851],[516813.8172490181,5277560.572051392]]]},"properties":{"id_build":1086,"id_source":"w145199036","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516315.57610974263,5276718.826502036],[516315.1912301204,5276722.159615141],[516304.0777872128,5276721.239372078],[516305.17099253146,5276706.349711508],[516315.30868450925,5276707.044943266],[516314.785628106,5276714.123077524],[516314.44980570575,5276718.712206853],[516315.57610974263,5276718.826502036]]]},"properties":{"id_build":1087,"id_source":"w145199043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.0120262327,5276815.816218573],[516460.1773733125,5276818.814632372],[516449.37115493056,5276815.561044628],[516451.1070425362,5276809.920049414],[516453.54032015026,5276802.013774434],[516462.9955855617,5276804.930131058],[516459.81126551563,5276815.479405185],[516461.0120262327,5276815.816218573]]]},"properties":{"id_build":1088,"id_source":"w145199057","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.3548190538,5277722.977347649],[517016.63143001386,5277722.98107907],[517016.6720892632,5277734.762033749],[517013.81816925673,5277734.864832293],[517013.8246654388,5277732.6420520535],[517015.4019776696,5277732.535522075],[517015.3548190538,5277722.977347649]]]},"properties":{"id_build":1089,"id_source":"w145199086","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.25642012747,5277390.035091541],[516641.2040805077,5277390.365503206],[516643.36257283395,5277397.1512048],[516635.9962065575,5277399.464089047],[516634.37305314565,5277394.558183361],[516632.49671915994,5277388.895803838],[516641.0653181156,5277386.364071518],[516642.25642012747,5277390.035091541]]]},"properties":{"id_build":1090,"id_source":"w145199089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517083.6209491524,5277537.217911613],[517083.7768180354,5277535.284534146],[517084.5651427995,5277535.3535314035],[517084.51816027303,5277536.009119142],[517089.0079275006,5277536.377943924],[517088.87677173625,5277537.566756242],[517084.07185824646,5277537.108094824],[517083.6209491524,5277537.217911613]]]},"properties":{"id_build":1091,"id_source":"w145199105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.3047489782,5277631.085358018],[517090.352082201,5277628.505787879],[517092.73306788615,5277620.688525489],[517094.4467520017,5277615.069875689],[517100.59908714844,5277616.977323107],[517103.3750319928,5277617.874597277],[517099.13015157694,5277631.310062161],[517098.3047489782,5277631.085358018]]]},"properties":{"id_build":1092,"id_source":"w145199118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516395.1962089976,5276716.9384642085],[516390.7871916845,5276711.658030072],[516388.68373153027,5276709.140352355],[516387.7805611541,5276709.804648988],[516385.6096270558,5276707.242326631],[516394.3421613572,5276700.1539621595],[516403.1000502829,5276710.736897519],[516395.1962089976,5276716.9384642085]]]},"properties":{"id_build":1093,"id_source":"w145199120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.3900979841,5277269.19752716],[516448.81370690383,5277268.12066759],[516450.2239341949,5277268.713692828],[516449.8078351132,5277269.790573517],[516449.4899321151,5277270.66767997],[516448.0120205106,5277270.107805649],[516448.3900979841,5277269.19752716]]]},"properties":{"id_build":1094,"id_source":"w145199125","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516397.5495825426,5276814.748052596],[516393.843453552,5276813.270573248],[516387.7215832955,5276810.830495691],[516391.2024476307,5276801.615694405],[516404.1824317789,5276806.431253263],[516400.0972550886,5276816.866882117],[516397.1709207943,5276815.858383732],[516397.5495825426,5276814.748052596]]]},"properties":{"id_build":1095,"id_source":"w145199128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517064.16151769436,5277161.085653414],[517073.32461489085,5277160.890234871],[517074.9020831122,5277160.783720737],[517075.4215547496,5277214.132382513],[517056.4199420832,5277214.410108076],[517055.974747306,5277161.283946206],[517064.16151769436,5277161.085653414]]]},"properties":{"id_build":1096,"id_source":"w145199129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517052.2106550375,5277497.693381194],[517051.7847276643,5277502.093274695],[517051.43624209,5277505.693187603],[517041.0753803781,5277504.7737325495],[517041.47429078986,5277496.772825716],[517044.7776126296,5277497.115915505],[517051.30980850407,5277497.579602831],[517052.2106550375,5277497.693381194]]]},"properties":{"id_build":1097,"id_source":"w145199142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.62179970986,5277685.440208232],[517138.62212689593,5277685.32906923],[517128.2596361006,5277685.076291969],[517128.521218064,5277672.740525662],[517140.6112524874,5277672.887249405],[517140.4240857207,5277685.445514334],[517138.62179970986,5277685.440208232]]]},"properties":{"id_build":1098,"id_source":"w145199160","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.1399599993,5277584.007911696],[517039.9611442825,5277577.567125485],[517048.36480787414,5277580.036806809],[517046.4540198661,5277586.299504196],[517045.104416194,5277590.696694272],[517034.52556964697,5277587.331533109],[517035.73914669896,5277583.222906441],[517038.1399599993,5277584.007911696]]]},"properties":{"id_build":1099,"id_source":"w145199169","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516513.09519844904,5277280.528004139],[516517.1458937331,5277282.206591331],[516518.9464122128,5277282.878538367],[516518.2657788424,5277284.543704842],[516516.60158964456,5277288.76229739],[516510.9002664704,5277286.523330353],[516513.09519844904,5277280.528004139]]]},"properties":{"id_build":1100,"id_source":"w145199220","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.92417471454,5277529.437573266],[517038.9303636166,5277519.215644675],[517043.50967772846,5277519.784748219],[517043.3555787487,5277521.117976226],[517050.0366405903,5277522.026657791],[517048.9592409092,5277530.91469692],[517043.5618315636,5277530.187598127],[517037.92417471454,5277529.437573266]]]},"properties":{"id_build":1101,"id_source":"w145199224","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516865.7419256131,5277627.183916397],[516859.8847599863,5277627.055811127],[516859.8186760143,5277623.943701801],[516857.5661167781,5277623.826038912],[516857.67403805,5277612.490079046],[516862.9005392137,5277612.571899287],[516865.93429616815,5277612.625143362],[516865.7419256131,5277627.183916397]]]},"properties":{"id_build":1102,"id_source":"w145199243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.6725980245,5277648.964976726],[517059.2697021393,5277651.531735],[517059.8917261743,5277651.967003548],[517060.5437232487,5277652.424587992],[517058.130892278,5277655.751716249],[517053.2597684313,5277652.292106977],[517055.6725980245,5277648.964976726]]]},"properties":{"id_build":1103,"id_source":"w145199261","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.87093862,5276861.754107158],[517313.56727119745,5276861.410864172],[517314.11052624724,5276855.522067973],[517316.7151083504,5276863.643021023],[517316.87093862,5276861.754107158]]]},"properties":{"id_build":1104,"id_source":"w145199267","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.55961742136,5276833.147087084],[516456.90853687277,5276832.69786177],[516454.63556519826,5276839.6932427175],[516445.2554584294,5276836.777111489],[516446.8247209985,5276831.624659187],[516448.439426805,5276826.338968002],[516459.54510831233,5276829.926819849],[516458.55961742136,5276833.147087084]]]},"properties":{"id_build":1105,"id_source":"w145199282","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.0974204299,5277687.200262669],[516668.8131746561,5277688.521673278],[516667.9206237235,5277685.518339965],[516661.68199376215,5277687.50100008],[516658.9995562189,5277680.158089009],[516664.00580257195,5277678.460862074],[516669.748686388,5277676.521240855],[516673.0974204299,5277687.200262669]]]},"properties":{"id_build":1106,"id_source":"w145199295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517099.34014271223,5277713.220828837],[517117.1363247266,5277713.717687192],[517117.0416231547,5277720.385806872],[517117.0324733625,5277723.497699123],[517116.9485556233,5277726.498231579],[517099.0015703528,5277726.223210577],[517099.34014271223,5277713.220828837]]]},"properties":{"id_build":1107,"id_source":"w145199323","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.18774175027,5277764.645070088],[517274.54622188455,5277761.083719093],[517272.9778157622,5277758.18942548],[517280.5738883456,5277754.322068908],[517284.0094209218,5277760.667247523],[517279.0456109926,5277763.208732012],[517276.18774175027,5277764.645070088]]]},"properties":{"id_build":1108,"id_source":"w145199334","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516418.09365731716,5276827.253589403],[516410.53133633314,5276824.253727934],[516407.36535613413,5276823.000041615],[516406.7610608908,5276824.220876153],[516403.6100385303,5276822.989461969],[516407.8454302954,5276812.554258718],[516421.80019286467,5276817.928302491],[516418.09365731716,5276827.253589403]]]},"properties":{"id_build":1109,"id_source":"w145199366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.831487615,5277293.82924783],[516772.5136142775,5277273.823157702],[516787.90986760077,5277273.645250027],[516788.09394418047,5277313.989550406],[516779.63017070084,5277313.965152176],[516775.627339054,5277313.953617635],[516775.6105185767,5277293.726114336],[516772.831487615,5277293.82924783]]]},"properties":{"id_build":1110,"id_source":"w145199382","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.490244011,5276754.180993914],[516363.2393288448,5276756.42543583],[516368.26310862147,5276759.429213085],[516363.05635523173,5276768.083478931],[516351.4353575471,5276760.71561473],[516357.3205629337,5276751.174126531],[516360.2450632124,5276752.849437776],[516359.490244011,5276754.180993914]]]},"properties":{"id_build":1111,"id_source":"w145199406","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.15998487856,5276835.544942617],[516486.6031866017,5276823.001559063],[516495.75482801854,5276827.028507132],[516492.8374993587,5276833.45523536],[516491.37127959623,5276836.685249599],[516492.4966131985,5276837.132995665],[516491.136518817,5276840.018777314],[516481.15998487856,5276835.544942617]]]},"properties":{"id_build":1112,"id_source":"w145199410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517162.3005867164,5277626.494645106],[517163.2807666829,5277625.163855217],[517162.38125250686,5277624.605503624],[517163.4424266258,5277621.274433316],[517166.58990766184,5277623.50651254],[517163.64936600055,5277627.498881018],[517162.3005867164,5277626.494645106]]]},"properties":{"id_build":1113,"id_source":"w145199417","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.30045372434,5277496.507053572],[516566.74324686517,5277495.769366962],[516570.83964489703,5277494.525144275],[516573.146792844,5277501.866943221],[516562.6236435509,5277505.171193343],[516560.01830594044,5277497.050571295],[516564.07737411035,5277495.728439768],[516564.30045372434,5277496.507053572]]]},"properties":{"id_build":1114,"id_source":"w145199423","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.1088877172,5277599.814312529],[516736.50042925775,5277601.13761677],[516736.05336572556,5277599.913792564],[516732.8286022651,5277600.993694298],[516727.7847848193,5277602.668526363],[516725.10398694786,5277594.769890758],[516737.1305950232,5277590.914556757],[516740.1088877172,5277599.814312529]]]},"properties":{"id_build":1115,"id_source":"w145199470","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516519.2186466431,5276842.765726808],[516527.6239056912,5276845.12351173],[516524.3618608239,5276856.561649183],[516514.45607390796,5276853.643914397],[516515.2150135666,5276850.867572869],[516516.8663997754,5276851.20567589],[516517.5720731299,5276848.673691057],[516519.2186466431,5276842.765726808]]]},"properties":{"id_build":1116,"id_source":"w145199501","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516365.9803641554,5276796.654606386],[516371.41022994556,5276788.778948236],[516383.25427762134,5276796.925458705],[516377.14500580257,5276806.021732263],[516374.3710628611,5276804.235695841],[516375.1255665534,5276803.015280389],[516371.85729261715,5276800.738840313],[516365.9803641554,5276796.654606386]]]},"properties":{"id_build":1117,"id_source":"w145199508","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517131.56845467334,5277606.9546376085],[517136.6943018657,5277600.412466364],[517140.28294216463,5277603.301555473],[517143.8865327003,5277606.212918843],[517138.9869525679,5277612.422330082],[517136.06539792626,5277609.9686509995],[517135.83912787656,5277610.301404848],[517131.56845467334,5277606.9546376085]]]},"properties":{"id_build":1118,"id_source":"w145199530","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516457.12561083207,5276782.463311396],[516467.1905608224,5276782.269484921],[516467.3725103388,5276797.60728369],[516455.73097471934,5276797.574374829],[516455.66623202333,5276793.90658043],[516457.2437874173,5276793.799898814],[516457.20280259114,5276789.698726571],[516457.12561083207,5276782.463311396]]]},"properties":{"id_build":1119,"id_source":"w145199542","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.7177350956,5277094.376954088],[517018.4107492735,5277165.619627101],[516968.4656840355,5277166.251840211],[516967.54836966057,5277094.452823486],[516979.03943255765,5277094.37518008],[516979.11323910276,5277094.819954682],[517017.7177350956,5277094.376954088]]]},"properties":{"id_build":1120,"id_source":"w145199594","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.38961499673,5277504.140748549],[517070.2318445564,5277503.636607871],[517070.8278235259,5277497.592343345],[517071.268785145,5277493.192495276],[517080.06025114213,5277494.06294363],[517079.02329491527,5277504.507054715],[517076.14787244523,5277504.220770451],[517075.38961499673,5277504.140748549]]]},"properties":{"id_build":1121,"id_source":"w145199628","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516460.22508897324,5277758.279730824],[516453.60746421723,5277764.218122583],[516455.34710162744,5277757.154541378],[516455.8023798273,5277755.488729661],[516460.6049599237,5277756.724846171],[516460.22508897324,5277758.279730824]]]},"properties":{"id_build":1122,"id_source":"w145199669","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516641.99311113067,5277560.967472024],[516642.9700054819,5277560.747984792],[516641.80945500743,5277556.910340945],[516640.21747027885,5277551.626645617],[516649.2367335291,5277548.985074123],[516653.7747313046,5277564.001939129],[516644.0026150976,5277567.308190554],[516641.99311113067,5277560.967472024]]]},"properties":{"id_build":1123,"id_source":"w145199672","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516950.0416367462,5277097.069191187],[516951.0485045119,5277163.978311386],[516933.39889491827,5277164.149235542],[516932.4627257536,5277098.685142985],[516946.50792204705,5277098.3925837],[516946.51148009725,5277097.170055785],[516950.0416367462,5277097.069191187]]]},"properties":{"id_build":1124,"id_source":"w145199681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.70864058106,5276833.494238675],[517231.7178490799,5276830.382350814],[517237.05105308595,5276830.175855278],[517237.46319948876,5276843.180434991],[517222.5306241548,5276843.636380942],[517217.5581066838,5276843.788386236],[517217.21149281523,5276834.007056805],[517231.70864058106,5276833.494238675]]]},"properties":{"id_build":1125,"id_source":"w145199683","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516350.14115640917,5276740.151132215],[516350.2065905175,5276743.596647285],[516338.86475332006,5276743.7870935155],[516338.52819376724,5276729.8936843565],[516348.29279937886,5276729.6988093],[516348.538234479,5276735.912208629],[516348.71380343806,5276740.25826458],[516350.14115640917,5276740.151132215]]]},"properties":{"id_build":1126,"id_source":"w145199695","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516788.67202937545,5277738.545643171],[516788.4225539184,5277731.309713717],[516790.3452653897,5277731.215232858],[516790.3401367104,5277732.993457078],[516794.2453778874,5277732.893581789],[516794.30476219987,5277738.339610129],[516788.67202937545,5277738.545643171]]]},"properties":{"id_build":1127,"id_source":"w145199712","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.9778157622,5277758.18942548],[517274.54622188455,5277761.083719093],[517276.18774175027,5277764.645070088],[517262.9029833845,5277762.271720974],[517272.52955811756,5277757.4101155335],[517272.9778157622,5277758.18942548]]]},"properties":{"id_build":1128,"id_source":"w145199726","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516619.6293858116,5277581.9090275755],[516618.2012820208,5277582.349510522],[516619.3169435474,5277586.131451677],[516611.12444702716,5277588.553148422],[516607.70329802216,5277576.873699197],[516617.2488183643,5277574.011299784],[516618.51346985856,5277578.215997581],[516619.6293858116,5277581.9090275755]]]},"properties":{"id_build":1129,"id_source":"w145199732","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.22431139875,5276770.278760565],[516430.2407983634,5276781.164857856],[516415.60247340694,5276778.456221229],[516417.2820850899,5276768.791799414],[516423.61041238345,5276769.943269086],[516428.4673920661,5276770.823859214],[516428.69647565734,5276769.490828693],[516432.22431139875,5276770.278760565]]]},"properties":{"id_build":1130,"id_source":"w145199742","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.598562462,5277470.247614064],[517047.87725226104,5277456.736744185],[517056.39114128397,5277457.528545718],[517055.88744014315,5277462.83955815],[517055.45341181435,5277467.43947929],[517054.9053587609,5277467.382303861],[517054.56431404693,5277471.004466187],[517046.598562462,5277470.247614064]]]},"properties":{"id_build":1131,"id_source":"w145199744","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.0659374689,5277257.856784983],[517129.59687434736,5277256.080108739],[517128.17126713664,5277255.631355234],[517128.6261222664,5277254.187874764],[517131.8525141051,5277255.19762614],[517130.7916201125,5277258.417561478],[517129.0659374689,5277257.856784983]]]},"properties":{"id_build":1132,"id_source":"w145199748","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.2027961482,5277444.580528358],[516360.1177173648,5277439.692946041],[516367.40757327614,5277437.824057725],[516367.0220833439,5277441.379449074],[516363.1138442752,5277442.479862051],[516362.50524873263,5277445.256647749],[516359.2027961482,5277444.580528358]]]},"properties":{"id_build":1133,"id_source":"w145199760","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516913.20762452687,5277651.438984495],[516913.17921107804,5277661.219216443],[516909.87468380295,5277661.320757027],[516909.80217077397,5277660.4314269],[516906.14469396824,5277660.53194443],[516898.912345889,5277660.733226169],[516898.7876405495,5277651.95280924],[516913.20762452687,5277651.438984495]]]},"properties":{"id_build":1134,"id_source":"w145199775","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.8210088191,5276856.949693304],[516426.7266689885,5276855.396291547],[516429.87704178755,5276856.849996086],[516425.6454039727,5276865.951517664],[516415.1437504848,5276861.254035217],[516418.6199284128,5276853.706332515],[516422.68553088605,5276855.540488871],[516425.8210088191,5276856.949693304]]]},"properties":{"id_build":1135,"id_source":"w145199782","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.5290364502,5277691.441493311],[517149.19156885636,5277691.806312729],[517149.1109080966,5277693.695454577],[517138.29786166846,5277693.441332153],[517136.19519754517,5277693.435142516],[517136.20108608407,5277691.434640453],[517138.5290364502,5277691.441493311]]]},"properties":{"id_build":1136,"id_source":"w145199789","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.23588252475,5277562.306815518],[517216.8850483616,5277553.970281655],[517218.76280078327,5277553.864695014],[517218.76970354444,5277551.530776469],[517225.0037393766,5277551.215797633],[517225.205769867,5277556.539999043],[517225.4220958865,5277562.108750697],[517217.23588252475,5277562.306815518]]]},"properties":{"id_build":1137,"id_source":"w145199793","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.2633734079,5277650.927055184],[517305.22921247734,5277645.144702261],[517310.78927409067,5277644.160972535],[517314.2198818245,5277652.173252719],[517308.81034903164,5277653.04628671],[517308.36704430747,5277650.599889224],[517306.2633734079,5277650.927055184]]]},"properties":{"id_build":1138,"id_source":"w145199826","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517181.52299790696,5277092.85748257],[517182.0444556251,5277145.205900331],[517162.89175147435,5277145.705113536],[517162.00294401177,5277039.56392373],[517180.85591068736,5277038.952681544],[517181.4613406588,5277088.300566147],[517181.52299790696,5277092.85748257]]]},"properties":{"id_build":1139,"id_source":"w145199836","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.90735496255,5277480.068134649],[516837.22177445004,5277491.621809321],[516832.71815926937,5277490.830807341],[516833.17613649525,5277488.27591377],[516830.29360244784,5277487.845248609],[516826.3451289783,5277487.255908231],[516827.64781108726,5277478.257341519],[516838.90735496255,5277480.068134649]]]},"properties":{"id_build":1140,"id_source":"w145199853","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516347.70144341077,5276779.821164273],[516355.6054611241,5276773.508393969],[516364.2866403355,5276784.646755586],[516355.8537592765,5276792.069426052],[516353.53325280425,5276789.284415678],[516354.7374584342,5276788.398679724],[516352.304789044,5276785.435531292],[516347.70144341077,5276779.821164273]]]},"properties":{"id_build":1141,"id_source":"w145199896","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.29454351787,5277515.163186],[516984.44402513717,5277507.275605005],[516990.5240071147,5277508.293604544],[516991.13678840635,5277504.183215878],[516994.96514305664,5277504.750089556],[516993.8779630814,5277511.870984921],[516993.1277669363,5277516.747837721],[516983.29454351787,5277515.163186]]]},"properties":{"id_build":1142,"id_source":"w145199899","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.86229650106,5277699.7561596595],[517293.07027974125,5277693.454462949],[517300.53983110504,5277706.924594038],[517292.0395733353,5277711.789498765],[517288.62542651204,5277705.822255464],[517285.988235351,5277701.213228996],[517283.43104415934,5277702.539316369],[517281.86229650106,5277699.7561596595]]]},"properties":{"id_build":1143,"id_source":"w145199900","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.0978999462,5277340.135488573],[516608.45780324604,5277338.703105773],[516611.2852740029,5277347.935779733],[516604.6707733305,5277349.92854328],[516598.8830691797,5277351.679163732],[516596.7260918505,5277344.337784533],[516604.54374372965,5277341.803857822],[516604.0978999462,5277340.135488573]]]},"properties":{"id_build":1144,"id_source":"w145199905","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516747.58180589415,5277299.31355737],[516747.3999494456,5277284.209127739],[516757.5385372797,5277284.227184975],[516757.64587497147,5277299.120234851],[516747.58180589415,5277299.31355737]]]},"properties":{"id_build":1145,"id_source":"w145199931","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.1107918204,5276719.106563762],[517264.788876457,5276718.429141201],[517264.9559898191,5276720.33012738],[517268.3217047266,5276720.040029338],[517274.5347934438,5276719.491643403],[517275.3633927734,5276728.807617557],[517258.1065014145,5276730.334635257],[517257.1107918204,5276719.106563762]]]},"properties":{"id_build":1146,"id_source":"w145199945","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517105.1140177535,5277537.192107653],[517099.4931554629,5277533.285698277],[517104.6213162743,5277525.965526657],[517114.4384807543,5277532.996193245],[517109.6129884832,5277539.539266256],[517106.83259978064,5277537.586146961],[517105.4911362543,5277536.637515979],[517105.1140177535,5277537.192107653]]]},"properties":{"id_build":1147,"id_source":"w145199966","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517294.1865497695,5276988.941818927],[517305.9746122551,5276990.088240136],[517305.6622053503,5276994.121688616],[517305.34999703453,5276998.088453809],[517301.22026099626,5276997.7427623775],[517301.06509950396,5276999.409399284],[517293.4812352975,5276998.831171728],[517294.1865497695,5276988.941818927]]]},"properties":{"id_build":1148,"id_source":"w145199990","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.4866465984,5276965.508386825],[517260.8639967018,5276955.500990055],[517264.6812251169,5276954.867695418],[517270.1064857473,5276953.972436591],[517271.30142522673,5276961.311210912],[517271.75228355284,5276961.2347503025],[517273.746307332,5276962.507659499],[517273.8956592887,5276962.797066166],[517271.50380653894,5276963.979167647],[517270.977744976,5276964.088747172],[517262.4866465984,5276965.508386825]]]},"properties":{"id_build":1149,"id_source":"w145200002","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516801.8644214753,5276731.99006071],[516802.6925284538,5276731.325611464],[516804.2640142084,5276733.330661753],[516803.4359073318,5276733.995110778],[516801.85512230464,5276735.213087047],[516800.2839568692,5276733.096898561],[516801.8644214753,5276731.99006071]]]},"properties":{"id_build":1150,"id_source":"w145200027","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.04269481613,5277044.820975417],[516722.8841005644,5277034.17406849],[516740.7961658343,5277047.340036239],[516729.5623222627,5277062.422764093],[516718.77042659174,5277054.38970123],[516721.93785431224,5277049.842064273],[516715.04269481613,5277044.820975417]]]},"properties":{"id_build":1151,"id_source":"w145200035","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516681.3854584009,5277598.978915342],[516674.09379117173,5277601.514244714],[516673.94550837734,5277600.8469806025],[516671.2920938017,5277601.71738694],[516668.23277813854,5277602.720000236],[516665.5534903734,5277594.265697289],[516678.25720111583,5277589.967620575],[516681.3854584009,5277598.978915342]]]},"properties":{"id_build":1152,"id_source":"w145200058","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517109.460130801,5277591.552309646],[517101.7431513346,5277585.416938798],[517107.7730823964,5277577.877138723],[517111.33164696494,5277580.788349344],[517115.4146423225,5277584.123435694],[517114.96242935996,5277584.677805995],[517110.2140351195,5277590.554265791],[517109.460130801,5277591.552309646]]]},"properties":{"id_build":1153,"id_source":"w145200093","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4484362991,5277181.676966661],[517304.3226958926,5277182.021899091],[517308.10683294863,5277182.366566201],[517307.4077922643,5277190.14428096],[517302.7525471536,5277189.77479758],[517302.2474771746,5277195.463659368],[517299.5797532132,5277196.000318094],[517300.0943450314,5277189.633531014],[517299.7490755641,5277189.565821217],[517300.4484362991,5277181.676966661]]]},"properties":{"id_build":1154,"id_source":"w145200110","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516392.9671682374,5276841.742107808],[516393.4963526662,5276840.521060376],[516396.4214234223,5276841.974112429],[516391.9645094298,5276851.075023747],[516381.4643654101,5276845.82190796],[516385.24280957284,5276837.608197567],[516389.35997577617,5276839.80923674],[516392.9671682374,5276841.742107808]]]},"properties":{"id_build":1155,"id_source":"w145200119","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516397.5427002329,5276763.846035065],[516401.9720165928,5276764.569803208],[516408.65354264394,5276765.655567564],[516406.89758495515,5276775.764335581],[516392.5590381258,5276773.278881102],[516394.468314754,5276762.059143272],[516397.69666987064,5276762.5127918655],[516397.5427002329,5276763.846035065]]]},"properties":{"id_build":1156,"id_source":"w145200135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.84511304816,5277434.358718482],[516638.5647813451,5277446.705873229],[516627.1399982051,5277450.118570387],[516624.83416661015,5277442.332194671],[516630.24664604285,5277440.458274535],[516628.9823531964,5277436.120208397],[516634.84511304816,5277434.358718482]]]},"properties":{"id_build":1157,"id_source":"w145200160","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516456.33729279035,5276875.373911835],[516456.7910677549,5276874.263796684],[516459.4911029859,5276875.605104937],[516454.4298165321,5276885.926798355],[516442.35477027786,5276879.891143606],[516446.73663578974,5276870.790058183],[516452.2420178158,5276873.417394235],[516456.33729279035,5276875.373911835]]]},"properties":{"id_build":1158,"id_source":"w145200167","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.67091734573,5276734.63150343],[516482.3431100308,5276735.967082732],[516479.259300415,5276737.514311505],[516474.2560263844,5276727.275299909],[516487.1176739292,5276720.86559488],[516491.5241622773,5276729.658110895],[516485.3188849595,5276732.785795686],[516481.67091734573,5276734.63150343]]]},"properties":{"id_build":1159,"id_source":"w145200169","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.42076373845,5277029.965005702],[517298.73537607916,5277025.186926093],[517296.7082345068,5277024.958624428],[517297.18295766466,5277016.846824441],[517305.0668832454,5277017.537088577],[517304.6818644773,5277023.259647444],[517304.20242831856,5277030.4267440755],[517298.42076373845,5277029.965005702]]]},"properties":{"id_build":1160,"id_source":"w145200180","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517122.9916130201,5276871.739061793],[517128.5497651029,5276871.644268381],[517128.57093036914,5276889.982401481],[517123.3132178237,5276890.078078239],[517123.2149694072,5276872.406557504],[517122.9896521962,5276872.405894954],[517122.9916130201,5276871.739061793]]]},"properties":{"id_build":1161,"id_source":"w145200185","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.34846033546,5277541.741286523],[516641.5601508885,5277539.038333818],[516640.04300398444,5277533.8437645435],[516647.70990899106,5277531.420605295],[516650.982082621,5277542.655091828],[516642.33861169324,5277545.186594972],[516641.3712451459,5277542.071912837],[516642.34846033546,5277541.741286523]]]},"properties":{"id_build":1162,"id_source":"w145200205","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.46799227374,5277355.730324723],[516578.74563293066,5277355.400543079],[516577.9271333248,5277352.730856059],[516582.5120027685,5277351.410234294],[516585.41175835335,5277361.643360244],[516579.774555322,5277363.294402484],[516577.59509083617,5277363.843895788],[516577.8175409433,5277364.8447878435],[516573.60849626164,5277366.055343231],[516571.15425800206,5277357.601728796],[516577.46799227374,5277355.730324723]]]},"properties":{"id_build":1163,"id_source":"w145200216","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516500.3904779438,5276807.9256037725],[516500.31318270427,5276811.348488988],[516500.2185358954,5276815.593759188],[516490.30479916185,5276815.454537258],[516490.26210903283,5276804.007022462],[516501.9784236097,5276804.151352078],[516501.96771547856,5276807.930073134],[516500.3904779438,5276807.9256037725]]]},"properties":{"id_build":1164,"id_source":"w145200225","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517284.9577295636,5277529.78788214],[517286.63751346356,5277528.070200271],[517287.5810001403,5277528.995463378],[517286.64662598795,5277530.05963249],[517284.9577295636,5277529.78788214]]]},"properties":{"id_build":1165,"id_source":"w145200236","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516551.8112818837,5276711.935654492],[516552.1899797671,5276710.825333514],[516555.1176043432,5276711.389354221],[516552.7620947842,5276720.940675693],[516541.57894383674,5276718.130405562],[516543.47936895303,5276710.133743138],[516548.9514122019,5276711.316258123],[516551.8112818837,5276711.935654492]]]},"properties":{"id_build":1166,"id_source":"w145200238","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.49243007647,5276796.93894674],[516426.27956246206,5276800.892100055],[516424.3845306017,5276807.043896418],[516414.70455638994,5276803.904689663],[516418.8723955338,5276790.801950476],[516429.678363154,5276794.166620211],[516428.69319645804,5276797.275753438],[516427.49243007647,5276796.93894674]]]},"properties":{"id_build":1167,"id_source":"w145200256","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.9829675512,5276832.693366587],[516569.28434117517,5276832.360804827],[516572.88216558855,5276834.927257573],[516571.9622642731,5276836.191632864],[516570.6955466802,5276837.921808367],[516567.09803936305,5276835.244218099],[516567.3243065448,5276834.911442556],[516568.3571825939,5276833.536248221],[516568.9829675512,5276832.693366587]]]},"properties":{"id_build":1168,"id_source":"w145200263","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516341.3364873339,5277468.758840528],[516343.8534089882,5277454.984564574],[516344.76925176714,5277449.763562897],[516345.249631054,5277449.853823395],[516361.2824375294,5277452.81072081],[516358.4610219769,5277468.0289518805],[516357.77452290576,5277471.80577792],[516341.3364873339,5277468.758840528]]]},"properties":{"id_build":1169,"id_source":"w145200300","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.981562874,5277620.111761936],[516802.687914643,5277617.776976093],[516802.5377224186,5277617.776542613],[516802.31628319185,5277616.442224479],[516804.3445202981,5277616.225798711],[516804.85992736695,5277619.783763868],[516802.981562874,5277620.111761936]]]},"properties":{"id_build":1170,"id_source":"w145200305","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.3915035117,5277180.120457434],[516339.0814534799,5277175.1211026665],[516337.4366978809,5277172.449132373],[516338.8661278391,5277171.564024977],[516340.51088303636,5277174.235995669],[516339.8938502769,5277180.013533476],[516338.3915035117,5277180.120457434]]]},"properties":{"id_build":1171,"id_source":"w145200339","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.76254435617,5277011.32254798],[517277.5950251812,5277012.009656357],[517276.73557668366,5277023.232232397],[517268.92675947386,5277022.542229338],[517269.17438073107,5277017.552783905],[517269.32601056475,5277014.541343354],[517270.527673101,5277014.544907327],[517270.76254435617,5277011.32254798]]]},"properties":{"id_build":1172,"id_source":"w145200374","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.4951723747,5276888.528430904],[516470.8729004365,5276887.751520998],[516473.7982426821,5276889.0934732575],[516469.1168697577,5276897.860272361],[516458.6171934405,5276892.495877841],[516462.69551077625,5276884.505343788],[516467.29281865904,5276886.874505619],[516470.4951723747,5276888.528430904]]]},"properties":{"id_build":1173,"id_source":"w145200376","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516644.518551423,5277596.984018195],[516642.4890430296,5277597.645055609],[516641.1493802703,5277593.417909969],[516651.7475122412,5277590.114016386],[516654.87040537194,5277601.014659677],[516646.60281840246,5277603.436091712],[516645.0321725196,5277598.574787229],[516644.518551423,5277596.984018195]]]},"properties":{"id_build":1174,"id_source":"w145200378","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.02691785205,5277104.379283665],[517277.35030776873,5277112.201523419],[517272.5899866835,5277111.787296812],[517269.3538533827,5277111.510962284],[517269.47826979397,5277110.07762686],[517266.48239806405,5277109.8242345005],[517267.04208807147,5277103.435351275],[517278.02691785205,5277104.379283665]]]},"properties":{"id_build":1175,"id_source":"w145200385","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.1345113902,5277729.1099529425],[516442.5891601256,5277727.666418305],[516450.99191315996,5277730.468654869],[516455.79325831763,5277732.149323381],[516452.8479544415,5277740.676543404],[516450.03895960626,5277748.804046494],[516445.2376265866,5277747.123382658],[516450.3867592378,5277732.022903478],[516442.1345113902,5277729.1099529425]]]},"properties":{"id_build":1176,"id_source":"w145200432","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.9303636166,5277519.215644675],[517037.92417471454,5277529.437573266],[517033.6227600857,5277528.858173137],[517029.5165325102,5277528.301575106],[517030.5935778348,5277519.524671458],[517032.77042661887,5277519.86445943],[517033.00124637067,5277517.975755988],[517038.9319899492,5277518.659949805],[517038.9303636166,5277519.215644675]]]},"properties":{"id_build":1177,"id_source":"w145200500","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517123.3132178237,5276890.078078239],[517123.16300680576,5276890.077636533],[517123.21915728773,5276896.523911494],[517120.59046737954,5276896.516182256],[517120.4357303834,5276872.5095255235],[517122.9896521962,5276872.405894954],[517123.2149694072,5276872.406557504],[517123.3132178237,5276890.078078239]]]},"properties":{"id_build":1178,"id_source":"w145200516","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.7868080399,5277631.586477376],[516656.5225783435,5277627.248403805],[516659.75456809474,5277626.257392514],[516659.8303001757,5277626.035329417],[516663.23513924645,5277625.000358727],[516669.60137252643,5277623.062521453],[516672.0582175055,5277630.51593054],[516658.67905466666,5277634.700947849],[516657.7868080399,5277631.586477376]]]},"properties":{"id_build":1179,"id_source":"w145200521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.55420472875,5277528.325899135],[517078.86837478017,5277536.837206027],[517073.77884034085,5277536.122096326],[517068.0205813332,5277535.527284486],[517068.72056784085,5277527.304981742],[517072.39935723913,5277527.649188128],[517072.5524849865,5277526.649377785],[517079.8349664755,5277527.337577407],[517079.55420472875,5277528.325899135]]]},"properties":{"id_build":1180,"id_source":"w145200548","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516857.9045713346,5277558.810165494],[516867.59142422176,5277559.060502693],[516867.3503558271,5277564.505660151],[516866.3740974016,5277564.502831784],[516866.2927220764,5277566.669824413],[516866.1294886282,5277571.170518171],[516857.1185263136,5277570.9221402835],[516857.6041838348,5277558.809295698],[516857.9045713346,5277558.810165494]]]},"properties":{"id_build":1181,"id_source":"w145200569","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.9901639523,5277484.975816006],[516417.83034318127,5277479.97689162],[516419.7347461199,5277470.424234589],[516426.4153325825,5277471.554478014],[516424.6608012175,5277481.21869559],[516424.2853119041,5277481.217636301],[516423.75210240134,5277483.883488706],[516416.9901639523,5277484.975816006]]]},"properties":{"id_build":1182,"id_source":"w145200654","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.9460208584,5277644.955494274],[517279.2427754291,5277646.178914755],[517275.0344447083,5277647.166685456],[517274.81245528755,5277646.054627018],[517274.5868382216,5277646.165097523],[517274.21564643545,5277644.719176468],[517278.6492661594,5277643.732073812],[517278.9460208584,5277644.955494274]]]},"properties":{"id_build":1183,"id_source":"w145200659","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.5062260521,5277719.369093528],[517235.8613374076,5277714.067982164],[517238.4004123977,5277718.854519274],[517237.14445315435,5277719.484298269],[517236.21937200613,5277719.959461192],[517237.26411785255,5277722.185354144],[517229.7444430467,5277725.608433282],[517227.78967767867,5277726.3806281],[517224.5062260521,5277719.369093528]]]},"properties":{"id_build":1184,"id_source":"w145200681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516508.9171726998,5276714.481249308],[516513.92480942386,5276723.164346831],[516508.2371254031,5276726.515754539],[516505.27294047805,5276728.252246232],[516506.1695061396,5276729.921883446],[516501.27932699374,5276732.797657613],[516495.22458035854,5276722.5556485355],[516495.29968800966,5276722.555861284],[516508.9171726998,5276714.481249308]]]},"properties":{"id_build":1185,"id_source":"w145200693","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.25540374493,5277004.144429533],[517286.7870710367,5277002.1454904],[517287.5374518078,5277002.369997866],[517287.6889797832,5277001.9258882925],[517291.2178810668,5277002.269785926],[517290.7484455252,5277008.603364075],[517285.94311015646,5277008.144537463],[517286.0667738064,5277006.966822038],[517286.25540374493,5277004.144429533]]]},"properties":{"id_build":1186,"id_source":"w145200729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.45600202936,5277477.323498359],[517071.5730002417,5277476.522398783],[517071.6494017313,5277476.078063125],[517072.02521736885,5277475.9680251945],[517072.3737824864,5277472.34588586],[517072.72192434024,5277468.868227221],[517080.75516502064,5277469.658655066],[517079.98136151535,5277477.436179493],[517079.45600202936,5277477.323498359]]]},"properties":{"id_build":1187,"id_source":"w145200754","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516401.9434454574,5277755.792408608],[516403.9194034861,5277752.786084737],[516411.86436620064,5277758.143192904],[516395.4794126012,5277763.209459601],[516399.41592445935,5277757.330132625],[516400.457825312,5277758.011021201],[516401.9434454574,5277755.792408608]]]},"properties":{"id_build":1188,"id_source":"w145200755","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.5085806403,5277712.053446559],[516588.9201583838,5277711.743989875],[516597.3317370849,5277711.434545348],[516600.9369260533,5277711.222544974],[516566.1638753689,5277712.568308689],[516580.5085806403,5277712.053446559]]]},"properties":{"id_build":1189,"id_source":"w145200776","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.2668703974,5276888.092453275],[517315.4063396285,5276899.648438233],[517315.7179976846,5276895.870610231],[517316.2668703974,5276888.092453275]]]},"properties":{"id_build":1190,"id_source":"w145200777","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.71210992924,5277468.034676799],[516643.532508123,5277469.059187256],[516639.36513459135,5277455.710490349],[516648.1589331835,5277453.179412319],[516649.997045989,5277459.063968099],[516651.3589138218,5277463.413432122],[516649.63006839337,5277463.964187192],[516650.53042772604,5277466.878626851],[516646.71210992924,5277468.034676799]]]},"properties":{"id_build":1191,"id_source":"w145200845","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.2671110201,5277560.869379301],[517240.1430519982,5277561.485485001],[517239.85977809585,5277555.705368568],[517243.9755834802,5277555.550847855],[517250.67505285447,5277555.292845093],[517250.9688542258,5277557.516514738],[517256.75197470345,5277557.311373778],[517256.97331223043,5277558.645709315],[517257.2671110201,5277560.869379301]]]},"properties":{"id_build":1192,"id_source":"w145200857","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.492125547,5277619.992168546],[517232.837453986,5277619.367774168],[517233.33713662665,5277628.149310471],[517228.8085193742,5277628.247046778],[517224.5502478552,5277628.345586466],[517224.33318030497,5277625.566445139],[517217.50535833044,5277623.545728966],[517217.7329473166,5277622.768422309],[517218.492125547,5277619.992168546]]]},"properties":{"id_build":1193,"id_source":"w145200865","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516664.68856172246,5277529.135242425],[516668.44660626666,5277528.0346017275],[516669.41427895945,5277531.038149338],[516670.2413031506,5277530.707097665],[516671.3491131231,5277534.600166014],[516672.99221013376,5277540.384145729],[516665.77588865324,5277542.808561535],[516661.98251607874,5277530.01661641],[516664.68856172246,5277529.135242425]]]},"properties":{"id_build":1194,"id_source":"w145200889","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516484.35889001976,5276793.3208933715],[516482.2942785682,5276779.756000815],[516491.98716199544,5276778.3386269305],[516493.08667636843,5276785.254632877],[516493.61055439146,5276788.568080999],[516494.8125779785,5276788.460345926],[516495.25408913556,5276791.684649112],[516488.5667554266,5276792.665967896],[516484.35889001976,5276793.3208933715]]]},"properties":{"id_build":1195,"id_source":"w145200957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.78731155,5276851.45582257],[516409.31618525565,5276850.345915415],[516412.01655567606,5276851.5760626905],[516407.70952305757,5276860.788524361],[516397.1346176939,5276855.42402968],[516398.71353328717,5276852.160967351],[516400.987557888,5276847.432818555],[516405.3449252073,5276849.679001557],[516408.78731155,5276851.45582257]]]},"properties":{"id_build":1196,"id_source":"w145201000","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516368.09814424283,5277753.1298174225],[516368.6976490901,5277753.576062651],[516366.398272881,5277756.770426963],[516365.88105948985,5277756.435553215],[516359.01516287745,5277751.881747486],[516367.3096024634,5277739.790812505],[516374.0556059052,5277744.255378751],[516370.4283106359,5277749.668804612],[516368.09814424283,5277753.1298174225]]]},"properties":{"id_build":1197,"id_source":"w145201057","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.48412443255,5276794.022096487],[517150.3646787903,5276783.574602619],[517154.9461986888,5276783.588097552],[517154.95864006644,5276779.364821479],[517158.4886661526,5276779.375221673],[517158.5516565704,5276783.487580205],[517158.5956533039,5276794.045991817],[517150.48412443255,5276794.022096487]]]},"properties":{"id_build":1198,"id_source":"w145201095","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.455862022,5277058.910266782],[517269.7972994655,5277058.220708096],[517270.34958614176,5277051.798461746],[517270.80858518643,5277046.442881533],[517278.54259641527,5277047.021525471],[517278.23327824735,5277050.021384053],[517281.23675660224,5277050.252576871],[517280.53443915286,5277059.141682099],[517277.455862022,5277058.910266782]]]},"properties":{"id_build":1199,"id_source":"w145201105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.9204221601,5277468.4681339385],[517263.27465006785,5277484.978604249],[517256.60444840905,5277480.402092193],[517235.66463721916,5277476.116746245],[517240.8042155304,5277467.551960543],[517242.45702595805,5277464.80058477],[517238.55850619066,5277462.566241595],[517249.2682095879,5277447.149510635],[517279.9204221601,5277468.4681339385]]]},"properties":{"id_build":1200,"id_source":"w145201128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"commercial","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5286628186,5276838.588707022],[516525.8491155407,5276835.3381762365],[516524.57357171696,5276834.889997462],[516525.63420512737,5276831.669954447],[516527.2101745297,5276832.118986097],[516528.3153058483,5276829.099121425],[516530.9190906311,5276822.015796167],[516540.2231256916,5276825.265268602],[516535.5286628186,5276838.588707022]]]},"properties":{"id_build":1201,"id_source":"w145201139","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516725.1170121146,5277564.09531439],[516721.4027114315,5277549.969877733],[516730.7230415868,5277547.10701719],[516732.382277303,5277552.479842853],[516733.84804692055,5277557.229729516],[516730.9163936324,5277558.221562932],[516732.1824998774,5277561.892818373],[516730.3782596405,5277562.554472655],[516725.1170121146,5277564.09531439]]]},"properties":{"id_build":1202,"id_source":"w145201165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517077.3087685207,5277390.072366343],[517077.579499518,5277400.186892098],[517074.42501860595,5277400.288780164],[517074.13928956015,5277395.286646349],[517074.815506419,5277395.17748955],[517074.67150121304,5277393.065408976],[517077.00804630754,5277390.1826241985],[517077.3087685207,5277390.072366343]]]},"properties":{"id_build":1203,"id_source":"w145201170","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.1820750364,5277754.718339794],[517191.95969335176,5277749.936408649],[517194.1938786001,5277746.086449609],[517194.91846210894,5277744.843821944],[517198.06730860664,5277746.586907161],[517201.5910343205,5277748.531153749],[517195.9297337866,5277758.405886916],[517195.02991513617,5277757.95866912],[517189.1820750364,5277754.718339794]]]},"properties":{"id_build":1204,"id_source":"w145201177","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516668.44660626666,5277528.0346017275],[516664.68856172246,5277529.135242425],[516660.5231889904,5277515.119695037],[516668.3403221837,5277512.696992754],[516669.9391656585,5277518.202994938],[516671.3149418472,5277522.930379633],[516670.3380400687,5277523.149862114],[516671.5284584642,5277527.043166983],[516668.44660626666,5277528.0346017275]]]},"properties":{"id_build":1205,"id_source":"w145201273","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.9053024706,5277139.403584457],[517287.61059075966,5277129.514228742],[517295.04408035695,5277130.092003033],[517294.82849551894,5277134.403590207],[517294.64480050263,5277138.092888778],[517290.2147539523,5277137.746312558],[517290.0589389628,5277139.635227917],[517286.9804047673,5277139.4038074305],[517286.9053024706,5277139.403584457]]]},"properties":{"id_build":1206,"id_source":"w145201286","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516898.84017796227,5277530.365884282],[516904.90584079665,5277531.139245124],[516907.7735222713,5277531.5032203095],[516907.6977795179,5277531.725280173],[516913.1028425986,5277532.407819203],[516912.8015367986,5277535.307695702],[516912.08241886954,5277539.851229287],[516897.84165613924,5277538.031640144],[516898.84017796227,5277530.365884282]]]},"properties":{"id_build":1207,"id_source":"w145201315","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516617.8382586354,5277551.673864068],[516621.0366504774,5277562.463563724],[516612.09188362164,5277565.327671136],[516607.40136638616,5277551.088383287],[516613.56470921607,5277549.216589817],[516614.68133178604,5277552.665112908],[516616.8536002688,5277551.982245266],[516617.8382586354,5277551.673864068]]]},"properties":{"id_build":1208,"id_source":"w145201316","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.21450936917,5277357.143414981],[516523.9059121814,5277363.913554696],[516540.6525228846,5277372.085429715],[516538.17480796756,5277377.168596342],[516535.19747266924,5277375.715321851],[516534.5704878453,5277377.002763502],[516537.5403127205,5277378.456016348],[516535.6669629954,5277382.285020421],[516532.6971396212,5277380.831768522],[516532.0399584471,5277382.174694634],[516534.994793036,5277383.61678965],[516532.50200496695,5277388.722143897],[516512.8005901205,5277379.10820679],[516517.90702816204,5277368.642204046],[516519.34694846265,5277369.346470374],[516522.36851956794,5277363.153440728],[516527.95840192406,5277351.710788192],[516532.9531511573,5277354.147817817],[516533.7914582054,5277352.494214627],[516535.30244434276,5277349.331020035],[516541.45962505013,5277352.338171601],[516542.1998948657,5277350.8287728885],[516544.8286762615,5277345.445959799],[516528.1494895336,5277337.307606836],[516535.4692950542,5277322.313397958],[516536.39176140307,5277322.76057721],[516539.9343111592,5277315.602119993],[516543.361676057,5277317.267840992],[516543.82243861735,5277316.335575543],[516549.7773223966,5277319.186564998],[516548.5988451632,5277321.6171778785],[516549.611304168,5277322.109070948],[516550.17787068133,5277320.943713062],[516555.8401098722,5277323.704965059],[516556.4519902603,5277322.450824753],[516571.55626721185,5277329.817910902],[516565.9360170613,5277341.338233226],[516556.8689822229,5277336.911304299],[516551.20345544163,5277348.520423908],[516546.27620381414,5277346.116912411],[516543.42833796766,5277351.954775716],[516544.43621918757,5277351.413054351],[516545.5481840443,5277356.528647182],[516544.26201875316,5277359.85918778],[516541.24793747807,5277363.407099033],[516539.14294470375,5277364.179097984],[516537.4150277062,5277364.396469481],[516534.56377651554,5277363.499252746],[516533.13941297476,5277362.6060890965],[516532.0918083343,5277361.269436191],[516530.67596366466,5277357.3755214745],[516529.1727123218,5277357.815812995],[516528.875469625,5277356.703570673],[516527.21450936917,5277357.143414981]]]},"properties":{"id_build":1209,"id_source":"w145201330","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516572.5243621491,5277390.747532919],[516564.4743941252,5277393.136359635],[516563.5526202322,5277389.810655515],[516565.2063802929,5277389.259661247],[516562.304706472,5277379.693378692],[516570.2724941996,5277377.159833235],[516571.97629099246,5277382.777245221],[516573.54617161665,5277387.949717139],[516571.8927267189,5277388.389570086],[516572.5243621491,5277390.747532919]]]},"properties":{"id_build":1210,"id_source":"w145201413","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.55420472875,5277528.325899135],[517084.4044124644,5277528.7068917435],[517084.70044689573,5277525.073484677],[517089.8884970626,5277525.488815237],[517089.0079275006,5277536.377943924],[517084.51816027303,5277536.009119142],[517084.5651427995,5277535.3535314035],[517083.7768180354,5277535.284534146],[517083.6209491524,5277537.217911613],[517078.86837478017,5277536.837206027],[517079.55420472875,5277528.325899135]]]},"properties":{"id_build":1211,"id_source":"w145201419","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.85723972163,5276716.977010619],[516645.94818407035,5276721.20629744],[516643.90661815676,5276725.979471208],[516642.4808440291,5276725.530837391],[516644.3702876456,5276721.424066816],[516642.80223768455,5276718.196532635],[516638.44980093907,5276716.850418482],[516639.12989868957,5276715.407544977],[516643.85723972163,5276716.977010619]]]},"properties":{"id_build":1212,"id_source":"w145201424","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.3696908357,5277743.113387293],[516474.2407467909,5277741.314970401],[516473.7094242488,5277743.31398521],[516467.78104707506,5277741.852393426],[516471.65489084227,5277726.303765908],[516480.2093945172,5277728.550774533],[516479.75379266666,5277730.3277233085],[516485.3818001258,5277731.788476628],[516481.3696908357,5277743.113387293]]]},"properties":{"id_build":1213,"id_source":"w145201433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516524.4826023722,5276787.544205692],[516524.33428096725,5276786.876946331],[516520.42714976956,5276787.421559415],[516519.6179999031,5276781.417717715],[516523.3746058953,5276780.98381671],[516522.8887074904,5276777.525991963],[516522.12301475013,5276772.089085999],[516532.0412420527,5276770.67241804],[516534.25153699174,5276785.793698716],[516524.4826023722,5276787.544205692]]]},"properties":{"id_build":1214,"id_source":"w145201452","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516810.37561806856,5276983.857381007],[516806.7545310764,5276963.397203874],[516787.44304853363,5276966.675691675],[516786.9997906903,5276964.118198313],[516779.8610158738,5276965.4313000385],[516775.86876843293,5276943.41411661],[516822.6837882295,5276934.991412053],[516826.74647328013,5276958.564789018],[516821.2609467921,5276959.549198286],[516822.36728806054,5276966.55420217],[516826.1241194602,5276966.009357691],[516827.96929290047,5276977.239810492],[516824.4377816636,5276977.785304772],[516825.6169717671,5276985.568498678],[516814.7220389032,5276987.204124691],[516814.1327580772,5276983.201389924],[516810.37561806856,5276983.857381007]]]},"properties":{"id_build":1215,"id_source":"w145201468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517049.09251673607,5277434.11221624],[517049.4023489533,5277430.890066093],[517046.32428537216,5277430.547633429],[517046.943296599,5277424.325610828],[517050.0964620503,5277424.668263732],[517050.17448990233,5277423.668233039],[517059.7087586544,5277424.807561128],[517059.16896802915,5277429.618337683],[517058.55199572816,5277435.140183624],[517049.09251673607,5277434.11221624]]]},"properties":{"id_build":1216,"id_source":"w145201470","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.944905521,5277060.61287338],[516640.7940636925,5277060.834721905],[516642.0679608506,5277061.838620922],[516639.05271414976,5277065.719897077],[516637.70371408906,5277064.715784116],[516637.7788173306,5277064.715998712],[516635.08081584057,5277062.7077737],[516638.24690320314,5277058.604646916],[516640.944905521,5277060.61287338]]]},"properties":{"id_build":1217,"id_source":"w145201471","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516598.5554321972,5276776.340816724],[516599.67506684165,5276778.789082731],[516598.622619486,5276779.119502028],[516598.8463563026,5276779.675838526],[516595.98880936485,5276780.890231319],[516594.571912951,5276777.329721398],[516597.50425152725,5276776.22668083],[516597.6531983781,5276776.671664361],[516598.5554321972,5276776.340816724]]]},"properties":{"id_build":1218,"id_source":"w145201474","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.95334432827,5277220.286854604],[517280.4313558937,5277220.405348379],[517280.656989503,5277220.2948781345],[517280.9573945232,5277220.295769717],[517281.1069373175,5277220.5184933515],[517281.5582045634,5277220.297552924],[517281.62736818875,5277222.298276383],[517277.9477377607,5277222.176216242],[517277.95334432827,5277220.286854604]]]},"properties":{"id_build":1219,"id_source":"w145201475","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516705.0589977392,5276990.6672399705],[516704.0794549482,5276991.775827899],[516692.31358566927,5276982.850903541],[516693.0674961487,5276981.852806606],[516689.9198045887,5276979.509848015],[516716.6829872374,5276944.355303653],[516738.34163051867,5276960.643931693],[516711.8040220187,5276995.687885306],[516705.0589977392,5276990.6672399705]]]},"properties":{"id_build":1220,"id_source":"w145201505","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517180.6197239343,5277678.89560096],[517178.07008982904,5277677.66553752],[517179.50674050034,5277674.335577796],[517182.2062385095,5277675.677224132],[517184.9280439812,5277669.461419743],[517192.20245716895,5277672.817096539],[517191.28022157686,5277674.870462554],[517187.9692230363,5277682.251494157],[517180.6197239343,5277678.89560096]]]},"properties":{"id_build":1221,"id_source":"w145201515","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.1128812888,5276760.544712285],[516523.1309403669,5276760.977971567],[516518.09655420756,5276761.741667409],[516517.1088430579,5276755.137165249],[516516.03263991023,5276747.954485718],[516526.2510206993,5276746.649798776],[516527.64840975485,5276757.100900196],[516528.7002260835,5276756.992745774],[516529.06661385304,5276760.216838226],[516527.1128812888,5276760.544712285]]]},"properties":{"id_build":1222,"id_source":"w145201532","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516610.1281548161,5277463.962495624],[516608.49165876576,5277458.467517283],[516606.7807587789,5277452.727819521],[516615.1233234934,5277450.417684329],[516615.1974702471,5277450.751315545],[516618.579747129,5277449.760710096],[516620.7366568126,5277457.102098765],[516617.4291647664,5277458.204056279],[516618.3214602743,5277461.318519602],[516610.1281548161,5277463.962495624]]]},"properties":{"id_build":1223,"id_source":"w145201536","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.2736425941,5277674.4959609145],[517270.0633943471,5277672.369597018],[517267.91182139947,5277668.595569571],[517276.8630246098,5277663.620827976],[517283.06328979955,5277674.642089369],[517274.3373840933,5277679.61748996],[517274.0383218586,5277679.17204266],[517272.53377720685,5277680.056698404],[517269.84452223853,5277675.269701135],[517271.2736425941,5277674.4959609145]]]},"properties":{"id_build":1224,"id_source":"w145201538","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.9654762633,5277128.128188331],[517277.32386682415,5277128.705717237],[517277.47407169716,5277128.706162933],[517277.0007028933,5277136.373410252],[517272.94583607005,5277136.139100308],[517272.71525401954,5277137.916654416],[517269.33663862216,5277137.573213214],[517269.60010072,5277132.305964193],[517269.81560101005,5277128.016603924],[517269.9654762633,5277128.128188331]]]},"properties":{"id_build":1225,"id_source":"w145201543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.03447190486,5277283.4181291675],[516474.6393633505,5277281.975022929],[516475.6222732689,5277279.643867795],[516476.076021034,5277278.533753506],[516479.9105494328,5277276.988648018],[516481.70257942437,5277280.661334836],[516483.8782899845,5277281.445472913],[516481.8367352992,5277286.329845872],[516474.03447190486,5277283.4181291675]]]},"properties":{"id_build":1226,"id_source":"w145201544","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517052.2106550375,5277497.693381194],[517051.30980850407,5277497.579602831],[517044.7776126296,5277497.115915505],[517045.0880901581,5277493.6714868825],[517041.5594732019,5277493.3277374655],[517041.9515531968,5277487.6607491365],[517045.70579234266,5277487.894019423],[517053.0634231252,5277488.582405263],[517052.5982854577,5277493.548997405],[517052.2106550375,5277497.693381194]]]},"properties":{"id_build":1227,"id_source":"w145201547","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.2735769887,5277749.1731302375],[517263.68622498517,5277751.382324515],[517262.5581611303,5277751.934679317],[517260.5464294135,5277746.593994809],[517265.35906745127,5277744.385466203],[517266.8517273876,5277747.501812975],[517267.52856643527,5277747.170400568],[517268.4991899578,5277749.0626594825],[517268.2735769887,5277749.1731302375]]]},"properties":{"id_build":1228,"id_source":"w145201562","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.2726181079,5277265.696563462],[517263.9936722968,5277267.813324472],[517265.0450812759,5277267.816442085],[517264.8876298101,5277270.261053119],[517263.91132188187,5277270.258158212],[517261.95376355667,5277271.91945282],[517260.602282438,5277271.804306281],[517260.85113777104,5277268.926520474],[517261.14643756056,5277265.582084779],[517262.2726181079,5277265.696563462]]]},"properties":{"id_build":1229,"id_source":"w145201597","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516609.2907062783,5277441.620992353],[516610.25842416444,5277444.624529618],[516604.39441433485,5277446.830600138],[516603.2771309917,5277443.604357583],[516600.64615348855,5277444.485974196],[516599.1939667794,5277440.191834814],[516597.5183201709,5277435.252447569],[516605.185336686,5277432.829232428],[516608.16296245053,5277442.062334715],[516609.2907062783,5277441.620992353]]]},"properties":{"id_build":1230,"id_source":"w145201620","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.6512433471,5277047.469987041],[516699.43232252443,5277040.886291875],[516694.530198495,5277047.985182768],[516691.90699353215,5277046.088285671],[516698.76818336523,5277036.772214335],[516710.1711734424,5277041.250519352],[516715.04269481613,5277044.820975417],[516711.4991146569,5277049.589816127],[516708.6512433471,5277047.469987041]]]},"properties":{"id_build":1231,"id_source":"w145201625","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.96430552274,5276762.49728415],[516469.6295689701,5276759.070405218],[516479.6151247489,5276755.097624438],[516483.32913405244,5276764.410531948],[516478.55442326615,5276766.308622293],[516476.291152944,5276767.202450142],[516476.9102020675,5276768.737930066],[516473.8724500676,5276769.940758801],[516473.49952437927,5276769.017244008],[516470.0331602116,5276770.396685848],[516467.4529366806,5276763.85437229],[516470.96430552274,5276762.49728415]]]},"properties":{"id_build":1232,"id_source":"w145201628","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516666.3712969358,5277649.615711893],[516676.2180656535,5277646.4208519915],[516678.67457367247,5277653.985403189],[516672.8943714942,5277655.835996859],[516668.6776251433,5277657.179828923],[516667.93239670235,5277655.177176808],[516665.1516315182,5277655.947195356],[516663.1431362439,5277649.2730515115],[516665.92454065406,5277648.280754004],[516666.3712969358,5277649.615711893]]]},"properties":{"id_build":1233,"id_source":"w145201630","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.7690603874,5276804.007617156],[517289.9651780321,5276804.4482580535],[517289.610466454,5276797.434281873],[517281.3474091607,5276797.854313639],[517280.9216036218,5276789.484221298],[517287.7724336316,5276789.137794064],[517294.0823963722,5276788.8231105395],[517294.40874383063,5276795.270189575],[517298.3149214394,5276795.070626046],[517298.7690603874,5276804.007617156]]]},"properties":{"id_build":1234,"id_source":"w145201671","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516810.3998160378,5277087.339735558],[516820.2912604613,5277087.23493294],[516820.36879652686,5277094.192510207],[516820.5990273748,5277115.887670372],[516820.812311659,5277135.648949178],[516820.9428936547,5277147.641314913],[516810.90885768377,5277147.7457042085],[516810.97947093146,5277154.50321026],[516802.83057358506,5277154.590828481],[516780.9674911249,5277154.827855065],[516776.829206206,5277154.871499817],[516776.72316277196,5277144.757469305],[516811.01618101646,5277144.389590974],[516810.3998160378,5277087.339735558]]]},"properties":{"id_build":1235,"id_source":"w145201678","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.2596361006,5277685.076291969],[517138.62212689593,5277685.32906923],[517138.62179970986,5277685.440208232],[517138.5290364502,5277691.441493311],[517136.20108608407,5277691.434640453],[517136.19519754517,5277693.435142516],[517136.10799822526,5277697.54706462],[517128.14791823155,5277697.523639407],[517128.2596361006,5277685.076291969]]]},"properties":{"id_build":1236,"id_source":"w145201708","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516730.8165008331,5277645.2438250035],[516732.8987379986,5277652.362764174],[516730.26751525165,5277653.355461321],[516730.3413333467,5277653.800233135],[516727.3496845844,5277654.780781831],[516723.9521373666,5277655.893533934],[516724.24996565655,5277656.783508855],[516720.7169608541,5277657.995899634],[516718.18860498234,5277649.319724858],[516730.8165008331,5277645.2438250035]]]},"properties":{"id_build":1237,"id_source":"w145201718","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.7432532724,5277583.287261583],[517011.5609752487,5277582.151947697],[517012.2482111683,5277578.2640581615],[517009.9211898245,5277577.923838955],[517011.08172090404,5277571.403315767],[517011.982573658,5277566.371309136],[517020.01370553864,5277567.839601394],[517018.029027234,5277578.836653027],[517020.4311443723,5277579.17709502],[517019.7432532724,5277583.287261583]]]},"properties":{"id_build":1238,"id_source":"w145201723","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517028.67422527476,5277687.896066208],[517022.11364461074,5277697.21263604],[517013.8697492571,5277691.52039956],[517016.2835147342,5277687.85983586],[517017.4076688561,5277688.641101465],[517017.78476928454,5277688.086504021],[517018.1618697825,5277687.531906603],[517016.962295452,5277686.861560348],[517020.3562025153,5277681.870183982],[517028.67422527476,5277687.896066208]]]},"properties":{"id_build":1239,"id_source":"w145201728","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516592.0997945436,5277412.897890353],[516594.7307849683,5277412.0162698915],[516596.9622040734,5277419.5801411895],[516594.25643483043,5277420.350407636],[516594.0330394523,5277419.682931736],[516583.96095479873,5277422.7661495935],[516581.35624213633,5277414.423241149],[516586.55006031384,5277412.859849288],[516591.57853732386,5277411.340446814],[516592.0997945436,5277412.897890353]]]},"properties":{"id_build":1240,"id_source":"w145201735","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.7153751935,5277624.244206309],[517266.6771202515,5277629.137217257],[517262.91233995947,5277629.959602338],[517259.16257993435,5277630.782034374],[517258.1263917516,5277625.666524069],[517258.9527775083,5277625.55783391],[517261.95859578706,5277624.89990579],[517261.0745782743,5277619.118006402],[517264.8316908911,5277618.351167357],[517265.7153751935,5277624.244206309]]]},"properties":{"id_build":1241,"id_source":"w145201747","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.04647822666,5276738.079651586],[516600.2698996992,5276738.747126941],[516597.9384012187,5276739.851878646],[516597.48997396545,5276739.072622334],[516597.0386958184,5276739.2936156355],[516595.46999113966,5276736.288371838],[516599.0044775752,5276734.742489036],[516600.5731808583,5276737.747733781],[516600.04647822666,5276738.079651586]]]},"properties":{"id_build":1242,"id_source":"w145201759","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.86627530097,5276894.471994372],[517293.6549089044,5276897.361002562],[517293.31809316424,5276902.027875713],[517289.33816903067,5276901.793777886],[517289.1013037164,5276905.682969149],[517282.7941067063,5276905.108546906],[517283.18183829414,5276900.997523502],[517285.65965579066,5276901.227157971],[517286.28227367415,5276893.893776621],[517293.86627530097,5276894.471994372]]]},"properties":{"id_build":1243,"id_source":"w145201771","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516602.98359054496,5276735.309531168],[516604.10893533163,5276735.757298706],[516602.66985246376,5276739.976505981],[516597.78090071474,5276742.407643878],[516593.27952377335,5276740.616579907],[516593.73333519144,5276739.506475578],[516597.85980933515,5276741.074191839],[516601.54514206375,5276739.306461034],[516602.98359054496,5276735.309531168]]]},"properties":{"id_build":1244,"id_source":"w145201773","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.81665981037,5277521.422476267],[516722.3066687181,5277522.854339191],[516722.6414782802,5277523.944471836],[516723.4970524785,5277526.747654764],[516718.0101635918,5277528.398994742],[516716.74499831774,5277524.394325681],[516717.94783190987,5277523.953219958],[516714.97169921704,5277514.27550392],[516723.6913032944,5277511.410907339],[516726.81665981037,5277521.422476267]]]},"properties":{"id_build":1245,"id_source":"w145201776","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517074.8177264459,5277445.635016322],[517083.22645798855,5277446.437662605],[517082.76151977543,5277451.326454804],[517090.5701084802,5277451.905071047],[517089.95105329354,5277458.127089386],[517078.6889342764,5277457.204922435],[517078.7514905819,5277456.360442555],[517078.8449990512,5277455.204861699],[517073.8901462684,5277454.634629352],[517074.8177264459,5277445.635016322]]]},"properties":{"id_build":1246,"id_source":"w145201778","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.46285137616,5276799.06162681],[517167.72140037076,5276799.074179949],[517172.77608021605,5276799.089083927],[517172.8882746008,5276811.981633281],[517163.4245257719,5276812.064872047],[517163.50258042733,5276811.064843774],[517144.1995479448,5276811.23026158],[517144.15781590587,5276799.893877926],[517163.46055839205,5276799.839598739],[517163.46285137616,5276799.06162681]]]},"properties":{"id_build":1247,"id_source":"w145201781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517048.89479992347,5277552.92021458],[517053.0979507363,5277553.710504165],[517050.96203517035,5277565.040521494],[517043.6064530121,5277563.685304104],[517042.91984518775,5277567.350911939],[517037.2901893003,5277566.445314971],[517039.6559224978,5277553.560006323],[517044.82743411366,5277554.486492149],[517048.437709151,5277555.141674716],[517048.89479992347,5277552.92021458]]]},"properties":{"id_build":1248,"id_source":"w145201783","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.3140977976,5276961.228161117],[517130.27070749016,5276950.4474693155],[517130.87154533603,5276950.449236907],[517130.8718722981,5276950.3380980315],[517138.4574502347,5276950.360419199],[517138.4489454403,5276953.250029925],[517138.5080217919,5276958.696055837],[517138.57625709096,5276961.030193273],[517130.3140977976,5276961.228161117]]]},"properties":{"id_build":1249,"id_source":"w145201788","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517011.6794280985,5277515.912896374],[517010.4522160435,5277524.689364563],[517005.39263689687,5277523.996630267],[517000.4681668699,5277523.326522886],[517001.7707861394,5277514.4391329745],[517002.5214360873,5277514.5524650505],[517002.98240733123,5277510.997333809],[517009.21257724555,5277512.01579153],[517008.75160226994,5277515.570922295],[517011.6794280985,5277515.912896374]]]},"properties":{"id_build":1250,"id_source":"w145201791","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516689.60807847267,5277698.694984154],[516689.6600077831,5277698.9174128715],[516636.9378743218,5277700.655884599],[516636.730057553,5277694.5425952785],[516636.9582013982,5277693.542988009],[516658.8882056398,5277692.827720934],[516677.7389961586,5277692.214854275],[516689.37970003695,5277691.914794207],[516689.60807847267,5277698.694984154]]]},"properties":{"id_build":1251,"id_source":"w145201794","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.49800025014,5277213.220217558],[516761.5446268322,5277223.111798014],[516752.17915517266,5277223.20709852],[516730.9322270828,5277223.423856467],[516707.8152174773,5277223.657553363],[516693.7256918652,5277223.806077918],[516693.74034961197,5277218.693687349],[516683.6013614437,5277218.775766508],[516683.26603045507,5277178.54218575],[516693.33030552795,5277178.348751615],[516693.38053145993,5277184.406016457],[516693.56634963,5277208.657261131],[516693.6038487702,5277213.914282948],[516761.49800025014,5277213.220217558]]]},"properties":{"id_build":1252,"id_source":"w145201796","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.84869128384,5277471.434697155],[517108.4640527,5277470.517992847],[517108.8506470628,5277466.740371465],[517108.0248948672,5277466.626805022],[517108.51287251175,5277461.5713724345],[517109.10925444565,5277455.4048592625],[517117.4428691984,5277456.207334335],[517116.1328727653,5277467.539755219],[517118.3854878027,5277467.657517988],[517117.84869128384,5277471.434697155]]]},"properties":{"id_build":1253,"id_source":"w145201808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.2103336844,5277697.664393235],[517138.29786166846,5277693.441332153],[517149.1109080966,5277693.695454577],[517151.66414300405,5277693.702976327],[517150.79630152544,5277733.377389455],[517156.8789667589,5277733.395312629],[517156.6173263522,5277745.731078981],[517137.0937447538,5277745.340154082],[517138.2103336844,5277697.664393235]]]},"properties":{"id_build":1254,"id_source":"w145201810","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.36218788003,5277721.510736306],[516433.58313144324,5277725.751610134],[516428.53171331104,5277732.850306545],[516417.88865075633,5277725.596187896],[516421.0788252476,5277720.759485979],[516422.7908130573,5277718.163641613],[516423.16566002596,5277718.38697887],[516424.97546088556,5277715.724727151],[516429.3228065987,5277718.626631699],[516427.36218788003,5277721.510736306]]]},"properties":{"id_build":1255,"id_source":"w145201821","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516483.4578926005,5277270.774859265],[516484.28494293033,5277270.443781251],[516482.19628420414,5277265.436576086],[516483.8507009681,5277264.663280883],[516486.0141444635,5277269.781838217],[516487.06681157503,5277269.3402595995],[516487.9617242665,5277271.565590292],[516484.35280644434,5277273.000189408],[516483.4578926005,5277270.774859265]]]},"properties":{"id_build":1256,"id_source":"w145201827","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516922.7291235034,5277631.016905863],[516923.64545945486,5277625.795992669],[516937.1562751129,5277628.058082432],[516936.92807718547,5277629.057677957],[516935.70552664576,5277636.2782172],[516929.7982605009,5277635.305232275],[516925.42223798856,5277634.581212754],[516925.1179771219,5277635.914007412],[516921.96491918655,5277635.571421824],[516922.7291235034,5277631.016905863]]]},"properties":{"id_build":1257,"id_source":"w145201840","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.4743941252,5277393.136359635],[516572.5243621491,5277390.747532919],[516573.3426689233,5277393.483902719],[516574.7256611537,5277393.076622209],[516575.8935460731,5277397.003184063],[516577.50784572324,5277402.39806338],[516572.5395703788,5277403.873193423],[516571.051347561,5277404.313516895],[516571.5869031086,5277406.126620921],[516564.8072332041,5277408.130073392],[516563.2822200361,5277403.024415236],[516568.6413242452,5277401.439249649],[516566.86341123126,5277395.477094006],[516565.3075343987,5277395.939454414],[516564.4743941252,5277393.136359635]]]},"properties":{"id_build":1258,"id_source":"w145201849","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.12374147336,5277541.415130632],[517211.6647328096,5277541.6183118345],[517211.5991640733,5277538.395059513],[517220.00971609884,5277538.531069982],[517219.2106016152,5277529.415230757],[517225.8959024374,5277528.8793075625],[517226.33563418576,5277532.548226912],[517226.4939422645,5277534.882634234],[517226.9110900095,5277541.107705671],[517218.12374147336,5277541.415130632]]]},"properties":{"id_build":1259,"id_source":"w145201852","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516389.1761863108,5277708.177460778],[516396.0714606529,5277712.975892134],[516392.21758941456,5277718.833225812],[516389.4346391009,5277723.07093441],[516388.0854366446,5277722.178017001],[516385.9740245307,5277725.283990756],[516379.0784438977,5277720.596710273],[516381.26557427336,5277717.268667322],[516382.54030962026,5277717.93909378],[516389.1761863108,5277708.177460778]]]},"properties":{"id_build":1260,"id_source":"w145201913","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517254.63904100156,5277611.430271562],[517245.14197493275,5277613.058117362],[517242.39210490935,5277613.505646277],[517241.95963114715,5277607.391667473],[517247.2265130237,5277606.518148647],[517253.8307691062,5277605.426318012],[517253.97865601524,5277606.204736043],[517263.220111785,5277604.676172615],[517264.0303515528,5277610.013293554],[517256.06652781216,5277611.212222592],[517254.63904100156,5277611.430271562]]]},"properties":{"id_build":1261,"id_source":"w145201917","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516771.5108877847,5276917.950550124],[516774.2471974396,5276932.740024608],[516759.5943754739,5276935.25404841],[516756.7822851298,5276920.686642459],[516751.22163009655,5276921.670901578],[516749.74510308146,5276912.775470929],[516764.0237307893,5276909.81578571],[516765.72459221276,5276919.045285326],[516771.5108877847,5276917.950550124]]]},"properties":{"id_build":1262,"id_source":"w145201929","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516330.16412933957,5276819.893400734],[516338.454831923,5276809.580661167],[516342.906209469,5276813.138509661],[516347.37254046166,5276816.718631525],[516339.08214392036,5276826.9202196635],[516336.1592338887,5276824.6892244825],[516336.6871607317,5276823.912727381],[516333.53955263307,5276821.4588236995],[516333.0122494365,5276822.013043363],[516330.16412933957,5276819.893400734]]]},"properties":{"id_build":1263,"id_source":"w145201949","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.2225135415,5277381.123801015],[516634.470886875,5277381.343933237],[516635.4389196126,5277384.236335458],[516629.4255936004,5277386.108534709],[516628.5329747514,5277383.105209021],[516627.4806346747,5277383.435623161],[516626.1856843593,5277379.308636276],[516624.28056703345,5277373.201617975],[516631.87257707876,5277370.778223567],[516635.2225135415,5277381.123801015]]]},"properties":{"id_build":1264,"id_source":"w145201956","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517209.0318520954,5277644.748408378],[517206.6812177112,5277652.410118041],[517195.8031773493,5277648.710358209],[517196.1816105146,5277647.711216326],[517192.80591264693,5277646.478706585],[517194.7003756553,5277640.705023521],[517196.8086971894,5277641.34474869],[517198.3767880634,5277641.827282718],[517198.5282929964,5277641.383170436],[517209.0318520954,5277644.748408378]]]},"properties":{"id_build":1265,"id_source":"w145201957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516867.59142422176,5277559.060502693],[516857.9045713346,5277558.810165494],[516857.9077894813,5277557.698775664],[516855.2046232239,5277557.579809076],[516855.3009565579,5277550.244853675],[516858.07922320574,5277550.364037755],[516858.15850382956,5277548.919448451],[516867.99492315657,5277549.392499153],[516867.8174414367,5277553.626415673],[516867.59142422176,5277559.060502693]]]},"properties":{"id_build":1266,"id_source":"w145201980","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.81398893544,5277526.844155254],[516639.3928129256,5277522.22778799],[516637.76326756214,5277516.943986337],[516645.95651141147,5277514.30004913],[516646.17957935884,5277515.078666123],[516649.0355065616,5277514.308853286],[516650.9711934708,5277520.204803065],[516648.03985373245,5277521.085539188],[516649.0072202961,5277524.200222327],[516640.81398893544,5277526.844155254]]]},"properties":{"id_build":1267,"id_source":"w145201981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.0787587174,5277278.581084946],[516568.3079473764,5277275.794703723],[516566.80150982965,5277277.346374888],[516557.88888723886,5277268.763254893],[516564.3668265252,5277262.00215068],[516573.35455063445,5277270.585494272],[516575.23776024947,5277268.590338036],[516578.15877289535,5277271.377150192],[516571.0787587174,5277278.581084946]]]},"properties":{"id_build":1268,"id_source":"w145201984","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.129186849,5276928.12142589],[517280.09813969815,5276927.773074372],[517279.5542655858,5276933.884152051],[517275.1991676878,5276933.537810618],[517275.8188017431,5276927.204677629],[517277.5455580296,5276927.432080518],[517278.3193627417,5276919.7657271335],[517285.82789634453,5276920.454850529],[517285.42428528774,5276924.854790354],[517285.129186849,5276928.12142589]]]},"properties":{"id_build":1269,"id_source":"w145202017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.12499784253,5276718.63915617],[516643.3942055795,5276721.310137338],[516642.49164305587,5276721.752116866],[516642.79048559594,5276722.308669652],[516639.70694327063,5276723.744674703],[516637.9148384485,5276720.071942647],[516640.99838226405,5276718.635936653],[516641.2975427052,5276719.081350522],[516642.12499784253,5276718.63915617]]]},"properties":{"id_build":1270,"id_source":"w145202021","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.49637277395,5276741.842710898],[516632.5117233147,5276744.729531979],[516629.51028493437,5276743.720702426],[516628.9807249113,5276745.052867203],[516625.3039542864,5276743.819831916],[516625.7584061779,5276742.487452376],[516627.6341870867,5276743.15964652],[516628.6939418057,5276740.273039097],[516633.49637277395,5276741.842710898]]]},"properties":{"id_build":1271,"id_source":"w145202028","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.063590856,5276774.233460432],[516602.3022250389,5276779.352270934],[516600.8622035109,5276783.904895468],[516599.36165027454,5276783.344919181],[516600.6514569064,5276778.791866063],[516599.2329788263,5276775.787049254],[516594.7313114974,5276774.107122857],[516595.1863875175,5276772.552463192],[516600.063590856,5276774.233460432]]]},"properties":{"id_build":1272,"id_source":"w145202032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517026.25879133854,5277615.092335448],[517026.1089240612,5277614.980757209],[517027.0920001378,5277612.649693573],[517024.61707602924,5277611.53105624],[517027.03868219233,5277605.20316161],[517029.8136685116,5277606.433817617],[517030.3435688213,5277604.990548467],[517039.1184493741,5277608.906121909],[517036.93463830015,5277613.523152377],[517034.2823730947,5277619.116844486],[517026.25879133854,5277615.092335448]]]},"properties":{"id_build":1273,"id_source":"w145202034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.1562751129,5277628.058082432],[516938.15063068754,5277621.837139045],[516941.8290441597,5277622.292402098],[516941.83001442935,5277621.9589851145],[516953.31453380524,5277623.770656275],[516952.1641452216,5277631.991661687],[516944.7031029442,5277630.769629621],[516940.37958130485,5277630.067979667],[516940.3808748906,5277629.623423686],[516936.92807718547,5277629.057677957],[516937.1562751129,5277628.058082432]]]},"properties":{"id_build":1274,"id_source":"w145202041","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516896.41437299247,5277589.92984013],[516896.564565942,5277589.930276029],[516896.3212136206,5277596.15340554],[516899.02436122263,5277596.272391274],[516898.78294207854,5277601.828686805],[516896.07979705255,5277601.709701176],[516896.0791519558,5277601.931979157],[516888.34519818693,5277601.576119021],[516888.55850324134,5277595.352902007],[516888.75549977086,5277589.57419744],[516896.41437299247,5277589.92984013]]]},"properties":{"id_build":1275,"id_source":"w145202043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.3705494745,5276849.101758041],[516484.1217604418,5276850.557192441],[516480.56535699585,5276859.882865472],[516476.6636249176,5276858.538147166],[516476.3603711807,5276859.537546906],[516473.4343858032,5276858.417871183],[516473.81274500396,5276857.41868377],[516471.71952215664,5276856.623670155],[516463.75923653785,5276853.611499427],[516467.39040855604,5276844.397167532],[516480.3705494745,5276849.101758041]]]},"properties":{"id_build":1276,"id_source":"w145202055","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.3136061747,5277607.46255786],[517303.0922812094,5277606.128220427],[517302.5755255739,5277603.1259054495],[517306.18080956873,5277602.914341629],[517309.04339138226,5277599.9220726285],[517313.5382658555,5277603.603057201],[517314.4076902588,5277614.275079991],[517310.55439732905,5277614.552585231],[517305.619455686,5277614.915789631],[517305.1913430734,5277607.356999123],[517303.3136061747,5277607.46255786]]]},"properties":{"id_build":1277,"id_source":"w145202058","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.48651434557,5277478.2827887675],[517285.48292923224,5277484.422114126],[517284.2927868124,5277485.6300061485],[517278.65090645745,5277491.359194578],[517275.86384685786,5277494.196106389],[517271.7480706545,5277491.794386121],[517280.9724630733,5277480.896702148],[517277.57106626104,5277478.174792485],[517283.4336128037,5277471.47934063],[517288.8870849158,5277476.096726118],[517291.48651434557,5277478.2827887675]]]},"properties":{"id_build":1278,"id_source":"w145202088","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516502.3441886207,5277417.088389127],[516502.2722400442,5277415.976786651],[516496.7281617816,5277411.293201357],[516507.20438776305,5277398.097252036],[516518.9083226804,5277407.477308763],[516517.227596908,5277409.595311597],[516508.71906881494,5277420.107237712],[516508.26690126193,5277420.661654885],[516511.71387437213,5277423.338786094],[516502.3441886207,5277417.088389127]]]},"properties":{"id_build":1279,"id_source":"w145202101","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516548.26122708694,5277458.896166238],[516546.1758507032,5277452.777546677],[516546.7772682996,5277452.556976188],[516545.8088873811,5277449.775727444],[516555.20470404567,5277446.801660651],[516555.9493663634,5277449.026575461],[516556.250391581,5277448.805151747],[516558.6326746712,5277456.147157885],[516553.0552068065,5277457.953991432],[516548.4098439145,5277459.4522879915],[516548.26122708694,5277458.896166238]]]},"properties":{"id_build":1280,"id_source":"w145202107","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.1643174669,5276876.594083089],[517268.9765862066,5276876.582412369],[517265.52248247823,5276876.316548362],[517265.45986059285,5276877.1721394295],[517264.52127024694,5276877.091558727],[517263.76286761224,5276877.033740335],[517263.614565511,5276878.922677891],[517253.40243529907,5276878.136660495],[517254.0115742754,5276870.269765025],[517269.5625511052,5276871.471717637],[517269.1643174669,5276876.594083089]]]},"properties":{"id_build":1281,"id_source":"w145202112","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516445.2376265866,5277747.123382658],[516439.46100443375,5277745.106548883],[516440.21759849694,5277743.108167176],[516432.1149230267,5277740.41793294],[516432.5695684141,5277738.974397503],[516435.97674881,5277729.092564567],[516441.4536372898,5277730.886268415],[516442.1345113902,5277729.1099529425],[516450.3867592378,5277732.022903478],[516445.2376265866,5277747.123382658]]]},"properties":{"id_build":1282,"id_source":"w145202130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517073.362226725,5277404.175560283],[517072.51006738556,5277413.064254227],[517068.21559114085,5277412.651559297],[517062.90003157494,5277412.146963053],[517063.28725135815,5277408.147061143],[517060.8844146353,5277408.0288796285],[517061.19523168856,5277404.47331336],[517063.59774414997,5277404.702633951],[517069.52892563597,5277405.275719592],[517069.75845818035,5277403.831573722],[517073.362226725,5277404.175560283]]]},"properties":{"id_build":1283,"id_source":"w145202134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517187.9692230363,5277682.251494157],[517187.28909989627,5277683.694305803],[517183.47271014925,5277691.840713767],[517181.6212013996,5277695.791832037],[517174.57176861155,5277692.547971906],[517176.38651295344,5277688.330007036],[517174.13660730433,5277687.323109557],[517175.5732533828,5277683.993148821],[517177.82316007884,5277685.000046849],[517180.6197239343,5277678.89560096],[517187.9692230363,5277682.251494157]]]},"properties":{"id_build":1284,"id_source":"w145202141","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.0117999632,5277681.809420065],[516734.0935818028,5277680.8180183675],[516733.20074383554,5277677.92581401],[516738.84526069177,5277676.25271391],[516745.8276294231,5277674.183363667],[516748.1332051059,5277681.969790743],[516736.18219196546,5277685.7141790185],[516736.6292487344,5277686.938003414],[516732.9463885986,5277688.038816006],[516732.12800758705,5277685.369105636],[516731.0117999632,5277681.809420065]]]},"properties":{"id_build":1285,"id_source":"w145202150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.12800758705,5277685.369105636],[516729.2715141692,5277686.361155758],[516728.82509453816,5277684.915053918],[516718.076580665,5277688.32951508],[516715.3961291446,5277680.319743817],[516720.84596521006,5277678.446015462],[516726.2958048062,5277676.572292211],[516726.8911390866,5277678.463381384],[516729.5974452757,5277677.470898497],[516731.0117999632,5277681.809420065],[516732.12800758705,5277685.369105636]]]},"properties":{"id_build":1286,"id_source":"w145202175","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.8987379986,5277652.362764174],[516730.8165008331,5277645.2438250035],[516734.2741002539,5277644.142363493],[516734.7965759137,5277645.255264522],[516744.3426873013,5277642.170795302],[516747.0227973513,5277650.29171847],[516741.4830673311,5277652.076251969],[516737.10090002685,5277653.486242817],[516736.3560140978,5277651.372442898],[516732.97319478507,5277652.5852580145],[516732.8987379986,5277652.362764174]]]},"properties":{"id_build":1287,"id_source":"w145202178","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.89703659376,5276965.977885288],[517270.977744976,5276964.088747172],[517271.50380653894,5276963.979167647],[517273.8956592887,5276962.797066166],[517276.70819764544,5276961.582871865],[517277.7378148338,5276963.8865217725],[517277.25619014003,5276974.332239018],[517274.7784034626,5276974.1026080195],[517270.27312653285,5276973.75582456],[517270.6720526215,5276965.866078142],[517270.89703659376,5276965.977885288]]]},"properties":{"id_build":1288,"id_source":"w145202214","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.2129406339,5277417.6231182525],[516616.94828163047,5277416.191813164],[516620.6316082653,5277414.979788353],[516621.450396627,5277417.53834274],[516622.8034422984,5277417.0976461945],[516623.9637800298,5277421.024196486],[516625.70436299726,5277426.886237666],[516617.36176036333,5277429.196357701],[516614.7586842304,5277420.297739303],[516613.10524532467,5277420.737580553],[516612.2129406339,5277417.6231182525]]]},"properties":{"id_build":1289,"id_source":"w145202219","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516868.312377776,5277543.50300351],[516859.67975470854,5277542.255458889],[516860.16967771424,5277539.044934224],[516861.0115500395,5277533.590402691],[516862.20559892064,5277525.814067214],[516870.1626923552,5277526.948518002],[516869.2402710429,5277534.28107931],[516866.50786017417,5277533.884173022],[516864.51107958436,5277533.600538788],[516863.59252943395,5277539.599433299],[516868.772298804,5277540.281278619],[516868.312377776,5277543.50300351]]]},"properties":{"id_build":1290,"id_source":"w145202223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.3915035117,5277180.120457434],[516320.3624122452,5277181.736991974],[516321.0523465412,5277176.737635091],[516315.2202547417,5277167.496687505],[516318.2305604537,5277165.282327454],[516330.1175500117,5277157.869287499],[516332.6299735316,5277161.799569056],[516338.8661278391,5277171.564024977],[516337.4366978809,5277172.449132373],[516339.0814534799,5277175.1211026665],[516338.3915035117,5277180.120457434]]]},"properties":{"id_build":1291,"id_source":"w145202249","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517004.8095162566,5277759.622722713],[517016.52455025684,5277759.5458144285],[517016.67473883764,5277759.546253437],[517004.8095162566,5277759.622722713]]]},"properties":{"id_build":1292,"id_source":"w145202275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516594.4095507822,5277498.371033446],[516597.5665034864,5277497.379773637],[516597.2686475138,5277496.489805484],[516601.3725297501,5277495.256739571],[516607.5659052465,5277493.40725323],[516610.24595884676,5277501.639249888],[516600.0989093214,5277504.722225659],[516600.39676443307,5277505.612193968],[516597.08962060977,5277506.603024074],[516595.67575627274,5277502.042258621],[516594.4095507822,5277498.371033446]]]},"properties":{"id_build":1293,"id_source":"w145202307","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516574.3817590134,5276835.820643687],[516572.88216558855,5276834.927257573],[516569.28434117517,5276832.360804827],[516568.9829675512,5276832.693366587],[516566.2100442642,5276830.573821967],[516566.58715646394,5276830.019196019],[516565.46277558175,5276829.238019055],[516572.3240150325,5276819.921801789],[516573.8229797904,5276821.037465439],[516577.3665843221,5276816.268542603],[516583.6612828744,5276821.287754547],[516580.2688381487,5276825.723684719],[516581.3925848166,5276826.727142255],[516574.3817590134,5276835.820643687]]]},"properties":{"id_build":1294,"id_source":"w145202397","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.7608254351,5276973.287598402],[517224.88604855316,5276981.734597439],[517225.7869717353,5276981.848402379],[517226.15455465415,5277035.307760408],[517209.10602855467,5277035.25734951],[517208.587423562,5276982.0198267875],[517209.2633624945,5276982.021824433],[517214.52066530683,5276982.037364343],[517214.5462931591,5276973.368531876],[517224.7608254351,5276973.287598402]]]},"properties":{"id_build":1295,"id_source":"w145202407","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516595.67575627274,5277502.042258621],[516592.51912315935,5277502.922380475],[516592.22190018103,5277501.810134625],[516581.9997630987,5277504.892927896],[516579.3941358508,5277496.88343609],[516585.5652581582,5277494.933837131],[516589.8422120533,5277493.579002279],[516590.3621953943,5277495.581001775],[516593.2938558206,5277494.589097666],[516594.4095507822,5277498.371033446],[516595.67575627274,5277502.042258621]]]},"properties":{"id_build":1296,"id_source":"w145202419","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.86229650106,5277699.7561596595],[517280.0695815685,5277696.527778667],[517281.2734127362,5277695.753372187],[517278.7335709922,5277691.233550098],[517275.52142997464,5277685.51142233],[517283.64557549905,5277680.867656882],[517287.53007000603,5277687.7698694505],[517291.2160079359,5277685.669156439],[517295.1011505933,5277692.349096133],[517293.07027974125,5277693.454462949],[517281.86229650106,5277699.7561596595]]]},"properties":{"id_build":1297,"id_source":"w145202469","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516689.60807847267,5277698.694984154],[516689.37970003695,5277691.914794207],[516696.1385825423,5277691.823034433],[516715.2146663542,5277691.2109352155],[516733.76476885,5277690.708526505],[516752.01449415076,5277690.2053125305],[516753.44162234647,5277690.0982793905],[516753.5732621676,5277696.54477404],[516753.19746686047,5277696.654832513],[516689.60807847267,5277698.694984154]]]},"properties":{"id_build":1298,"id_source":"w145202472","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.2129406339,5277417.6231182525],[516609.50716843025,5277418.393377617],[516608.6145444075,5277415.390054841],[516610.0426883125,5277414.949569565],[516608.32423513156,5277409.220964242],[516607.14141819853,5277405.272125118],[516614.73274497077,5277403.070986267],[516617.63336918375,5277412.970712412],[516616.205224211,5277413.41119583],[516616.94828163047,5277416.191813164],[516612.2129406339,5277417.6231182525]]]},"properties":{"id_build":1299,"id_source":"w145202503","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.63962748874,5276755.117091688],[516604.26897801284,5276758.652542909],[516601.72895790293,5276753.866291874],[516600.4505505619,5276754.418346164],[516595.1486579204,5276743.622679274],[516597.78090071474,5276742.407643878],[516602.66985246376,5276739.976505981],[516605.37752284243,5276738.650549312],[516610.52982057945,5276749.223519304],[516609.10056280624,5276749.997420917],[516611.63962748874,5276755.117091688]]]},"properties":{"id_build":1300,"id_source":"w145202505","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516595.1863875175,5276772.552463192],[516594.7313114974,5276774.107122857],[516593.2158710208,5276778.770674046],[516581.8854847436,5276774.959648295],[516582.1887609073,5276773.960254131],[516577.0120733317,5276771.945000113],[516579.51243789075,5276764.283475693],[516584.6149739093,5276765.965101457],[516585.14547148376,5276764.299516091],[516596.55066677596,5276768.221900979],[516595.1863875175,5276772.552463192]]]},"properties":{"id_build":1301,"id_source":"w145202506","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517216.0124770137,5277595.089484276],[517213.01124905574,5277594.191490311],[517213.39133166627,5277592.63665469],[517218.91353260435,5277594.308970155],[517218.94156604086,5277594.987006811],[517226.9781984168,5277594.566222096],[517227.049677323,5277595.788973149],[517225.0214166065,5277596.005251703],[517224.5659058915,5277597.671003381],[517216.0124770137,5277595.089484276]]]},"properties":{"id_build":1302,"id_source":"w145202513","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.5925347735,5277543.471027715],[516963.5949929652,5277543.9687910015],[516963.3198185102,5277545.623974069],[516973.58075711183,5277547.309865286],[516972.00608940097,5277556.796624214],[516965.63337419444,5277555.744448644],[516962.3832319247,5277555.20150665],[516962.138582788,5277556.69006885],[516958.50560834684,5277556.090443684],[516959.6599360129,5277549.103105004],[516960.5925347735,5277543.471027715]]]},"properties":{"id_build":1303,"id_source":"w145202521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516667.4861243016,5276242.011259175],[516671.37679920706,5276242.100192232],[516671.3823663296,5276240.155264033],[516675.97179240244,5276240.179516485],[516675.9166753097,5276254.182956638],[516672.8821137906,5276254.163154994],[516672.897385046,5276248.828494706],[516672.34154318186,5276248.826903553],[516671.6955647989,5276248.825054443],[516671.6942922878,5276249.269609466],[516667.43518309266,5276249.312989407],[516667.4861243016,5276242.011259175]]]},"properties":{"id_build":1304,"id_source":"w145337927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.0802982018,5276558.085091268],[517304.9366834798,5276555.861868829],[517310.94679094426,5276555.435171534],[517312.03874851,5276567.108095005],[517311.3624310167,5276567.217224354],[517311.57685778674,5276570.885474741],[517306.24209230253,5276571.536457754],[517305.80497528234,5276566.978427534],[517299.1185629094,5276567.514260883],[517298.2433260007,5276558.731618071],[517302.07504784083,5276558.365125446],[517305.0802982018,5276558.085091268]]]},"properties":{"id_build":1305,"id_source":"w145337928","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.97606548684,5276489.944335643],[516340.84603565175,5276492.7280741],[516335.27787507884,5276496.268922969],[516335.0528551159,5276496.157152137],[516330.865050711,5276489.588166587],[516324.50899434637,5276479.456636542],[516306.97788310447,5276463.4034102345],[516311.04788341245,5276458.413522644],[516329.85307834315,5276475.470590432],[516338.44966738205,5276490.165138192],[516338.97606548684,5276489.944335643]]]},"properties":{"id_build":1306,"id_source":"w145337929","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.5222984181,5276481.470739185],[516680.31343389687,5276481.453980959],[516682.61939806753,5276481.438358056],[516682.63804506185,5276485.417213035],[516681.706672203,5276485.414545161],[516681.7167281909,5276487.148353424],[516681.7266886661,5276488.91550333],[516682.41770682327,5276488.9174827095],[516682.4235602682,5276492.118323116],[516676.82018012024,5276492.146730802],[516674.56686129555,5276492.140278768],[516674.5222984181,5276481.470739185]]]},"properties":{"id_build":1307,"id_source":"w145337930","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516790.53429914545,5276207.044499045],[516790.60685031035,5276207.933825562],[516790.60044244904,5276210.156600517],[516783.5400215393,5276210.025111197],[516783.6316145111,5276206.913464361],[516783.7232716203,5276203.779589793],[516783.789704294,5276201.579215774],[516813.0150405297,5276202.241432401],[516817.3639058591,5276202.342899469],[516828.53293089947,5276202.54186923],[516830.95896437566,5276202.604449174],[516830.95318345027,5276204.604946605],[516830.94624633976,5276207.005543534],[516830.9429062476,5276208.161386503],[516820.5252917838,5276207.875670312],[516817.2730673067,5276207.788481165],[516814.46398502885,5276207.713687097],[516790.53429914545,5276207.044499045]]]},"properties":{"id_build":1308,"id_source":"w145337934","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.1929301007,5276439.103341156],[516667.1324668222,5276439.08313104],[516666.53157633083,5276439.081411425],[516666.5621089828,5276428.412087777],[516673.5471555676,5276428.5432209205],[516674.14836534153,5276428.433802469],[516674.13754677516,5276432.212521239],[516673.4615441722,5276432.210585865],[516673.4106546487,5276434.24429666],[516673.37656922603,5276435.655673255],[516674.2027941415,5276435.658038712],[516674.1929301007,5276439.103341156]]]},"properties":{"id_build":1309,"id_source":"w145337935","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517093.5543074549,5276512.004226442],[517101.4242536637,5276517.695458526],[517099.6144271219,5276520.135218955],[517100.81358084036,5276521.027858045],[517102.6123107282,5276522.366817149],[517099.5958267834,5276526.470130523],[517097.57209311804,5276525.019372009],[517095.0843213667,5276528.123982113],[517089.31355667056,5276523.772594992],[517094.51704104897,5276516.674921988],[517091.6690459535,5276514.554907656],[517093.5543074549,5276512.004226442]]]},"properties":{"id_build":1310,"id_source":"w145337938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.75980560255,5276423.970533366],[516706.7919672758,5276420.614206682],[516709.96912210225,5276420.645549544],[516713.1537880609,5276420.676915694],[516713.16410585836,5276419.69891594],[516717.14495489036,5276419.732569142],[516717.08253370575,5276425.77838972],[516717.07068399555,5276427.2898556525],[516713.48041974986,5276427.257323351],[516713.46962348727,5276428.402031297],[516706.71723159426,5276428.338201481],[516706.75980560255,5276423.970533366]]]},"properties":{"id_build":1311,"id_source":"w145337940","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.2249259165,5276602.041416175],[516945.7098333448,5276598.3723054],[516947.9637581893,5276598.156584816],[516947.6739942948,5276594.488129638],[516958.4191573518,5276592.963452916],[516959.1547155591,5276598.300303184],[516959.522494141,5276600.968728374],[516955.9907422586,5276601.514143123],[516955.98847713403,5276602.292114825],[516951.9008859025,5276602.847027683],[516946.37061667367,5276603.597796705],[516946.2249259165,5276602.041416175]]]},"properties":{"id_build":1312,"id_source":"w145337941","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516569.1589265336,5276316.772204441],[516568.4258190121,5276310.435157834],[516568.3522868567,5276309.879250319],[516572.40965245315,5276309.446235263],[516572.77889241796,5276311.670079272],[516583.3729831122,5276310.588837857],[516584.40082944895,5276318.927239749],[516573.6568442844,5276319.896913014],[516573.36240181775,5276317.784421429],[516573.21628739557,5276316.339189954],[516569.1589265336,5276316.772204441]]]},"properties":{"id_build":1313,"id_source":"w145337942","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516891.1347322494,5276613.995602714],[516892.5340797486,5276623.557680408],[516889.6038641444,5276623.882600728],[516889.01201742404,5276620.768971189],[516880.1452926307,5276622.076940648],[516879.1150273713,5276614.738730815],[516883.1728494146,5276614.083654859],[516882.80471455934,5276611.526373342],[516887.68906168407,5276610.7625569375],[516888.04971576895,5276613.308703106],[516888.2041896236,5276614.431662567],[516891.1347322494,5276613.995602714]]]},"properties":{"id_build":1314,"id_source":"w145337944","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.93107249046,5276084.046963248],[517222.7400981614,5276081.940657906],[517228.28454186884,5276086.736061721],[517226.5512889029,5276088.620310073],[517226.9258820266,5276088.95483705],[517219.1613510951,5276098.267612018],[517210.319697754,5276090.795120696],[517213.40995672974,5276087.247782346],[517215.8080800457,5276089.144244796],[517218.2807174098,5276086.161895977],[517220.40657546173,5276083.600853777],[517220.93107249046,5276084.046963248]]]},"properties":{"id_build":1315,"id_source":"w145337946","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516670.1818092707,5276449.650130074],[516667.1022510827,5276449.641316076],[516667.1324668222,5276439.08313104],[516674.1929301007,5276439.103341156],[516674.71870928205,5276439.104846507],[516674.7823651609,5276443.106057973],[516674.18179327704,5276442.99319878],[516674.1398465626,5276444.526806552],[516674.0974543964,5276446.216008638],[516674.6986623595,5276446.106590245],[516674.7635909636,5276449.663246592],[516670.1818092707,5276449.650130074]]]},"properties":{"id_build":1316,"id_source":"w145337949","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517166.8489588574,5276618.580577553],[517175.19589241466,5276615.2709951615],[517175.49403417914,5276616.049852931],[517174.89250628225,5276616.270358448],[517175.1906480341,5276617.0492162],[517174.1348607828,5276618.490919701],[517174.93262738036,5276620.493788491],[517175.7751310156,5276622.6079291245],[517168.02940658364,5276625.808143224],[517166.836837104,5276622.6927137375],[517168.1904365711,5276622.141005127],[517166.8489588574,5276618.580577553]]]},"properties":{"id_build":1317,"id_source":"w145337951","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.59483290475,5276652.920783607],[517309.7551011564,5276653.123507804],[517309.75311908126,5276653.790340725],[517297.8833252419,5276654.644189807],[517297.74169116555,5276651.754134288],[517297.38331389,5276645.973800211],[517303.8968531085,5276645.448565601],[517309.32856432424,5276645.009034507],[517309.32559129264,5276646.009283873],[517312.1052725983,5276645.7952669505],[517312.17737470445,5276646.806853484],[517312.59483290475,5276652.920783607]]]},"properties":{"id_build":1318,"id_source":"w145337952","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.22544057714,5276389.7889128225],[516685.2480469976,5276381.898059481],[516687.95239923423,5276381.794668082],[516687.95271768485,5276381.6835293025],[516690.4614602359,5276381.690718274],[516692.1589926209,5276381.69558328],[516692.3044387022,5276383.363095518],[516695.4591439988,5276383.372138076],[516695.5097240795,5276391.93003943],[516692.0545757373,5276391.920135724],[516691.91008540156,5276389.91920713],[516685.22544057714,5276389.7889128225]]]},"properties":{"id_build":1319,"id_source":"w145337956","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.95156708546,5276222.220368039],[517308.9872522494,5276229.123023099],[517299.882938141,5276234.31954081],[517299.06097571715,5276232.872282952],[517295.44923361024,5276234.973211502],[517291.56343471626,5276228.182150535],[517295.4759659422,5276225.970973048],[517295.6252040056,5276226.304835392],[517301.04233106703,5276223.32015171],[517301.4907047492,5276224.09946169],[517304.95156708546,5276222.220368039]]]},"properties":{"id_build":1320,"id_source":"w145337964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516903.1605693834,5276611.140861891],[516902.1296859319,5276604.024925684],[516910.6205745257,5276602.827037952],[516910.1792780093,5276599.60270373],[516913.4863443987,5276598.834329157],[516914.7354408043,5276608.39597576],[516911.8048935325,5276608.832023742],[516911.98872880475,5276610.188462598],[516912.3196837134,5276612.612270344],[516907.4353347972,5276613.376066096],[516906.9927467461,5276610.59628733],[516903.1605693834,5276611.140861891]]]},"properties":{"id_build":1321,"id_source":"w145337965","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517215.23307244317,5276385.329897137],[517221.0032245264,5276389.903685524],[517218.66621058446,5276392.786409125],[517219.7151487452,5276393.678628365],[517215.492784047,5276399.1119933855],[517207.6995410358,5276392.865136388],[517209.7347880091,5276390.426075682],[517211.2334143071,5276391.653041448],[517212.236016144,5276390.433467225],[517213.41954408935,5276388.992148424],[517212.6697382045,5276388.545373379],[517215.23307244317,5276385.329897137]]]},"properties":{"id_build":1322,"id_source":"w145337966","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517258.73528944195,5276634.7451551445],[517259.09370585,5276640.525486645],[517253.90988622623,5276640.954685055],[517254.27390485,5276644.845656377],[517250.5174833989,5276645.167947313],[517250.15346228937,5276641.276976232],[517243.9177929188,5276641.814207707],[517243.62788869074,5276638.256875921],[517243.1927025778,5276633.032017121],[517251.6671513403,5276632.323592836],[517258.5188558977,5276631.74373931],[517258.73528944195,5276634.7451551445]]]},"properties":{"id_build":1323,"id_source":"w145337967","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516714.7056279539,5276586.590736155],[516716.56996442424,5276591.263956021],[516717.0171112226,5276592.487776591],[516712.28012014704,5276594.25241652],[516712.50321549096,5276595.031034864],[516707.0148162404,5276596.904662482],[516704.03148460796,5276589.560882434],[516709.74585575005,5276587.46562091],[516709.5975502636,5276586.798357005],[516711.3797162036,5276586.081062519],[516713.9589994075,5276585.032637068],[516714.7056279539,5276586.590736155]]]},"properties":{"id_build":1324,"id_source":"w145337970","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516672.45671105385,5276470.984351197],[516679.1492195798,5276470.959058283],[516680.2082832801,5276470.962091454],[516680.22591341246,5276475.296590501],[516679.71515966626,5276475.295127669],[516679.7182463222,5276476.839978434],[516679.7219059242,5276478.184779373],[516680.30777022295,5276478.186457332],[516680.31343389687,5276481.453980959],[516674.5222984181,5276481.470739185],[516672.4867966843,5276481.464911624],[516672.45671105385,5276470.984351197]]]},"properties":{"id_build":1325,"id_source":"w145337972","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5410906715,5276193.007678636],[516822.57344048034,5276193.1333510475],[516822.4903009915,5276195.911602712],[516829.0249372268,5276196.0416199295],[516829.85087504645,5276196.155146128],[516829.84766363876,5276197.266533581],[516831.04949460295,5276197.270006453],[516831.00483968365,5276199.726064193],[516830.977712736,5276201.3152831355],[516830.95896437566,5276202.604449174],[516828.53293089947,5276202.54186923],[516817.3639058591,5276202.342899469],[516817.3146952709,5276201.1757908175],[516817.3647058048,5276199.464384263],[516817.5410906715,5276193.007678636]]]},"properties":{"id_build":1326,"id_source":"w145337973","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516724.044408532,5276577.837508493],[516731.46364765783,5276583.638085228],[516727.0907001996,5276589.404789381],[516724.4621912561,5276589.2861004835],[516720.7143807936,5276586.60798516],[516720.7923620957,5276585.607951484],[516721.7735713633,5276583.94367284],[516721.0995009876,5276583.274899008],[516722.0115165932,5276582.166120387],[516722.9085106492,5276581.057298771],[516722.0842210842,5276580.388093476],[516724.044408532,5276577.837508493]]]},"properties":{"id_build":1327,"id_source":"w145337974","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.22544057714,5276389.7889128225],[516678.9160369596,5276389.770840486],[516678.91030791786,5276391.771338532],[516675.00512438064,5276391.537876761],[516674.80301729025,5276383.424100671],[516678.40871297836,5276383.323285548],[516678.41316875484,5276381.767342642],[516680.59908859455,5276381.718033058],[516682.76998606726,5276381.66868126],[516682.76934936194,5276381.890958817],[516685.2480469976,5276381.898059481],[516685.22544057714,5276389.7889128225]]]},"properties":{"id_build":1328,"id_source":"w145337976","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.0351038638,5276612.901207529],[517161.8425290167,5276609.785779142],[517163.0455851884,5276609.344765474],[517161.7788829818,5276605.895699325],[517170.2006132801,5276602.697469956],[517170.4246302057,5276603.142689561],[517169.8231011751,5276603.363195598],[517169.97102588066,5276604.141610179],[517169.21534667525,5276605.69533915],[517169.968510002,5276607.54248001],[517170.8559517485,5276609.70120827],[517163.0351038638,5276612.901207529]]]},"properties":{"id_build":1329,"id_source":"w145337977","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.60455288953,5276137.293740729],[517221.0826810887,5276134.393694421],[517218.3686753498,5276137.719861718],[517203.90689206216,5276125.674040223],[517216.4207206611,5276110.596016813],[517224.8132864835,5276117.51149124],[517244.96999132435,5276134.242090666],[517246.9183808155,5276135.803815571],[517236.9683052099,5276147.55516963],[517236.893519024,5276147.443808602],[517234.5856963713,5276145.503148445],[517232.77238257613,5276143.986283166],[517232.39746453374,5276143.762894508],[517231.4173509663,5276144.982531562],[517229.68345662387,5276147.089056583],[517229.00906453066,5276146.5313631445],[517227.0308250631,5276144.9028721005],[517221.81543128873,5276140.6196843],[517224.60455288953,5276137.293740729]]]},"properties":{"id_build":1330,"id_source":"w145337978","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516892.5340797486,5276623.557680408],[516891.1347322494,5276613.995602714],[516894.1403843917,5276613.559762225],[516893.9936160121,5276612.370141107],[516893.70004682196,5276610.002012767],[516898.73461495055,5276609.2386413915],[516899.10242046526,5276611.907062745],[516903.1605693834,5276611.140861891],[516904.19080504304,5276618.479076006],[516895.47429120983,5276619.787458179],[516895.9152717951,5276623.122930194],[516892.5340797486,5276623.557680408]]]},"properties":{"id_build":1331,"id_source":"w145337979","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.0351038638,5276612.901207529],[517170.8559517485,5276609.70120827],[517171.64555437793,5276611.926332057],[517172.1967736752,5276613.483914349],[517173.99808054394,5276613.933785289],[517174.4454573831,5276615.04650244],[517175.04698538885,5276614.825996876],[517175.19589241466,5276615.2709951615],[517166.8489588574,5276618.580577553],[517165.43204284256,5276615.131067739],[517164.22866011487,5276615.683219731],[517163.0351038638,5276612.901207529]]]},"properties":{"id_build":1332,"id_source":"w145337982","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516337.7194217889,5276509.501393433],[516336.8165382499,5276510.054559013],[516338.9093395303,5276513.728039486],[516333.0413823327,5276517.04577006],[516332.4436167754,5276515.93269684],[516329.28368619515,5276517.813210448],[516326.069521855,5276512.247215236],[516328.32657180267,5276510.919866787],[516326.2334512828,5276507.357528953],[516328.71614607715,5276505.919673548],[516328.7201969911,5276504.4748691],[516330.37512018386,5276503.590391959],[516331.5750177125,5276504.260594733],[516333.7566498249,5276503.044176574],[516335.02885198756,5276504.714839953],[516337.7194217889,5276509.501393433]]]},"properties":{"id_build":1333,"id_source":"w145337983","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.0308125049,5276390.070834495],[516706.1067906644,5276381.913398913],[516708.6830064428,5276381.965245157],[516708.68332528963,5276381.854106377],[516710.2833395235,5276381.81424102],[516713.04014316876,5276381.755467638],[516713.11047124065,5276383.422764866],[516716.2651765342,5276383.431818691],[516716.23997613665,5276392.211782271],[516712.78482793004,5276392.201866265],[516712.7154566658,5276390.201152683],[516706.0308125049,5276390.070834495]]]},"properties":{"id_build":1334,"id_source":"w145337984","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516518.01120495045,5276421.098210783],[516515.542924623,5276417.42360129],[516512.1559710244,5276419.859070581],[516506.7703039064,5276411.952886395],[516515.12408589997,5276406.1973059615],[516516.15665657003,5276407.6005940605],[516516.77024022694,5276408.424767763],[516518.3507381535,5276407.3178534545],[516521.9415973603,5276412.440464414],[516520.43652702443,5276413.436452032],[516523.20399110124,5276417.556471117],[516518.01120495045,5276421.098210783]]]},"properties":{"id_build":1335,"id_source":"w145337985","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.9109585862,5276147.123309944],[516651.94601089903,5276147.053543425],[516651.9847312733,5276144.019541784],[516652.006204453,5276141.763468368],[516650.6090945178,5276141.748360285],[516650.5914979999,5276142.648541111],[516645.8443485774,5276142.590516405],[516645.88357398397,5276139.378692774],[516658.22464775696,5276139.536229144],[516658.9006525393,5276139.549276541],[516658.8038267275,5276147.139837461],[516656.9109585862,5276147.123309944]]]},"properties":{"id_build":1336,"id_source":"w145337986","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517185.4517021284,5276525.055753925],[517192.57208048436,5276530.189199169],[517191.07122076186,5276532.274196267],[517189.9323995975,5276533.849019433],[517190.3787955135,5276535.295154067],[517189.7749624222,5276536.293629645],[517190.67398688564,5276537.074261716],[517190.2974524023,5276537.406569576],[517182.5775115519,5276531.826798953],[517184.84032601543,5276528.610422386],[517183.6418425066,5276527.495488347],[517185.4517021284,5276525.055753925]]]},"properties":{"id_build":1337,"id_source":"w145337988","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516939.75023026107,5276581.461724694],[516932.1806521488,5276575.771584197],[516933.9900680072,5276573.442910543],[516933.11319242243,5276572.784636334],[516930.84225058317,5276571.09982353],[516933.85794598,5276567.218700421],[516935.8059493202,5276568.891461273],[516938.3693747487,5276565.564724015],[516944.1402097498,5276569.915961681],[516939.2383643544,5276576.681226521],[516941.71148300875,5276578.577796315],[516939.75023026107,5276581.461724694]]]},"properties":{"id_build":1338,"id_source":"w145337989","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517193.5219631019,5276513.743317912],[517200.56723801396,5276518.876551078],[517199.2998708262,5276520.7399561405],[517198.22864443064,5276522.314977304],[517198.675039196,5276523.761112549],[517197.84521643835,5276524.98119944],[517198.66978779854,5276525.539333328],[517198.21748549945,5276526.093696459],[517190.49753709306,5276520.513915453],[517192.83579871163,5276517.1866249405],[517191.6366581993,5276516.293966872],[517193.5219631019,5276513.743317912]]]},"properties":{"id_build":1339,"id_source":"w145337990","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.69625532243,5276340.116551329],[516683.4151561387,5276339.993146712],[516683.26811453886,5276338.881328673],[516683.64367756026,5276338.8824044885],[516683.5781158651,5276335.548026198],[516683.5921238596,5276330.657920306],[516686.2213871341,5276330.554312891],[516686.287265812,5276333.777552421],[516686.2821711685,5276335.555772751],[516687.78442411334,5276335.560076935],[516687.69625532243,5276340.116551329]]]},"properties":{"id_build":1340,"id_source":"w145337992","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516921.06230761996,5276550.62168593],[516919.02691462793,5276553.171986505],[516920.19630336796,5276553.9755900735],[516921.95038587163,5276555.180995868],[516919.00915629003,5276559.2846208885],[516916.7471466441,5276562.278822899],[516914.3487999168,5276560.493620743],[516908.6527205466,5276556.25376962],[516913.7044442876,5276549.600054381],[516911.08172980713,5276547.480782793],[516913.2679867197,5276544.708638124],[516921.06230761996,5276550.62168593]]]},"properties":{"id_build":1341,"id_source":"w145337993","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.98697083746,5276600.338721499],[516935.31114238163,5276609.900591022],[516932.1552669371,5276610.335973511],[516932.35311750934,5276612.036987029],[516932.5949347147,5276614.116003569],[516927.710584307,5276614.879782319],[516927.1928969579,5276612.099783666],[516923.58636884077,5276612.533860923],[516922.5558335386,5276605.30678221],[516930.8968293532,5276603.997348706],[516930.53065338323,5276600.773231274],[516933.98697083746,5276600.338721499]]]},"properties":{"id_build":1342,"id_source":"w145337994","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.21283725597,5276248.830284825],[516647.40364599053,5276248.8000267865],[516647.4797155816,5276243.209919151],[516646.60842683614,5276243.196314863],[516645.9474568325,5276243.183311799],[516645.94640863425,5276243.550069687],[516641.6650471949,5276243.493379202],[516641.76127849024,5276236.102866662],[516645.88490611163,5276236.159106383],[516645.90507457627,5276234.35870151],[516650.4042731609,5276234.416017822],[516650.21283725597,5276248.830284825]]]},"properties":{"id_build":1343,"id_source":"w145337995","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.2913073146,5276546.461011791],[517172.1018109079,5276543.798995568],[517173.5259508554,5276544.803452926],[517175.9393031106,5276541.476377037],[517183.3594535098,5276546.832974877],[517182.8317164687,5276547.498256398],[517182.0819287676,5276547.051485136],[517181.62897392944,5276547.828127171],[517179.825680018,5276548.045086785],[517178.68656990404,5276549.719937094],[517177.4116726045,5276551.594438706],[517170.2913073146,5276546.461011791]]]},"properties":{"id_build":1344,"id_source":"w145337996","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516410.34324121574,5276565.831123986],[516406.429397881,5276568.709728772],[516407.2524726923,5276569.823444545],[516395.81109204615,5276578.571257717],[516389.8248519773,5276570.552349262],[516398.7816723657,5276563.909181891],[516398.1829854005,5276563.129518242],[516400.7420361269,5276561.247349669],[516402.1637996821,5276563.140728616],[516406.00284796226,5276560.150770581],[516410.34324121574,5276565.831123986]]]},"properties":{"id_build":1345,"id_source":"w145337997","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.93243625667,5276344.531260802],[516520.19928003236,5276338.194220101],[516523.3549554954,5276337.869753061],[516523.5771402256,5276338.981780086],[516524.62903192913,5276338.873624824],[516524.5573879519,5276337.650885211],[516524.4103159842,5276336.539071262],[516534.6291043454,5276335.345536942],[516535.7296039574,5276344.573253854],[516521.15241432877,5276346.421259166],[516520.93243625667,5276344.531260802]]]},"properties":{"id_build":1346,"id_source":"w145337999","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516487.63356162235,5276485.584289026],[516490.76429409895,5276494.039769613],[516482.1702829003,5276497.149580479],[516473.39582706837,5276500.325577396],[516470.264758569,5276491.981244912],[516477.55835021206,5276489.223384053],[516476.8876996676,5276487.332111892],[516477.41693334345,5276486.111072652],[516481.7777572805,5276484.5674567],[516482.9031598715,5276485.015200502],[516483.64860486373,5276487.01782474],[516487.63356162235,5276485.584289026]]]},"properties":{"id_build":1347,"id_source":"w145338000","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516316.73461361456,5276627.028351085],[516318.6082869731,5276628.478417172],[516316.1215987521,5276631.36108177],[516306.68029370735,5276623.332579293],[516316.62799029966,5276611.468494874],[516317.67702611885,5276612.360551712],[516319.2592995232,5276610.586750302],[516323.3055333292,5276614.043420827],[516321.7980571497,5276615.928570478],[516324.270735652,5276618.0471553905],[516316.73461361456,5276627.028351085]]]},"properties":{"id_build":1348,"id_source":"w145338001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.16350462975,5276534.828445533],[517136.6950320301,5276528.357414285],[517138.50487164233,5276525.917665318],[517137.4481724502,5276525.114349426],[517135.5821137629,5276523.686269593],[517138.6737348756,5276519.583195853],[517140.9227910876,5276521.0346318595],[517142.9586199269,5276518.373269908],[517148.804133197,5276522.836070202],[517143.67700664786,5276529.48936082],[517147.0491103948,5276532.166642715],[517145.16350462975,5276534.828445533]]]},"properties":{"id_build":1349,"id_source":"w145338002","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.5921238596,5276330.657920306],[516683.5781158651,5276335.548026198],[516683.64367756026,5276338.8824044885],[516683.26811453886,5276338.881328673],[516680.0382725543,5276338.872077657],[516679.96666119347,5276337.649336056],[516672.07951793866,5276337.737892767],[516672.02317574585,5276331.180490285],[516672.09987916943,5276330.6250114525],[516677.50799431826,5276330.640495148],[516683.5921238596,5276330.657920306]]]},"properties":{"id_build":1350,"id_source":"w145338003","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.8907887826,5276455.3037001835],[516706.29402528197,5276455.421733241],[516706.41396032204,5276465.98034944],[516699.35321085516,5276466.071238974],[516698.82743410417,5276466.069731393],[516698.6899587649,5276461.623748945],[516699.51618000487,5276461.6261180015],[516699.51997230115,5276460.30356637],[516699.52414701454,5276458.847648192],[516698.622814322,5276458.845063773],[516698.5579004369,5276455.288407075],[516703.8907887826,5276455.3037001835]]]},"properties":{"id_build":1351,"id_source":"w145338004","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516931.07396308734,5276336.373391101],[516927.83442863263,5276339.698165728],[516920.99611863465,5276332.976569873],[516912.6298168625,5276324.761272872],[516916.0195765015,5276321.436926186],[516919.861308765,5276317.669335677],[516922.6551400335,5276320.389261512],[516925.4789492201,5276323.131503772],[516924.34902742883,5276324.239617285],[516928.0936844841,5276328.029250035],[516929.22360626434,5276326.921137242],[516934.6903572907,5276332.605155218],[516932.6260010523,5276334.755263435],[516931.07396308734,5276336.373391101]]]},"properties":{"id_build":1352,"id_source":"w145338006","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516466.44843573053,5276380.641837062],[516462.45118617895,5276381.086209579],[516462.6269941489,5276382.664889826],[516462.75880293746,5276383.865570833],[516454.6891660625,5276384.765225329],[516453.9492169788,5276378.150324554],[516452.31127107184,5276378.323520774],[516451.7765466068,5276373.50966269],[516461.55928991997,5276372.425908458],[516461.7572236783,5276374.149132759],[516465.67933436437,5276373.715661284],[516466.44843573053,5276380.641837062]]]},"properties":{"id_build":1353,"id_source":"w145338009","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.5027590644,5276356.795546235],[516689.6768414376,5276356.682039718],[516689.8471307291,5276349.680727466],[516694.42867253604,5276349.804998043],[516695.85580934695,5276349.809089012],[516697.58307738026,5276349.92518048],[516697.57262623776,5276353.570532245],[516697.5642780681,5276356.482368125],[516696.88826666714,5276356.480430052],[516696.96274180355,5276356.7029229365],[516693.5826849343,5276356.693233713],[516690.5027590644,5276356.795546235]]]},"properties":{"id_build":1354,"id_source":"w145338011","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517198.21748549945,5276526.093696459],[517197.76518328825,5276526.648059623],[517196.94028381957,5276526.201064662],[517196.4128715408,5276526.75520614],[517194.91033945244,5276526.861909441],[517193.83927942056,5276528.381362023],[517192.57208048436,5276530.189199169],[517185.4517021284,5276525.055753925],[517187.56331626297,5276522.1723515475],[517188.8378944472,5276522.954091673],[517190.49753709306,5276520.513915453],[517198.21748549945,5276526.093696459]]]},"properties":{"id_build":1355,"id_source":"w145338013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.04806920385,5276323.662489892],[516608.56149847194,5276327.9984012665],[516607.43449042866,5276328.106327192],[516608.4584958795,5276337.778398909],[516600.34348234587,5276338.755520352],[516599.806342147,5276334.830758871],[516599.5340319732,5276332.862810514],[516598.5569336589,5276333.082305092],[516598.1176599608,5276329.080024957],[516601.04832350777,5276328.643819038],[516600.5342551537,5276324.530185876],[516608.04806920385,5276323.662489892]]]},"properties":{"id_build":1356,"id_source":"w145338015","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.46364765783,5276583.638085228],[516724.044408532,5276577.837508493],[516726.2305647635,5276575.065293717],[516727.0551738302,5276575.623360781],[516727.61321911484,5276574.846985543],[516728.48800172866,5276573.626961262],[516729.3874010967,5276574.296383215],[516730.4430857339,5276572.854599437],[516731.3450393911,5276572.634911201],[516734.8678447405,5276575.201246978],[516735.91203266074,5276577.760461424],[516731.46364765783,5276583.638085228]]]},"properties":{"id_build":1357,"id_source":"w145338016","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516985.0901306705,5276075.463537107],[516989.2966272776,5276075.475805147],[516989.2739353142,5276083.255515752],[516984.76665659907,5276083.353510267],[516984.6951056082,5276082.130765265],[516979.73713057814,5276082.227449451],[516978.4601598776,5276082.223726995],[516978.4851051405,5276073.666045341],[516982.5410469253,5276073.789009304],[516982.6113023103,5276075.45630915],[516985.0901306705,5276075.463537107]]]},"properties":{"id_build":1358,"id_source":"w145338017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.0777111475,5276366.793095081],[516564.35851729795,5276367.182618905],[516564.7822196793,5276371.3849037625],[516560.5446285673,5276371.817411478],[516560.4205404606,5276370.550066325],[516558.6097994609,5276370.7338553155],[516555.20623792417,5276371.068712525],[516554.3515285668,5276362.5863258075],[516563.3526048567,5276361.689458074],[516563.3015749905,5276361.144728541],[516567.4864689947,5276360.756528761],[516568.0777111475,5276366.793095081]]]},"properties":{"id_build":1359,"id_source":"w145338019","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516958.4191573518,5276592.963452916],[516957.90115898853,5276590.29459041],[516967.8198054437,5276588.878664076],[516968.4847798422,5276592.659353286],[516971.5658822164,5276592.112632766],[516971.93300774373,5276595.0033363495],[516972.2266431175,5276597.338127008],[516965.9222224142,5276598.264445005],[516962.5333377238,5276598.754702131],[516962.31092332315,5276597.7537965],[516959.1547155591,5276598.300303184],[516958.4191573518,5276592.963452916]]]},"properties":{"id_build":1360,"id_source":"w145338020","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.5972869465,5276537.873611258],[516973.9911678581,5276533.104492986],[516975.42344316264,5276531.33043173],[516977.3086481826,5276528.779712957],[516980.6060422239,5276531.345540525],[516978.72116059356,5276533.785119444],[516986.3661826561,5276539.364400306],[516981.0119826494,5276546.684009421],[516974.8287595672,5276542.087025882],[516972.61780850874,5276540.435713653],[516973.14616988716,5276539.548135539],[516970.5972869465,5276537.873611258]]]},"properties":{"id_build":1361,"id_source":"w145338022","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.0645910083,5276225.851110913],[517250.1718470764,5276219.179348579],[517244.29159818497,5276211.148762117],[517245.64661671704,5276210.152516642],[517242.0556074914,5276205.251737413],[517247.47568830906,5276201.26675535],[517251.066695476,5276206.167537895],[517251.8949283152,5276205.50315277],[517258.5531003182,5276214.63633515],[517259.68211909884,5276213.861702694],[517263.79726026667,5276219.319745112],[517255.0645910083,5276225.851110913]]]},"properties":{"id_build":1362,"id_source":"w145338024","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516531.5204305014,5276319.110321046],[516530.64052636665,5276311.550326414],[516530.56667518045,5276311.105558151],[516534.92480435653,5276310.562230992],[516535.21799902094,5276313.119275652],[516544.83592716284,5276311.924053209],[516545.6733025292,5276318.583697973],[516546.01184390683,5276321.040846358],[516541.1356008286,5276321.527123848],[516536.1692232072,5276322.013149503],[516535.7283280628,5276318.566568093],[516531.5204305014,5276319.110321046]]]},"properties":{"id_build":1363,"id_source":"w145338025","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.71665907174,5276538.906071527],[517027.51153036684,5276544.596984378],[517025.70141826384,5276547.147906587],[517026.67563779786,5276547.906505126],[517028.3992013609,5276549.26744951],[517025.23223908193,5276553.481500985],[517023.28360634064,5276552.030987819],[517021.1724093936,5276554.803310868],[517015.17661152466,5276550.340199717],[517020.3790072928,5276543.575876862],[517017.7556791211,5276541.678834776],[517019.71665907174,5276538.906071527]]]},"properties":{"id_build":1364,"id_source":"w145338032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516321.2221880637,5276660.605115925],[516321.994185258,5276661.185206059],[516322.8711471913,5276661.832274328],[516323.32366688765,5276661.166704494],[516328.721190726,5276664.849446475],[516324.7987307664,5276670.839993627],[516317.9015342072,5276666.263935217],[516317.4496383424,5276666.70722781],[516309.1275498303,5276661.349209609],[516318.3312640003,5276646.926831054],[516326.57763311255,5276652.506929346],[516321.2221880637,5276660.605115925]]]},"properties":{"id_build":1365,"id_source":"w145338034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516698.82386113843,5276572.097010564],[516704.3132373755,5276569.889958816],[516705.65596518334,5276573.116862421],[516705.12956049514,5276573.337631869],[516706.0842360913,5276575.685418647],[516707.2924340054,5276578.6785433255],[516704.58530366916,5276579.782174876],[516704.9579819943,5276580.783501425],[516700.4469509402,5276582.326519683],[516697.8366019438,5276575.872930472],[516700.0927567169,5276574.879142271],[516698.82386113843,5276572.097010564]]]},"properties":{"id_build":1366,"id_source":"w145338035","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.50711102615,5276661.309104884],[516576.64101115847,5276670.106600405],[516572.5018298336,5276672.984452699],[516571.0804647966,5276670.979892816],[516569.77852947265,5276671.876420064],[516568.82278835983,5276672.52942516],[516569.34664913855,5276673.197754032],[516564.3042778782,5276676.739880789],[516559.7410050175,5276670.28079855],[516564.707638415,5276666.960731891],[516563.8849235899,5276665.735854762],[516570.50711102615,5276661.309104884]]]},"properties":{"id_build":1367,"id_source":"w145338042","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516717.08253370575,5276425.77838972],[516717.14495489036,5276419.732569142],[516717.1417823032,5276418.221060105],[516721.27291931916,5276418.232919573],[516721.42027063435,5276419.233599947],[516723.67361771036,5276419.24007004],[516727.80475401296,5276419.251934143],[516727.6350588643,5276426.030968582],[516727.63250515686,5276426.920078873],[516720.8724728346,5276426.900666592],[516720.8759827639,5276425.678139944],[516717.08253370575,5276425.77838972]]]},"properties":{"id_build":1368,"id_source":"w145338044","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.7865106091,5276133.524856163],[516652.15747679595,5276133.517339207],[516652.1488977147,5276136.518085078],[516645.8395374322,5276136.388910493],[516645.8434759629,5276135.010790168],[516645.84779563895,5276133.499303358],[516647.6502440265,5276133.615594497],[516647.6689858203,5276127.058409124],[516655.0299708514,5276127.190592629],[516655.1000013947,5276128.9690271765],[516654.7865106091,5276133.524856163]]]},"properties":{"id_build":1369,"id_source":"w145338046","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.9107668768,5276683.189316969],[517276.6027573859,5276683.210631148],[517276.84039303707,5276686.656670076],[517272.51324132265,5276686.955025557],[517272.2972785305,5276683.798014588],[517270.75723135285,5276683.904586867],[517269.32987944863,5276684.0003797645],[517269.4017247879,5276685.100876873],[517265.5704179458,5276685.356252032],[517264.92297862767,5276675.729625664],[517276.3568324711,5276674.963328175],[517276.9107668768,5276683.189316969]]]},"properties":{"id_build":1370,"id_source":"w145338047","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516867.44372486806,5276598.9230702445],[516857.97577624145,5276600.340471974],[516857.5338069785,5276597.338419451],[516860.84054577403,5276596.681153819],[516859.5139966388,5276587.897273419],[516866.72771770274,5276586.806764136],[516867.242217293,5276590.698145364],[516869.94744211866,5276590.26142222],[516870.75851296174,5276595.48733987],[516868.20370223565,5276595.857814449],[516867.0014384791,5276596.032155814],[516867.44372486806,5276598.9230702445]]]},"properties":{"id_build":1371,"id_source":"w145338048","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516583.8013408294,5276368.549397242],[516578.15879979904,5276369.100145439],[516572.7341485042,5276369.629291173],[516572.4204320216,5276366.372005942],[516568.0777111475,5276366.793095081],[516567.4864689947,5276360.756528761],[516571.87429333857,5276360.324453531],[516572.0494714854,5276362.114300771],[516578.44336320716,5276361.487887548],[516578.0347556438,5276357.263416747],[516582.6554634321,5276356.8208985515],[516583.8013408294,5276368.549397242]]]},"properties":{"id_build":1372,"id_source":"w145338050","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517182.5775115519,5276531.826798953],[517190.2974524023,5276537.406569576],[517189.8451518176,5276537.960933362],[517189.09569144674,5276537.403022403],[517188.56828092324,5276537.957164598],[517186.9906418281,5276538.063648248],[517185.6176699348,5276540.0823403215],[517184.5011879971,5276541.723914333],[517177.45592683746,5276536.590700389],[517179.26643674914,5276533.928686421],[517180.4659033562,5276534.710203168],[517182.5775115519,5276531.826798953]]]},"properties":{"id_build":1373,"id_source":"w145338054","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.98307237215,5276656.081367511],[516649.91738840076,5276654.311520414],[516649.17011591804,5276652.97570714],[516648.57242477225,5276651.862601061],[516657.0743157097,5276646.774484944],[516659.24165640643,5276650.559435564],[516661.04712410585,5276649.564343061],[516661.705294692,5276655.790051327],[516653.4303272284,5276660.323110948],[516654.7001784105,5276662.771816661],[516651.766182946,5276664.430522536],[516646.98307237215,5276656.081367511]]]},"properties":{"id_build":1374,"id_source":"w145338061","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.53621929686,5276557.314148005],[516969.195111537,5276555.096186453],[516968.44576192903,5276554.4938483955],[516966.57241960877,5276552.976889803],[516969.438252237,5276548.984208704],[516971.6122289721,5276550.435360464],[516973.72372772015,5276547.551880719],[516978.0710310548,5276550.67646586],[516979.64509822184,5276551.792452486],[516974.59232890245,5276558.779527144],[516977.2156632806,5276560.676549824],[516975.3304685107,5276563.227268733],[516967.53621929686,5276557.314148005]]]},"properties":{"id_build":1375,"id_source":"w145338064","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517162.3773580354,5276581.2244326575],[517162.23630968464,5276578.112103324],[517163.8136098962,5276578.116751792],[517163.59974548506,5276574.226229416],[517170.4353729894,5276574.024099838],[517172.4633318353,5276574.030079369],[517172.46202096675,5276574.474634603],[517171.7857070303,5276574.583780151],[517171.8581949631,5276575.473112083],[517170.50229057216,5276576.802791488],[517170.7056504081,5276579.159554291],[517170.86538620194,5276581.027173483],[517162.3773580354,5276581.2244326575]]]},"properties":{"id_build":1376,"id_source":"w145338065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.71665907174,5276538.906071527],[517021.451336175,5276536.466066762],[517024.22423582914,5276538.58582723],[517029.5027376158,5276531.488315757],[517030.55167941074,5276532.380501118],[517035.34864906245,5276535.839863285],[517033.01048516145,5276539.167216891],[517035.1093398549,5276540.618172684],[517032.16867303965,5276544.499463059],[517029.9870355482,5276543.103836114],[517029.01990416204,5276542.489739438],[517027.51153036684,5276544.596984378],[517019.71665907174,5276538.906071527]]]},"properties":{"id_build":1377,"id_source":"w145338066","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.014077943,5276227.201428651],[517118.5764272356,5276227.448867779],[517118.6306353829,5276234.561968434],[517117.57544691226,5276235.781403955],[517115.54802352394,5276235.553166329],[517115.4676840565,5276237.331165581],[517110.4353774133,5276237.2052399935],[517110.4494168605,5276232.426273791],[517111.42589873617,5276232.429142539],[517111.35568248335,5276230.761840635],[517110.0039567562,5276230.646729833],[517110.014077943,5276227.201428651]]]},"properties":{"id_build":1378,"id_source":"w145338067","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.61650699284,5276500.243625821],[517217.5219264933,5276500.36631022],[517217.52619789797,5276498.921505893],[517220.6805126607,5276499.041971895],[517220.2799845521,5276507.487409828],[517217.68155738787,5276507.346359473],[517215.99934617773,5276507.252474575],[517214.8700612768,5276508.138254497],[517213.9690645233,5276508.024451509],[517213.890669071,5276509.135617456],[517213.2146752454,5276509.133619409],[517213.21763164084,5276508.133370247],[517213.61650699284,5276500.243625821]]]},"properties":{"id_build":1379,"id_source":"w145338070","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516524.86435684736,5276573.601313702],[516523.8219676539,5276570.375304455],[516521.1407221985,5276562.365638564],[516531.44116436166,5276558.727258372],[516534.64343184634,5276568.405503912],[516531.4105625127,5276569.507723146],[516531.93222847633,5276570.954020206],[516529.526197486,5276571.836308297],[516529.07964062,5276570.39022463],[516528.2150599641,5276570.676734046],[516527.4256520812,5276570.941228987],[516528.0224284892,5276572.3877388565],[516524.86435684736,5276573.601313702]]]},"properties":{"id_build":1380,"id_source":"w145338075","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.00442714687,5276588.3333323775],[517160.93914270547,5276584.998946751],[517162.44165913167,5276584.892234714],[517162.3773580354,5276581.2244326575],[517170.86538620194,5276581.027173483],[517171.46626217326,5276581.028945169],[517171.388531096,5276581.917834174],[517170.7122180445,5276582.02697985],[517170.86047088687,5276582.694255616],[517169.35467713565,5276583.912353576],[517169.4236921093,5276585.97975687],[517169.49244489707,5276588.136071223],[517161.00442714687,5276588.3333323775]]]},"properties":{"id_build":1381,"id_source":"w145338076","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517193.5219631019,5276513.743317912],[517195.40759779885,5276511.0815307675],[517196.8323981555,5276511.863716168],[517198.94402267784,5276508.980317952],[517200.0677249396,5276509.983894479],[517206.28908337106,5276514.33672287],[517206.0624388894,5276514.78061233],[517205.38775907794,5276514.334060001],[517204.48380820564,5276515.220507648],[517202.9812729836,5276515.327208873],[517201.78934285074,5276517.079696459],[517200.56723801396,5276518.876551078],[517193.5219631019,5276513.743317912]]]},"properties":{"id_build":1382,"id_source":"w145338078","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.98697083746,5276600.338721499],[516936.91752409743,5276599.902684671],[516937.4335917673,5276603.238378219],[516946.2249259165,5276602.041416175],[516946.37061667367,5276603.597796705],[516947.1803233535,5276609.268280538],[516943.4229269878,5276609.924186004],[516943.79071199655,5276612.59261023],[516938.90668206126,5276613.245240781],[516938.5076874937,5276610.976829219],[516938.24169093877,5276609.464554865],[516935.31114238163,5276609.900591022],[516933.98697083746,5276600.338721499]]]},"properties":{"id_build":1383,"id_source":"w145338079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.5693817131,5276164.126699312],[516653.76027672034,5276164.051982811],[516653.6845700563,5276166.885827417],[516647.067398986,5276166.711315355],[516647.1515668711,5276163.544075919],[516649.10442627047,5276163.594113673],[516649.15454644733,5276161.827136526],[516649.3326339671,5276157.3376037935],[516655.4770682107,5276157.34405705],[516656.83633087424,5276157.4590837695],[516656.64272719366,5276159.49238568],[516656.5693817131,5276164.126699312]]]},"properties":{"id_build":1384,"id_source":"w145338080","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516412.84039399575,5276665.863895654],[516414.04024854064,5276666.534115691],[516415.9057395312,5276670.873822884],[516414.0258388984,5276671.646501944],[516415.487372752,5276675.407143954],[516416.71031294623,5276678.544731337],[516418.0638274799,5276677.992848527],[516419.10719546885,5276680.885422798],[516408.58046294824,5276684.967922156],[516403.73412285687,5276672.284341343],[516409.82478462084,5276669.856427039],[516408.8558920649,5276667.18634379],[516412.84039399575,5276665.863895654]]]},"properties":{"id_build":1385,"id_source":"w145338083","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516557.51415128954,5276238.274487984],[516557.7334898829,5276240.386764942],[516558.1008442799,5276243.27744029],[516557.12404850434,5276243.3858030625],[516555.24651860923,5276243.269326335],[516553.6688122302,5276243.375981663],[516553.67355036084,5276241.708900328],[516552.321185148,5276241.816196485],[516552.2508090172,5276240.148901688],[516553.7530864893,5276240.153171241],[516553.7584563916,5276238.263812404],[516557.51415128954,5276238.274487984]]]},"properties":{"id_build":1386,"id_source":"w145338084","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516479.180492564,5276553.022158738],[516478.7326638324,5276552.020634249],[516473.91997456487,5276554.007532949],[516470.5623492207,5276546.107117375],[516475.07428962825,5276544.230504786],[516474.62708829745,5276543.006703014],[516474.6277170908,5276542.784425394],[516480.0425537985,5276540.3546723975],[516481.90677874355,5276545.138955127],[516482.80159357743,5276544.785840589],[516483.8618391455,5276544.366510612],[516486.248997278,5276550.152532255],[516479.180492564,5276553.022158738]]]},"properties":{"id_build":1387,"id_source":"w145338085","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.2916256427,5276543.91893362],[517254.42366225,5276543.597755083],[517254.71126009536,5276547.9330584975],[517253.43419379584,5276547.995958787],[517253.7505848675,5276552.753678642],[517254.153550987,5276558.7119646715],[517252.1249282664,5276558.928234314],[517246.790487916,5276559.46813298],[517246.50189743465,5276555.466246303],[517246.14214610454,5276550.130471603],[517243.6631904144,5276550.234270851],[517243.2299714789,5276544.34257998],[517250.2916256427,5276543.91893362]]]},"properties":{"id_build":1388,"id_source":"w145338088","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.5342551537,5276324.530185876],[516600.16977818793,5276320.639258501],[516599.02017168485,5276320.7693495825],[516597.2394274015,5276320.964326092],[516596.35897542466,5276313.626598846],[516601.5433513879,5276313.085676012],[516601.4710896037,5276312.085212997],[516608.8340600514,5276311.439367333],[516609.71227800887,5276319.55506786],[516607.83382289374,5276319.771990415],[516608.19829479913,5276323.662918273],[516608.04806920385,5276323.662489892],[516600.5342551537,5276324.530185876]]]},"properties":{"id_build":1389,"id_source":"w145338089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517173.41479020775,5276557.028499829],[517171.99695821106,5276558.980378973],[517170.9260083205,5276560.466494175],[517171.071640189,5276562.022880365],[517170.4678131524,5276563.021357977],[517171.3674914211,5276563.579709488],[517171.3665083366,5276563.913125907],[517163.569837313,5276558.88885277],[517165.83197567257,5276555.894746335],[517164.4071820134,5276555.11256845],[517166.4439926469,5276552.117798155],[517167.7182394286,5276553.010672509],[517173.41479020775,5276557.028499829]]]},"properties":{"id_build":1390,"id_source":"w145338091","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.05656647217,5276569.861295649],[516887.646485941,5276573.641757592],[516888.0877970104,5276576.866089937],[516884.5560374502,5276577.411548008],[516884.9989610868,5276580.08018608],[516879.96404750977,5276580.9547081655],[516879.6541927213,5276579.019978491],[516879.3738017139,5276577.28538578],[516876.4432415473,5276577.721451566],[516875.1173554576,5276568.715290208],[516878.04792004655,5276568.279223751],[516878.5653127924,5276571.1703565875],[516887.05656647217,5276569.861295649]]]},"properties":{"id_build":1391,"id_source":"w145338092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.12501634983,5276379.91073393],[516424.0117833797,5276379.932969521],[516423.92538842635,5276383.933753828],[516425.42762873217,5276383.937990368],[516428.35699733027,5276383.946252739],[516428.34530384414,5276388.091729307],[516428.32909597305,5276393.837604374],[516416.01074637886,5276393.802869985],[516416.0223371268,5276389.690735014],[516418.65125505574,5276389.698145654],[516418.74203273834,5276384.141418297],[516416.03800028807,5276384.133795905],[516416.12501634983,5276379.91073393]]]},"properties":{"id_build":1392,"id_source":"w145338094","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.4353729894,5276574.024099838],[517163.59974548506,5276574.226229416],[517162.17266338994,5276574.222023695],[517162.0316147279,5276571.109694397],[517163.5344623032,5276570.8918438265],[517163.3957070806,5276567.001542868],[517172.4095237747,5276566.805835438],[517172.33212009456,5276567.583585612],[517171.5059137246,5276567.581149442],[517171.6531837523,5276568.58184163],[517170.1473862113,5276569.799939364],[517170.2626792789,5276571.456261908],[517170.4353729894,5276574.024099838]]]},"properties":{"id_build":1393,"id_source":"w145338096","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516655.1000013947,5276128.9690271765],[516661.33393633546,5276129.209135633],[516661.4641379048,5276136.211305709],[516664.84368671395,5276136.4432534585],[516664.9105342515,5276139.333075521],[516664.45888925076,5276139.665202239],[516658.9006525393,5276139.549276541],[516658.22464775696,5276139.536229144],[516658.18482332723,5276137.702311093],[516658.1584326215,5276136.424129693],[516654.70345054474,5276136.3031097725],[516654.7865106091,5276133.524856163],[516655.1000013947,5276128.9690271765]]]},"properties":{"id_build":1394,"id_source":"w145338097","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.2233309667,5276179.523405319],[516614.4682841606,5276179.532660816],[516614.86823065684,5276178.889191739],[516615.29834992863,5276178.201352902],[516615.3975601072,5276169.755022709],[516620.1373029367,5276169.768545719],[516623.43484192394,5276169.777956237],[516623.7108762584,5276178.336496992],[516622.350882654,5276181.111106768],[516620.1728753135,5276180.993751698],[516620.0124977064,5276184.549762839],[516611.27679735696,5276184.480386129],[516611.2066591496,5276182.73529361],[516611.2233309667,5276179.523405319]]]},"properties":{"id_build":1395,"id_source":"w145338098","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.49244489707,5276588.136071223],[517169.5304002506,5276590.547916272],[517169.5554307463,5276592.248428652],[517170.75455888064,5276593.141082307],[517170.82639133855,5276594.252691873],[517171.5778123012,5276594.143767679],[517171.5755183821,5276594.921739357],[517169.62234846444,5276595.027120369],[517162.71196386,5276595.117890683],[517162.49678931833,5276591.671923487],[517161.144820856,5276591.667939357],[517161.00442714687,5276588.3333323775],[517169.49244489707,5276588.136071223]]]},"properties":{"id_build":1396,"id_source":"w145338100","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.8132272443,5276112.107452926],[516470.7333975235,5276113.774321521],[516467.504059421,5276113.542911195],[516468.1326356518,5276103.764401686],[516469.5642322124,5276102.212494814],[516480.0031063629,5276103.019998537],[516479.7664391873,5276107.0203553075],[516478.5649042043,5276106.905816235],[516478.5249253146,5276107.761478219],[516478.4853866309,5276108.4615459815],[516483.36726961733,5276108.697638814],[516483.1306003307,5276112.697995491],[516470.8132272443,5276112.107452926]]]},"properties":{"id_build":1397,"id_source":"w145338104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.21283725597,5276248.830284825],[516650.4042731609,5276234.416017822],[516654.7005686678,5276234.506099303],[516654.66556538106,5276236.23977794],[516658.8041520374,5276236.318297518],[516658.7408915234,5276240.0524092605],[516658.6775357079,5276243.819862649],[516654.7342503385,5276243.741901599],[516654.7430647198,5276243.2862541815],[516654.0745833543,5276243.273228711],[516653.4211247568,5276243.260246278],[516653.32993137604,5276248.883652526],[516650.21283725597,5276248.830284825]]]},"properties":{"id_build":1398,"id_source":"w145338105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516991.75136024825,5276109.49170499],[516998.00281841704,5276103.730682445],[517000.09956892586,5276105.95959532],[516999.5721377502,5276106.513754304],[517000.7404054028,5276107.728586583],[517002.5676782188,5276109.634408768],[517003.3913539503,5276110.5259306375],[517000.6797328067,5276113.074227864],[516993.82541274314,5276119.500326677],[516990.75508145255,5276116.268318813],[516990.83895044867,5276113.267792247],[516993.17401664477,5276111.051810871],[516991.75136024825,5276109.49170499]]]},"properties":{"id_build":1399,"id_source":"w145338107","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.592871686,5276405.782560502],[517175.7281365202,5276409.330583175],[517173.40524468303,5276407.434357463],[517174.611293084,5276405.993097215],[517172.06371959456,5276403.873930004],[517171.38509212853,5276404.761047069],[517165.91470833,5276400.410470887],[517171.04131744616,5276393.979478413],[517176.1894108717,5276398.095715384],[517178.16023059236,5276399.668598441],[517179.1402905492,5276398.448952066],[517182.21233509894,5276401.014228621],[517178.592871686,5276405.782560502]]]},"properties":{"id_build":1400,"id_source":"w145338109","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.2913073146,5276546.461011791],[517177.4116726045,5276551.594438706],[517176.0541880625,5276553.457583039],[517174.9983236491,5276554.921514028],[517175.36961179273,5276556.367426043],[517174.61556383607,5276557.365460191],[517175.2154589454,5276557.700648671],[517174.98881849647,5276558.144539361],[517173.41479020775,5276557.028499829],[517167.7182394286,5276553.010672509],[517169.75472483493,5276550.127042179],[517168.4056954595,5276549.122807157],[517170.2913073146,5276546.461011791]]]},"properties":{"id_build":1401,"id_source":"w145338110","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517225.1557395243,5276331.901020191],[517224.1743440904,5276333.565213808],[517221.1221869275,5276331.889092179],[517215.0253786237,5276328.536875948],[517219.02738371666,5276321.435763412],[517224.80219822505,5276324.45361226],[517225.70749640296,5276323.122612902],[517228.70674914774,5276324.909720132],[517228.3292125933,5276325.575441752],[517231.17922416644,5276327.028689592],[517229.59363635146,5276329.802492149],[517227.7056267491,5276333.242238998],[517225.1557395243,5276331.901020191]]]},"properties":{"id_build":1402,"id_source":"w145338113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.05656647217,5276569.861295649],[516886.615898793,5276566.4146858],[516895.2570582297,5276565.217211197],[516894.8157501911,5276561.992878357],[516898.1218683828,5276561.557911486],[516899.521862744,5276570.897712447],[516896.14064012916,5276571.332460602],[516896.47328071145,5276573.178345468],[516896.8798053026,5276575.44677576],[516891.7704210617,5276576.098792099],[516891.32878961565,5276572.985598283],[516887.646485941,5276573.641757592],[516887.05656647217,5276569.861295649]]]},"properties":{"id_build":1403,"id_source":"w145338114","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516709.7243320666,5276333.1779091945],[516712.8039518916,5276333.18674558],[516713.17983421375,5276333.076684531],[516713.1788774279,5276333.410100841],[516713.7053040352,5276333.189332147],[516713.60946045286,5276340.413136686],[516710.00405635,5276340.402791302],[516710.00086766575,5276341.514179018],[516700.9125652471,5276341.376971162],[516701.01126133837,5276333.15291751],[516707.1859698669,5276333.015031512],[516709.72496979136,5276332.955631655],[516709.7243320666,5276333.1779091945]]]},"properties":{"id_build":1404,"id_source":"w145338115","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517208.15169821994,5276341.519911849],[517201.25250048045,5276337.720780319],[517197.50310394703,5276335.598052925],[517201.0514521687,5276329.495846166],[517204.651282552,5276331.395854517],[517206.23751469667,5276328.399767663],[517213.21117607446,5276332.421404547],[517211.4743876427,5276335.528184345],[517210.7245746933,5276335.081409605],[517209.84827595076,5276336.768144133],[517208.98713159194,5276338.410467681],[517209.661831622,5276338.8570202505],[517208.15169821994,5276341.519911849]]]},"properties":{"id_build":1405,"id_source":"w145338117","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517168.4223475765,5276237.709299538],[517160.68561337603,5276237.686498987],[517160.0122076158,5276236.795397204],[517159.94462487684,5276234.23898468],[517158.8933567379,5276234.124747759],[517158.9071085086,5276229.456920345],[517163.63961993455,5276229.359724883],[517163.7111313033,5276230.582472459],[517165.36331210815,5276230.69848122],[517165.2931112669,5276229.031178631],[517168.3727867442,5276229.040255772],[517168.4223475765,5276237.709299538]]]},"properties":{"id_build":1406,"id_source":"w145338118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517243.2299714789,5276544.34257998],[517241.6523330323,5276544.449048827],[517241.43687403016,5276541.11421768],[517239.55879469606,5276541.219797642],[517239.2698692465,5276537.32905025],[517240.6225083982,5276537.110774886],[517240.1935623692,5276529.77427998],[517247.9312254374,5276529.352631911],[517248.2664356692,5276535.366286489],[517248.50149444793,5276539.690319932],[517250.0037280119,5276539.683655382],[517250.2916256427,5276543.91893362],[517243.2299714789,5276544.34257998]]]},"properties":{"id_build":1407,"id_source":"w145338120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.95981978177,5276251.664452645],[516692.96943168034,5276237.827591571],[516697.2586269867,5276237.773202544],[516697.26864751213,5276239.518124042],[516701.4225091547,5276239.507805973],[516701.40232353314,5276241.308210708],[516701.4468622833,5276246.731954242],[516697.0526416548,5276246.7415832],[516697.0544258795,5276246.119206172],[516696.4760496133,5276246.1175481165],[516695.98780990567,5276246.116148504],[516696.0019576822,5276251.662058526],[516692.95981978177,5276251.664452645]]]},"properties":{"id_build":1408,"id_source":"w145338122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.35817069875,5276538.691870197],[517100.75614411617,5276540.588286982],[517097.73999710276,5276544.580462604],[517095.7613026759,5276543.140950849],[517094.6670131553,5276542.348646341],[517092.8575232265,5276544.677270136],[517085.13782546064,5276538.986490019],[517087.1736224962,5276536.325108568],[517089.9468246009,5276538.333761579],[517095.2250807905,5276531.34744829],[517097.9979562342,5276533.467243926],[517100.84593973705,5276535.587261442],[517098.35817069875,5276538.691870197]]]},"properties":{"id_build":1409,"id_source":"w145338123","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516437.73578211525,5276337.027322271],[516436.6691829015,5276337.024312051],[516436.69665742305,5276332.612145166],[516442.1197299937,5276332.64968044],[516442.16816117434,5276326.137033229],[516439.6293498424,5276326.129866463],[516439.65886569035,5276320.995297646],[516450.07688929955,5276321.069169426],[516449.9979511671,5276333.06091557],[516446.71555877535,5276333.040531569],[516444.2594057685,5276333.022482221],[516444.23296104453,5276337.067891139],[516437.73578211525,5276337.027322271]]]},"properties":{"id_build":1410,"id_source":"w145338126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.2195319077,5276349.887232619],[516489.2924417599,5276350.665416705],[516485.1596843148,5276351.209415777],[516484.7181322147,5276347.985115683],[516475.40135506116,5276348.959009662],[516474.9607405311,5276345.401294008],[516475.7872925837,5276345.29249251],[516474.83283652837,5276337.510016129],[516483.69927066076,5276336.423706905],[516484.16920212517,5276340.237127396],[516484.433410504,5276342.427326575],[516488.26540922857,5276341.993615163],[516489.2195319077,5276349.887232619]]]},"properties":{"id_build":1411,"id_source":"w145338128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.1987808469,5276313.079136292],[516643.90736395563,5276313.095447069],[516643.8527998493,5276316.418367425],[516643.8170060755,5276318.429893264],[516645.2441505449,5276318.433971814],[516645.15792066266,5276322.323614037],[516641.4773926471,5276322.313096433],[516641.4691361152,5276325.202704427],[516634.7840987447,5276325.183606973],[516634.79393911624,5276321.738305135],[516635.7700883779,5276321.852232941],[516635.87027984066,5276313.072484819],[516638.1987808469,5276313.079136292]]]},"properties":{"id_build":1412,"id_source":"w145338129","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516684.5820054198,5276242.071321719],[516684.5969667422,5276239.470696389],[516688.5479571682,5276239.4820159245],[516688.5527020535,5276237.826048497],[516692.96943168034,5276237.827591571],[516692.95981978177,5276251.664452645],[516689.79749992717,5276251.666503965],[516689.7981142249,5276246.209548023],[516689.05448760645,5276246.207417172],[516688.2282358108,5276246.205049675],[516688.22648437304,5276246.816312825],[516684.59097685013,5276246.805897223],[516684.5820054198,5276242.071321719]]]},"properties":{"id_build":1413,"id_source":"w145338130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.56664931326,5276218.089596064],[517115.6737600498,5276218.326881197],[517115.74593483674,5276219.327350646],[517117.92424546706,5276219.333752356],[517118.5970063754,5276220.447126719],[517118.5764272356,5276227.448867779],[517110.014077943,5276227.201428651],[517110.0222401856,5276224.422959967],[517111.4490814482,5276224.538291446],[517111.4546322348,5276222.648932745],[517110.628703453,5276222.5353665855],[517110.56664931326,5276218.089596064]]]},"properties":{"id_build":1414,"id_source":"w145338134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516460.0192814614,5276529.295215216],[516462.10885667545,5276534.080128344],[516452.1814534157,5276538.60880241],[516450.389800583,5276534.713851931],[516449.4875379747,5276535.044722464],[516447.6968238742,5276530.816356422],[516448.4488667784,5276530.485061333],[516450.32913138374,5276529.601254632],[516448.7621772565,5276525.929218821],[516456.9595512985,5276522.2847674675],[516459.0488174855,5276527.18081824],[516460.0192814614,5276529.295215216]]]},"properties":{"id_build":1415,"id_source":"w145338136","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517195.0100752866,5276213.225856234],[517188.9087660774,5276218.987111863],[517183.6661854455,5276213.748075757],[517183.7449065264,5276212.525771179],[517185.62768172787,5276210.864230601],[517184.8033922383,5276210.194960204],[517188.41904515686,5276206.760298265],[517191.56433348963,5276209.992632878],[517190.7354521548,5276210.879304054],[517191.7837714631,5276211.99379541],[517192.8383236738,5276210.996650817],[517195.0100752866,5276213.225856234]]]},"properties":{"id_build":1416,"id_source":"w145338139","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.5161613529,5276516.04731395],[516690.2640070403,5276516.113623442],[516690.19194287265,5276520.292270214],[516689.1554530654,5276520.2781858975],[516689.12827006006,5276521.900747851],[516689.1013418531,5276523.434398761],[516690.10024413513,5276523.459489325],[516690.0988427043,5276523.948500059],[516689.93360022514,5276523.9480265],[516689.879966363,5276526.937531172],[516682.3166578448,5276526.815835304],[516682.4979184417,5276515.980232304],[516686.5161613529,5276516.04731395]]]},"properties":{"id_build":1417,"id_source":"w145338140","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517035.24264163716,5276520.724546939],[517042.96208691545,5276526.52639938],[517041.07685230725,5276529.077096964],[517042.22346849745,5276529.95845626],[517043.84974840627,5276531.196866759],[517040.908420631,5276535.300430292],[517040.0087255739,5276534.742098999],[517037.7469691818,5276537.625115263],[517035.34864906245,5276535.839863285],[517030.55167941074,5276532.380501118],[517035.8298693957,5276525.39413422],[517033.281973273,5276523.386166116],[517035.24264163716,5276520.724546939]]]},"properties":{"id_build":1418,"id_source":"w145338142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.35607418703,5276653.309460205],[516570.30898182234,5276651.75052454],[516573.9965765317,5276649.204804649],[516576.53982924693,5276652.879654369],[516583.38831619243,5276648.120144072],[516587.80199656077,5276654.356539101],[516589.0813743528,5276653.47106559],[516592.82160168514,5276658.81642831],[516586.87631975237,5276662.911661665],[516583.28599014255,5276657.677869325],[516580.89276198007,5276659.349264703],[516577.2652890049,5276661.88403742],[516571.35607418703,5276653.309460205]]]},"properties":{"id_build":1419,"id_source":"w145338143","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516658.6775357079,5276243.819862649],[516658.7408915234,5276240.0524092605],[516663.38286559604,5276240.087916058],[516663.3774283326,5276241.988388756],[516667.4861243016,5276242.011259175],[516667.43518309266,5276249.312989407],[516663.9574478511,5276249.291924211],[516663.95916494523,5276248.691774929],[516663.2906524201,5276248.689862277],[516662.539514752,5276248.687713322],[516662.5091984484,5276254.0334445145],[516658.64090658136,5276254.000151195],[516658.6775357079,5276243.819862649]]]},"properties":{"id_build":1420,"id_source":"w145338145","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.9166753097,5276254.182956638],[516675.97179240244,5276240.179516485],[516680.5387797818,5276240.170366392],[516680.5483278609,5276242.0819959855],[516684.5820054198,5276242.071321719],[516684.59097685013,5276246.805897223],[516684.59823127405,5276249.517725891],[516680.5946043756,5276249.528486185],[516680.5959093973,5276249.0728172865],[516679.8597945251,5276249.070709123],[516679.34150956536,5276249.06922486],[516679.35694626084,5276254.170579802],[516675.9166753097,5276254.182956638]]]},"properties":{"id_build":1421,"id_source":"w145338150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516677.5002887559,5276149.705097958],[516685.22726859554,5276153.172557282],[516685.602525208,5276153.284771935],[516684.16610790376,5276156.503707024],[516682.81594867515,5276155.833001745],[516681.9237987714,5276157.853188109],[516680.01855312224,5276162.159950058],[516679.71809358837,5276162.159089612],[516672.2161491262,5276158.803421301],[516675.0129014041,5276152.698746772],[516674.1875908461,5276152.362965078],[516675.62464001053,5276148.921750083],[516677.5002887559,5276149.705097958]]]},"properties":{"id_build":1422,"id_source":"w145338158","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517168.02940658364,5276625.808143224],[517175.7751310156,5276622.6079291245],[517176.7368249134,5276625.055840788],[517177.3406178152,5276626.613578679],[517179.0664834737,5276627.17436848],[517178.9156099779,5276627.396202988],[517179.2140784624,5276628.063922146],[517179.9661509629,5276627.732721403],[517180.26429143746,5276628.511579434],[517171.8425927453,5276631.7097943025],[517170.5007918277,5276628.260504637],[517169.2223024362,5276628.812434149],[517168.02940658364,5276625.808143224]]]},"properties":{"id_build":1423,"id_source":"w145338162","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.28058505175,5276627.536977323],[516693.3343394492,5276626.762019669],[516691.1647820996,5276623.755028219],[516690.6377454764,5276624.198076627],[516687.94560778525,5276620.078191362],[516694.8693338596,5276615.31902734],[516699.2074927832,5276621.666430204],[516700.3360394216,5276621.002828017],[516702.9546528442,5276624.566809505],[516693.17106003466,5276631.318280769],[516691.00150431856,5276628.311289359],[516692.28058505175,5276627.536977323]]]},"properties":{"id_build":1424,"id_source":"w145338164","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.61650699284,5276500.243625821],[517213.21763164084,5276508.133370247],[517210.91213532485,5276507.993188728],[517209.3125456883,5276507.899549927],[517207.58106497827,5276509.228110873],[517206.9050711646,5276509.22611356],[517206.82700544165,5276510.226140806],[517206.1510117455,5276510.22414358],[517206.466229555,5276505.223785419],[517206.77849258744,5276501.2236764645],[517210.15780944156,5276501.455941323],[517210.31197167333,5276500.122719714],[517213.61650699284,5276500.243625821]]]},"properties":{"id_build":1425,"id_source":"w145338165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516918.9141399428,5276457.547029952],[516918.74209725973,5276449.544469814],[516923.23393985356,5276449.490836693],[516923.30614449055,5276450.491304048],[516924.74076788116,5276450.495472991],[516926.8363695887,5276450.501563337],[516926.8389537269,5276449.612453029],[516929.46784515766,5276449.620094315],[516929.51937230397,5276457.733444249],[516926.9659186345,5276457.61488245],[516926.81246629736,5276458.725833736],[516923.1320240507,5276458.715137932],[516923.06046539044,5276457.492392985],[516918.9141399428,5276457.547029952]]]},"properties":{"id_build":1426,"id_source":"w145338167","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516826.7068914081,5276608.363241816],[516832.85234824265,5276613.04887096],[516831.0423427529,5276615.599853693],[516829.5433737272,5276614.484124202],[516828.11084214295,5276616.369360225],[516829.28764511854,5276617.206308969],[516833.1328672705,5276619.940346102],[516830.2671629628,5276623.933094411],[516826.6696411597,5276621.255344721],[516824.6339930244,5276623.916817231],[516820.13708702486,5276620.569634825],[516826.32010670047,5276612.252015339],[516824.89624500595,5276611.13650407],[516826.7068914081,5276608.363241816]]]},"properties":{"id_build":1427,"id_source":"w145338168","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.0640409757,5276406.097752944],[517207.50071864633,5276409.313231539],[517209.0744522152,5276410.54041872],[517206.88833243423,5276413.201313441],[517198.34562277986,5276406.396555798],[517200.6829494515,5276403.402685241],[517201.5072096003,5276404.071958158],[517202.5025258862,5276402.774562919],[517203.61854678486,5276401.299700805],[517202.8690700279,5276400.741788232],[517206.6387802639,5276395.973915243],[517212.9337258001,5276400.882665468],[517209.2397820927,5276405.428478812],[517210.0640409757,5276406.097752944]]]},"properties":{"id_build":1428,"id_source":"w145338169","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517118.70674584503,5276208.666640491],[517108.5669686363,5276208.414567558],[517108.5751301403,5276205.636098956],[517109.85174736875,5276205.750988746],[517109.9324119627,5276203.86185076],[517108.6554678604,5276203.858099696],[517108.6688527743,5276199.30141123],[517113.7766331764,5276199.316417169],[517113.847828873,5276200.65030279],[517117.3030912938,5276200.660456452],[517117.43862178316,5276205.662141412],[517118.71556549455,5276205.665894403],[517118.70674584503,5276208.666640491]]]},"properties":{"id_build":1429,"id_source":"w145338170","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.2505477502,5276532.568018746],[516714.23746242846,5276532.497688316],[516714.2306059921,5276529.652491807],[516714.26983634545,5276526.4517804785],[516715.83957543614,5276526.478513787],[516715.87804108317,5276523.544535608],[516721.9242226208,5276523.628576779],[516721.8850518765,5276526.807060297],[516723.25950437726,5276526.833234881],[516723.2309395809,5276528.933693571],[516723.7792437077,5276528.935268075],[516723.7603918769,5276530.268890587],[516723.25715395657,5276530.267445493],[516723.2505477502,5276532.568018746]]]},"properties":{"id_build":1430,"id_source":"w145338171","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516746.6498233929,5276604.909424253],[516745.3007343536,5276603.905287303],[516749.07057756523,5276598.914840215],[516751.2570576102,5276596.031495917],[516753.3681107647,5276593.259075188],[516754.11920402327,5276593.261235964],[516757.21051877,5276589.157960011],[516757.0631781359,5276588.157278442],[516759.62649265316,5276584.830462674],[516761.4361563201,5276582.3905967325],[516765.4323156312,5276577.067392436],[516766.85651699913,5276578.07175025],[516746.6498233929,5276604.909424253]]]},"properties":{"id_build":1431,"id_source":"w145338172","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.66891291726,5276166.062696697],[517261.24861324474,5276166.854245214],[517263.3508405639,5276167.193894862],[517265.37070494896,5276169.978374796],[517264.8435835888,5276170.421371127],[517266.0404783918,5276172.092014788],[517254.44843944017,5276180.282001447],[517252.1294314409,5276177.052080336],[517254.7640434519,5276175.170509617],[517252.37057719234,5276171.7180884415],[517255.45686827204,5276169.5044368245],[517254.18518431287,5276167.7224341],[517256.66891291726,5276166.062696697]]]},"properties":{"id_build":1432,"id_source":"w145338173","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.9873950573,5276656.711071435],[516634.58540593705,5276657.71303719],[516640.4543481174,5276654.062193169],[516643.0707596535,5276658.404119661],[516643.6937153677,5276658.561495666],[516644.4217593866,5276658.741400039],[516643.51092869946,5276662.07298891],[516642.9877106292,5276661.182375704],[516638.8494425941,5276663.726764408],[516639.44745191,5276664.728730676],[516642.81176658993,5276670.184191537],[516636.943156591,5276673.723894408],[516628.870813592,5276659.9195113005],[516633.9873950573,5276656.711071435]]]},"properties":{"id_build":1433,"id_source":"w145338174","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516769.1732608185,5276529.954917905],[516769.16046015033,5276534.400470076],[516768.48446938145,5276534.398523645],[516768.5458192307,5276539.177708527],[516767.7202489501,5276538.953052042],[516767.7879991769,5276541.509460828],[516761.5538697067,5276541.491514831],[516761.7117666988,5276538.824615848],[516760.6602263051,5276538.821589444],[516760.7141523292,5276535.743174237],[516760.75132915203,5276533.264865362],[516759.69978775654,5276533.261839131],[516759.7844929818,5276529.927891156],[516769.1732608185,5276529.954917905]]]},"properties":{"id_build":1434,"id_source":"w145338175","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.93918767857,5276541.493775966],[516721.6698886168,5276541.57691146],[516721.61665339366,5276544.421935509],[516723.17887662206,5276544.448649245],[516723.14264132734,5276546.604655826],[516723.76605371776,5276546.606446017],[516723.74688276247,5276548.051207375],[516723.093426563,5276548.049330915],[516723.05572327494,5276550.716576025],[516713.9752585327,5276550.579368537],[516714.03896736784,5276546.700775046],[516714.0836033935,5276544.23360131],[516715.8936895517,5276544.261024455],[516715.93918767857,5276541.493775966]]]},"properties":{"id_build":1435,"id_source":"w145338179","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516917.612213872,5276432.547923665],[516917.66488782293,5276440.272287482],[516914.0971977185,5276440.228583061],[516914.09971534816,5276439.361700527],[516912.19943133864,5276439.345067993],[516910.4643922148,5276439.328915884],[516910.4433353974,5276441.40716758],[516906.9807694978,5276441.37488673],[516907.0345278934,5276433.206273156],[516910.31683130166,5276433.238030603],[516910.3374040296,5276431.326487113],[516914.0102878692,5276431.359380732],[516914.0068019471,5276432.5596796125],[516917.612213872,5276432.547923665]]]},"properties":{"id_build":1436,"id_source":"w145338180","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516952.4676607564,5276418.456734214],[516952.5204505181,5276426.125528892],[516946.2107621838,5276426.218305673],[516946.14082482643,5276424.439866577],[516944.5257657056,5276424.490737292],[516942.9858181236,5276424.541826967],[516943.1341011858,5276425.209096694],[516938.77731100086,5276425.307563244],[516938.79929148115,5276417.750125986],[516942.5548712344,5276417.761050133],[516942.6332159819,5276416.649880814],[516946.4642314472,5276416.549887206],[516946.5335220414,5276418.550603853],[516952.4676607564,5276418.456734214]]]},"properties":{"id_build":1437,"id_source":"w145338184","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.5398204581,5276532.5226495825],[516743.47792336275,5276532.548339968],[516743.4230159062,5276535.971285588],[516743.38523936813,5276538.6607583035],[516741.6577086867,5276538.655791889],[516741.7993023718,5276541.656971491],[516735.9407230808,5276541.640132532],[516735.9490270524,5276538.750523577],[516734.52161715983,5276538.857561479],[516734.3784228789,5276536.412076101],[516733.85392984544,5276535.966010124],[516733.8571232766,5276534.854622072],[516734.45800390386,5276534.856348655],[516734.5398204581,5276532.5226495825]]]},"properties":{"id_build":1438,"id_source":"w145338195","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.9407230808,5276541.640132532],[516741.7993023718,5276541.656971491],[516741.7906759932,5276544.657719261],[516743.36766546307,5276544.773392644],[516743.4276277232,5276547.429804477],[516743.50063081825,5276550.775320117],[516734.48776536924,5276550.638274995],[516734.41840388905,5276548.63756063],[516733.7427341264,5276548.52447942],[516733.7468855757,5276547.079674926],[516734.4976654275,5276547.1929719625],[516734.42990067706,5276544.636563572],[516736.0072096726,5276544.641096151],[516735.9407230808,5276541.640132532]]]},"properties":{"id_build":1439,"id_source":"w145338197","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.2361503834,5276318.533266288],[517253.74663911655,5276315.759247394],[517252.9217138958,5276315.312244714],[517254.7346311889,5276311.872283555],[517255.7094534112,5276312.430870331],[517257.5213852983,5276309.324326331],[517264.19590050477,5276312.900578871],[517262.3081944142,5276316.229175714],[517261.55838283326,5276315.782394437],[517260.67485161655,5276317.369074164],[517259.8215636443,5276318.889159811],[517260.6464878336,5276319.336163471],[517259.13566736976,5276322.22131936],[517252.2361503834,5276318.533266288]]]},"properties":{"id_build":1440,"id_source":"w145338200","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517196.7809870162,5276224.01163696],[517200.3215243841,5276220.576760558],[517204.81524121994,5276225.035621655],[517203.8354752653,5276226.1441247165],[517206.45625961927,5276228.930359456],[517199.4338717642,5276236.278181116],[517193.3831360751,5276230.003150175],[517195.4925630577,5276227.897722971],[517196.6159924074,5276229.012437001],[517199.25253214093,5276226.464008639],[517196.7809870162,5276224.01163696]]]},"properties":{"id_build":1441,"id_source":"w145338201","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516606.46123879857,5276643.073465539],[516600.327988354,5276634.053661295],[516603.2626179878,5276632.172651934],[516601.54271900875,5276629.500395267],[516607.3368766277,5276625.73816508],[516608.9819821823,5276628.299070413],[516609.7346557943,5276627.745518464],[516615.26893090137,5276636.096785223],[516611.5062010233,5276638.642264748],[516611.1322423998,5276638.085499418],[516609.792580692,5276639.037479995],[516608.6485824473,5276639.856651227],[516609.3961828848,5276641.081320425],[516606.46123879857,5276643.073465539]]]},"properties":{"id_build":1442,"id_source":"w145338202","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.8345039249,5276502.443207164],[517277.228539854,5276502.654787982],[517277.2750568855,5276502.1659109825],[517276.3578750623,5276492.316206369],[517280.18950720155,5276491.994154794],[517279.9671431006,5276490.993237077],[517290.9356094198,5276490.247813581],[517292.0964610518,5276504.032592078],[517287.1378488911,5276504.462430177],[517287.0653775792,5276503.5730968695],[517286.9942258277,5276502.239208389],[517280.90895487915,5276502.665707625],[517280.8345039249,5276502.443207164]]]},"properties":{"id_build":1443,"id_source":"w145338203","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516929.51937230397,5276457.733444249],[516929.46784515766,5276449.620094315],[516932.92328274227,5276449.519000162],[516932.91714320844,5276451.630637145],[516934.89256666217,5276451.636380977],[516936.5224787879,5276451.64112069],[516936.4499532367,5276450.751791948],[516940.35605731857,5276450.6520128045],[516940.5497094071,5276461.544269597],[516936.94405674085,5276461.644922334],[516936.5743192698,5276459.643331942],[516932.74397861026,5276459.521054413],[516932.67403762514,5276457.742615396],[516929.51937230397,5276457.733444249]]]},"properties":{"id_build":1444,"id_source":"w145338204","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.46003083343,5276648.912729059],[517200.4081818678,5276649.020762026],[517201.1336627775,5276657.691808532],[517197.60257824854,5276658.014799131],[517197.53107999306,5276656.792050285],[517186.93815461494,5276657.649896245],[517186.7128290891,5276657.6492312495],[517186.06210734585,5276649.089547068],[517193.04884952056,5276648.554471071],[517192.97669394413,5276647.553999942],[517194.55955385853,5276645.669296844],[517201.17075761734,5276645.133121772],[517201.3369748681,5276647.345294545],[517201.46003083343,5276648.912729059]]]},"properties":{"id_build":1445,"id_source":"w145338206","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.07562002866,5276432.444959823],[516931.35802074615,5276432.4433874935],[516931.3607024894,5276431.520935576],[516935.11633798527,5276431.509627191],[516935.1138495501,5276432.365395836],[516938.74179512984,5276432.353718493],[516938.74937427836,5276440.077951492],[516934.9036107215,5276440.088995429],[516934.9062607169,5276439.17765738],[516933.2988461837,5276439.184097523],[516931.3759641212,5276439.189620974],[516931.3729592661,5276440.223211688],[516928.083051803,5276440.224762169],[516928.07562002866,5276432.444959823]]]},"properties":{"id_build":1446,"id_source":"w145338207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.1694914565,5276212.204530228],[517153.02383305336,5276212.212935702],[517152.9277711106,5276219.325594177],[517150.74946044624,5276219.319179377],[517150.81999285845,5276220.875343006],[517149.990137538,5276222.095436217],[517144.7321487854,5276222.079956254],[517144.7502402669,5276215.93398361],[517143.39808645204,5276215.963345438],[517143.4196767319,5276208.62818829],[517148.22666461766,5276208.753478848],[517148.2916351401,5276212.199001075],[517150.1694914565,5276212.204530228]]]},"properties":{"id_build":1447,"id_source":"w145338208","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517137.26007426437,5276183.1590691805],[517137.1059209849,5276184.492292038],[517133.72543661663,5276184.593486359],[517133.72968680627,5276183.148682741],[517131.0255602422,5276183.140728618],[517131.1215956647,5276176.028070246],[517144.11644196353,5276176.066305886],[517144.0318403648,5276179.289108207],[517144.933216487,5276179.291761453],[517144.989029153,5276185.849168193],[517140.5572682053,5276185.836124351],[517140.489676149,5276183.279712285],[517137.26007426437,5276183.1590691805]]]},"properties":{"id_build":1448,"id_source":"w145338212","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516472.2916240235,5276704.819517863],[516467.8866590367,5276695.471322679],[516479.16952724947,5276689.612834393],[516478.1236748109,5276687.609359921],[516484.29166231304,5276684.403764095],[516485.41230671946,5276686.518591123],[516488.19539767335,5276685.0816538725],[516490.0624010054,5276688.865690915],[516487.2045179701,5276690.191275802],[516491.8350946696,5276699.428984851],[516485.59264015715,5276702.412082437],[516483.8749104945,5276698.961888449],[516478.60977452254,5276701.6254547695],[516472.2916240235,5276704.819517863]]]},"properties":{"id_build":1449,"id_source":"w145338218","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516850.4259418468,5276613.766531414],[516847.11985696864,5276614.20152532],[516846.9738184785,5276612.756286128],[516844.64479415596,5276612.9718285315],[516844.8210697217,5276614.350471276],[516845.4529910249,5276619.197992164],[516841.0947409788,5276619.852225562],[516840.2078952966,5276614.848372341],[516836.8263814645,5276615.394293713],[516836.165822641,5276610.057676158],[516846.30973216536,5276608.642194402],[516846.0905131278,5276606.529905075],[516849.32149311254,5276606.0946932705],[516850.4259418468,5276613.766531414]]]},"properties":{"id_build":1450,"id_source":"w145338219","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517154.95552610647,5276219.442706056],[517155.1267047752,5276212.330268847],[517157.98071891523,5276212.449815496],[517159.933689407,5276212.455569078],[517159.86872577504,5276209.0100467],[517164.37558342,5276209.023326639],[517164.20341082336,5276216.469179802],[517163.0015836535,5276216.465638177],[517162.9104220321,5276221.911215372],[517157.2765350528,5276222.005756129],[517156.5270306747,5276221.44784974],[517156.53292345355,5276219.447352314],[517154.95552610647,5276219.442706056]]]},"properties":{"id_build":1451,"id_source":"w145338220","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.07320472837,5276199.448356732],[516622.06495814346,5276202.3379641725],[516612.8255744459,5276202.42274308],[516612.9945063363,5276195.865985478],[516614.6501945016,5276194.759311744],[516614.5858591499,5276190.980380097],[516621.34616501443,5276190.999668357],[516621.4903679083,5276193.111733252],[516622.76699691836,5276193.226516247],[516622.7558953051,5276197.116372383],[516621.4041527149,5276197.001375026],[516621.32206072134,5276199.446213108],[516622.07320472837,5276199.448356732]]]},"properties":{"id_build":1452,"id_source":"w145338221","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3291203006,5276479.350491839],[516520.185895406,5276480.608567302],[516517.5389702382,5276481.668000585],[516518.2096082715,5276483.559277439],[516513.9986800682,5276485.214430894],[516508.7061447024,5276470.973545554],[516511.71373149066,5276469.870674905],[516512.6826105288,5276472.540774473],[516520.2015795396,5276469.783605893],[516519.3081296599,5276467.002579336],[516522.46625775244,5276465.789001548],[516526.3436438832,5276475.802575204],[516522.58400322945,5276477.236723719],[516523.3291203006,5276479.350491839]]]},"properties":{"id_build":1453,"id_source":"w145338223","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516713.5019786626,5276482.560503212],[516713.3997573128,5276492.007085394],[516710.1474670169,5276491.997752814],[516707.54112814233,5276491.990275126],[516707.46984353376,5276490.656394076],[516704.3155151093,5276490.536206076],[516704.40879600204,5276484.201510084],[516707.56376553036,5276484.099420532],[516707.5679104008,5276482.65461618],[516709.82155180443,5276482.549942175],[516709.8985758397,5276481.883324906],[516711.4755829067,5276481.998989597],[516711.54909910547,5276482.554899107],[516713.5019786626,5276482.560503212]]]},"properties":{"id_build":1454,"id_source":"w145338224","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.738653627,5276391.394490513],[516662.5365448377,5276391.502190849],[516662.5314573531,5276393.280411342],[516663.7332477862,5276393.283849786],[516663.79818393645,5276396.840505698],[516655.98686873337,5276396.707021366],[516655.995768342,5276393.595135488],[516654.71854825964,5276393.702622632],[516654.6593272215,5276388.145468803],[516655.034887062,5276388.146542782],[516655.0450574332,5276384.590101827],[516663.6829390307,5276384.61481002],[516663.738653627,5276391.394490513]]]},"properties":{"id_build":1455,"id_source":"w145338225","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516679.7911977476,5276608.718577493],[516676.65475527104,5276602.374630508],[516681.0925652695,5276600.16454578],[516682.5113631012,5276603.058242875],[516685.74551662325,5276601.51155217],[516688.3593705692,5276606.742609218],[516691.668632794,5276605.19613703],[516693.6103208222,5276609.091593199],[516681.80163442605,5276614.837021242],[516680.4576299114,5276612.054678212],[516681.736394427,5276611.391502696],[516680.2424891474,5276608.497590617],[516679.7911977476,5276608.718577493]]]},"properties":{"id_build":1456,"id_source":"w145338226","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516917.66488782293,5276440.272287482],[516917.612213872,5276432.547923665],[516920.62427802355,5276432.523332062],[516920.611742045,5276431.667519773],[516924.8932218904,5276431.635504636],[516924.9057249408,5276432.502430815],[516928.07562002866,5276432.444959823],[516928.083051803,5276440.224762169],[516924.4699719576,5276440.292059188],[516924.4577918405,5276439.313994211],[516922.4447762645,5276439.319258682],[516920.8147961189,5276439.336750676],[516920.82717059035,5276440.2481323695],[516917.66488782293,5276440.272287482]]]},"properties":{"id_build":1457,"id_source":"w145338228","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516704.3132373755,5276569.889958816],[516698.82386113843,5276572.097010564],[516697.7051836036,5276569.315309854],[516695.6753118087,5276569.976328517],[516693.0652704569,5276563.411602785],[516697.27587522054,5276561.867717424],[516698.0228299015,5276563.314675488],[516700.8047576158,5276562.322395105],[516701.9456810869,5276565.204185934],[516702.7435853025,5276567.218103334],[516703.1945620245,5276567.108257054],[516704.3132373755,5276569.889958816]]]},"properties":{"id_build":1458,"id_source":"w145338229","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.6698886168,5276541.57691146],[516715.93918767857,5276541.493775966],[516715.9787060476,5276538.193039662],[516714.19859822415,5276538.187930481],[516714.2140515414,5276535.420595778],[516714.23746242846,5276532.497688316],[516723.2505477502,5276532.568018746],[516723.23671775765,5276534.768545516],[516723.83008738415,5276534.770249436],[516723.82625756215,5276536.103915099],[516723.23288807244,5276536.102211179],[516723.2108449735,5276538.547221761],[516721.7236663702,5276538.542951449],[516721.6698886168,5276541.57691146]]]},"properties":{"id_build":1459,"id_source":"w145338230","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.6829390307,5276384.61481002],[516655.0450574332,5276384.590101827],[516655.1300220341,5276381.14501447],[516654.6039198111,5276381.254649679],[516654.54469843995,5276375.697495963],[516656.1220531408,5276375.702006795],[516656.0555227497,5276372.701044989],[516663.5667394776,5276372.722530914],[516663.63199404714,5276376.168047928],[516662.27965787705,5276376.27531851],[516662.4251126563,5276377.9428299675],[516663.70170036674,5276378.057622066],[516663.6829390307,5276384.61481002]]]},"properties":{"id_build":1460,"id_source":"w145338232","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.9052339006,5276489.29388101],[516770.8973907668,5276484.192545373],[516770.8703505026,5276467.499282166],[516770.8633392615,5276462.10898584],[516767.69362231303,5276462.110972967],[516767.68050489173,5276456.231644396],[516777.6028083989,5276456.215764356],[516777.61085090315,5276458.638633276],[516782.1476231432,5276458.629476707],[516782.1968181045,5276491.082415818],[516776.12030294153,5276491.087136646],[516776.117978227,5276489.286666501],[516772.2948132484,5276489.286768766],[516770.9052339006,5276489.29388101]]]},"properties":{"id_build":1461,"id_source":"w145338233","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.5827982815,5276451.9718759945],[517313.73202941124,5276452.305738937],[517308.6949573406,5276453.846723315],[517308.17446406465,5276452.066940161],[517305.54326160945,5276452.837099425],[517302.6863962326,5276453.717729195],[517302.38925350277,5276452.6054487415],[517299.0663692744,5276453.595835566],[517297.2077686019,5276447.1330948165],[517300.53062317317,5276446.153820813],[517300.4561722259,5276445.931320119],[517310.9809959665,5276442.850681019],[517313.5827982815,5276451.9718759945]]]},"properties":{"id_build":1462,"id_source":"w145338234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517188.9087660774,5276218.987111863],[517195.0100752866,5276213.225856234],[517196.95746704104,5276215.12098089],[517196.05281513993,5276216.229707025],[517197.1762466521,5276217.344421134],[517197.92935752816,5276216.67980656],[517200.9247351218,5276219.800563972],[517200.3215243841,5276220.576760558],[517196.7809870162,5276224.01163696],[517196.1820430038,5276223.343030277],[517195.2777206301,5276224.340617796],[517193.85153704596,5276224.002988285],[517188.9087660774,5276218.987111863]]]},"properties":{"id_build":1463,"id_source":"w145338237","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.65943577065,5276691.184176617],[516871.52862894896,5276692.625717314],[516872.80224565335,5276693.740804966],[516870.6918153858,5276696.29090522],[516864.3965829063,5276691.493661402],[516866.4322259192,5276688.83220252],[516867.85573867674,5276690.058862976],[516874.11386200285,5276681.74151089],[516878.9104780034,5276685.311883917],[516876.7249339155,5276687.861764275],[516880.4722854635,5276690.6511195805],[516877.5317970522,5276694.532488523],[516873.3790563128,5276691.675276613],[516872.65943577065,5276691.184176617]]]},"properties":{"id_build":1464,"id_source":"w145338241","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516649.1142526682,5276357.232781887],[516648.5216138456,5276354.341456013],[516647.018095097,5276354.781717043],[516645.5310938116,5276349.442762213],[516646.13262884674,5276349.222202095],[516645.3159207174,5276345.885677453],[516653.6597655042,5276343.686736506],[516655.3686021869,5276350.248864282],[516654.01530676085,5276350.689553109],[516654.5366445642,5276352.246999452],[516655.73939696216,5276351.917019906],[516656.5560982547,5276355.253546054],[516649.1142526682,5276357.232781887]]]},"properties":{"id_build":1465,"id_source":"w145338244","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.9746347262,5276368.635057004],[516710.97718584357,5276367.745946795],[516708.573275547,5276367.850189461],[516708.34793885244,5276367.849543001],[516706.545181537,5276367.866599394],[516700.6110603173,5276367.938491955],[516700.7094371466,5276359.825576729],[516712.0520375008,5276359.635833556],[516712.19875414134,5276360.858791143],[516716.40504415764,5276360.870862595],[516716.3878185531,5276366.872356463],[516712.0313083823,5276366.859853947],[516712.1013180469,5276368.638289899],[516710.9746347262,5276368.635057004]]]},"properties":{"id_build":1466,"id_source":"w145338251","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.93243625667,5276344.531260802],[516517.4005715451,5276345.076941581],[516517.2534984134,5276343.965127798],[516507.8609665791,5276345.161034403],[516507.7129466025,5276344.38263719],[516504.7822982025,5276344.818890046],[516504.12234742317,5276339.148896907],[516507.05331361794,5276338.6015049415],[516506.8317557026,5276337.267201009],[516516.07375959534,5276336.18200549],[516516.1911978349,5276337.149253622],[516516.36727632326,5276338.627910514],[516520.19928003236,5276338.194220101],[516520.93243625667,5276344.531260802]]]},"properties":{"id_build":1467,"id_source":"w145338253","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.59719628363,5276186.583967687],[516824.5453584517,5276186.581806259],[516824.5851630126,5276185.8039435465],[516824.6252886239,5276184.91494209],[516826.06742461986,5276184.941336013],[516827.85521617753,5276184.924273083],[516827.7601933753,5276191.814658166],[516829.11225447344,5276191.818564676],[516829.0593503114,5276194.530219816],[516829.0249372268,5276196.0416199295],[516822.4903009915,5276195.911602712],[516822.57344048034,5276193.1333510475],[516817.5410906715,5276193.007678636],[516817.5495304829,5276190.084729665],[516817.59719628363,5276186.583967687]]]},"properties":{"id_build":1468,"id_source":"w145338254","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.2195319077,5276349.887232619],[516488.26540922857,5276341.993615163],[516492.54808391974,5276341.561182456],[516492.32061658753,5276339.660050063],[516492.03456961387,5276337.22528142],[516500.7510971291,5276336.027433985],[516501.63103608286,5276343.587424312],[516501.85007576324,5276345.810838252],[516501.32208398945,5276346.587319942],[516497.038782696,5276347.242023744],[516496.81690803333,5276346.01885895],[516493.1348215582,5276346.564128925],[516493.42771788465,5276349.232310362],[516489.2195319077,5276349.887232619]]]},"properties":{"id_build":1469,"id_source":"w145338257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.56080596324,5276437.277283824],[516985.90549893363,5276444.93873306],[516983.26773300953,5276445.397827304],[516983.3933154922,5276446.120601776],[516979.76356369955,5276446.754628493],[516979.6232177536,5276445.942899273],[516975.9709329052,5276446.5768626565],[516974.64089321875,5276439.03771218],[516978.41345796664,5276438.370756673],[516978.59809345525,5276439.449350324],[516980.07102053217,5276439.198023168],[516982.1301401267,5276438.837265909],[516981.93809135834,5276437.725308608],[516984.56080596324,5276437.277283824]]]},"properties":{"id_build":1470,"id_source":"w145338260","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516743.47792336275,5276532.548339968],[516734.5398204581,5276532.5226495825],[516734.62035964173,5276530.633505735],[516734.0201172709,5276530.409501524],[516733.87436779967,5276528.853126629],[516734.47588775464,5276528.632575606],[516734.557065672,5276526.521154162],[516736.13437957544,5276526.525686761],[516736.2181132152,5276523.52515492],[516742.0767107299,5276523.541994114],[516742.1431944439,5276526.54295773],[516743.57028797537,5276526.547060494],[516743.5240737,5276529.558814103],[516743.47792336275,5276532.548339968]]]},"properties":{"id_build":1471,"id_source":"w145338262","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.9242226208,5276523.628576779],[516715.87804108317,5276523.544535608],[516715.8728122948,5276520.132531241],[516714.29517770524,5276520.239142935],[516714.33290896064,5276517.56078402],[516714.3875123328,5276514.237863183],[516723.25021374517,5276514.374445693],[516723.2435118315,5276516.708360529],[516723.7692840158,5276516.7098703245],[516723.8396070741,5276518.377168048],[516723.1632953218,5276518.4863656815],[516723.15818912274,5276520.264586523],[516721.8809954826,5276520.37205889],[516721.9242226208,5276523.628576779]]]},"properties":{"id_build":1472,"id_source":"w145338263","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516961.2935142561,5276439.032166732],[516964.2453244354,5276439.062992094],[516964.22470164706,5276440.985649337],[516965.8395621382,5276441.00146737],[516967.7999345842,5276441.018292471],[516967.8022659314,5276440.218093211],[516971.5051885522,5276440.251110634],[516971.4384226164,5276447.697278026],[516968.2687943224,5276447.665814367],[516968.2651676767,5276448.9105687905],[516964.35193920956,5276448.876940799],[516964.3725620328,5276446.954283528],[516961.22546668304,5276446.922889344],[516961.2935142561,5276439.032166732]]]},"properties":{"id_build":1473,"id_source":"w145338269","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.58686932287,5276483.809119226],[516722.56772193796,5276490.477447033],[516719.71351722395,5276490.469252187],[516719.63393963,5276492.024979718],[516716.9374680011,5276492.017239066],[516713.3997573128,5276492.007085394],[516713.5019786626,5276482.560503212],[516716.13085498934,5276482.568048232],[516716.057977225,5276481.789861074],[516717.7107330223,5276481.683465445],[516717.9335130409,5276482.5732226465],[516719.7361710934,5276482.57839762],[516719.7323422723,5276483.912063176],[516722.58686932287,5276483.809119226]]]},"properties":{"id_build":1474,"id_source":"w145338270","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.25204138266,5276327.520823335],[517248.76219629415,5276324.857941884],[517247.7873755022,5276324.299356256],[517249.7505127091,5276320.859838393],[517250.72566307895,5276321.307285584],[517252.2361503834,5276318.533266288],[517259.13566736976,5276322.22131936],[517257.32307995274,5276325.550140439],[517256.49815639574,5276325.103137245],[517255.5540108872,5276326.867461744],[517254.8364554151,5276328.210126689],[517255.51148242195,5276328.545545808],[517254.00099611084,5276331.319564293],[517247.25204138266,5276327.520823335]]]},"properties":{"id_build":1475,"id_source":"w145338272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.210311259,5276318.576462682],[516656.1979585347,5276317.642854069],[516654.2450872839,5276317.6150415605],[516654.1822638936,5276318.570663134],[516650.952728424,5276318.450289508],[516650.82410875376,5276310.892423843],[516654.27930511057,5276310.902302975],[516654.2080057519,5276309.568422991],[516659.9162744314,5276309.695888218],[516660.0655466543,5276310.029734234],[516662.69450080284,5276310.03725495],[516662.59490480996,5276318.594725128],[516656.210311259,5276318.576462682]]]},"properties":{"id_build":1476,"id_source":"w145338273","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.0075603635,5276378.701984249],[516994.4170223005,5276380.124646725],[516993.8261785769,5276376.677591326],[516992.69917241164,5276376.785442705],[516991.8829908082,5276373.337730071],[516993.7620921919,5276372.898653828],[516993.3952868537,5276369.896811112],[517001.21117466694,5276368.474805076],[517001.87777596805,5276371.699802908],[517000.14922235,5276372.028176259],[517000.4370665811,5276373.7739100875],[517000.6659239438,5276375.141596702],[517001.49215755524,5276375.1440085685],[517002.0075603635,5276378.701984249]]]},"properties":{"id_build":1477,"id_source":"w145338275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.55012613995,5276564.172814664],[516957.4491773344,5276564.953410699],[516952.09568409534,5276572.050768931],[516954.86923889455,5276573.948218851],[516952.83351557713,5276576.609646534],[516945.18915757095,5276570.808131704],[516946.92314711335,5276568.590382335],[516946.2487449224,5276568.043835097],[516944.150557258,5276566.359519798],[516947.31777712516,5276562.034285497],[516949.2661018256,5276563.595912035],[516951.52812775155,5276560.60172261],[516955.50053169567,5276563.502920221],[516956.55012613995,5276564.172814664]]]},"properties":{"id_build":1478,"id_source":"w145338276","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.14172395587,5276318.369984738],[517274.029764628,5276314.930252298],[517274.85468830005,5276315.377257968],[517275.64795628865,5276313.83476853],[517276.5167332706,5276312.159135504],[517275.0167814494,5276311.376708154],[517277.88657056494,5276306.161653201],[517284.7109732007,5276309.849513673],[517281.8415095228,5276314.953426545],[517283.2663465896,5276315.735632761],[517281.45308381075,5276319.28672386],[517280.4031523028,5276318.727909898],[517278.74110702163,5276321.94603129],[517272.14172395587,5276318.369984738]]]},"properties":{"id_build":1479,"id_source":"w145338277","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.51724150917,5276231.391515956],[517137.9447346219,5276231.284576435],[517137.80497125624,5276227.727694468],[517134.9509642471,5276227.608157685],[517134.9646967994,5276222.940330313],[517141.57441170735,5276223.070919272],[517141.79615598853,5276224.294108692],[517145.0263892913,5276224.192476879],[517145.21181779896,5276237.752067465],[517137.9264213173,5276237.508346358],[517137.8607910276,5276234.285101619],[517136.58385358134,5276234.281344415],[517136.51724150917,5276231.391515956]]]},"properties":{"id_build":1480,"id_source":"w145338278","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.66666639573,5276514.518379316],[516743.6047969349,5276514.544069829],[516743.59533892985,5276517.83377836],[516743.5875424628,5276520.545565133],[516742.08533719886,5276520.541246441],[516742.0767107299,5276523.541994114],[516736.2181132152,5276523.52515492],[516736.22673666396,5276520.524407247],[516734.57463022775,5276520.408519994],[516734.6564469828,5276518.074820973],[516733.98077367316,5276517.961739751],[516734.0603548036,5276516.406012342],[516734.66123733413,5276516.4077389445],[516734.66666639573,5276514.518379316]]]},"properties":{"id_build":1481,"id_source":"w145338294","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.74391012086,5276360.147089336],[516659.6013721726,5276367.265342095],[516651.2578765536,5276369.353135764],[516650.3663797496,5276365.905256774],[516649.9153884969,5276366.015107145],[516648.57829976146,5276360.787719668],[516649.856480102,5276360.346814846],[516649.1142526682,5276357.232781887],[516656.5560982547,5276355.253546054],[516657.37343432906,5276358.367794786],[516656.02045847,5276358.697344377],[516656.6162716282,5276360.477283288],[516657.74391012086,5276360.147089336]]]},"properties":{"id_build":1482,"id_source":"w145338296","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.52295786253,5276383.657042472],[516608.61046170705,5276384.579751383],[516609.6380382744,5276385.093924391],[516610.4031030312,5276385.473981263],[516611.1735247641,5276383.975792851],[516614.4062873488,5276385.585425595],[516612.1246541245,5276390.224555987],[516615.40244841005,5276391.845431731],[516613.9439429355,5276394.942068175],[516609.2035281236,5276392.594613934],[516609.0133083009,5276390.815836497],[516603.6635327133,5276391.434078634],[516603.2532031125,5276387.820869112],[516602.8351083202,5276384.29654925],[516608.52295786253,5276383.657042472]]]},"properties":{"id_build":1483,"id_source":"w145338299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.92293880985,5276336.902989404],[517269.5219768378,5276340.590164418],[517269.8217681385,5276340.813332846],[517267.0274451074,5276345.917475919],[517268.75239708915,5276346.811708172],[517266.8640402251,5276350.362581228],[517265.66388799594,5276349.803324511],[517263.9267471643,5276353.021227577],[517257.2526072926,5276349.33383624],[517259.06551672914,5276345.893876265],[517259.89010776917,5276346.452018615],[517260.6004473832,5276345.009307105],[517261.4770231595,5276343.233669142],[517259.90229416447,5276342.33988425],[517262.92293880985,5276336.902989404]]]},"properties":{"id_build":1484,"id_source":"w145338300","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516449.89656465803,5276342.363018743],[516449.84357320546,5276350.487178316],[516445.84762238245,5276350.464779399],[516445.8346819051,5276352.387459008],[516448.49363028555,5276352.406081797],[516448.4664920674,5276356.695996134],[516444.6132590014,5276356.674001103],[516444.61448284244,5276356.240559874],[516443.1348004708,5276356.22526814],[516443.1326354066,5276356.992125701],[516436.6129449939,5276356.951494414],[516436.64076451893,5276352.417074733],[516440.32124183234,5276352.438576816],[516440.3341804901,5276350.515897199],[516436.69128954934,5276350.483387224],[516436.7190777594,5276345.9600814665],[516438.9348966716,5276345.966335335],[516438.9605848506,5276342.187659403],[516437.7062051957,5276342.184118971],[516437.73578211525,5276337.027322271],[516444.23296104453,5276337.067891139],[516444.26673191,5276341.069014235],[516444.26318599744,5276342.3248823825],[516449.89656465803,5276342.363018743]]]},"properties":{"id_build":1485,"id_source":"w145338302","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.2600855458,5276461.626969252],[516428.5791216488,5276464.967700927],[516430.159587432,5276463.860762662],[516432.6285287023,5276467.313058567],[516431.8004269264,5276467.977560147],[516432.75798968837,5276469.347280017],[516433.6706736231,5276470.650189602],[516434.4984616115,5276470.096827082],[516436.9667703053,5276473.771402468],[516427.40982255014,5276480.079399239],[516420.827650277,5276470.280544657],[516421.05329634994,5276470.170041208],[516418.8851065826,5276466.607458421],[516420.39014574944,5276465.6114445515],[516426.2600855458,5276461.626969252]]]},"properties":{"id_build":1486,"id_source":"w145338308","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.2413854295,5276452.159099749],[516908.3607748998,5276457.605292951],[516908.29536207416,5276459.438908533],[516905.17818871106,5276459.452087359],[516905.17454327457,5276460.707955686],[516901.12599371345,5276460.718433228],[516901.1160351851,5276458.973510627],[516894.9042858558,5276458.977715245],[516894.8966487886,5276451.253482216],[516901.43889546825,5276451.250236665],[516901.4486926655,5276453.050728638],[516903.19881445315,5276453.044693914],[516904.858802879,5276453.038398086],[516904.86131914385,5276452.171515531],[516908.2413854295,5276452.159099749]]]},"properties":{"id_build":1487,"id_source":"w145338311","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516555.56768535834,5276394.53132604],[516554.89142568427,5276394.618315464],[516555.08232532116,5276396.1636996595],[516555.7811183797,5276396.076774314],[516556.3025016201,5276400.268222429],[516546.0460139296,5276401.550522917],[516545.53181888285,5276397.470235846],[516545.0509136424,5276397.535553466],[516543.94911351526,5276388.774616846],[516556.1141623859,5276387.253230478],[516556.7238480338,5276392.089539735],[516556.7385544663,5276392.200721224],[516557.0103706281,5276394.346489783],[516555.56768535834,5276394.53132604]]]},"properties":{"id_build":1488,"id_source":"w145338318","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.5669686363,5276208.414567558],[517118.70674584503,5276208.666640491],[517118.6972728842,5276211.8896640865],[517117.1949877717,5276211.8852488315],[517117.03071449435,5276216.663773374],[517115.67833240406,5276216.770938757],[517115.6737600498,5276218.326881197],[517110.56664931326,5276218.089596064],[517108.46377886046,5276217.972279001],[517108.4768372265,5276213.526729176],[517109.8292199273,5276213.419562119],[517109.75900294166,5276211.752260286],[517108.5568483672,5276211.859868643],[517108.5669686363,5276208.414567558]]]},"properties":{"id_build":1489,"id_source":"w145338322","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.1064980724,5276431.212800068],[517024.8999839509,5276435.8946795],[517022.7152574896,5276438.111088088],[517023.3141990284,5276438.779677164],[517020.82805462595,5276441.328624632],[517020.22878827056,5276440.771174596],[517017.51698751736,5276443.430603741],[517012.1252085246,5276437.857864776],[517014.68678663054,5276435.197994265],[517015.3608407513,5276435.866801955],[517016.4606814496,5276434.769732011],[517017.92209645634,5276433.318071651],[517017.2480423306,5276432.649263671],[517019.4324439497,5276430.543991832],[517020.1064980724,5276431.212800068]]]},"properties":{"id_build":1490,"id_source":"w145338326","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.592871686,5276405.782560502],[517182.21233509894,5276401.014228621],[517183.41838700516,5276399.572970201],[517185.74127876095,5276401.469199881],[517185.0626489243,5276402.356315353],[517186.561441281,5276403.527705399],[517188.0602330334,5276404.699095831],[517188.73919106805,5276403.700841931],[517191.7361168739,5276406.2659018645],[517186.83581443876,5276412.364124906],[517183.98812929785,5276410.13292704],[517183.38494032586,5276410.909125557],[517180.4627971416,5276408.455430257],[517181.0663138374,5276407.568092662],[517178.592871686,5276405.782560502]]]},"properties":{"id_build":1491,"id_source":"w145338331","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.56080596324,5276437.277283824],[516987.566718537,5276436.78592205],[516987.7894591555,5276437.6756896],[516989.788263755,5276437.392556927],[516991.6217587373,5276437.131170585],[516991.47445428756,5276436.130483234],[516995.00663409085,5276435.473951109],[516996.1151416713,5276441.7010109825],[516996.2617964924,5276442.92397603],[516993.0300661102,5276443.581384016],[516993.0277961523,5276444.359355525],[516989.0449544882,5276445.014574181],[516988.8966772037,5276444.347303247],[516985.90549893363,5276444.93873306],[516984.56080596324,5276437.277283824]]]},"properties":{"id_build":1492,"id_source":"w145338333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1566535209,5276370.173300824],[517206.6267114142,5276374.635048669],[517204.06370559015,5276377.739389874],[517203.23944198375,5276377.070116631],[517202.0783821491,5276378.533731782],[517201.1284245366,5276379.731235263],[517202.77727956243,5276380.958642502],[517198.93245086796,5276385.72629608],[517192.71291729086,5276380.706644135],[517196.4075198662,5276375.93854293],[517195.0584544548,5276374.9343021],[517197.546016308,5276371.940873931],[517198.52050566726,5276372.610589973],[517200.6318527038,5276369.838331648],[517201.1566535209,5276370.173300824]]]},"properties":{"id_build":1493,"id_source":"w145338338","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.6063837174,5276415.116707488],[516989.7136053317,5276421.788321043],[516989.8615589015,5276422.566730759],[516986.7049295087,5276423.224361375],[516986.4821881524,5276422.334593889],[516985.0992931345,5276422.6195239285],[516983.2504474971,5276422.992007307],[516983.32361446973,5276423.65905904],[516979.1898887463,5276424.536123944],[516977.93534834695,5276416.86382542],[516981.84277226415,5276416.319518919],[516981.7709012688,5276415.207912088],[516985.67897494126,5276414.441330596],[516985.97618007683,5276415.553594671],[516988.6063837174,5276415.116707488]]]},"properties":{"id_build":1494,"id_source":"w145338348","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.7574501282,5276437.135354113],[516415.87040380493,5276443.593046903],[516414.74122916575,5276444.478981619],[516412.558931738,5276445.917647006],[516414.6529617249,5276449.146599213],[516411.7930997158,5276451.139053598],[516409.4602700991,5276452.6884356225],[516408.1808759615,5276453.573948355],[516405.8618236102,5276450.233224899],[516405.4856416745,5276450.454444568],[516400.6237598504,5276443.216672274],[516408.0741769689,5276438.125232954],[516408.7473606472,5276439.127386647],[516411.7574501282,5276437.135354113]]]},"properties":{"id_build":1495,"id_source":"w145338351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516736.4203941551,5276505.409961984],[516736.35358777555,5276502.520137342],[516734.70115687494,5276502.515388868],[516734.78329323174,5276500.070551118],[516734.25720019685,5276500.18017913],[516734.18624116626,5276498.735158921],[516734.6372237863,5276498.625315074],[516734.64424958057,5276496.180261506],[516736.52233340056,5276496.074518717],[516743.73294894525,5276496.09524501],[516743.72313944314,5276499.507206125],[516743.7153749141,5276502.20787894],[516742.21252592123,5276502.425837824],[516742.203899438,5276505.426585411],[516736.4203941551,5276505.409961984]]]},"properties":{"id_build":1496,"id_source":"w145338353","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516918.9141399428,5276457.547029952],[516915.50383861514,5276457.626035541],[516915.5163752556,5276458.481847854],[516911.88074132823,5276458.560201091],[516911.85369831015,5276457.526523099],[516908.3607748998,5276457.605292951],[516908.2413854295,5276452.159099749],[516908.1887177204,5276449.602733157],[516911.72671263595,5276449.524094061],[516911.7537557266,5276450.557772038],[516913.2786093266,5276450.528858254],[516915.3518390593,5276450.4793096315],[516915.3393023691,5276449.623497328],[516918.74209725973,5276449.544469814],[516918.9141399428,5276457.547029952]]]},"properties":{"id_build":1497,"id_source":"w145338357","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517021.1333910655,5276372.834101894],[517018.6243845478,5276372.915681514],[517018.5614183725,5276368.758871893],[517019.49287497066,5276368.7393658385],[517019.4749531301,5276367.161129411],[517019.45003969007,5276365.405049001],[517017.91017314966,5276365.422777265],[517017.8297386527,5276359.532137021],[517025.59674534417,5276359.42146951],[517025.6774319027,5276365.223198862],[517027.1421862553,5276365.205253052],[517027.1912286631,5276368.984147007],[517025.8541660472,5276369.002466086],[517025.9030792792,5276372.8258155575],[517021.1333910655,5276372.834101894]]]},"properties":{"id_build":1498,"id_source":"w145338367","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.4170223005,5276380.124646725],[517002.0075603635,5276378.701984249],[517003.04095975443,5276384.928825599],[517001.38719757355,5276385.368556639],[517001.6306224202,5276386.8918814575],[517001.9035728187,5276388.59311604],[517002.8052409555,5276388.484608593],[517003.4705410981,5276392.154161829],[516996.706899856,5276393.356956026],[516990.31914514914,5276394.449714898],[516989.7295973714,5276390.558104729],[516994.1644452223,5276389.459646414],[516993.64774149144,5276386.346226482],[516995.3766148072,5276385.906712431],[516994.4170223005,5276380.124646725]]]},"properties":{"id_build":1499,"id_source":"w145338374","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.9977021609,5276383.280839401],[517028.99726463365,5276383.259768029],[517029.0039355657,5276386.116078494],[517029.9203020356,5276386.118757943],[517029.92378771264,5276390.064228433],[517029.00742186105,5276390.061548982],[517029.01194800757,5276393.651375411],[517023.9718739604,5276393.658868749],[517021.0874792336,5276393.683780127],[517021.0831106077,5276390.0383843295],[517021.96192048234,5276390.040952769],[517021.95973643474,5276388.218254878],[517021.95794217254,5276386.26219046],[517021.00401972537,5276386.259402504],[517020.9977021609,5276383.280839401]]]},"properties":{"id_build":1500,"id_source":"w145338378","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.8544528837,5276238.973575469],[516568.19170625164,5276234.303824679],[516567.8202463818,5276232.857952523],[516566.9318399751,5276228.298699677],[516566.78382478846,5276227.520301094],[516577.1520924534,5276226.6606846955],[516577.81673083466,5276230.663603941],[516578.1831268961,5276233.887696793],[516574.3519989143,5276233.987932896],[516574.4217362683,5276235.877505467],[516572.84402751137,5276235.984155605],[516573.06146317127,5276238.763265674],[516572.9112353868,5276238.762838204],[516568.8544528837,5276238.973575469]]]},"properties":{"id_build":1501,"id_source":"w145338380","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516667.7756059262,5276581.788361521],[516658.67464339006,5276586.2079100115],[516657.10656431934,5276582.980372732],[516658.68577036227,5276582.318051508],[516657.4089324939,5276579.680387807],[516655.1762855386,5276575.083931698],[516661.6446105789,5276571.990521818],[516660.9718037613,5276570.877199736],[516661.5010686672,5276569.656176991],[516664.283941104,5276568.330462735],[516665.4847412904,5276568.667318063],[516667.27655806224,5276572.45119647],[516666.747610259,5276573.561079886],[516664.26549600327,5276574.776513837],[516667.7756059262,5276581.788361521]]]},"properties":{"id_build":1502,"id_source":"w145338384","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516497.90198301576,5276307.678748896],[516497.8287589109,5276307.011703524],[516500.8342239156,5276306.6867987225],[516501.202546729,5276309.244054424],[516504.132582859,5276309.030077283],[516503.9154321479,5276306.139830783],[516510.9785766604,5276305.270732511],[516512.7456829545,5276317.834524093],[516508.73330105894,5276318.301050072],[516507.1854405613,5276318.485600257],[516507.3325162958,5276319.597413732],[516503.5756142074,5276320.031325464],[516503.2830358724,5276317.2520048665],[516499.2253662568,5276317.796206828],[516497.90198301576,5276307.678748896]]]},"properties":{"id_build":1503,"id_source":"w145338388","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.2879426624,5276209.420375863],[516654.794799036,5276209.43326149],[516654.8587901968,5276213.323332504],[516657.5625843595,5276213.4422043385],[516657.6160843406,5276220.999854182],[516657.39074196824,5276220.999209708],[516656.5648044446,5276220.885707958],[516656.26530143584,5276220.551432464],[516650.25585335644,5276220.645389605],[516650.26887971465,5276216.088700837],[516650.20202610263,5276213.19887861],[516648.8499700677,5276213.195013619],[516648.86077147734,5276209.416296142],[516650.2879426624,5276209.420375863]]]},"properties":{"id_build":1504,"id_source":"w145338393","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.64052636665,5276311.550326414],[516531.5204305014,5276319.110321046],[516527.91375191335,5276319.544643495],[516528.0822220952,5276321.056621021],[516528.27985419374,5276322.879872378],[516519.41370602715,5276323.854975013],[516518.7525060769,5276318.629535449],[516515.5968204683,5276318.954004997],[516514.7175259285,5276311.171735286],[516519.45090310404,5276310.740600263],[516519.3035142159,5276309.739925259],[516522.38409205084,5276309.415244625],[516522.75114405673,5276312.417056792],[516524.5544852845,5276312.199893692],[516530.64052636665,5276311.550326414]]]},"properties":{"id_build":1505,"id_source":"w145338396","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.19044781156,5276451.998679078],[517287.4951410668,5276460.00758287],[517283.6611786746,5276461.107601181],[517282.10033656267,5276455.545981012],[517282.8521073711,5276455.325932367],[517282.034129931,5276452.545010919],[517280.8762309257,5276452.941678206],[517280.07926129433,5276453.206048909],[517280.6748741627,5276454.986052398],[517276.014028198,5276456.305901807],[517273.04056848306,5276445.84994442],[517277.7014221085,5276444.530092634],[517278.29670688824,5276446.4212346375],[517283.11555875547,5276445.012944113],[517285.19044781156,5276451.998679078]]]},"properties":{"id_build":1506,"id_source":"w145338403","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.25204138266,5276327.520823335],[517254.00099611084,5276331.319564293],[517252.64139503974,5276333.871750657],[517250.99154945917,5276332.977745693],[517249.9949267588,5276334.70857374],[517249.33051195246,5276335.862459201],[517250.08032186865,5276336.309238923],[517248.11718959425,5276339.748756745],[517241.44269552414,5276336.172522429],[517243.33005423844,5276332.955057531],[517242.3552342925,5276332.3964728005],[517244.24292378005,5276329.067869446],[517245.66809146677,5276329.738927716],[517247.10214496334,5276327.409239705],[517247.25204138266,5276327.520823335]]]},"properties":{"id_build":1507,"id_source":"w145338409","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.4491757341,5276402.257021621],[516965.37386895146,5276394.588161428],[516971.63094886474,5276394.517479869],[516971.60621550377,5276392.694716358],[516975.33189627185,5276392.661118538],[516975.34371167835,5276393.761436227],[516979.06188060687,5276393.727818901],[516979.09127153666,5276396.528625603],[516979.1378174082,5276401.1744017415],[516975.3220078806,5276401.207734398],[516975.30922068516,5276400.440833037],[516973.18345902546,5276400.467979365],[516971.7337685312,5276400.474868623],[516971.75128210086,5276402.197585368],[516965.4491757341,5276402.257021621]]]},"properties":{"id_build":1508,"id_source":"w145338411","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.91471977375,5276502.59077222],[516760.9610071136,5276499.556791099],[516761.0058231467,5276497.034048458],[516761.0128600093,5276494.588994903],[516761.7665249673,5276493.702046251],[516763.71940082725,5276493.707667203],[516764.61848866416,5276494.488233295],[516764.53601979604,5276497.04420943],[516769.11744436854,5276497.168539069],[516769.1056039107,5276501.280674611],[516769.7815985237,5276501.282621105],[516769.7678374289,5276506.061589475],[516760.00347881654,5276506.033481069],[516760.1636148198,5276502.588610598],[516760.91471977375,5276502.59077222]]]},"properties":{"id_build":1509,"id_source":"w145338416","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.37386895146,5276394.588161428],[516965.4491757341,5276402.257021621],[516962.57271765143,5276402.137503437],[516962.5835628833,5276400.992795884],[516960.6231769592,5276400.975972568],[516959.0909283549,5276400.960396606],[516959.0881127937,5276401.927303986],[516954.8969390763,5276401.892873167],[516954.9651398686,5276393.946581672],[516958.6605807517,5276393.979568989],[516958.6629108061,5276393.179369787],[516962.5311095639,5276393.212862606],[516962.5284229156,5276394.1353144655],[516965.45021108974,5276394.166052872],[516965.37386895146,5276394.588161428]]]},"properties":{"id_build":1510,"id_source":"w145338432","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517241.3663652917,5276361.956716517],[517244.5368782814,5276356.631395526],[517245.8114852993,5276357.4131478425],[517246.55894846295,5276356.115026218],[517247.472515001,5276354.528433249],[517246.7974905583,5276354.193015046],[517248.8360588725,5276350.642580401],[517251.6863822711,5276351.984699611],[517255.81065220654,5276354.3308522655],[517253.77273939253,5276357.659006957],[517254.82266637956,5276358.217816164],[517252.8595385726,5276361.657332497],[517251.0598054475,5276360.651743671],[517248.19039600325,5276365.755673395],[517241.3663652917,5276361.956716517]]]},"properties":{"id_build":1511,"id_source":"w145338438","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517025.9030792792,5276372.8258155575],[517028.98274353467,5276372.812591427],[517028.9905518834,5276375.279916135],[517029.8318079135,5276375.282375948],[517029.84966618527,5276379.450167849],[517028.9558322918,5276379.447554301],[517028.99726463365,5276383.259768029],[517020.9977021609,5276383.280839401],[517020.9950873746,5276379.03529428],[517021.9940782633,5276379.03821395],[517021.9916018506,5276377.315540986],[517021.98863819416,5276375.759576188],[517021.1398710217,5276375.757095558],[517021.1333910655,5276372.834101894],[517025.9030792792,5276372.8258155575]]]},"properties":{"id_build":1512,"id_source":"w145338443","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516669.97290106723,5276362.560468145],[516669.51245342894,5276360.725345431],[516668.93309809035,5276358.4453237],[516667.05401709885,5276358.884504689],[516664.5313615009,5276347.985597024],[516665.13289741636,5276347.765038864],[516665.0581029385,5276347.653685163],[516671.0715559482,5276346.114939538],[516672.92709737364,5276353.90002906],[516674.12953230826,5276353.681192083],[516675.0958111562,5276357.240428505],[516674.1947809373,5276357.126709129],[516675.1607409508,5276360.797084357],[516674.784861146,5276360.907147859],[516669.97290106723,5276362.560468145]]]},"properties":{"id_build":1513,"id_source":"w145338444","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.8999839509,5276435.8946795],[517020.1064980724,5276431.212800068],[517024.626178753,5276426.780420932],[517025.8994999742,5276428.006680308],[517026.97658324963,5276426.987343627],[517028.4604387929,5276425.569093436],[517027.636486892,5276424.788706248],[517030.49852398265,5276422.12972114],[517035.7400772326,5276427.702037565],[517033.17913628323,5276430.139621248],[517033.92765019555,5276431.030928328],[517031.1480433985,5276433.75683667],[517033.5597390954,5276436.120052142],[517029.363752314,5276440.308863473],[517024.8999839509,5276435.8946795]]]},"properties":{"id_build":1514,"id_source":"w145338457","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.4663605341,5276345.110586284],[516563.4883828253,5276337.717016715],[516567.4406974566,5276337.239243653],[516568.84577774856,5276337.076531235],[516568.6842607949,5276335.764623622],[516567.27163731307,5276335.938428589],[516566.9634670231,5276333.370225582],[516571.6220654311,5276332.816666665],[516571.9010108464,5276335.095823629],[516578.38551027694,5276334.314072489],[516579.2734295273,5276341.674046351],[516568.14536984626,5276343.009397197],[516568.33610969025,5276344.610351089],[516564.4663605341,5276345.110586284]]]},"properties":{"id_build":1515,"id_source":"w145338463","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.92293880985,5276336.902989404],[517264.584641677,5276333.79600222],[517265.40989284706,5276334.131867808],[517266.1195434028,5276332.922548399],[517267.2218232723,5276331.025326724],[517265.3466408883,5276330.130649621],[517266.78202015394,5276327.356411385],[517274.0564218839,5276331.267873201],[517274.43165585055,5276331.380125876],[517272.9221500523,5276333.820723192],[517274.19675831235,5276334.602481694],[517272.3083942224,5276338.153352939],[517271.0334569188,5276337.482733607],[517269.5219768378,5276340.590164418],[517262.92293880985,5276336.902989404]]]},"properties":{"id_build":1516,"id_source":"w145338467","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.6063837174,5276415.116707488],[516988.4581055915,5276414.449436598],[516991.7646389782,5276413.903383989],[516991.46775910846,5276412.679980834],[516995.0753890971,5276411.912529097],[516995.59468428924,5276414.136839036],[517001.60686016694,5276413.0429896135],[517002.7869076445,5276420.492796415],[516996.3991814813,5276421.585548596],[516995.87891428784,5276419.694654905],[516994.1053082998,5276420.02289852],[516992.9479416098,5276420.241800951],[516992.945023127,5276421.242049992],[516989.7136053317,5276421.788321043],[516988.6063837174,5276415.116707488]]]},"properties":{"id_build":1517,"id_source":"w145338468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.7767381754,5276247.371737974],[516857.95687206986,5276243.581931158],[516860.1412861351,5276241.476600177],[516860.0671374338,5276241.142966482],[516860.7434840016,5276241.033784708],[516863.30443487264,5276238.596125901],[516865.62588566134,5276241.047920779],[516866.8280294573,5276240.940262303],[516866.52435551514,5276242.050779734],[516868.2468242171,5276243.834003021],[516866.06272991846,5276245.828192225],[516865.98471959226,5276246.828223487],[516865.1587896419,5276246.714692138],[516863.1246032447,5276248.8204562105],[516861.7767381754,5276247.371737974]]]},"properties":{"id_build":1518,"id_source":"w145338471","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.706899856,5276393.356956026],[517003.4705410981,5276392.154161829],[517004.2970967853,5276392.0454353215],[517004.96369357395,5276395.270433641],[517004.1368138433,5276395.490298829],[517004.45476530376,5276397.213892891],[517004.72829846654,5276398.715077838],[517005.4797414051,5276398.606132192],[517006.1440650769,5276402.609102136],[517000.0570901994,5276403.591588857],[516998.40365791507,5276403.920181968],[516997.81444091117,5276399.917432129],[516996.61232733645,5276400.025063522],[516996.02148702735,5276396.578007787],[516997.1488137828,5276396.359018278],[516996.706899856,5276393.356956026]]]},"properties":{"id_build":1519,"id_source":"w145338480","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.9469161132,5276297.45482438],[516459.1232106812,5276288.230731392],[516460.70561463776,5276286.456969012],[516461.7540592092,5276287.571328794],[516463.9389412433,5276285.24357192],[516465.5122357507,5276286.692835007],[516467.8476604637,5276284.254365541],[516468.67642084917,5276283.367591677],[516476.0915741239,5276290.834920383],[516473.07855817204,5276293.827168321],[516471.2808708088,5276292.043849592],[516468.87020887336,5276294.526560821],[516467.5142124374,5276295.923086327],[516462.70697072643,5276295.909496191],[516462.7025726972,5276297.465438914],[516458.9469161132,5276297.45482438]]]},"properties":{"id_build":1520,"id_source":"w145338489","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516793.284818073,5276243.061683366],[516794.11107035045,5276243.064065767],[516794.18137722055,5276244.731363657],[516796.58469901275,5276244.84943373],[516816.78871222876,5276245.4634331195],[516816.87120668974,5276242.907458672],[516820.626898998,5276242.918303923],[516820.31520988204,5276246.807292586],[516790.3457664222,5276246.387400227],[516790.5059262591,5276242.942531937],[516791.81274695083,5276243.001869273],[516793.284818073,5276243.061683366]]]},"properties":{"id_build":1521,"id_source":"w145338491","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516501.4542319284,5276432.498662402],[516497.4149022752,5276426.59681579],[516500.34991726966,5276424.604616235],[516499.3775610046,5276423.157045616],[516500.6569757586,5276422.271552915],[516499.235524196,5276420.267011559],[516500.9815444085,5276419.060535765],[516503.0737714529,5276417.61053421],[516502.10141468066,5276416.1629631575],[516504.96132489265,5276414.170553113],[516510.7964012383,5276422.52256842],[516512.0679403908,5276424.415547912],[516510.93874732684,5276425.301463993],[516512.95856436546,5276428.196822242],[516503.09975409013,5276434.948398019],[516501.4542319284,5276432.498662402]]]},"properties":{"id_build":1522,"id_source":"w145338495","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.3161640834,5276150.618807052],[516608.30697372387,5276153.841830496],[516608.22995729005,5276154.508448742],[516605.0751281389,5276154.499453729],[516605.30078993086,5276154.388957437],[516603.4980303809,5276154.383818127],[516603.4248162943,5276153.7167715635],[516602.6285974021,5276153.714501889],[516601.997631488,5276153.712703356],[516601.9957307556,5276154.379535795],[516598.9160165242,5276154.370758226],[516598.6377272768,5276146.590190226],[516601.8679925701,5276146.488257108],[516601.94500837434,5276145.821638783],[516608.33010806894,5276145.7287025545],[516608.3161640834,5276150.618807052]]]},"properties":{"id_build":1523,"id_source":"w145338500","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.32509231474,5276583.306686474],[516379.8734978811,5276583.638835374],[516378.59319917526,5276584.857771163],[516378.1378542419,5276586.523586009],[516378.43391592836,5276588.080374394],[516379.2554303965,5276589.749780326],[516375.1194155773,5276591.51638427],[516373.2529309679,5276587.510107267],[516379.7264049028,5276582.527024698],[516380.32509231474,5276583.306686474]]]},"properties":{"id_build":1524,"id_source":"w145338502","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.74110702163,5276321.94603129],[517278.8910029832,5276322.057615734],[517277.6822738593,5276324.387964407],[517278.35730001144,5276324.723386169],[517276.46860054863,5276328.385394787],[517275.7935747143,5276328.04997324],[517274.0564218839,5276331.267873201],[517266.78202015394,5276327.356411385],[517268.51917010354,5276324.138509278],[517269.2693096137,5276324.474152698],[517270.0547670186,5276323.031665099],[517271.0819042111,5276321.145335322],[517270.4072067887,5276320.698775642],[517271.6917057998,5276318.146370704],[517272.14172395587,5276318.369984738],[517278.74110702163,5276321.94603129]]]},"properties":{"id_build":1525,"id_source":"w145338507","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517241.3663652917,5276361.956716517],[517248.19039600325,5276365.755673395],[517250.66482164396,5276367.2078187],[517250.0616193538,5276367.984010293],[517250.2082228702,5276369.206981718],[517250.35219286405,5276371.319063318],[517248.40256701974,5276370.201891576],[517246.81764078845,5276372.753412078],[517245.69293257606,5276372.083243111],[517243.8055850471,5276375.300707414],[517237.05634601007,5276371.613116674],[517238.0455460934,5276369.84892247],[517238.86857873504,5276368.395427877],[517237.6684275782,5276367.836176912],[517241.1413573257,5276361.844910671],[517241.3663652917,5276361.956716517]]]},"properties":{"id_build":1526,"id_source":"w145338508","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517258.6167686017,5276294.545987371],[517260.35392365855,5276291.328082988],[517259.22887184215,5276290.769050282],[517256.7537570873,5276289.5391791],[517258.56767253566,5276285.76580298],[517261.3429123036,5276287.107704128],[517262.91765608604,5276288.001489299],[517264.1267161508,5276285.559998932],[517271.2509455648,5276289.47101156],[517269.89132730133,5276292.023193769],[517268.1666887077,5276291.017822542],[517267.0941168602,5276293.026271773],[517266.5049719115,5276294.1248085275],[517266.9546626347,5276294.459560907],[517265.0662901659,5276298.010434296],[517258.6167686017,5276294.545987371]]]},"properties":{"id_build":1527,"id_source":"w145338509","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516904.2342995978,5276111.793264396],[516914.8381780889,5276107.489602072],[516915.6660634856,5276106.93630803],[516915.89237861475,5276106.603546303],[516915.81952241034,5276105.825357049],[516915.8395342536,5276098.934755935],[516923.4355851261,5276095.73377122],[516925.9720804333,5276101.74268355],[516925.8769410035,5276108.633066409],[516907.2369855385,5276112.46881768],[516906.9871209924,5276120.914707061],[516904.05761952454,5276120.906204268],[516904.2342995978,5276111.793264396]]]},"properties":{"id_build":1528,"id_source":"w145338511","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.0662901659,5276298.010434296],[517265.29130015435,5276298.122241047],[517263.8575616788,5276300.340785745],[517263.0319761985,5276300.116059167],[517261.982369922,5276301.980095763],[517261.21970915585,5276303.33374018],[517261.9695223755,5276303.780521399],[517260.23171135044,5276307.220702881],[517253.2573933523,5276303.421287371],[517254.9945428354,5276300.203381355],[517254.46973874804,5276299.868407371],[517256.2823324004,5276296.539585521],[517256.8071366841,5276296.874559664],[517258.2418612804,5276294.322596972],[517258.6167686017,5276294.545987371],[517265.0662901659,5276298.010434296]]]},"properties":{"id_build":1529,"id_source":"w145338513","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.32245930226,5276149.963367406],[516409.9386209046,5276149.611959144],[516410.10074977454,5276145.389110272],[516408.59876104625,5276145.273739086],[516408.99030483933,5276139.606721447],[516410.4174929908,5276139.610742352],[516410.8143622468,5276132.0543663325],[516416.9728740716,5276132.405140339],[516416.81427969196,5276135.372121204],[516416.7346849706,5276136.961193445],[516422.4425001044,5276137.310702963],[516422.0537632669,5276141.977471055],[516422.5786291235,5276142.312369796],[516422.42338508443,5276144.090166047],[516416.715263342,5276143.851795269],[516416.32245930226,5276149.963367406]]]},"properties":{"id_build":1530,"id_source":"w145338518","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517023.8952692743,5276407.01764017],[517017.4582259587,5276406.987713912],[517017.4234207374,5276403.475596793],[517018.1444938431,5276403.4777037725],[517018.12770846015,5276401.510481536],[517018.1098513739,5276399.910017274],[517016.63759460766,5276399.92794339],[517016.5655475339,5276393.737250092],[517021.0874792336,5276393.683780127],[517023.9718739604,5276393.658868749],[517024.02941058396,5276399.671696197],[517026.02745026594,5276399.65530901],[517026.0758431098,5276403.656480719],[517025.00919086253,5276403.675590481],[517025.0446737692,5276406.95431622],[517023.8952692743,5276407.01764017]]]},"properties":{"id_build":1531,"id_source":"w145338521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516423.2895993577,5276422.941984669],[516423.27204865025,5276429.165756854],[516419.516477052,5276429.155167548],[516411.7136572987,5276426.021263448],[516410.8129459673,5276425.796446002],[516411.802862143,5276421.020229619],[516415.70866204926,5276421.031237362],[516415.72213224514,5276416.252269489],[516412.3424235187,5276416.1316046165],[516412.4288102131,5276412.130819954],[516413.48043597635,5276412.111555669],[516420.8416285172,5276412.043394281],[516420.90577260253,5276415.933463602],[516423.3841420794,5276416.051591635],[516423.2895993577,5276422.941984669]]]},"properties":{"id_build":1532,"id_source":"w145338526","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.66666639573,5276514.518379316],[516734.6736922392,5276512.073325687],[516734.07248991716,5276512.182737886],[516734.0775994354,5276510.404517071],[516734.60337219207,5276510.406027843],[516734.60784315947,5276508.850084638],[516734.90860417596,5276508.739809156],[516734.83509055636,5276508.183899324],[516736.4124094263,5276508.188431988],[516736.4203941551,5276505.409961984],[516742.203899438,5276505.426585411],[516742.2700638671,5276508.5386877395],[516743.62173186505,5276508.653713382],[516743.61300878075,5276511.687802638],[516743.6047969349,5276514.544069829],[516734.66666639573,5276514.518379316]]]},"properties":{"id_build":1533,"id_source":"w145338533","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516556.40766212187,5276231.158404784],[516557.14490062004,5276236.050645225],[516557.51415128954,5276238.274487984],[516553.7584563916,5276238.263812404],[516553.7530864893,5276240.153171241],[516552.2508090172,5276240.148901688],[516552.321185148,5276241.816196485],[516549.8421122271,5276241.920291293],[516546.1669009858,5276240.020475203],[516546.106626439,5276234.796740335],[516550.0226571945,5276231.251397724],[516553.0269008627,5276231.371074812],[516553.9282687043,5276231.3736366145],[516554.90475053375,5276231.376412058],[516556.40766212187,5276231.158404784]]]},"properties":{"id_build":1534,"id_source":"w145338538","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516961.23922849126,5276449.934816116],[516956.5072241082,5276449.921036841],[516956.5124014432,5276448.142816235],[516952.68173005624,5276448.131664399],[516952.6739658084,5276450.79899531],[516951.2426483118,5276452.239645602],[516947.71242423105,5276452.229371518],[516947.89886939345,5276439.782264474],[516951.8800923794,5276439.682711618],[516951.8014226477,5276440.905019643],[516953.1834705089,5276440.909042548],[516955.1814310044,5276440.914858846],[516955.2617192405,5276439.136856935],[516961.2935142561,5276439.032166732],[516961.22546668304,5276446.922889344],[516961.23922849126,5276449.934816116]]]},"properties":{"id_build":1535,"id_source":"w145338540","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.55012613995,5276564.172814664],[516958.2844456117,5276561.843929879],[516959.8614264339,5276561.959661908],[516962.8777933662,5276557.856276211],[516964.8863973962,5276559.351399708],[516965.7258137017,5276559.976227641],[516967.53621929686,5276557.314148005],[516975.3304685107,5276563.227268733],[516973.44462754915,5276566.000265871],[516972.24578766373,5276564.996514158],[516967.5698818418,5276571.5401342595],[516965.1709068965,5276569.97718872],[516964.86949709913,5276570.309729938],[516959.6228273842,5276566.515696836],[516957.4491773344,5276564.953410699],[516956.55012613995,5276564.172814664]]]},"properties":{"id_build":1536,"id_source":"w145338546","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.2600855458,5276461.626969252],[516420.39014574944,5276465.6114445515],[516418.0717318442,5276462.048438553],[516419.65219640377,5276460.941497446],[516414.3418669551,5276452.924471395],[516413.4386541291,5276453.58876388],[516411.7930997158,5276451.139053598],[516414.6529617249,5276449.146599213],[516416.9103696637,5276447.708146332],[516417.5876235934,5276447.265496762],[516419.1580655176,5276449.714996908],[516420.96418052126,5276448.497552654],[516424.41946058033,5276453.775316782],[516426.4985843273,5276456.959775425],[516424.1654396621,5276458.6202903725],[516426.2600855458,5276461.626969252]]]},"properties":{"id_build":1537,"id_source":"w145338548","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.62988728215,5276084.462326389],[516749.3450857553,5276085.56139979],[516747.04014028463,5276077.3304384],[516747.87025082763,5276075.999149488],[516750.5015480074,5276075.228738509],[516751.77564337145,5276076.232659507],[516757.7149229012,5276074.471509791],[516758.2448919217,5276073.0282191895],[516761.101539972,5276072.258461361],[516763.77756920806,5276082.046451388],[516760.244242804,5276083.036540009],[516760.02113366075,5276082.257920496],[516758.3523132374,5276082.686563401],[516757.0142588361,5276083.027246647],[516753.4809341958,5276084.017339367],[516753.62988728215,5276084.462326389]]]},"properties":{"id_build":1538,"id_source":"w145338551","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.89903052815,5276456.48794284],[517294.1856359815,5276458.138070531],[517292.40111958224,5276452.020084556],[517295.10743181023,5276451.250142416],[517294.0670962184,5276447.468301066],[517292.97705947235,5276447.776255658],[517292.11255448195,5276448.018196233],[517292.6327230333,5276449.909116709],[517287.97187025176,5276451.228956553],[517284.99842930335,5276440.7729931],[517289.8849536665,5276439.342681051],[517290.4047937825,5276441.344740081],[517295.1407663358,5276440.025125238],[517297.2077686019,5276447.1330948165],[517299.0663692744,5276453.595835566],[517299.89903052815,5276456.48794284]]]},"properties":{"id_build":1539,"id_source":"w145338552","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.2459878492,5276080.870250399],[516743.32814840216,5276088.211451923],[516737.5394382774,5276089.861909276],[516736.5715550928,5276086.858357645],[516731.3089756685,5276088.399193367],[516729.5969530373,5276082.948433253],[516729.2210542963,5276083.058493241],[516727.510304808,5276077.163178894],[516731.19449957914,5276075.951224521],[516730.9707477967,5276075.394883592],[516738.9397514653,5276073.083847203],[516740.6501712098,5276079.0903036175],[516739.5979090052,5276079.309558667],[516740.11829059606,5276081.2004281785],[516741.2459878492,5276080.870250399]]]},"properties":{"id_build":1540,"id_source":"w145338554","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.76571607665,5276099.21892934],[516433.3134753618,5276091.44070165],[516442.476032776,5276092.022257921],[516442.0825711721,5276098.35610536],[516441.1814965001,5276098.242422183],[516441.1019888168,5276099.798152392],[516442.0033769783,5276099.800696826],[516442.07912012294,5276099.5786314085],[516445.3084669088,5276099.810027608],[516444.83957329893,5276106.25480159],[516438.38057293266,5276105.903150208],[516438.5402140748,5276102.569412226],[516433.8088691983,5276102.222642119],[516433.8126320877,5276100.888977331],[516432.76571607665,5276099.21892934]]]},"properties":{"id_build":1541,"id_source":"w145338555","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.6965743838,5276385.600337075],[516775.2223584145,5276385.601851488],[516776.0473099324,5276386.048786488],[516776.57117306476,5276386.717133697],[516776.49253951386,5276387.939443898],[516776.1150588329,5276388.605194762],[516775.4384108951,5276388.825525124],[516774.38652331097,5276388.93363508],[516773.7121161019,5276388.37599419],[516773.1882527928,5276387.707647238],[516773.1908134233,5276386.818537006],[516773.642765707,5276386.37527984],[516773.9444940577,5276385.931590048],[516774.6214623781,5276385.600120734],[516774.6965743838,5276385.600337075]]]},"properties":{"id_build":1542,"id_source":"w145338556","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.6600740396,5276382.999111387],[517178.5849619875,5276382.9988898365],[517172.88988204574,5276378.425365101],[517174.69912746677,5276376.207905351],[517173.87518801325,5276375.4274975015],[517176.2879543058,5276372.322700017],[517177.03743727034,5276372.8806091305],[517179.37443842064,5276369.997868947],[517183.7962219286,5276373.34510583],[517185.66943503276,5276374.906589375],[517183.1815526628,5276378.011161383],[517182.20673458,5276377.452586679],[517181.166318504,5276378.76096626],[517180.0957269223,5276380.113712912],[517183.0936524382,5276382.345351945],[517181.0577581526,5276385.00669946],[517178.6600740396,5276382.999111387]]]},"properties":{"id_build":1543,"id_source":"w145338561","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.4582259587,5276406.987713912],[517023.8952692743,5276407.01764017],[517023.8868877561,5276409.8850206975],[517025.6144568362,5276409.890070737],[517025.60276050103,5276413.891066846],[517024.62630908453,5276413.888212413],[517024.61591293314,5276417.444653417],[517019.7712146219,5276417.430493458],[517016.7892840334,5276417.42177995],[517016.808323127,5276413.476375159],[517018.01762073307,5276413.479908665],[517018.0223296589,5276411.868396338],[517018.02785046597,5276409.97903707],[517015.88716707844,5276409.972782275],[517015.8959018435,5276406.983149085],[517017.4582259587,5276406.987713912]]]},"properties":{"id_build":1544,"id_source":"w145338562","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.9318879585,5276596.987692128],[516745.3007343536,5276603.905287303],[516746.6498233929,5276604.909424253],[516747.09983923804,5276605.132997824],[516741.6708918263,5276612.452610879],[516739.7976373813,5276610.891269662],[516738.0640589347,5276612.9979418125],[516740.08753126045,5276614.559714278],[516739.3332461967,5276615.6689434955],[516724.1931374651,5276604.511471177],[516726.45503148995,5276601.5171944555],[516727.95402348426,5276602.632897335],[516730.8941384102,5276598.862592368],[516732.46823948633,5276599.9785121875],[516735.1072827768,5276596.42962378],[516735.9318879585,5276596.987692128]]]},"properties":{"id_build":1545,"id_source":"w145338565","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.06654172274,5276672.441753255],[516619.00020574266,5276670.8941682335],[516618.40251071396,5276669.781065233],[516621.4873450416,5276667.9004936535],[516622.0124691103,5276668.124271954],[516623.9159465544,5276666.99608004],[516627.805649836,5276664.695478448],[516631.9920406701,5276671.598096891],[516633.9359681641,5276674.715561713],[516629.64781457826,5276677.148389079],[516629.26878239965,5276678.369843833],[516625.8077754671,5276680.471616818],[516624.60731340613,5276680.023630733],[516624.3791333803,5276681.023236974],[516621.8216482872,5276682.34961352],[516620.32646304066,5276679.900271839],[516616.06654172274,5276672.441753255]]]},"properties":{"id_build":1546,"id_source":"w145338567","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517221.0032245264,5276389.903685524],[517215.23307244317,5276385.329897137],[517215.0083933978,5276385.106953524],[517216.8169957848,5276383.111784348],[517217.4916900107,5276383.558337872],[517218.35102305317,5276382.527278732],[517219.60238499567,5276381.008363912],[517218.8532357137,5276380.339310531],[517221.4920177151,5276377.012920362],[517229.2098265588,5276383.370712213],[517229.9593030623,5276383.928628161],[517227.8482758141,5276386.589737164],[517226.1239868924,5276385.473239408],[517223.8617519507,5276388.467321853],[517222.88726815046,5276387.797601541],[517221.15311982506,5276390.015268496],[517221.0032245264,5276389.903685524]]]},"properties":{"id_build":1547,"id_source":"w145338576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.00239075295,5276155.666328885],[517161.4534081096,5276155.556518066],[517174.82879095204,5276153.9288477115],[517174.97771007544,5276154.373845637],[517175.7839830609,5276161.15574498],[517175.78234437254,5276161.711438659],[517169.3195140428,5276162.69264126],[517166.2388208139,5276163.016979913],[517166.4602347516,5276164.3513089],[517162.7782961497,5276164.78501705],[517162.5585188146,5276162.894994527],[517160.15386004973,5276163.221328465],[517159.9330994931,5276161.664722252],[517148.0842498718,5276155.0725831585],[517150.8782312516,5276150.079523319],[517161.00239075295,5276155.666328885]]]},"properties":{"id_build":1548,"id_source":"w145338578","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516666.1306539605,5276657.914369378],[516664.51452276343,5276645.239814545],[516669.6992466992,5276644.4766751295],[516669.84532830014,5276645.921909847],[516671.8439500209,5276645.672009813],[516677.5843831466,5276644.943810257],[516678.2466744417,5276649.724715655],[516679.524157196,5276649.506094938],[516680.57440421556,5276649.9536620425],[516681.0972992295,5276650.955417449],[516681.3194414444,5276652.067451138],[516681.01614206407,5276653.066840001],[516680.11292946263,5276653.731091333],[516678.8351293061,5276654.060850746],[516670.4945818399,5276655.259506234],[516670.78928920004,5276657.260865148],[516666.1306539605,5276657.914369378]]]},"properties":{"id_build":1549,"id_source":"w145338580","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516866.54012591875,5276236.604980882],[516865.56396666844,5276236.491014438],[516863.30443487264,5276238.596125901],[516858.3623583107,5276233.2471142905],[516860.7721183689,5276231.142435817],[516860.6234990265,5276230.586307171],[516860.92492026306,5276230.253760708],[516861.4500748429,5276230.47756037],[516863.86048074666,5276228.1506056795],[516866.1081088388,5276230.157628213],[516866.8595708102,5276230.048664664],[516867.0091551313,5276230.271377219],[516866.7815601573,5276231.048695896],[516868.57850227295,5276233.054414267],[516866.5439880579,5276235.271315866],[516866.54012591875,5276236.604980882]]]},"properties":{"id_build":1550,"id_source":"w145338588","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.1151416713,5276441.7010109825],[516995.00663409085,5276435.473951109],[516994.7838944848,5276434.584183282],[517000.7960491288,5276433.490333038],[517001.241526524,5276435.269869167],[517002.6317682587,5276435.040534278],[517004.5480493437,5276434.723823822],[517004.4752094462,5276433.945633021],[517008.30751309806,5276433.401124977],[517009.56395734823,5276440.406597632],[517010.45036084694,5276445.521614336],[517005.11486678146,5276446.395150831],[517003.5378554812,5276446.279406645],[517002.41410717415,5276445.275868257],[517001.96992872807,5276443.05177686],[517001.52607437846,5276440.716546723],[516996.1151416713,5276441.7010109825]]]},"properties":{"id_build":1551,"id_source":"w145338590","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.7971642088,5276084.081712082],[517006.5502702177,5276083.4170729155],[517008.87107431085,5276086.091201731],[517001.79104186705,5276092.627771669],[516999.2452140571,5276089.841849236],[516999.7723223266,5276089.398828957],[516997.9005889228,5276087.281712623],[516997.2980404297,5276087.8356525935],[516995.5752402157,5276086.163530321],[516997.08988184715,5276081.944642627],[516998.0660645662,5276082.058631032],[516998.2966018332,5276080.281069102],[517001.2332606229,5276077.844567344],[517003.9290002161,5276080.742067881],[517003.7755238534,5276081.853016536],[517004.75639519945,5276082.933934884],[517005.7971642088,5276084.081712082]]]},"properties":{"id_build":1552,"id_source":"w145338593","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.3688220896,5276080.252424358],[516838.9454701356,5276090.265332247],[516835.41085074155,5276091.699930205],[516835.1883944382,5276090.699030327],[516833.68447222677,5276091.2503819065],[516833.2369893569,5276090.137692102],[516831.13085609605,5276091.13186258],[516830.6766286683,5276092.353086232],[516829.99994430726,5276092.573410235],[516827.01971462497,5276084.118186012],[516829.35087630677,5276083.235803884],[516829.57461840357,5276083.7921486255],[516829.1971122091,5276084.457895791],[516832.73109206394,5276083.24557152],[516832.06050882343,5276081.354259512],[516835.3688220896,5276080.252424358]]]},"properties":{"id_build":1553,"id_source":"w145338599","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516645.3159207174,5276345.885677453],[516644.49952925346,5276342.438014179],[516643.7480860769,5276342.54700639],[516642.4857812982,5276337.4309739545],[516641.5841122747,5276337.539537179],[516639.94846375776,5276331.644460848],[516647.1653182954,5276329.553430453],[516647.98329846887,5276332.445400181],[516650.3136981119,5276331.785223893],[516650.83821602265,5276332.231282146],[516651.5066041891,5276334.900545362],[516650.3113280208,5276335.241661132],[516650.6975608167,5276336.765378934],[516651.87771884125,5276336.45756192],[516653.6597655042,5276343.686736506],[516645.3159207174,5276345.885677453]]]},"properties":{"id_build":1554,"id_source":"w145338601","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.331655877,5276355.1459433865],[516894.9067382274,5276349.382848511],[516900.5985160091,5276355.178627104],[516897.2835746117,5276358.614339563],[516899.1034194762,5276360.475652849],[516900.8783247967,5276362.292380418],[516904.4186033097,5276358.85732402],[516909.9607831546,5276364.430398327],[516901.3731487334,5276372.96322854],[516898.3776909223,5276369.842624634],[516899.9592398149,5276368.402397433],[516898.75325437926,5276367.254159087],[516897.4873076371,5276366.061291146],[516898.1662201344,5276365.063003538],[516894.4966800395,5276361.273607683],[516893.7433001821,5276362.04940029],[516890.9939950871,5276359.518554745],[516887.8252184352,5276356.586391244],[516889.331655877,5276355.1459433865]]]},"properties":{"id_build":1555,"id_source":"w145338607","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1566535209,5276370.173300824],[517204.8506130209,5276365.627482569],[517203.4270909352,5276364.400740383],[517204.48260269396,5276363.070181413],[517204.70990948414,5276362.404014446],[517205.61421224335,5276361.406428221],[517204.1906892773,5276360.179685862],[517206.45259658806,5276357.296734676],[517214.77003244654,5276364.1008374775],[517212.43268289865,5276367.094702253],[517211.53330646426,5276366.425205863],[517210.2817464826,5276368.010805646],[517209.3468407643,5276369.197238287],[517210.9205848587,5276370.424425863],[517207.22596689034,5276375.192517854],[517206.6267114142,5276374.635048669],[517201.1566535209,5276370.173300824]]]},"properties":{"id_build":1556,"id_source":"w145338611","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.25250048045,5276337.720780319],[517208.15169821994,5276341.519911849],[517205.3571014069,5276346.735223147],[517203.7072523013,5276345.8412315715],[517202.7482349465,5276347.561064756],[517201.9704728948,5276348.9480142435],[517202.720284716,5276349.3947878685],[517200.8322972843,5276352.834543485],[517200.3078231038,5276352.38843558],[517197.90783480165,5276351.158811085],[517197.8327223399,5276351.158589287],[517191.98379229294,5276347.807128997],[517193.94688863686,5276344.367592294],[517195.14639254473,5276345.149111741],[517197.03405089857,5276341.8204930965],[517198.5340052117,5276342.602900393],[517201.25250048045,5276337.720780319]]]},"properties":{"id_build":1557,"id_source":"w145338612","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.9692420954,5276108.118328069],[517129.96858837805,5276108.340605524],[517123.8799778233,5276109.767518079],[517123.2114524412,5276107.209339881],[517115.1009594604,5276109.063762739],[517111.1847930066,5276109.952488088],[517111.25827606866,5276110.508402396],[517103.81693994586,5276112.153641406],[517102.11114636966,5276104.70227368],[517109.40226018237,5276103.056591189],[517109.1801778145,5276101.944541989],[517121.80810515943,5276099.092017354],[517121.58406481636,5276098.646800034],[517126.3947385423,5276097.549546352],[517126.4698542714,5276097.54976722],[517127.28632312024,5276100.886358591],[517128.26348070765,5276100.666952657],[517129.9692420954,5276108.118328069]]]},"properties":{"id_build":1558,"id_source":"w145338621","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.11668712634,5276072.9937920235],[516435.32011153834,5276072.441489542],[516435.32199313893,5276071.774657182],[516435.47630205983,5276070.330277646],[516443.7384411468,5276070.57587621],[516443.569697321,5276077.13263699],[516442.14280757,5276077.01746927],[516442.13841533975,5276078.573411461],[516443.5653047086,5276078.68857918],[516446.79466302786,5276078.919976176],[516446.475998009,5276085.36517403],[516439.56690669863,5276084.78997136],[516439.8774082097,5276081.234380087],[516434.9964414087,5276080.664907583],[516435.00083173387,5276079.1089653885],[516433.8740925302,5276079.105786233],[516434.11668712634,5276072.9937920235]]]},"properties":{"id_build":1559,"id_source":"w145338629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516566.9318399751,5276228.298699677],[516567.8202463818,5276232.857952523],[516568.19170625164,5276234.303824679],[516568.8544528837,5276238.973575469],[516569.15016588225,5276240.641511528],[516564.4915256738,5276241.1839586375],[516562.0118201676,5276241.510325776],[516562.08314159425,5276242.844204437],[516560.3548912897,5276243.061569522],[516558.1008442799,5276243.27744029],[516557.7334898829,5276240.386764942],[516557.51415128954,5276238.274487984],[516557.14490062004,5276236.050645225],[516556.40766212187,5276231.158404784],[516562.34419562184,5276230.286165967],[516563.24998843105,5276228.732786665],[516566.9318399751,5276228.298699677]]]},"properties":{"id_build":1560,"id_source":"w145338635","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516701.40232353314,5276241.308210708],[516704.1740888349,5276241.293931568],[516704.1638791378,5276239.615693297],[516711.1346390061,5276239.569005858],[516710.99320178357,5276244.358719779],[516710.3995155914,5276244.457042118],[516710.3196825707,5276246.101680176],[516710.9581498849,5276246.103512019],[516711.02526338695,5276254.127988783],[516704.57280545833,5276254.176162782],[516704.5268990849,5276249.2303158],[516703.0020259893,5276249.248170477],[516701.46967339655,5276249.254890141],[516701.4468622833,5276246.731954242],[516701.40232353314,5276241.308210708]]]},"properties":{"id_build":1561,"id_source":"w145338642","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.14764776285,5276487.862782901],[517306.2634705225,5276488.515105594],[517307.2813314543,5276499.8543873085],[517294.88578073826,5276500.595541797],[517292.6296242781,5276476.249232261],[517297.3632583928,5276475.707590745],[517298.02143052267,5276481.711093193],[517299.7719739233,5276481.560697233],[517301.7779601247,5276481.388832719],[517301.7763092465,5276481.94452667],[517306.13405544014,5276481.512915377],[517305.48018483486,5276474.064607738],[517309.23638948635,5276473.853490852],[517309.31117005163,5276473.964852879],[517310.06227886956,5276473.967085318],[517310.79191510985,5276481.193339164],[517310.49147195613,5276481.192446139],[517311.14764776285,5276487.862782901]]]},"properties":{"id_build":1562,"id_source":"w145338652","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5068044968,5276370.134745798],[516531.374371827,5276370.567573293],[516532.0355541894,5276375.793014757],[516531.2090053694,5276375.901808268],[516531.2096362893,5276375.67953071],[516525.91265467776,5276376.22019636],[516521.66755890276,5276376.652711037],[516521.080218463,5276371.87203895],[516517.0229003197,5276372.305089696],[516516.3639103076,5276366.301678554],[516520.4212325791,5276365.868627345],[516521.5476010713,5276365.982962152],[516523.34777259384,5276366.877186471],[516524.0196835536,5276368.323908516],[516530.85710370983,5276367.565333891],[516530.49132136494,5276364.118965824],[516534.69855529093,5276363.797489716],[516535.5068044968,5276370.134745798]]]},"properties":{"id_build":1563,"id_source":"w145338656","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.79945962655,5276238.340730637],[516578.6208402384,5276238.44566855],[516578.55173698295,5276236.333818409],[516578.1831268961,5276233.887696793],[516577.81673083466,5276230.663603941],[516577.1520924534,5276226.6606846955],[516582.8623422772,5276226.121241671],[516583.61095127114,5276227.012490365],[516587.5171980766,5276226.912474267],[516587.88675429375,5276229.025180196],[516588.47595451534,5276233.139025519],[516588.62206740654,5276234.58425719],[516584.8587748055,5276237.240891656],[516582.98029413534,5276237.457822257],[516582.91055957985,5276235.5682495665],[516580.6568251824,5276235.67297286],[516580.79945962655,5276238.340730637]]]},"properties":{"id_build":1564,"id_source":"w145338665","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517221.4920177151,5276377.012920362],[517223.3009534924,5276374.906614443],[517223.9756481822,5276375.353168713],[517225.2045123424,5276373.82307459],[517226.4635535152,5276372.248614088],[517225.93941176275,5276371.691365083],[517228.05011472024,5276369.14139421],[517235.6934726117,5276375.276694831],[517233.73233499995,5276378.049385029],[517232.68339613883,5276377.157163283],[517232.0047563222,5276378.044273276],[517232.22943499754,5276378.267217541],[517230.2692864374,5276380.706492588],[517229.29513084446,5276379.9256324405],[517228.7673735687,5276380.590909677],[517230.49166344,5276381.707408204],[517229.2098265588,5276383.370712213],[517221.4920177151,5276377.012920362]]]},"properties":{"id_build":1565,"id_source":"w145338677","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516591.55087812373,5276234.814878971],[516591.4770305646,5276234.370109981],[516590.2777399599,5276233.477576497],[516590.2038922842,5276233.032807523],[516588.47595451534,5276233.139025519],[516587.88675429375,5276229.025180196],[516587.5171980766,5276226.912474267],[516587.14795809815,5276224.688629619],[516595.78797667404,5276224.046404039],[516595.8592906126,5276225.380283093],[516598.03791522986,5276225.275351614],[516599.68662367883,5276226.613726152],[516600.8678581019,5276233.841170495],[516601.3096718954,5276236.954340191],[516597.1023424724,5276237.275768341],[516596.88523491344,5276234.385518599],[516591.55087812373,5276234.814878971]]]},"properties":{"id_build":1566,"id_source":"w145338681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517249.6616656492,5276503.017631195],[517249.5209908671,5276499.794161227],[517244.41248643957,5276500.112451974],[517244.5528349538,5276503.447060609],[517238.99334207247,5276503.87516049],[517238.33379596286,5276498.3162198225],[517239.61659741163,5276496.319501191],[517239.766818594,5276496.319945876],[517239.99313736183,5276495.987196528],[517239.4818386566,5276491.095533248],[517244.3653477901,5276490.665432154],[517244.43650946533,5276491.999320065],[517247.299047962,5276491.729947337],[517251.19844297296,5276491.352507494],[517251.35063956864,5276490.686119721],[517255.0320499706,5276490.36360662],[517256.1982554453,5276502.370157042],[517249.6616656492,5276503.017631195]]]},"properties":{"id_build":1567,"id_source":"w145338682","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516436.29662345775,5276285.387777441],[516436.29693709867,5276285.276638676],[516439.301782318,5276285.173979644],[516439.3715627288,5276287.063550654],[516442.07595402293,5276286.96004501],[516442.00429199444,5276285.737306554],[516446.3614900309,5276285.527329412],[516446.4347203142,5276286.194374103],[516446.33575579367,5276294.64070814],[516441.227432924,5276294.848564857],[516441.07814779185,5276294.5147244865],[516440.35706136836,5276294.512688989],[516439.72611074796,5276294.510907999],[516439.79369493085,5276297.178450403],[516436.2630639608,5276297.279625326],[516436.3500954807,5276293.056564195],[516436.2906642983,5276287.499413966],[516436.29662345775,5276285.387777441]]]},"properties":{"id_build":1568,"id_source":"w145338706","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516911.3006987986,5276316.866494519],[516908.9792976236,5276314.414681026],[516910.6369451195,5276312.641258586],[516909.6858502048,5276311.660467764],[516907.4915253468,5276309.42018928],[516906.06860465737,5276307.960128667],[516904.1852957079,5276309.844037123],[516902.79976952815,5276308.439655702],[516900.66530548455,5276306.277351337],[516902.32327526645,5276304.39278779],[516899.4775248625,5276301.43932785],[516894.3851476415,5276296.14541842],[516901.01606892905,5276288.9405763345],[516904.5587647544,5276292.451758237],[516906.8581265884,5276294.7367963055],[516906.0289781616,5276295.734646743],[516907.75174145796,5276297.406743169],[516907.22433629737,5276297.960910619],[516920.7804222074,5276311.559322225],[516915.3561495757,5276317.100550912],[516914.2323610562,5276316.097029836],[516912.349374789,5276317.869796917],[516911.85498517886,5276317.401574565],[516911.3006987986,5276316.866494519]]]},"properties":{"id_build":1569,"id_source":"w145338718","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.01135526027,5276221.120412855],[516622.68738235015,5276221.122342198],[516622.6608652351,5276230.413541873],[516622.64138972346,5276237.237461336],[516618.8099459087,5276237.44880694],[516618.59633737383,5276233.33603008],[516617.7704008731,5276233.222533826],[516616.49060981086,5276234.219139428],[516615.7413726427,5276233.550163994],[516615.5920958893,5276233.216319163],[516614.3151584861,5276233.212676465],[516613.5678230437,5276231.876868789],[516613.42678849195,5276228.653416439],[516615.83329079224,5276227.660024373],[516615.6247526285,5276221.769027663],[516614.7252855072,5276221.099623805],[516614.5826661117,5276218.431865235],[516622.01928469015,5276218.341944081],[516622.01135526027,5276221.120412855]]]},"properties":{"id_build":1570,"id_source":"w145338720","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516718.59262317914,5276619.276975154],[516715.67932282126,5276613.7116255425],[516715.00748816045,5276612.264880652],[516720.8001412204,5276609.0584573345],[516724.1931374651,5276604.511471177],[516739.3332461967,5276615.6689434955],[516736.9204941441,5276618.885061201],[516734.2127380314,5276620.210956659],[516734.5860473593,5276620.990007545],[516733.0813133121,5276621.874801674],[516733.4539839935,5276622.876130127],[516730.7455919419,5276624.424304842],[516731.19273316377,5276625.648126578],[516728.6348800283,5276627.085595032],[516728.9327615153,5276627.975568631],[516725.69765344483,5276629.855651873],[516723.59715881856,5276628.960501607],[516718.59262317914,5276619.276975154]]]},"properties":{"id_build":1571,"id_source":"w145338723","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.83775619394,5276092.097335431],[516484.3148934068,5276092.362796266],[516483.99933279306,5276097.6966049895],[516471.00651517307,5276096.881871431],[516471.087916589,5276094.659309234],[516470.4175317566,5276092.656900374],[516470.57436307054,5276090.323411861],[516471.4066084218,5276088.214112568],[516471.8143398356,5276084.814393301],[516475.6445892514,5276085.058619612],[516475.78668259643,5276082.625063911],[516484.8661821392,5276083.362047332],[516484.5528223856,5276087.917884848],[516481.0981229358,5276087.685829259],[516480.88675655477,5276090.708228831],[516479.64747165464,5276090.660266511],[516479.59847158956,5276092.04937312],[516480.83775619394,5276092.097335431]]]},"properties":{"id_build":1572,"id_source":"w145338738","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4339716028,5276489.391515131],[516731.4314172638,5276490.280625509],[516731.35598731955,5276490.391548519],[516731.50141921564,5276492.0590620525],[516728.15918770805,5276491.982777189],[516725.868441132,5276491.931741917],[516725.8722713673,5276490.598076346],[516722.56772193796,5276490.477447033],[516722.58686932287,5276483.809119226],[516726.1925038598,5276483.708333815],[516726.1960149691,5276482.485807056],[516727.9235623013,5276482.490768844],[516727.9996307329,5276482.1575682005],[516728.2256014665,5276481.935937839],[516729.05213908135,5276481.827172299],[516729.4270543851,5276482.050528678],[516729.42545811913,5276482.606222657],[516731.52887846984,5276482.501125533],[516731.4339716028,5276489.391515131]]]},"properties":{"id_build":1573,"id_source":"w145338753","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.40777437977,5276143.749954367],[517191.16023786436,5276143.307616439],[517192.5136226498,5276142.867052349],[517195.06655337376,5276143.20800766],[517200.9894903464,5276147.004246234],[517197.8956606219,5276151.774117479],[517199.23014837806,5276152.644947647],[517203.8933737177,5276155.68171961],[517199.51635686215,5276162.559454377],[517186.39584582514,5276154.185246811],[517189.49032083305,5276149.193092],[517187.4664775112,5276147.74230337],[517188.82510874706,5276145.523518704],[517190.40777437977,5276143.749954367]]]},"properties":{"id_build":1574,"id_source":"w145338757","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517072.1498276077,5276190.958802422],[517072.11273681733,5276201.050178222],[517071.0685815919,5276201.069345686],[517071.0604379927,5276203.847814279],[517071.8115815715,5276203.850015905],[517071.84402134543,5276218.4094116865],[517059.9015193596,5276218.152139675],[517058.62295087654,5276218.704093306],[517056.069069237,5276218.69661394],[517055.9367410138,5276212.5835429765],[517055.8047379124,5276206.35933333],[517054.3775657397,5276206.355154244],[517053.1760619409,5276206.24049654],[517053.19753853127,5276198.905339446],[517054.1740260057,5276198.908198582],[517055.7517542982,5276198.801678791],[517056.1465284586,5276192.245592792],[517056.01257220976,5276186.688215785],[517054.2150290527,5276184.904717094],[517056.2499579439,5276182.576742275],[517060.7568358448,5276182.589941981],[517060.46451580606,5276179.810593393],[517056.1202324226,5276175.574561743],[517053.3406623045,5276175.677562471],[517053.4785263166,5276179.90127443],[517051.06867515447,5276182.005873219],[517049.94553429686,5276180.780048695],[517044.8380630195,5276180.653960036],[517044.8270730751,5276179.275795695],[517040.98887582053,5276179.208994857],[517040.9818515042,5276166.205630563],[517044.6998735809,5276166.272079665],[517044.6062289866,5276157.202807042],[517049.3384713778,5276157.216657316],[517049.46365104994,5276165.774779794],[517064.33639098296,5276165.818334634],[517066.2100287649,5276167.268640272],[517066.2756997666,5276170.491883761],[517067.4216667406,5276171.617752586],[517068.7473224384,5276172.9441996645],[517071.75191269314,5276172.953005518],[517071.8253986718,5276173.50891938],[517073.24866951146,5276174.846767585],[517073.36501723406,5276186.405636897],[517072.08774356294,5276186.5130326],[517072.1498276077,5276190.958802422]]]},"properties":{"id_build":1575,"id_source":"w145338759","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.6666615359,5276356.806696565],[516617.1081399331,5276360.031006879],[516615.1545852453,5276360.247712749],[516615.5225372552,5276362.916114795],[516617.24536346714,5276364.5881253155],[516617.6114115821,5276367.923360177],[516608.14283390145,5276369.452307075],[516607.77266050735,5276367.561876913],[516606.0441285078,5276367.890367176],[516605.2343713139,5276362.108795029],[516607.2630372961,5276361.892300015],[516607.26240347716,5276362.114577568],[516608.2394972642,5276361.895084454],[516608.1669203756,5276361.005760055],[516607.11503103614,5276361.113900226],[516606.8237719108,5276357.890019022],[516613.3607661315,5276357.130684523],[516616.6666615359,5276356.806696565]]]},"properties":{"id_build":1576,"id_source":"w145338765","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.6791482967,5276648.951790297],[517212.8817973125,5276647.168240877],[517212.66599764564,5276643.944549104],[517217.6999225736,5276643.403731047],[517217.77273114264,5276644.181924846],[517221.15327920805,5276643.969641061],[517221.1499926689,5276645.081029258],[517223.77287951513,5276647.089302364],[517223.69382643607,5276648.422746064],[517221.58355424507,5276650.861580563],[517221.5769809876,5276653.0843569795],[517216.54372117424,5276653.40289403],[517215.0362932718,5276655.1766743995],[517215.32522839494,5276659.067421284],[517209.84066631785,5276659.606909584],[517209.1866945341,5276652.1586109195],[517212.1165861346,5276651.944990197],[517213.15666525287,5276650.73664062],[517214.6791482967,5276648.951790297]]]},"properties":{"id_build":1577,"id_source":"w145338781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.5991968046,5276203.860901217],[516960.3700134714,5276206.758600955],[516962.46674089495,5276208.987500698],[516960.1317254007,5276211.203494604],[516958.5585327243,5276209.754097843],[516958.1823141526,5276209.975281809],[516957.955676979,5276210.419180693],[516958.1042875724,5276210.975311825],[516958.5540023526,5276211.310040289],[516958.09555065574,5276213.976057981],[516957.9453222086,5276213.97562058],[516957.86276552186,5276216.53159306],[516957.33696618566,5276216.530062196],[516953.9571511145,5276216.409083314],[516951.4787062343,5276216.290729712],[516951.3355939814,5276213.845240047],[516951.3462681769,5276210.177661411],[516953.6064899209,5276207.850306603],[516957.5991968046,5276203.860901217]]]},"properties":{"id_build":1578,"id_source":"w145338801","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68704818055,5276594.458551719],[517310.64276423794,5276594.544359361],[517310.20048706804,5276589.1972207595],[517314.9410795077,5276588.8112103185],[517315.013644526,5276589.6672024615],[517317.48679492256,5276599.088096617],[517317.5881803157,5276600.3553917445],[517312.20900328795,5276600.795071505],[517311.68704818055,5276594.458551719]]]},"properties":{"id_build":1579,"id_source":"w145338811","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.4904845518,5276346.236513612],[516613.76771420706,5276346.129017196],[516614.2817711917,5276350.242651691],[516614.8722080447,5276353.911945445],[516618.17810536455,5276353.58795834],[516618.5451050614,5276356.589776875],[516616.6666615359,5276356.806696565],[516613.3607661315,5276357.130684523],[516606.8237719108,5276357.890019022],[516606.458667628,5276354.221368584],[516605.55700190156,5276354.32993738],[516605.4131145696,5276352.1067335745],[516604.58656096697,5276352.21551668],[516603.9241734283,5276347.434622123],[516606.02795696224,5276347.218340811],[516605.8092739698,5276344.883784085],[516610.1670682449,5276344.451652014],[516610.38638344395,5276346.563931361],[516612.4904845518,5276346.236513612]]]},"properties":{"id_build":1580,"id_source":"w145338818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.58796949795,5276348.7103305925],[516854.62880876585,5276352.76704792],[516849.42332441197,5276352.818669685],[516846.7417142281,5276352.844254179],[516846.6948691638,5276348.26516297],[516841.69969585916,5276348.317400005],[516841.7467055425,5276352.840921782],[516833.50655083306,5276352.928238993],[516833.44304002775,5276346.3152432665],[516833.390311391,5276341.169322799],[516837.49158674915,5276341.136722225],[516837.5152378752,5276343.348470616],[516838.9874760163,5276343.341613067],[516841.6615792674,5276343.3160032695],[516841.6737093452,5276344.316295648],[516846.78155488987,5276344.264384484],[516846.769586428,5276343.208522711],[516848.2193230122,5276343.190488439],[516850.3225388284,5276343.174345134],[516850.2979922376,5276341.273785238],[516854.5119365473,5276341.241522621],[516854.58796949795,5276348.7103305925]]]},"properties":{"id_build":1581,"id_source":"w145338819","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.32509231474,5276583.306686474],[516379.7264049028,5276582.527024698],[516373.2529309679,5276587.510107267],[516375.1194155773,5276591.51638427],[516373.6907758033,5276592.068065847],[516363.88549297745,5276579.926279019],[516369.60630973865,5276575.496768899],[516369.9806078415,5276575.942379788],[516373.3680362444,5276573.284549932],[516373.0719724229,5276571.727761846],[516375.7821679928,5276569.512588202],[516376.68285837746,5276569.737400323],[516380.7253355825,5276574.527776321],[516380.4239595524,5276574.860347709],[516381.09838243935,5276575.417943184],[516381.70050930144,5276574.975078123],[516385.4434788718,5276579.431195893],[516381.3788128624,5276582.5316725075],[516380.32509231474,5276583.306686474]]]},"properties":{"id_build":1582,"id_source":"w145338822","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.67914262647,5276308.122993043],[516835.7446176896,5276311.457373111],[516835.7777728324,5276312.980082756],[516835.870048116,5276317.437051238],[516833.33107197407,5276317.485282242],[516826.05966309557,5276317.630980098],[516817.4060813487,5276317.806037716],[516814.7544362432,5276317.853951487],[516814.5773997516,5276311.52959189],[516814.5950181684,5276308.028742481],[516814.51129974297,5276305.805706969],[516819.03342538903,5276305.70762447],[516819.0794572078,5276307.9750071],[516820.84474126715,5276307.935649278],[516822.7151835625,5276307.896595731],[516822.74205070327,5276308.996956283],[516827.8876119082,5276308.900681452],[516827.86116318655,5276307.655840483],[516829.70903961355,5276307.62783795],[516831.3916995523,5276307.588244568],[516831.35215604905,5276305.676527585],[516835.62634486944,5276305.599969395],[516835.67914262647,5276308.122993043]]]},"properties":{"id_build":1583,"id_source":"w145338828","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516924.13591451995,5276139.080276816],[516921.7322284879,5276139.073292962],[516921.4994565952,5276141.628829166],[516914.73941534624,5276141.498053925],[516914.74716146174,5276138.830724304],[516909.6396510978,5276138.704754301],[516909.5706663656,5276136.592900283],[516912.42536744114,5276136.490049023],[516912.59270166914,5276130.600132387],[516914.09500761906,5276130.604494817],[516914.1004942235,5276128.715136365],[516915.45224725007,5276128.8302016165],[516917.47842406674,5276129.502924375],[516919.3537241283,5276130.397488905],[516921.15358545113,5276131.402974553],[516922.6520163407,5276132.741003984],[516923.5495245175,5276134.077287748],[516924.2210407032,5276135.635194332],[516924.2152278681,5276137.635691537],[516924.13591451995,5276139.080276816]]]},"properties":{"id_build":1584,"id_source":"w145338831","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517143.53960734274,5276193.402401632],[517143.85740329686,5276187.512932745],[517149.3407669662,5276187.529075339],[517150.5390002494,5276188.755140277],[517150.75910769927,5276190.534023675],[517157.66964464844,5276190.554376812],[517157.6748829742,5276188.776156965],[517158.8806448708,5276187.446032594],[517164.21345197415,5276187.572885353],[517164.4211093716,5276193.575041428],[517165.4730398231,5276193.4670018405],[517165.5265362716,5276200.802380174],[517160.7946565184,5276200.67729667],[517160.80382528534,5276197.565411891],[517147.73489403876,5276197.1935015265],[517147.6499634391,5276200.52744265],[517142.39228232426,5276200.400826104],[517142.316840817,5276200.511743769],[517142.48767730873,5276193.510445178],[517143.53960734274,5276193.402401632]]]},"properties":{"id_build":1585,"id_source":"w145338832","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9484894918,5276472.395866921],[516536.41449139855,5276473.719507672],[516533.4327738049,5276465.70898433],[516535.83884911105,5276464.826697896],[516534.79486834514,5276462.156381241],[516537.7270380663,5276461.164449566],[516538.70947798167,5276459.055585304],[516542.2431697976,5276457.843084745],[516542.6909950043,5276458.844613979],[516546.375541442,5276457.410265046],[516548.0926749926,5276461.082753665],[516548.9949547071,5276460.751898405],[516550.4864368273,5276464.534886256],[516547.2528753986,5276465.8593742475],[516546.5734033513,5276467.079980336],[516544.2418068218,5276468.184753302],[516543.4203220974,5276466.515324343],[516542.3977713732,5276466.879180746],[516541.2398948111,5276467.287108846],[516538.307411951,5276468.390177551],[516539.9484894918,5276472.395866921]]]},"properties":{"id_build":1586,"id_source":"w145338833","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.28672197775,5276439.0101173725],[516486.2590790525,5276440.45768567],[516482.4214835685,5276442.891896562],[516483.2442473258,5276444.116761634],[516483.6204326472,5276443.895546985],[516485.5648308931,5276446.901822007],[516480.37177933,5276450.554734077],[516478.277157254,5276447.548035733],[516479.8576372524,5276446.441110953],[516478.6608893044,5276444.659489755],[516476.7042241032,5276445.987629931],[516474.5351159952,5276442.758442882],[516476.64200432703,5276441.430726979],[516474.0244271891,5276437.422293638],[516477.4110401318,5276435.0979409525],[516477.936505183,5276435.21056733],[516478.41803545103,5276434.922966592],[516479.21559954534,5276434.436208701],[516478.54274186195,5276433.322908054],[516480.57452311524,5276431.994981063],[516485.28672197775,5276439.0101173725]]]},"properties":{"id_build":1587,"id_source":"w145338834","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517026.3884766497,5276260.742833107],[517029.3926966029,5276260.862755974],[517029.4017953378,5276257.750870861],[517053.3624024706,5276258.043257139],[517053.3207496998,5276272.269017753],[517029.66000508075,5276272.199787507],[517029.5006792982,5276275.311233439],[517016.6559572071,5276275.384830648],[517016.62510942016,5276285.943012645],[517013.3197996831,5276286.044496177],[517013.03926982527,5276304.937427216],[516998.8429029283,5276304.8959755255],[516998.95150196913,5276285.702465033],[517001.9934608432,5276285.755800163],[517002.0468019247,5276282.921893378],[517002.2572130463,5276267.451860794],[517004.5922222867,5276265.235883598],[517006.92690877523,5276263.131046093],[517009.4879115299,5276260.693451356],[517026.3884766497,5276260.742833107]]]},"properties":{"id_build":1588,"id_source":"w145338839","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517044.6062289866,5276157.202807042],[517044.717832516,5276149.8679142855],[517055.8946269752,5276150.011772415],[517056.796333061,5276149.903273276],[517056.7365148534,5276144.679532798],[517055.53857822495,5276143.34234858],[517054.86124027136,5276143.784923953],[517051.7909555883,5276140.552883676],[517057.44054198865,5276135.123581552],[517061.40960443753,5276139.247374948],[517060.50529232546,5276140.244983237],[517062.0778275653,5276141.9166848585],[517064.18202875915,5276141.589430156],[517063.57589795487,5276143.365889383],[517064.6236025008,5276144.70263511],[517061.91229576553,5276147.139765259],[517061.3864901431,5276147.138225017],[517061.5074202139,5276157.141151229],[517049.3384713778,5276157.216657316],[517044.6062289866,5276157.202807042]]]},"properties":{"id_build":1589,"id_source":"w145338841","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.23779169226,5276074.14962475],[516487.8170949443,5276075.812905753],[516485.02459221054,5276080.47286559],[516474.67682613427,5276073.997490351],[516474.4517924399,5276073.885714239],[516475.8865417126,5276071.222421708],[516476.34384004545,5276068.889783343],[516476.87185335235,5276068.113299672],[516478.60392537777,5276066.562245052],[516479.81144320825,5276064.565148326],[516485.2857990832,5276067.80368852],[516492.9495288851,5276067.158546316],[516490.60991677875,5276071.041808555],[516487.9479845124,5276069.378292434],[516486.8979953117,5276068.797394286],[516484.95028090815,5276072.226095653],[516484.21530751756,5276071.812798982],[516483.46037286695,5276073.144337894],[516485.23779169226,5276074.14962475]]]},"properties":{"id_build":1590,"id_source":"w145338842","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.0812416151,5276299.129172086],[517076.00160331355,5276299.120142069],[517075.99117617006,5276302.676582416],[517075.9553328199,5276314.901846257],[517078.80962399807,5276314.910215484],[517078.7074611919,5276324.134512638],[517079.38315053825,5276324.247633783],[517079.37760997756,5276326.136992791],[517079.37206941546,5276328.026351801],[517078.39527768234,5276328.134627155],[517078.30093708826,5276334.691594101],[517071.220474616,5276341.450359193],[517053.49455580174,5276341.176149894],[517053.60871928465,5276327.839717798],[517064.5000692231,5276327.871618789],[517064.6136066518,5276314.757464654],[517061.6090895603,5276314.748662304],[517061.7304343088,5276298.967178141],[517064.88518580527,5276298.976420693],[517064.61504900164,5276280.937653768],[517079.13306075416,5276281.458109418],[517079.0812416151,5276299.129172086]]]},"properties":{"id_build":1591,"id_source":"w145338853","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.5603365978,5276647.617103499],[516866.84950569813,5276648.489678403],[516866.33372374193,5276645.042852139],[516864.45504166675,5276645.370830628],[516863.71715021733,5276640.811963878],[516865.2952700922,5276640.527570596],[516866.7231083004,5276640.264970433],[516866.42975484795,5276637.819046214],[516865.3021579425,5276638.149199803],[516864.12037195865,5276631.255112727],[516865.1718957063,5276631.258157853],[516864.8791848262,5276628.589956111],[516863.56420024805,5276628.786199677],[516861.94865157024,5276629.026029161],[516861.28522134206,5276624.689657956],[516863.0888009664,5276624.361460949],[516862.57237091486,5276621.136912796],[516868.28322793706,5276620.264333672],[516869.90632816305,5276630.382752707],[516871.4088271532,5276630.275965619],[516872.5161399611,5276636.94755893],[516871.0129987283,5276637.276623376],[516872.5603365978,5276647.617103499]]]},"properties":{"id_build":1592,"id_source":"w145338854","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516807.1018573999,5276634.86902748],[516810.87205477554,5276629.767481259],[516812.5212410817,5276630.88363964],[516818.8554198298,5276622.233029365],[516823.2772163571,5276625.579993817],[516821.3163591283,5276628.352823294],[516824.7643034595,5276630.807858081],[516821.9737189912,5276634.800827507],[516818.1811097833,5276632.055835624],[516816.8769120599,5276631.118495444],[516815.51949745486,5276633.003951489],[516817.09357315366,5276634.119894304],[516813.02261728776,5276639.331707978],[516811.6735476366,5276638.327555551],[516810.2410276614,5276640.212796014],[516811.6498632488,5276641.3282604],[516815.0370751486,5276644.005393671],[516812.24746617454,5276647.66495134],[516808.649950894,5276644.987212667],[516806.69006934913,5276647.426630647],[516802.5683940692,5276644.191684312],[516808.52539586055,5276636.095673267],[516807.1018573999,5276634.86902748]]]},"properties":{"id_build":1593,"id_source":"w145338857","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516765.4323156312,5276577.067392436],[516761.4361563201,5276582.3905967325],[516759.86237581586,5276581.1635303],[516758.0527124337,5276583.603396722],[516759.62649265316,5276584.830462674],[516757.0631781359,5276588.157278442],[516757.21051877,5276589.157960011],[516754.11920402327,5276593.261235964],[516753.3681107647,5276593.259075188],[516751.2570576102,5276596.031495917],[516749.68295903574,5276594.915571019],[516747.4971185779,5276597.576638274],[516749.07057756523,5276598.914840215],[516745.3007343536,5276603.905287303],[516735.9318879585,5276596.987692128],[516740.15366146545,5276591.553979178],[516739.25426600856,5276590.884555532],[516751.6201533506,5276574.249152628],[516752.44412071706,5276575.029500913],[516756.2133490174,5276570.261336245],[516765.4323156312,5276577.067392436]]]},"properties":{"id_build":1594,"id_source":"w145338858","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.98274753377,5276611.230188506],[517056.7589703722,5276611.488683061],[517056.4806594279,5276616.755892983],[517056.4408263601,5276617.533754705],[517058.92657688016,5276617.663289344],[517058.98995221587,5276616.540963313],[517065.6736792762,5276616.893964939],[517065.61017238244,5276618.06074643],[517068.11845520104,5276618.190351026],[517068.17376765533,5276617.256939064],[517068.4285466469,5276612.334193958],[517073.24235504755,5276612.581698222],[517073.00357127155,5276617.171070716],[517076.1501832781,5276617.33589212],[517075.848246941,5276622.96979323],[517065.2594152983,5276622.416397604],[517065.16381320835,5276624.283265622],[517058.4425401331,5276623.930154551],[517058.5459439613,5276621.963283494],[517048.39267597743,5276621.433422382],[517048.71051863127,5276615.488375214],[517051.75197950035,5276615.652875592],[517051.98274753377,5276611.230188506]]]},"properties":{"id_build":1595,"id_source":"w145338859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.8994838646,5276120.16548458],[516411.98054930946,5276118.054060262],[516410.6287844529,5276117.939111888],[516410.70170795266,5276118.717294673],[516406.4961827375,5276118.372028213],[516406.41668455285,5276119.927758926],[516406.3334297812,5276122.817154475],[516401.67690200143,5276122.581760742],[516401.9952027613,5276116.247698914],[516406.2767843759,5276116.259757495],[516406.37421704514,5276113.670478875],[516406.51966182486,5276110.0366231175],[516409.5239705985,5276110.156226012],[516410.57715389767,5276109.603495165],[516411.8544314526,5276109.495954399],[516413.2061982478,5276109.610903051],[516414.18207403395,5276109.835932319],[516415.98265458853,5276110.618984138],[516417.93503208144,5276110.846766307],[516417.1478520223,5276123.625603566],[516411.8156000637,5276123.277157531],[516411.8994838646,5276120.16548458]]]},"properties":{"id_build":1596,"id_source":"w145338860","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517003.1943509317,5276623.101745652],[517003.0608573515,5276625.090757693],[516996.5651681031,5276624.649464875],[516996.7062028052,5276622.649360732],[516986.1629154577,5276621.929532244],[516986.5629254795,5276616.118089397],[516989.49159435334,5276616.326684163],[516989.78958901664,5276612.015330743],[516994.4905100146,5276612.340238394],[516994.1609439716,5276617.17385635],[516994.09800275293,5276618.151702597],[516996.92909351765,5276618.33778841],[516996.9681725736,5276617.8155455785],[517003.5464893336,5276618.257080053],[517003.5070202915,5276618.912689422],[517005.84245591477,5276619.075104451],[517005.9053341895,5276618.119486092],[517006.2504185748,5276613.119204409],[517011.04146872374,5276613.444388626],[517010.74300389417,5276617.91133535],[517013.7017146705,5276618.120030051],[517013.31708909,5276623.798148419],[517003.1943509317,5276623.101745652]]]},"properties":{"id_build":1597,"id_source":"w145338865","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516859.08606764546,5276468.47639035],[516860.2803315648,5276468.479847646],[516860.3220805495,5276474.814932792],[516859.0902624993,5276474.811366769],[516859.13789773395,5276484.302837227],[516856.72677882697,5276484.318085871],[516856.7380372816,5276485.618453255],[516850.4286084108,5276485.644650381],[516850.417637954,5276484.244258095],[516841.0435611499,5276484.306055021],[516841.0349345276,5276482.094349561],[516839.90827309596,5276482.091091672],[516839.8672732901,5276475.489273547],[516841.1742341703,5276475.481938828],[516841.12624808814,5276466.101607515],[516843.42470800795,5276466.086026544],[516843.41328579315,5276464.841228629],[516849.91054674744,5276464.804453256],[516849.92228912475,5276465.938112392],[516852.1005715951,5276465.922187148],[516859.07103057316,5276465.886791269],[516859.08606764546,5276468.47639035]]]},"properties":{"id_build":1598,"id_source":"w145338868","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.5452482719,5276338.936789073],[516933.84666813735,5276338.604246327],[516940.58773068583,5276345.181092954],[516935.0870650405,5276351.166640135],[516934.1886239223,5276350.163770361],[516932.96876459674,5276351.204936901],[516932.23085313936,5276351.8251739275],[516930.5832255265,5276350.153288413],[516925.0835437889,5276355.805428741],[516924.25989112764,5276354.913917544],[516922.2486419343,5276356.886360241],[516920.418180371,5276358.6815053215],[516921.31662252184,5276359.684372983],[516915.81695874874,5276365.3365221],[516914.15414646023,5276363.720166956],[516912.37147628184,5276361.992324532],[516908.92631251935,5276358.536990254],[516914.5007655962,5276352.996191607],[516917.79635027394,5276356.228815234],[516919.5441881385,5276354.433429303],[516921.56327140046,5276352.349868732],[516918.26736374607,5276349.228381768],[516923.8421575429,5276343.576453327],[516926.3882323311,5276346.251205329],[516928.8818866808,5276343.702239759],[516933.5452482719,5276338.936789073]]]},"properties":{"id_build":1599,"id_source":"w145338869","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.9068277589,5276613.331078938],[517020.9857801071,5276613.517900751],[517021.2463086239,5276609.184211377],[517025.9098056969,5276609.464579095],[517025.6174105446,5276614.420557803],[517025.56242980855,5276615.242831336],[517028.5136955394,5276615.429283837],[517028.5770325346,5276614.3180713765],[517035.3432537266,5276614.715735293],[517035.2645035112,5276615.960270325],[517037.3897317353,5276616.088741178],[517037.4607764105,5276614.910867489],[517037.7450204112,5276610.177145002],[517042.468603256,5276610.457701775],[517042.20006023056,5276614.95807649],[517045.38416368247,5276615.145218923],[517045.03683381353,5276620.901242337],[517034.8237032544,5276620.293431851],[517034.69741712435,5276622.382490091],[517028.05137914594,5276621.98517828],[517028.1777603898,5276619.862778258],[517017.5515918669,5276619.231562428],[517017.9068277589,5276613.331078938]]]},"properties":{"id_build":1600,"id_source":"w145338870","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.61973959376,5276373.8766322415],[516814.5399807173,5276373.923309771],[516814.5086815228,5276371.75599521],[516814.47102618695,5276369.188559385],[516811.85699269216,5276369.225468969],[516811.7816154316,5276364.112825142],[516814.49329718814,5276364.076197428],[516814.46270379314,5276361.664377597],[516814.43134029175,5276359.519290837],[516811.8849035668,5276359.5563955875],[516811.81607493805,5276354.777189838],[516821.58116885606,5276354.638676346],[516822.3173025305,5276354.629688579],[516822.3362730027,5276355.863394041],[516825.1155598439,5276355.826966523],[516825.147497362,5276357.772003546],[516825.172084152,5276359.661449487],[516822.37777667143,5276359.697833585],[516822.4662410746,5276365.477353575],[516825.12534370384,5276365.440578942],[516825.15012308984,5276367.263341645],[516825.1745171737,5276369.219470883],[516822.3651918377,5276369.255811574],[516822.42714236025,5276373.812718331],[516817.61973959376,5276373.8766322415]]]},"properties":{"id_build":1601,"id_source":"w145338871","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5568273174,5276377.455149015],[516830.83722665,5276377.293461186],[516850.8329394467,5276377.05120354],[516863.07672941446,5276376.908818009],[516863.2218582942,5276389.045694441],[516858.9402833788,5276389.099982747],[516858.91667288885,5276386.877120212],[516857.0388087837,5276386.893912581],[516855.2961462762,5276386.911096842],[516855.28453331755,5276385.732982318],[516849.913767698,5276385.8063531],[516849.92579974787,5276386.839987199],[516840.048155175,5276386.955899514],[516830.73385098856,5276387.073456534],[516830.72226518113,5276385.884228195],[516825.3515001305,5276385.957621626],[516825.363664968,5276386.946800151],[516823.5083346368,5276386.96366843],[516821.735627507,5276386.980775943],[516821.7594126901,5276389.148068903],[516817.48534959333,5276389.202409378],[516817.44862642454,5276386.312671],[516814.60926460085,5276386.348928659],[516814.55992407823,5276382.625606113],[516817.6171126473,5276382.589977414],[516817.5563780236,5276377.610743305],[516817.5568273174,5276377.455149015]]]},"properties":{"id_build":1602,"id_source":"w145338874","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516376.13867655554,5276068.718330577],[516372.6839617247,5276068.486339334],[516372.765638332,5276066.152637221],[516369.2358057413,5276065.9204368815],[516381.7714447512,5276069.067588847],[516381.0954000779,5276069.065687508],[516379.4431589674,5276068.949901398],[516376.13867655554,5276068.718330577]]]},"properties":{"id_build":1603,"id_source":"w145338876","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.06180487905,5276122.356559032],[516443.81694680755,5276122.589438592],[516443.42693690845,5276127.700760136],[516430.6598405544,5276126.775613852],[516430.6629757204,5276125.664226485],[516430.5913090398,5276124.44148849],[516430.29429619346,5276123.218114822],[516430.1468869944,5276122.217442417],[516430.1493950449,5276121.32833253],[516430.3027609421,5276120.217368958],[516430.7565886174,5276119.107252973],[516431.13467397116,5276118.219202591],[516431.2905483527,5276116.2191291675],[516437.2240430564,5276116.458150096],[516437.46193525294,5276112.01323667],[516444.521539257,5276112.477722358],[516444.13341076847,5276116.9222113695],[516440.37826519454,5276116.689331614],[516440.14162572264,5276120.689690015],[516439.01489456027,5276120.686509845],[516439.0105031043,5276122.242452145],[516440.06180487905,5276122.356559032]]]},"properties":{"id_build":1604,"id_source":"w145338878","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516424.0117833797,5276379.932969521],[516416.12501634983,5276379.91073393],[516416.20827332383,5276377.021337348],[516417.5606044925,5276376.914009641],[516417.6391628205,5276375.691694795],[516419.6671900976,5276375.697412022],[516419.6039845165,5276371.473926628],[516416.75003510783,5276371.354741615],[516416.8354854192,5276367.687373631],[516419.61432440113,5276367.806346915],[516419.7701888334,5276365.806272421],[516425.32849525736,5276365.821945555],[516425.3234802403,5276367.6001660125],[516428.77864263544,5276367.609911445],[516428.6797041557,5276376.056246802],[516427.32768604794,5276376.052433147],[516426.2783106121,5276375.271495726],[516425.7450145094,5276375.2699916335],[516425.30185296026,5276375.268741791],[516425.3747710034,5276376.0469250865],[516425.4498831204,5276376.047136924],[516425.514024717,5276379.937206081],[516424.0117833797,5276379.932969521]]]},"properties":{"id_build":1605,"id_source":"w145338880","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.12152029225,5276077.588554969],[516521.3216640528,5276074.907587441],[516522.75738037267,5276071.91089022],[516522.5351848861,5276070.7988637155],[516524.2707366151,5276068.025296662],[516525.1730756688,5276067.694437778],[516526.9840610519,5276064.809945931],[516529.5342248448,5276066.150857842],[516537.87116714544,5276066.507941823],[516536.0585992636,5276069.948123933],[516535.7584505065,5276069.836132199],[516532.51300223306,5276075.272760919],[516536.18737569446,5276077.50598383],[516532.64178308897,5276082.830620794],[516528.44223089673,5276080.373630525],[516527.99216603464,5276080.1500741495],[516528.74647923105,5276079.040818427],[516528.0716971592,5276078.594345117],[516528.6003472773,5276077.595588656],[516526.7256014936,5276076.47887274],[516526.12152029225,5276077.588554969]]]},"properties":{"id_build":1606,"id_source":"w145338883","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516815.86108190025,5276441.866827903],[516815.83774415485,5276439.543940489],[516811.1506700791,5276439.574864977],[516811.10620434396,5276434.162232595],[516812.24792939296,5276434.154414377],[516812.16384414834,5276421.650954073],[516820.02824715036,5276421.595863881],[516820.03973871947,5276422.818433895],[516825.6732637095,5276422.779136771],[516825.6621907332,5276421.412086321],[516833.59422679653,5276421.346095868],[516833.6570876381,5276430.782039244],[516833.6639241833,5276431.015452403],[516825.51407816826,5276431.080813434],[516825.4828498989,5276426.290601578],[516822.8088169546,5276426.305104832],[516819.9244718855,5276426.319001923],[516819.9551911652,5276431.287035796],[516817.25111597637,5276431.301454833],[516817.261645318,5276432.857441216],[516817.27310533193,5276434.091125129],[516820.63819147577,5276434.067501218],[516820.6908656109,5276441.836319387],[516815.86108190025,5276441.866827903]]]},"properties":{"id_build":1607,"id_source":"w145338888","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.87856965297,5276661.985135263],[516841.9551259475,5276659.976164184],[516839.4665839829,5276663.414300152],[516835.34429558855,5276660.401608118],[516838.1485491861,5276656.875471443],[516838.9626775959,5276655.855339724],[516837.2390375496,5276654.516678972],[516836.3345219798,5276655.625461416],[516833.63607652904,5276653.7282848125],[516833.7115063372,5276653.617363096],[516830.8631631608,5276651.608614744],[516831.6171398993,5276650.610536111],[516829.59306219325,5276649.271009316],[516828.8238390934,5276650.346841974],[516826.3502262179,5276653.818368543],[516822.37814142625,5276650.806119801],[516825.0926466699,5276647.1463499535],[516822.5440898989,5276645.360751354],[516825.7108555113,5276641.146589521],[516834.2555786151,5276647.283969909],[516835.46213612106,5276645.620361564],[516840.7839230398,5276649.414500458],[516839.8784418745,5276650.856698822],[516848.4231358262,5276656.99410016],[516844.87856965297,5276661.985135263]]]},"properties":{"id_build":1608,"id_source":"w145338893","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.5549465512,5276092.628576871],[516381.2388549352,5276098.184668406],[516373.35295619525,5276097.717936703],[516373.5209957135,5276091.383451327],[516371.26783449244,5276091.265978276],[516371.50817628816,5276085.931952605],[516373.23584099807,5276085.936808906],[516373.24146450113,5276083.936311773],[516371.13853215997,5276083.81926109],[516371.6092201097,5276076.707649218],[516376.41633009055,5276076.832302466],[516376.6429279369,5276076.388381145],[516381.2991809992,5276076.734893483],[516381.0653938012,5276079.735005385],[516381.2901164729,5276079.9579166155],[516381.0603927504,5276081.513225051],[516382.26224737806,5276081.516605262],[516382.02564659616,5276085.5169657115],[516381.5752639962,5276085.404559391],[516380.3734101729,5276085.40117932],[516380.13493553037,5276090.068372255],[516380.12805945316,5276092.513424331],[516381.5549465512,5276092.628576871]]]},"properties":{"id_build":1609,"id_source":"w145338897","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517142.9940053299,5276368.5569937145],[517143.02153825003,5276374.5141645735],[517143.04404608737,5276379.6266587],[517146.23637548595,5276379.613828217],[517146.3958572737,5276417.290669763],[517143.1735038825,5276417.303411673],[517143.19206581166,5276421.20447132],[517143.21675167576,5276428.1285500815],[517115.6802996924,5276428.247611403],[517090.39725864795,5276428.351187149],[517080.4447942154,5276428.388674038],[517080.38060932443,5276414.41822076],[517105.3857973532,5276414.313785133],[517105.36779759784,5276410.212675908],[517105.26420463476,5276384.1056476515],[517105.23709020345,5276377.992882689],[517103.5620574436,5276377.999077338],[517102.08231618453,5276378.00584593],[517102.09901312285,5276382.55151003],[517090.3812717642,5276382.6060249],[517087.30912357953,5276382.619238594],[517087.28335978225,5276376.039690925],[517095.65855886874,5276375.997585206],[517095.6435206162,5276370.8851134395],[517102.0356997514,5276370.859424294],[517102.04638170067,5276372.337614086],[517105.5767197211,5276372.325753847],[517105.5664956544,5276370.691969763],[517111.47795697383,5276370.664879107],[517111.4687468048,5276368.686564821],[517142.9940053299,5276368.5569937145]]]},"properties":{"id_build":1610,"id_source":"w145338899","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516804.7686613666,5276167.964387935],[516804.8347976775,5276171.07648939],[516811.29434730083,5276171.206269921],[516811.358876148,5276174.874065182],[516824.9539989864,5276175.135600706],[516824.6252886239,5276184.91494209],[516824.5851630126,5276185.8039435465],[516824.5453584517,5276186.581806259],[516817.59719628363,5276186.583967687],[516811.3251936286,5276186.543633131],[516811.41185655183,5276182.542855189],[516804.72729628877,5276182.3012855835],[516804.71543187153,5276186.413419077],[516801.8837406591,5276186.360793836],[516797.42963867565,5276186.28126283],[516797.2829352233,5276185.058303396],[516791.5745466677,5276184.930703848],[516791.4320072298,5276182.262940912],[516774.5767649354,5276182.047663175],[516774.81267154607,5276170.556501363],[516785.1553679233,5276170.797463643],[516785.239130436,5276167.796934116],[516804.7686613666,5276167.964387935]]]},"properties":{"id_build":1611,"id_source":"w145338902","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.14455339086,5276088.232489511],[516400.12105915864,5276088.235238948],[516400.2027465446,5276085.901537119],[516399.15112453053,5276085.898576182],[516399.389614557,5276081.231384021],[516401.3426284356,5276081.236883135],[516402.2446453962,5276081.017143951],[516403.8981346683,5276080.688381628],[516405.17479237745,5276080.803116846],[516406.1506733024,5276081.028144747],[516407.3509627051,5276081.587223782],[516410.2044280738,5276081.928681255],[516410.12211039325,5276084.484660396],[516414.2528572186,5276084.718578986],[516414.0074651031,5276091.830822659],[516409.57626017544,5276091.596057727],[516409.6529415212,5276091.040575696],[516404.24491748854,5276090.914202519],[516404.007675924,5276095.136839635],[516397.5486609935,5276094.78523357],[516397.78714942874,5276090.118041283],[516399.06411809294,5276090.121636436],[516399.14455339086,5276088.232489511]]]},"properties":{"id_build":1612,"id_source":"w145338904","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.91367436585,5276428.618896917],[516838.90286158706,5276427.162935397],[516845.2875294581,5276427.114715129],[516845.2980191803,5276428.681815453],[516852.07326502644,5276428.634732359],[516852.09623464977,5276431.079872578],[516855.6190889293,5276431.04561142],[516855.6607792567,5276437.402923904],[516854.57917597453,5276437.3997936305],[516854.6342170625,5276444.33507134],[516852.0277923832,5276444.3497568015],[516852.0473530576,5276447.972968239],[516845.7303080382,5276448.021376573],[516845.7185004887,5276446.909945235],[516843.47261084255,5276446.925677377],[516838.21466507,5276446.966043027],[516836.01384221076,5276446.981908342],[516835.9910908518,5276444.45897099],[516835.1723782537,5276444.456604291],[516835.1310833247,5276437.954811515],[516836.317874488,5276437.947128289],[516836.26345403993,5276430.789573305],[516836.25466471526,5276428.633437435],[516838.91367436585,5276428.618896917]]]},"properties":{"id_build":1613,"id_source":"w145338905","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516477.60912386206,5276126.1302671805],[516482.1088109036,5276128.699209971],[516479.91820312635,5276133.027456872],[516477.7382887149,5276133.57698754],[516473.61292259453,5276131.453665292],[516470.23367812677,5276131.110689788],[516467.9805340359,5276130.993179279],[516468.06004854286,5276129.437449342],[516468.06413353805,5276127.992645768],[516467.84224407206,5276126.769482537],[516467.5458676044,5276125.32382947],[516467.69986898534,5276123.990589388],[516468.30424851726,5276122.769762316],[516468.83414138894,5276121.326445452],[516468.9136562359,5276119.770715552],[516472.3686514056,5276119.89162523],[516472.680428519,5276115.891480529],[516479.8899417132,5276116.467572715],[516479.5769018764,5276120.912271985],[516477.999792704,5276120.796670396],[516477.6880121693,5276124.796814852],[516476.56159617787,5276124.682488683],[516476.4823937355,5276126.127079761],[516477.60912386206,5276126.1302671805]]]},"properties":{"id_build":1614,"id_source":"w145338908","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.6778472708,5276468.617399591],[516835.77843663236,5276468.653473103],[516835.7904708978,5276469.687107299],[516829.5559432066,5276469.780227488],[516829.5441968799,5276468.6465683915],[516820.37270230043,5276468.775667963],[516820.3349542344,5276466.241573337],[516819.0580036204,5276466.260113384],[516818.96315044357,5276460.091585071],[516820.53303548705,5276460.073891038],[516820.39529971033,5276450.548819456],[516823.0017856662,5276450.51189209],[516822.9900700989,5276449.367119166],[516829.41239745857,5276449.274534521],[516829.42452927225,5276450.274827035],[516836.17737706465,5276450.172090999],[516838.2805863266,5276450.144829554],[516838.5960853913,5276450.134627772],[516838.63276527205,5276453.035480475],[516839.42149647896,5276453.015533036],[516839.50897773704,5276459.128470548],[516838.53246971214,5276459.1478750575],[516838.5705633994,5276461.55971712],[516838.63339940924,5276465.805436129],[516838.6778472708,5276468.617399591]]]},"properties":{"id_build":1615,"id_source":"w145338913","height_wall":15.0,"height_roof":15.0,"nb_lev":5,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516904.06889381906,5276324.069581078],[516908.18751463195,5276328.415984886],[516906.60498506034,5276330.189626094],[516907.3538538601,5276330.969777923],[516902.60852865706,5276335.512732162],[516902.00924007886,5276334.955294432],[516900.1564054042,5276336.694811046],[516895.15528857923,5276341.381510719],[516893.58275999926,5276339.709853627],[516892.6794746715,5276340.374071836],[516890.73267131404,5276338.256771146],[516888.33583520213,5276335.915886731],[516888.86387971026,5276335.13944001],[516887.44092848804,5276333.690497763],[516886.7143978483,5276332.977097095],[516882.1978601015,5276328.5628712475],[516883.705269877,5276326.789005684],[516883.0315101596,5276326.009074645],[516887.77779446647,5276321.132688245],[516888.60177977884,5276321.913055443],[516895.3812786334,5276315.264336178],[516897.1788296026,5276317.047786194],[516897.85678033816,5276316.38291491],[516902.3656109978,5276320.863814279],[516901.67237967585,5276321.61755246],[516902.97547239583,5276322.955010599],[516904.06889381906,5276324.069581078]]]},"properties":{"id_build":1616,"id_source":"w145338916","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.2685430519,5276421.722388241],[516776.8462055179,5276421.615793016],[516776.7904989805,5276440.9539418705],[516772.35893282533,5276440.941177724],[516772.13904004084,5276439.051169395],[516771.4636783067,5276438.826945067],[516769.3644015333,5276437.487223557],[516769.2151388867,5276437.153374647],[516766.43601932225,5276437.145373238],[516766.4644952973,5276427.254021215],[516765.7130606857,5276427.3629976865],[516765.8764012784,5276422.806739934],[516762.7965088912,5276422.909014155],[516762.8006673837,5276421.46420995],[516753.5625871685,5276421.21534846],[516753.7249592568,5276416.992506787],[516756.7297429864,5276416.890011652],[516756.8218023441,5276410.999872225],[516771.39346756856,5276411.041816098],[516771.38034563995,5276415.59850622],[516773.33292761195,5276415.715269118],[516773.32428533223,5276418.716016289],[516773.3156430455,5276421.716763475],[516775.2685430519,5276421.722388241]]]},"properties":{"id_build":1617,"id_source":"w145338918","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.04564726265,5276276.339287541],[517148.79393807903,5276276.305866844],[517148.8633777085,5276285.886315178],[517148.8953561646,5276290.331998192],[517148.90126402176,5276290.8766002245],[517145.8966690665,5276290.889982175],[517145.8733636879,5276288.600435308],[517145.33254816505,5276288.598843231],[517145.3159686704,5276286.576051502],[517143.27282166865,5276286.592265204],[517141.0118461291,5276286.607838534],[517141.01135549886,5276286.77454667],[517134.28851981217,5276286.821448709],[517134.2898276485,5276286.376893678],[517132.1340106839,5276286.392779822],[517129.5876046019,5276286.407517996],[517129.59736465866,5276288.19689618],[517126.0819328111,5276288.231013907],[517125.99018824653,5276276.005375154],[517129.61078627186,5276275.971566634],[517129.6380792825,5276279.461434038],[517133.85958227376,5276279.429395521],[517133.8603996491,5276279.15154863],[517140.9212544347,5276279.105640843],[517140.9197825526,5276279.605765248],[517145.0661721613,5276279.573513791],[517145.04564726265,5276276.339287541]]]},"properties":{"id_build":1618,"id_source":"w145338919","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.9512591596,5276139.830577711],[516443.6938251961,5276139.593453319],[516443.3025613832,5276145.149329964],[516441.72514438035,5276145.144876916],[516441.4130762131,5276149.256162146],[516434.27840153227,5276148.791468155],[516434.44023448136,5276144.679758664],[516433.83931367006,5276144.678063129],[516433.5426161451,5276143.343550512],[516433.2456049142,5276142.120176648],[516433.4024201572,5276139.7866869895],[516433.78364037065,5276137.78724937],[516434.2384081278,5276136.343717409],[516434.31697279774,5276135.121403235],[516434.3955374964,5276133.899089063],[516439.0514276823,5276134.356786455],[516439.0495456165,5276135.023618882],[516440.0482957946,5276135.126463499],[516441.1521445056,5276135.251832876],[516441.15465424675,5276134.3627229715],[516442.50641472556,5276134.477678441],[516442.4347506528,5276133.254940282],[516443.33581987914,5276133.36862367],[516443.5617931477,5276133.146982377],[516449.2692966757,5276133.607656916],[516448.9512591596,5276139.830577711]]]},"properties":{"id_build":1619,"id_source":"w145338921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517187.02803176583,5276576.295840338],[517188.75227131665,5276577.412326977],[517189.48427833733,5276576.247519906],[517190.63886764826,5276574.417121653],[517189.1399563549,5276573.301299538],[517193.13782677683,5276567.533832638],[517189.1652150776,5276564.743611431],[517193.1624351067,5276559.198422222],[517194.73645905155,5276560.314467104],[517195.6490938372,5276559.027940383],[517196.8483933449,5276557.319929149],[517195.3498069564,5276556.092966672],[517203.34493476467,5276544.780322005],[517204.91896069254,5276545.896369607],[517205.8319283199,5276544.498705696],[517206.8052470705,5276543.012308427],[517205.3811123797,5276542.007842922],[517209.4541302414,5276536.240609316],[517216.34947236563,5276541.262279149],[517204.05466630176,5276558.786030029],[517203.15531869826,5276558.116534661],[517197.87531549425,5276565.658444711],[517198.7749907485,5276566.216800466],[517196.2107598976,5276569.765701073],[517200.33325576654,5276572.667509604],[517190.15146788425,5276586.863337964],[517183.3315950717,5276581.730781521],[517187.02803176583,5276576.295840338]]]},"properties":{"id_build":1620,"id_source":"w145338922","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516878.8984529734,5276344.779704896],[516878.9107699069,5276345.713314106],[516877.77650640823,5276345.732254938],[516877.7968892853,5276349.066505136],[516877.8582423119,5276351.222793202],[516877.9221465869,5276355.090640134],[516875.12783644965,5276355.126998927],[516875.1467313309,5276356.382932346],[516868.8294578893,5276356.475771365],[516868.810336317,5276355.297635111],[516864.0179078566,5276355.372668147],[516859.30810317554,5276355.447944297],[516859.27062828315,5276352.824938814],[516858.55699585873,5276352.8451010175],[516858.4938186032,5276348.721635169],[516858.45563553355,5276346.343135015],[516859.40211754583,5276346.323646835],[516859.248936014,5276336.965240561],[516861.4874212235,5276336.927264906],[516861.47519799345,5276335.960314121],[516868.12305355654,5276335.846196509],[516868.13521130563,5276336.835375059],[516877.8327679743,5276336.685646146],[516877.8698159784,5276339.4531321],[516878.816299194,5276339.433647073],[516878.8984529734,5276344.779704896]]]},"properties":{"id_build":1621,"id_source":"w145338924","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516821.5108072135,5276352.993605566],[516817.5896497165,5276353.082307302],[516817.5697154581,5276352.182018177],[516817.5039097194,5276348.958776898],[516817.41701427044,5276345.2353460975],[516818.7090460099,5276345.205735133],[516818.5894090734,5276339.815114326],[516817.64292617474,5276339.8346091425],[516817.592303268,5276336.555841918],[516817.4683326608,5276332.66559459],[516817.47090000566,5276331.776484438],[516813.902790073,5276331.85509421],[516813.8504002863,5276329.187590291],[516812.80626912665,5276329.206803998],[516812.71327063587,5276324.994341131],[516812.6473334504,5276321.815555557],[516817.62015569955,5276321.707659101],[516822.26248169906,5276321.598812288],[516822.39537273557,5276327.600739637],[516822.488460471,5276331.779861061],[516826.912919609,5276331.681502681],[516827.0919623258,5276339.906357552],[516822.2018113475,5276340.0033706585],[516822.25509599934,5276342.359686153],[516822.31457570463,5276345.171692311],[516826.9192947383,5276345.073854649],[516827.09204583126,5276352.876360657],[516821.5108072135,5276352.993605566]]]},"properties":{"id_build":1622,"id_source":"w145338925","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.99804703833,5276404.008195455],[516527.9738691112,5276404.233244021],[516528.8802568849,5276402.457581467],[516527.07978186005,5276401.674494142],[516529.04530522955,5276397.234484991],[516531.97151249455,5276398.354187327],[516532.27353723795,5276397.799346263],[516533.9985854296,5276398.693360734],[516533.7716723876,5276399.24841494],[516535.12179194606,5276399.91908602],[516537.37924886344,5276398.4806798315],[516538.4263960972,5276400.039608827],[516539.3264753614,5276400.486723565],[516537.966257481,5276403.372492587],[516540.0668619323,5276404.267575323],[516536.96897666017,5276410.7048796965],[516534.7184662273,5276409.698232783],[516534.4230678755,5276407.919159243],[516534.8768934637,5276406.809050874],[516533.9020186284,5276406.250584797],[516532.0125526445,5276410.357389225],[516530.36230386165,5276409.574727295],[516527.9432751749,5276415.0137061775],[516523.380700654,5276408.221239312],[516525.78869025514,5276406.67211605],[516526.99804703833,5276404.008195455]]]},"properties":{"id_build":1623,"id_source":"w145338927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.0264814498,5276091.247111155],[516521.6490109898,5276091.912878175],[516523.67461486306,5276092.807741225],[516523.97665442387,5276092.252899962],[516524.8770978517,5276092.588873409],[516525.7832170841,5276090.924349858],[516531.5576703155,5276094.274925021],[516528.08563086175,5276100.155471716],[516524.1104905551,5276098.0325401295],[516521.46914623416,5276102.359492708],[516522.5939893683,5276103.029521207],[516520.555149248,5276106.80248525],[516511.7811177963,5276101.665182762],[516513.5182307849,5276098.335918748],[516512.8434498007,5276097.889447184],[516514.0522334167,5276095.447802527],[516514.58434588043,5276093.226518743],[516516.3902757837,5276092.12024319],[516518.2763651248,5276089.235961553],[516522.0264814498,5276091.247111155]]]},"properties":{"id_build":1624,"id_source":"w145338935","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.82513065706,5276151.529340641],[516612.14417777275,5276151.629980571],[516611.9971175303,5276150.518164705],[516608.3161640834,5276150.618807052],[516608.33010806894,5276145.7287025545],[516608.33993223344,5276142.283401679],[516612.0208909455,5276142.182759335],[516612.3181816572,5276143.29500366],[516615.3982188049,5276143.192649565],[516615.1817505167,5276140.080122084],[516618.7131146392,5276139.756777939],[516621.1133114171,5276140.986162852],[516621.2587844014,5276142.653672619],[516620.958006721,5276142.763953943],[516621.3237505264,5276146.210326586],[516623.05139753025,5276146.215257029],[516623.1962354325,5276148.10504434],[516622.970573057,5276148.215539939],[516623.0393443222,5276150.43852909],[516622.0628488982,5276150.435742255],[516621.994394428,5276148.10161438],[516619.0649069764,5276148.093254896],[516619.13272838976,5276150.649660212],[516618.53180815093,5276150.64794562],[516618.45732732693,5276150.425453824],[516615.7525520465,5276150.640016443],[516615.82513065706,5276151.529340641]]]},"properties":{"id_build":1625,"id_source":"w145338937","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.56807812303,5276108.52896779],[516579.06766476517,5276107.857859007],[516582.08747536154,5276102.531753069],[516584.41289601,5276103.649770153],[516585.7713069146,5276101.430845506],[516586.5963132556,5276101.877753344],[516588.4710394491,5276102.994488623],[516591.5457154851,5276104.781480301],[516590.0348560708,5276107.777946832],[516591.3035898776,5276110.6711911755],[516593.48415702226,5276109.8994255215],[516594.1782354632,5276111.47958572],[516595.0514508079,5276113.460359082],[516592.79513606447,5276114.454187627],[516593.24266286084,5276115.566858899],[516595.79342256807,5276116.685522544],[516593.82838850754,5276120.903230082],[516594.20143247675,5276121.793409968],[516595.0283351961,5276121.573486616],[516597.4890916407,5276127.9154575495],[516592.1505215784,5276129.789621086],[516590.8840084484,5276126.118405315],[516586.4477722217,5276127.661725493],[516583.83708929387,5276121.208192777],[516584.6668397883,5276119.988019352],[516586.025879991,5276117.546817247],[516583.71818561124,5276110.20503045],[516580.56807812303,5276108.52896779]]]},"properties":{"id_build":1626,"id_source":"w145338938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516959.0391789594,5276645.712188606],[516964.3751310431,5276644.616332439],[516964.9679062775,5276647.396553388],[516966.7714848935,5276647.0683884835],[516966.9942203777,5276647.958155545],[516966.69378586946,5276647.957280235],[516968.32059310406,5276656.742061678],[516969.4478685125,5276656.523066845],[516970.4828702863,5276662.194211052],[516968.9046214474,5276662.523031366],[516969.57023404806,5276666.081443507],[516969.87066762004,5276666.082318968],[516969.77179604524,5276666.5043619815],[516953.2616828409,5276669.479276576],[516953.03862257337,5276668.700648838],[516953.6394894437,5276668.702398071],[516953.0476816798,5276665.588761707],[516951.61997507204,5276665.80688518],[516951.09440480755,5276663.160228869],[516950.5095236622,5276660.246664541],[516945.1735885517,5276661.342533403],[516943.0980364648,5276651.889614356],[516942.72249358863,5276651.88852176],[516942.72346361226,5276651.555105288],[516950.013201086,5276650.131501261],[516949.346927711,5276646.795369118],[516958.8157948785,5276645.044699497],[516959.0391789594,5276645.712188606]]]},"properties":{"id_build":1627,"id_source":"w145338939","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.75377190317,5276433.69039205],[517258.4969816237,5276436.359948605],[517260.05192278075,5276443.92206032],[517257.27214723115,5276444.136102247],[517255.6882248245,5276446.354204241],[517254.9384295767,5276445.907423687],[517253.052417473,5276448.680330184],[517253.200005925,5276449.569885492],[517250.63470342907,5276453.452178047],[517250.7750497298,5276456.7867865935],[517250.02097604686,5276457.784810883],[517250.0871990908,5276460.785780601],[517250.9134206394,5276460.788227882],[517251.043561189,5276467.568138903],[517240.60280840175,5276467.648361309],[517240.5405286411,5276463.31372623],[517239.639196438,5276463.311058078],[517239.3041059325,5276449.639875659],[517242.6972714056,5276445.20433034],[517243.898722347,5276445.319027309],[517246.0851762909,5276442.547007556],[517245.7870348716,5276441.768146385],[517245.6371413819,5276441.656562763],[517247.8996962765,5276438.5513497675],[517248.6498221708,5276438.886990625],[517251.1390306769,5276435.337891131],[517257.75377190317,5276433.69039205]]]},"properties":{"id_build":1628,"id_source":"w145338940","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.0286505661,5276356.110870862],[516722.9624734583,5276352.998769526],[516723.19929908734,5276348.998420724],[516723.1315263611,5276346.442013285],[516723.0090644684,5276336.772508826],[516723.0911976859,5276334.327671552],[516723.02916877536,5276329.770766324],[516729.8650650603,5276329.568119059],[516729.9318773445,5276332.457942826],[516731.5092438058,5276332.46247405],[516731.55553289206,5276334.652058864],[516731.64095088927,5276338.90895429],[516730.4391492019,5276338.905501861],[516730.5807543637,5276341.906680221],[516730.64788536465,5276344.685365282],[516731.4731653695,5276345.021155147],[516731.4356811818,5276347.610602227],[516731.3515733239,5276353.356282576],[516731.2871814142,5276357.468266155],[516730.3104013976,5276357.576599863],[516730.30178144167,5276360.577346772],[516730.21900696337,5276363.2444616],[516731.19514747756,5276363.358405428],[516731.19418965396,5276363.691821756],[516731.1469914224,5276367.048104882],[516731.1005594885,5276370.137654968],[516729.5228839885,5276370.244262606],[516729.56638701,5276370.788972066],[516722.9791752232,5276370.725598234],[516722.91875439684,5276368.22478166],[516722.9267323346,5276365.4463122655],[516723.0286505661,5276356.110870862]]]},"properties":{"id_build":1629,"id_source":"w145338942","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.1802017203,5276297.231328528],[517141.87497917947,5276297.046398677],[517141.93275569123,5276302.936974032],[517144.9369518144,5276303.056956563],[517144.9764038291,5276315.17130269],[517141.9718868498,5276315.162458883],[517141.9263162392,5276317.885248033],[517141.88041855476,5276320.719175964],[517140.3781614974,5276320.714754661],[517140.50418314215,5276328.939465338],[517138.9973494571,5276330.490987097],[517140.34512650716,5276331.939769888],[517137.91198752617,5276334.3109998945],[517135.9007239256,5276336.261141185],[517134.7034990997,5276334.701662609],[517133.04709702363,5276336.030466422],[517124.85949083074,5276336.117526156],[517124.9300284821,5276337.673689742],[517121.21172441536,5276337.740555661],[517119.2962542784,5276337.768266981],[517119.212321369,5276340.76879291],[517107.11919379985,5276340.733259387],[517107.0532216604,5276337.621153278],[517101.4201004631,5276337.493470274],[517101.08141254453,5276324.933686976],[517107.2406619149,5276324.951775231],[517107.2380503392,5276325.84088535],[517128.7196533148,5276326.126302158],[517130.1526801007,5276324.1300017685],[517130.2902279482,5276302.902719057],[517129.1792080572,5276302.677171954],[517129.1802017203,5276297.231328528]]]},"properties":{"id_build":1630,"id_source":"w145338943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.7677527793,5276700.074782072],[516995.20354109484,5276700.020483974],[516994.4846266261,5276696.717534543],[516992.9214397678,5276697.035278301],[516991.78082857985,5276691.530531162],[516989.54875722737,5276691.990805899],[516987.6356410279,5276683.527487967],[516986.96672446205,5276683.681132403],[516986.77368010377,5276682.91370486],[516994.1241246575,5276681.2680536555],[516993.28727171733,5276677.197895882],[517002.8845010654,5276675.203165086],[517003.7745723785,5276679.051200098],[517011.1397237159,5276677.51675305],[517011.2504706444,5276678.172801232],[517010.95715893933,5276678.305312166],[517012.57696421957,5276686.890034743],[517010.8709384248,5276687.25181232],[517011.15954224253,5276688.730814406],[517012.00320998434,5276693.034388337],[517010.47003191174,5276693.363329035],[517011.05562632374,5276696.021280305],[517011.3712098218,5276695.977746259],[517011.47415336076,5276696.733797471],[517008.8135123903,5276697.348408603],[517009.51804631343,5276700.429038285],[516998.4475080386,5276702.841788466],[516997.7717141675,5276700.20580314],[516994.9458712109,5276700.808824419],[516994.7677527793,5276700.074782072]]]},"properties":{"id_build":1631,"id_source":"w145338944","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0301025402,5276660.920479226],[516861.2464178667,5276664.03301875],[516860.56979856984,5276664.253339246],[516856.49721599085,5276670.020816959],[516853.4989935947,5276667.900483809],[516854.25361545075,5276666.680130427],[516852.0045449383,5276665.228804828],[516851.34849690413,5276666.127138445],[516848.5357320651,5276669.997777457],[516844.8631388567,5276667.319798942],[516847.3520038901,5276663.770526428],[516844.87856965297,5276661.985135263],[516848.4231358262,5276656.99410016],[516848.7235698536,5276656.994969371],[516856.743451604,5276662.797445433],[516857.04388533067,5276662.798315072],[516858.0241556562,5276661.467475596],[516859.8127020269,5276661.139234097],[516861.0301025402,5276660.920479226]]]},"properties":{"id_build":1632,"id_source":"w145338946","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.73268863297,5276311.860691237],[516732.7361051339,5276310.671506441],[516729.8442238768,5276310.674312818],[516726.8171392883,5276310.676732333],[516726.8158944614,5276311.11017352],[516726.81410701777,5276311.732550609],[516726.23573725903,5276311.730889583],[516723.2237077316,5276311.722240227],[516720.3393383239,5276311.725072892],[516720.3446666694,5276309.8690555],[516717.0096503737,5276309.859482127],[516717.01309779123,5276303.424504498],[516722.05321620224,5276303.427859214],[516724.83243143687,5276303.424725417],[516734.5220804062,5276303.4303304665],[516737.37640874187,5276303.427418473],[516741.8081114179,5276303.429041874],[516744.361955569,5276303.4363835305],[516753.82626548264,5276303.441372857],[516756.3050285546,5276303.437389803],[516761.3301244957,5276303.440735291],[516761.3261483479,5276310.0424211575],[516757.8258835427,5276310.032348849],[516757.82063918747,5276311.855024606],[516755.2893325975,5276311.8477418665],[516751.3233365985,5276311.847447606],[516751.3267568965,5276310.658262813],[516748.3973510506,5276310.649838084],[516745.5054697351,5276310.652636686],[516745.50198671845,5276311.864049237],[516744.9386395603,5276311.862429544],[516741.6862166742,5276311.864193466],[516736.2480068296,5276311.859677759],[516732.73268863297,5276311.860691237]]]},"properties":{"id_build":1633,"id_source":"w145338948","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516391.1103407889,5276113.771985595],[516391.93629849626,5276113.885449633],[516391.5478974666,5276118.441080802],[516390.6465122068,5276118.43854417],[516390.48971359176,5276120.772034861],[516393.79416592675,5276121.00361391],[516393.5584970369,5276124.670557949],[516393.4830688703,5276124.781485268],[516390.32884938683,5276124.550329139],[516390.2509193193,5276125.550366392],[516391.22741882433,5276125.553114353],[516390.91225779126,5276130.7757894555],[516382.57602479134,5276130.196638117],[516382.8145000029,5276125.529444987],[516381.46273634164,5276125.414503377],[516381.85831850505,5276118.3026805855],[516384.26138731814,5276118.531719092],[516384.65791121067,5276111.086480352],[516383.53117821633,5276111.083310921],[516383.69266355014,5276107.082739078],[516379.8623938275,5276106.849687072],[516380.2589127729,5276099.404448185],[516386.86784220365,5276099.867596479],[516386.396824594,5276107.090346152],[516388.1993484596,5276107.184329217],[516391.1284808979,5276107.3259390155],[516391.3585191134,5276105.659492177],[516394.81321119546,5276105.891494561],[516394.42293049075,5276111.11395789],[516391.19296257704,5276111.104867354],[516391.1103407889,5276113.771985595]]]},"properties":{"id_build":1634,"id_source":"w145338950","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.9805943173,5276502.172517679],[517227.1107613948,5276508.952428536],[517226.5095492299,5276509.061789924],[517226.9805943173,5276502.172517679]]]},"properties":{"id_build":1635,"id_source":"w145338954","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516794.68273239717,5276669.953359428],[516796.6368314002,5276669.514436247],[516796.1800909575,5276671.624774202],[516794.68273239717,5276669.953359428]]]},"properties":{"id_build":1636,"id_source":"w145338962","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7301105095,5276705.41738373],[516757.9224042862,5276707.190417573],[516757.5529414436,5276705.077699046],[516759.7301105095,5276705.41738373]]]},"properties":{"id_build":1637,"id_source":"w145338964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.820187011,5276376.050240463],[516738.67667055526,5276373.715894393],[516741.0051474138,5276373.722587027],[516738.820187011,5276376.050240463]]]},"properties":{"id_build":1638,"id_source":"w145338973","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517120.78024206817,5276193.224316435],[517119.3491466617,5276194.553786337],[517118.82171203423,5276195.107934606],[517117.69793465023,5276194.104374438],[517113.85697255534,5276197.538417996],[517111.8357396063,5276195.1985456105],[517110.7057575482,5276196.306622887],[517107.1116887236,5276192.4061759375],[517110.5767509245,5276189.082163351],[517111.62541596877,5276190.085501453],[517112.6799583104,5276189.088342403],[517111.6316197848,5276187.973865376],[517113.8912613316,5276185.868850156],[517119.28317874676,5276191.441680793],[517120.78024206817,5276193.224316435]]]},"properties":{"id_build":1639,"id_source":"w145338980","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.8817973125,5276647.168240877],[517214.6791482967,5276648.951790297],[517212.951321494,5276649.057822822],[517212.8817973125,5276647.168240877]]]},"properties":{"id_build":1640,"id_source":"w145338983","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516333.9822929634,5276502.933669749],[516335.02885198756,5276504.714839953],[516333.7566498249,5276503.044176574],[516333.9822929634,5276502.933669749]]]},"properties":{"id_build":1641,"id_source":"w145338990","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.66891291726,5276166.062696697],[517259.3789755552,5276164.0702118995],[517260.15674505243,5276165.228369685],[517261.24861324474,5276166.854245214],[517256.66891291726,5276166.062696697]]]},"properties":{"id_build":1642,"id_source":"w145338991","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516781.10702695005,5276102.879467578],[516783.92199508904,5276111.356419976],[516781.94456705544,5276112.006446141],[516781.49778041063,5276110.649255088],[516780.5128061236,5276110.9798362525],[516778.43763210566,5276111.662923895],[516776.6782319034,5276112.246896115],[516776.31339892093,5276111.12333479],[516774.3175862116,5276105.11604544],[516779.302554443,5276103.463309157],[516781.10702695005,5276102.879467578]]]},"properties":{"id_build":1643,"id_source":"w145338995","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.1255282266,5276243.330112025],[516886.1192127271,5276245.508431576],[516886.11263945117,5276247.775662143],[516881.1554517287,5276247.650152419],[516878.1431706264,5276250.308774884],[516875.5605050536,5276247.278291703],[516872.82812426996,5276244.069552478],[516875.6531044966,5276241.243675059],[516878.02611576783,5276238.861047994],[516873.23363687954,5276233.734736569],[516878.8842545663,5276227.860706073],[516886.15033909376,5276234.772428129],[516886.0765140101,5276234.327655354],[516891.4843967348,5276234.454476274],[516891.54951870674,5276237.899995407],[516890.34511770285,5276238.785620047],[516891.3941337699,5276239.677779752],[516891.3087057025,5276243.234001978],[516886.1255282266,5276243.330112025]]]},"properties":{"id_build":1644,"id_source":"w145338997","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.09797178453,5276238.709432776],[517051.0947181154,5276239.820820278],[517036.4484841748,5276239.444541673],[517036.45108487236,5276238.555431668],[517033.22118677676,5276238.545984924],[517033.3684893389,5276239.546673024],[517013.088386609,5276239.265119181],[517013.0844909088,5276240.59878419],[517007.3758358709,5276240.582111734],[517005.3526284618,5276238.909108709],[517005.51194217656,5276235.797662324],[517007.1689923309,5276234.246544953],[517006.16564540326,5276233.15444621],[517005.22219459637,5276232.129206335],[517003.41524087876,5276233.56874693],[517000.5612343272,5276233.449275999],[516998.23983699933,5276230.997427239],[516998.33019586006,5276225.774125263],[516999.4565825733,5276225.8885524245],[516999.63860021404,5276214.997393645],[516998.43709718244,5276214.882747229],[516998.4396920588,5276213.993637257],[516998.383390587,5276207.547370778],[517012.6551090745,5276207.589040175],[517012.86162319884,5276214.035745645],[517012.85902612173,5276214.924855615],[517012.3329020056,5276215.034458534],[517012.2431797464,5276220.035482742],[517014.04104941187,5276221.707829824],[517012.5335728286,5276223.481661524],[517012.1580023149,5276223.480564518],[517006.6749973252,5276223.353412243],[517006.8177615644,5276225.910042107],[517012.8090323254,5276232.040222791],[517015.0621274216,5276232.1579442015],[517015.22923882306,5276226.379168131],[517017.11196121364,5276224.717573171],[517018.5345824511,5276226.277685613],[517023.79191744654,5276226.515329154],[517023.71810275596,5276226.070554614],[517024.9947170736,5276226.185425816],[517031.00286759174,5276226.536410309],[517031.00741734204,5276224.980467838],[517031.01131712383,5276223.646802864],[517038.59816647583,5276223.557852887],[517038.66937904124,5276224.891737601],[517038.5149242408,5276226.336101845],[517044.749391785,5276226.354343496],[517051.05864802765,5276226.4839504715],[517051.09797178453,5276238.709432776]]]},"properties":{"id_build":1645,"id_source":"w145338999","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.5745534381,5276548.6361868745],[516773.99844046624,5276549.751685181],[516775.50640072476,5276547.755513597],[516777.1652222329,5276545.537497545],[516784.5103012858,5276551.0045087915],[516783.07776889123,5276552.889755707],[516783.75183573394,5276553.558536683],[516778.85048396396,5276560.212797124],[516778.3256762783,5276559.877865921],[516777.6480875577,5276560.431612462],[516778.1719346586,5276561.099960034],[516778.1687327422,5276562.211348126],[516777.6413637473,5276562.765527458],[516776.73940678034,5276562.985208528],[516775.83809017943,5276562.98261212],[516775.1598617858,5276563.758636572],[516775.75945885835,5276564.204922664],[516770.7075858369,5276570.969896118],[516769.73308104614,5276570.300251493],[516768.60227658146,5276571.741811899],[516761.55732783506,5276566.386824028],[516762.76356116636,5276564.834339647],[516764.49748271063,5276562.616536148],[516762.8485877333,5276561.38925274],[516760.89989277377,5276559.938827502],[516762.5583853715,5276557.831946079],[516761.28471775044,5276556.716882902],[516767.5425100012,5276548.510556871],[516768.8161782405,5276549.625621402],[516770.77575638215,5276547.297329815],[516772.5745534381,5276548.6361868745]]]},"properties":{"id_build":1646,"id_source":"w145339000","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.8682627871,5276212.216053325],[516888.3189482528,5276212.217360114],[516888.4085641628,5276207.216334315],[516894.79328039987,5276207.234851006],[516894.813751582,5276200.177540664],[516894.82380985457,5276196.710011829],[516894.8353510717,5276192.731244793],[516894.8455060484,5276189.230374376],[516889.58813274803,5276188.99284733],[516889.599090257,5276185.21413008],[516889.46465262596,5276179.767896093],[516893.52116676624,5276179.668520778],[516893.36674687365,5276181.112888685],[516895.92064482084,5276181.120296669],[516896.0744205412,5276179.8982063085],[516902.00847877923,5276179.915423455],[516902.07972323184,5276181.249306332],[516904.2580479067,5276181.255628094],[516904.33735583565,5276179.811042461],[516908.46866227937,5276179.8230343005],[516908.5921123022,5276189.047986015],[516910.92066315445,5276189.054746402],[516910.86838781787,5276207.059223007],[516902.60516849783,5276207.257516246],[516902.4819973702,5276223.816971651],[516900.5290308987,5276223.811304387],[516898.9513124408,5276223.9178662095],[516898.9464755107,5276225.584947446],[516888.7306394284,5276225.666455483],[516889.2806086989,5276217.3325740015],[516888.3047688973,5276217.107465006],[516888.30960277066,5276215.440383791],[516887.1106756437,5276214.436650365],[516887.8682627871,5276212.216053325]]]},"properties":{"id_build":1647,"id_source":"w145339001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516924.13591451995,5276139.080276816],[516932.5488156339,5276139.104728114],[516932.0280147531,5276163.220523637],[516927.4691553918,5276162.996107157],[516927.3656310178,5276170.186543421],[516894.90240606095,5276169.614386531],[516895.07407404564,5276162.224096162],[516906.1153175598,5276162.47841347],[516906.08955903805,5276145.473968713],[516906.1018174619,5276141.250696784],[516904.3744913377,5276141.134543652],[516904.2977633999,5276141.690019322],[516902.26417144487,5276143.573492026],[516900.0797056432,5276145.678807013],[516894.22104999615,5276145.550671055],[516894.17236858583,5276136.437076942],[516892.3702479204,5276136.209570766],[516892.37891852885,5276133.219938832],[516892.3873312707,5276130.319217902],[516894.2658585101,5276130.102387022],[516894.29293698625,5276120.766733539],[516904.05761952454,5276120.906204268],[516906.9871209924,5276120.914707061],[516913.97285526106,5276120.934988893],[516914.1004942235,5276128.715136365],[516914.09500761906,5276130.604494817],[516912.59270166914,5276130.600132387],[516912.42536744114,5276136.490049023],[516909.5706663656,5276136.592900283],[516909.6396510978,5276138.704754301],[516914.74716146174,5276138.830724304],[516914.73941534624,5276141.498053925],[516921.4994565952,5276141.628829166],[516921.7322284879,5276139.073292962],[516924.13591451995,5276139.080276816]]]},"properties":{"id_build":1648,"id_source":"w145339013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.73227031383,5276115.717451452],[516491.23457984196,5276115.721704803],[516491.16827512,5276112.609607583],[516489.8161958225,5276112.605779565],[516490.05444294645,5276108.049729485],[516493.1341815343,5276108.058449437],[516494.33760438766,5276107.506159122],[516496.06557754695,5276107.399913139],[516497.56663005915,5276107.848723049],[516498.0160643268,5276108.294554551],[516501.39657995006,5276108.192991202],[516501.31579684117,5276110.193275586],[516505.67218367866,5276110.316758763],[516505.6523420529,5276117.318498978],[516495.51207020617,5276117.17863253],[516495.4237351737,5276121.846246654],[516489.71590888815,5276121.49666565],[516489.73227031383,5276115.717451452]]]},"properties":{"id_build":1649,"id_source":"w145339016","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.94978598016,5276432.784140047],[516887.9477212564,5276430.905872791],[516887.94591434574,5276428.9386945125],[516889.3429872998,5276428.94274582],[516889.3416320744,5276426.819973248],[516884.3992324758,5276426.82787047],[516884.39758167183,5276422.215567368],[516889.0395390401,5276422.206798862],[516889.029476553,5276415.31610717],[516884.5828039164,5276415.325441873],[516884.58077027526,5276413.436060793],[516884.58021878044,5276411.035441323],[516887.68984233064,5276411.044457386],[516887.68009557325,5276398.863516328],[516884.4427109562,5276398.8763578525],[516884.44164382806,5276396.653560485],[516884.4410599959,5276394.264054955],[516888.8952599026,5276394.2547418885],[516888.88455234986,5276387.58632806],[516884.43785854237,5276387.595662924],[516884.436759156,5276385.3839794705],[516884.435885302,5276383.094498885],[516887.9061260174,5276383.082332516],[516887.8992569678,5276380.270477901],[516892.4436020866,5276380.261428886],[516892.45085576904,5276382.939916977],[516893.9906526411,5276382.944383307],[516894.00464120513,5276398.837402914],[516892.87796364084,5276398.834134815],[516892.88524926594,5276401.501509108],[516893.80161326454,5276401.504167145],[516893.81263741327,5276408.061442362],[516893.00143085263,5276408.059089333],[516893.0082328219,5276410.8931718385],[516893.8344613242,5276410.895568443],[516893.8486108114,5276426.733019354],[516892.98482881807,5276426.730513806],[516892.9922754363,5276429.3423188245],[516894.0288133654,5276429.345325498],[516894.0338738219,5276432.779557543],[516887.94978598016,5276432.784140047]]]},"properties":{"id_build":1650,"id_source":"w145339017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.3805132349,5276292.755204466],[516603.5644066999,5276289.196408526],[516607.17206065153,5276288.4287166],[516607.9881650952,5276291.987513049],[516604.3805132349,5276292.755204466]]]},"properties":{"id_build":1651,"id_source":"w145339024","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516714.7056279539,5276586.590736155],[516717.1871097732,5276585.597601289],[516718.8261164909,5276590.27017506],[516716.56996442424,5276591.263956021],[516714.7056279539,5276586.590736155]]]},"properties":{"id_build":1652,"id_source":"w145339035","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.2684971814,5276373.239420084],[517299.2327412356,5276377.354454929],[517297.6543963013,5276377.683186233],[517296.76493329706,5276373.6795134945],[517298.2684971814,5276373.239420084]]]},"properties":{"id_build":1653,"id_source":"w145339036","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.62708829745,5276543.006703014],[516475.07428962825,5276544.230504786],[516470.5623492207,5276546.107117375],[516470.0400371499,5276544.883103524],[516474.62708829745,5276543.006703014]]]},"properties":{"id_build":1654,"id_source":"w145339042","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.62649265316,5276584.830462674],[516758.0527124337,5276583.603396722],[516759.86237581586,5276581.1635303],[516761.4361563201,5276582.3905967325],[516759.62649265316,5276584.830462674]]]},"properties":{"id_build":1655,"id_source":"w145339045","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.93085935875,5276605.1575463],[517220.81863853266,5276604.736306405],[517221.16734892176,5276611.2723569255],[517221.52996283286,5276618.186323931],[517213.6418733046,5276618.71870164],[517212.93085935875,5276605.1575463]]]},"properties":{"id_build":1656,"id_source":"w145339046","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.82656602125,5276330.59547624],[517011.1089270179,5276330.627290348],[517011.1127701582,5276331.883180354],[517009.31003278727,5276331.8890291825],[517007.8077786942,5276331.884642067],[517007.82656602125,5276330.59547624]]]},"properties":{"id_build":1657,"id_source":"w145339049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516601.60455633124,5276107.144074419],[516603.2466446569,5276110.816363014],[516599.03574005025,5276112.360315971],[516597.6189962338,5276108.688670703],[516601.60455633124,5276107.144074419]]]},"properties":{"id_build":1658,"id_source":"w145339050","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517069.23561292206,5276224.1921451725],[517073.5171163621,5276224.204694433],[517073.57952446816,5276228.53932579],[517069.2225844643,5276228.637695088],[517069.23561292206,5276224.1921451725]]]},"properties":{"id_build":1659,"id_source":"w145339051","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517292.7263202494,5276570.162631318],[517279.12685876305,5276571.6782223685],[517278.3250534531,5276563.451499444],[517284.5385739918,5276562.81421286],[517291.9993136639,5276562.047268312],[517292.7263202494,5276570.162631318]]]},"properties":{"id_build":1660,"id_source":"w145339055","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.9938785768,5276196.215822712],[517000.05601747974,5276200.661591699],[516995.69970677496,5276200.53773855],[516995.78714484203,5276196.314685478],[516999.9938785768,5276196.215822712]]]},"properties":{"id_build":1661,"id_source":"w145339057","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516911.82672541926,5276239.1813747985],[516911.8973213659,5276240.7375354245],[516910.01915176277,5276240.843221824],[516909.87376409187,5276239.175704387],[516911.82672541926,5276239.1813747985]]]},"properties":{"id_build":1662,"id_source":"w145339060","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.89989277377,5276559.938827502],[516759.62590546376,5276558.934903493],[516761.28471775044,5276556.716882902],[516762.5583853715,5276557.831946079],[516760.89989277377,5276559.938827502]]]},"properties":{"id_build":1663,"id_source":"w145339065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9484894918,5276472.395866921],[516538.307411951,5276468.390177551],[516541.2398948111,5276467.287108846],[516542.88128635,5276471.181660244],[516539.9484894918,5276472.395866921]]]},"properties":{"id_build":1664,"id_source":"w145339066","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.9161430538,5276359.024367125],[517300.4923095203,5276357.9087399505],[517302.8297081723,5276354.9149104385],[517304.1784295954,5276356.030315008],[517301.9161430538,5276359.024367125]]]},"properties":{"id_build":1665,"id_source":"w145339067","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516567.4406974566,5276337.239243653],[516567.3598439908,5276336.616631498],[516567.27163731307,5276335.938428589],[516568.6842607949,5276335.764623622],[516568.84577774856,5276337.076531235],[516567.4406974566,5276337.239243653]]]},"properties":{"id_build":1666,"id_source":"w145339068","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.97824578144,5276278.252325465],[516971.04364387254,5276281.586707079],[516969.7667168838,5276281.582986424],[516969.6262046677,5276278.248385973],[516970.97824578144,5276278.252325465]]]},"properties":{"id_build":1667,"id_source":"w145339071","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517236.0138219792,5276267.027539883],[517233.2047999571,5276272.0205153935],[517226.35597976367,5276284.181168794],[517223.7055665777,5276288.885654757],[517214.9317683557,5276283.969566982],[517226.7899767379,5276261.887823262],[517236.0138219792,5276267.027539883]]]},"properties":{"id_build":1668,"id_source":"w145339073","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.5301723737,5276271.565737842],[516930.1356194126,5276271.576217162],[516929.98119268473,5276273.020584323],[516926.5259734621,5276273.010541685],[516926.5301723737,5276271.565737842]]]},"properties":{"id_build":1669,"id_source":"w145339082","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.7836708937,5276636.215326576],[516537.49133972154,5276631.45203645],[516534.7062522997,5276625.642634844],[516543.806426912,5276621.445170362],[516548.9586257435,5276632.129222247],[516539.7836708937,5276636.215326576]]]},"properties":{"id_build":1670,"id_source":"w145339095","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.5752639962,5276085.404559391],[516381.4640065946,5276087.57146886],[516381.3367883923,5276090.071752278],[516380.13493553037,5276090.068372255],[516380.3734101729,5276085.40117932],[516381.5752639962,5276085.404559391]]]},"properties":{"id_build":1671,"id_source":"w145339109","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.73227031383,5276115.717451452],[516489.77435891586,5276114.117160013],[516489.8161958225,5276112.605779565],[516491.16827512,5276112.609607583],[516491.23457984196,5276115.721704803],[516489.73227031383,5276115.717451452]]]},"properties":{"id_build":1672,"id_source":"w145339110","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516561.09299255005,5276432.556807063],[516566.0297959501,5276439.794927286],[516561.66480730247,5276442.783284447],[516557.4503615505,5276445.660933175],[516552.438757112,5276438.311467904],[516561.09299255005,5276432.556807063]]]},"properties":{"id_build":1673,"id_source":"w145339120","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516444.26673191,5276341.069014235],[516445.7989969304,5276341.0844547115],[516449.8549814634,5276341.129251059],[516449.89656465803,5276342.363018743],[516444.26318599744,5276342.3248823825],[516444.26673191,5276341.069014235]]]},"properties":{"id_build":1674,"id_source":"w145339121","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516986.32894031657,5276165.823705829],[516986.92791427224,5276166.4922908],[516984.6679873239,5276168.708493858],[516984.06901334,5276168.039909117],[516986.32894031657,5276165.823705829]]]},"properties":{"id_build":1675,"id_source":"w145339127","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.4600710029,5276678.646159892],[517296.8876132131,5276686.427216163],[517290.04394165677,5276686.8514523925],[517283.14018463594,5276687.2755183345],[517282.5624076757,5276679.494017303],[517296.4600710029,5276678.646159892]]]},"properties":{"id_build":1676,"id_source":"w145339134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517060.7946488022,5276164.552080686],[517058.4058008169,5276164.611767653],[517058.33719589404,5276162.388772921],[517060.8911022271,5276162.396253222],[517060.7946488022,5276164.552080686]]]},"properties":{"id_build":1677,"id_source":"w145339135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.16097781085,5276362.926295954],[516773.98930703895,5276370.372161231],[516772.7123996234,5276370.3684837315],[516772.5836195732,5276362.921753161],[516774.16097781085,5276362.926295954]]]},"properties":{"id_build":1678,"id_source":"w145339137","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.106626439,5276234.796740335],[516546.04193154303,5276231.128948064],[516547.16864138923,5276231.132148988],[516550.0226571945,5276231.251397724],[516546.106626439,5276234.796740335]]]},"properties":{"id_build":1679,"id_source":"w145339138","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.27544143784,5276074.362645796],[516586.43078190007,5276080.8718918655],[516584.2676092105,5276075.53103018],[516601.0377991353,5276068.799286335],[516603.27544143784,5276074.362645796]]]},"properties":{"id_build":1680,"id_source":"w145339140","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5186876564,5276165.015168298],[517003.3999323997,5276164.195307193],[517004.1562564213,5276164.997720922],[517004.83021348214,5276165.710982525],[517003.94896876364,5276166.530843414],[517002.5186876564,5276165.015168298]]]},"properties":{"id_build":1681,"id_source":"w145339142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.44084810856,5276638.354898156],[517008.6863842957,5276638.010512135],[517009.07523690554,5276633.454917364],[517012.6801353627,5276633.576587145],[517012.44084810856,5276638.354898156]]]},"properties":{"id_build":1682,"id_source":"w145339150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.8973907668,5276484.192545373],[516770.9052339006,5276489.29388101],[516758.0237864603,5276489.245686677],[516758.03881704184,5276484.02216325],[516770.8973907668,5276484.192545373]]]},"properties":{"id_build":1683,"id_source":"w145339156","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516986.23275753425,5276173.047504784],[516987.206656188,5276173.939462597],[516986.076045639,5276175.269841449],[516985.0273564029,5276174.266526034],[516985.6602000361,5276173.62376138],[516986.23275753425,5276173.047504784]]]},"properties":{"id_build":1684,"id_source":"w145339164","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517102.0470643067,5276075.361209519],[517103.3652123832,5276086.923606735],[517095.85134226544,5276087.679525575],[517095.3989001369,5276083.154812634],[517094.68373765773,5276076.006432273],[517102.0470643067,5276075.361209519]]]},"properties":{"id_build":1685,"id_source":"w145339165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.4543481174,5276654.062193169],[516634.58540593705,5276657.71303719],[516633.9873950573,5276656.711071435],[516640.0062374013,5276653.171794868],[516640.4543481174,5276654.062193169]]]},"properties":{"id_build":1686,"id_source":"w145339187","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516413.4386541291,5276453.58876388],[516411.1058250483,5276455.138145249],[516409.4602700991,5276452.6884356225],[516411.7930997158,5276451.139053598],[516413.4386541291,5276453.58876388]]]},"properties":{"id_build":1687,"id_source":"w145339195","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.7446176896,5276311.457373111],[516835.67914262647,5276308.122993043],[516838.9167059667,5276308.065668788],[516838.982179177,5276311.400048896],[516835.7446176896,5276311.457373111]]]},"properties":{"id_build":1688,"id_source":"w145339198","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517246.50189743465,5276555.466246303],[517243.9471760224,5276555.792100601],[517243.6631904144,5276550.234270851],[517246.14214610454,5276550.130471603],[517246.50189743465,5276555.466246303]]]},"properties":{"id_build":1689,"id_source":"w145339207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516588.4710394491,5276102.994488623],[516586.5963132556,5276101.877753344],[516587.4276495766,5276100.101886688],[516589.37717530894,5276101.3299749],[516588.4710394491,5276102.994488623]]]},"properties":{"id_build":1690,"id_source":"w145339212","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.8081114179,5276303.429041874],[516741.81146586855,5276302.2620848445],[516744.36531053286,5276302.2694265],[516744.361955569,5276303.4363835305],[516741.8081114179,5276303.429041874]]]},"properties":{"id_build":1691,"id_source":"w145339215","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517225.79176289716,5276675.547061226],[517223.470358274,5276675.729132691],[517223.0987117431,5276671.871482588],[517225.5031644131,5276671.54517488],[517225.79176289716,5276675.547061226]]]},"properties":{"id_build":1692,"id_source":"w145339217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516869.09666915133,5276183.821037245],[516873.37820191047,5276183.833439309],[516873.30450050905,5276191.123988522],[516873.2744320816,5276193.724569846],[516868.91811399756,5276193.600811544],[516868.97100453195,5276190.900270601],[516869.09666915133,5276183.821037245]]]},"properties":{"id_build":1693,"id_source":"w145339222","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516655.3686021869,5276350.248864282],[516655.53919959336,5276351.005101987],[516655.73939696216,5276351.917019906],[516654.5366445642,5276352.246999452],[516654.01530676085,5276350.689553109],[516655.3686021869,5276350.248864282]]]},"properties":{"id_build":1694,"id_source":"w145339223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.6710180425,5276361.152011207],[516689.2584319407,5276361.14865616],[516689.2370941336,5276368.594954136],[516685.90975009627,5276368.540964507],[516682.7251192288,5276368.487385566],[516682.6710180425,5276361.152011207]]]},"properties":{"id_build":1695,"id_source":"w145339224","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516630.9159937305,5276627.583689729],[516625.006187861,5276619.231336073],[516627.7155059261,5276617.349695796],[516633.39934827544,5276625.923686236],[516630.9159937305,5276627.583689729]]]},"properties":{"id_build":1696,"id_source":"w145339228","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516693.5826849343,5276356.693233713],[516696.96274180355,5276356.7029229365],[516696.8664494065,5276361.470539501],[516693.749383969,5276361.4282622235],[516693.5826849343,5276356.693233713]]]},"properties":{"id_build":1697,"id_source":"w145339230","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.93246981147,5276271.554680221],[516964.2377866972,5276271.453166949],[516964.3083681817,5276273.009328327],[516960.8531489035,5276272.999265325],[516960.93246981147,5276271.554680221]]]},"properties":{"id_build":1698,"id_source":"w145339231","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.4904845518,5276346.236513612],[516610.38638344395,5276346.563931361],[516610.1670682449,5276344.451652014],[516612.2708530987,5276344.235372953],[516612.4904845518,5276346.236513612]]]},"properties":{"id_build":1699,"id_source":"w145339233","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516679.0084206257,5276179.150310319],[516675.92897395627,5276179.052581005],[516675.9784657722,5276177.50788151],[516679.0578814306,5276177.616724722],[516679.0084206257,5276179.150310319]]]},"properties":{"id_build":1700,"id_source":"w145339234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.3647746608,5276404.223941571],[517290.7353842108,5276405.892138199],[517286.3759333175,5276406.879454983],[517285.8550990502,5276405.210812761],[517290.3647746608,5276404.223941571]]]},"properties":{"id_build":1701,"id_source":"w145339235","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.70170036674,5276378.057622066],[516662.4251126563,5276377.9428299675],[516662.27965787705,5276376.27531851],[516663.63199404714,5276376.168047928],[516663.67404043576,5276377.223995266],[516663.70170036674,5276378.057622066]]]},"properties":{"id_build":1702,"id_source":"w145339237","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.26779284474,5276133.264985712],[517284.5346259386,5276141.472307868],[517274.4151736185,5276134.329345261],[517280.29856389016,5276126.122458956],[517284.8634261265,5276129.39239729],[517290.26779284474,5276133.264985712]]]},"properties":{"id_build":1703,"id_source":"w145339239","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.26887971465,5276216.088700837],[516648.91682434996,5276216.08483583],[516648.883428987,5276214.628810844],[516648.8499700677,5276213.195013619],[516650.20202610263,5276213.19887861],[516650.26887971465,5276216.088700837]]]},"properties":{"id_build":1704,"id_source":"w145339243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516583.18498464586,5276297.473821843],[516587.31778969854,5276296.9298922615],[516587.9044507871,5276301.932848107],[516583.8467622961,5276302.476991143],[516583.18498464586,5276297.473821843]]]},"properties":{"id_build":1705,"id_source":"w145339247","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.51120224,5276273.141986153],[516937.1914385768,5276273.26382699],[516937.1121235808,5276274.708412402],[516933.5066784682,5276274.697928759],[516933.51120224,5276273.141986153]]]},"properties":{"id_build":1706,"id_source":"w145339249","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516985.0901306705,5276075.463537107],[516982.6113023103,5276075.45630915],[516982.5410469253,5276073.789009304],[516983.94555469614,5276073.848674362],[516985.16978396644,5276073.907814042],[516985.0901306705,5276075.463537107]]]},"properties":{"id_build":1707,"id_source":"w145339257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.6733025292,5276318.583697973],[516544.83592716284,5276311.924053209],[516550.09572838445,5276311.2721591955],[516550.82790823875,5276317.942619768],[516545.6733025292,5276318.583697973]]]},"properties":{"id_build":1708,"id_source":"w145339258","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.51249786915,5276227.956751105],[517287.2769857186,5276229.836522171],[517285.3342458403,5276226.385424752],[517288.41953106987,5276224.505206689],[517290.51249786915,5276227.956751105]]]},"properties":{"id_build":1709,"id_source":"w145339259","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516739.25426600856,5276590.884555532],[516740.15366146545,5276591.553979178],[516735.9318879585,5276596.987692128],[516735.1072827768,5276596.42962378],[516739.25426600856,5276590.884555532]]]},"properties":{"id_build":1710,"id_source":"w145339265","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.1196319812,5276074.896031558],[517017.6969735898,5276073.335919437],[517019.3540728688,5276071.784805811],[517020.701615162,5276073.34469883],[517019.1196319812,5276074.896031558]]]},"properties":{"id_build":1711,"id_source":"w145339270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.82456568035,5276617.18499649],[516526.4183654347,5276608.2813135395],[516539.5043977974,5276602.316919383],[516543.8354735872,5276611.220398819],[516536.803558648,5276614.445706444],[516530.82456568035,5276617.18499649]]]},"properties":{"id_build":1712,"id_source":"w145339271","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517054.1740260057,5276198.908198582],[517054.26834036096,5276192.351232707],[517056.1465284586,5276192.245592792],[517055.7517542982,5276198.801678791],[517054.1740260057,5276198.908198582]]]},"properties":{"id_build":1713,"id_source":"w145339272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.8884261268,5276127.8098667115],[517109.98525461974,5276134.733114739],[517106.43819081207,5276140.39082023],[517100.8366804433,5276137.106864492],[517095.1901598518,5276133.800554143],[517098.8884261268,5276127.8098667115]]]},"properties":{"id_build":1714,"id_source":"w145339274","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.14455339086,5276088.232489511],[516399.14796412573,5276087.021077353],[516399.15112453053,5276085.898576182],[516400.2027465446,5276085.901537119],[516400.12105915864,5276088.235238948],[516399.14455339086,5276088.232489511]]]},"properties":{"id_build":1715,"id_source":"w145339279","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516927.29889621126,5276239.670880047],[516929.25185738684,5276239.676556299],[516929.3080719836,5276241.010395982],[516927.37013403006,5276241.004763371],[516927.29889621126,5276239.670880047]]]},"properties":{"id_build":1716,"id_source":"w145339282","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516644.0974332858,5276430.570637369],[516647.5547824309,5276429.802541166],[516648.0713492682,5276433.027068954],[516644.53889058536,5276433.794950184],[516644.0974332858,5276430.570637369]]]},"properties":{"id_build":1717,"id_source":"w145339285","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517006.5504874257,5276340.594324307],[517001.44283115026,5276340.579412101],[517001.4548350458,5276336.467277681],[517006.56249492767,5276336.48218989],[517006.5504874257,5276340.594324307]]]},"properties":{"id_build":1718,"id_source":"w145339289","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516814.5950181684,5276308.028742481],[516814.5773997516,5276311.52959189],[516811.7831975983,5276311.521525614],[516811.8083256352,5276308.020697885],[516814.5950181684,5276308.028742481]]]},"properties":{"id_build":1719,"id_source":"w145339301","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.49393148767,5276457.317624724],[516470.6796111519,5276451.527572661],[516473.1626799746,5276449.978640027],[516476.82677669456,5276455.768268703],[516474.49393148767,5276457.317624724]]]},"properties":{"id_build":1720,"id_source":"w145339313","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516830.6766286683,5276092.353086232],[516831.13085609605,5276091.13186258],[516833.2369893569,5276090.137692102],[516833.68447222677,5276091.2503819065],[516832.66931686824,5276091.625322911],[516830.6766286683,5276092.353086232]]]},"properties":{"id_build":1721,"id_source":"w145339315","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516954.2088142937,5276258.97631818],[516954.2881337157,5276257.531733022],[516957.51802117564,5276257.541136017],[516957.438700953,5276258.985721133],[516954.2088142937,5276258.97631818]]]},"properties":{"id_build":1722,"id_source":"w145339323","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.21025683306,5276357.448921624],[516763.9617004057,5276357.339944816],[516763.9517835137,5276360.785246815],[516763.2006602698,5276360.783084844],[516763.21025683306,5276357.448921624]]]},"properties":{"id_build":1723,"id_source":"w145339329","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516310.9906102125,5276478.863061379],[516313.44280439644,5276488.316801918],[516309.5342486067,5276489.30611186],[516306.7816054168,5276479.851531725],[516310.9906102125,5276478.863061379]]]},"properties":{"id_build":1724,"id_source":"w145339335","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.3455078276,5276336.555048697],[516764.0212016595,5276336.668133246],[516764.0867172879,5276340.002512559],[516763.26047877286,5276340.000134384],[516763.3455078276,5276336.555048697]]]},"properties":{"id_build":1725,"id_source":"w145339337","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.8678581019,5276233.841170495],[516605.3002152497,5276233.631526266],[516606.26782412664,5276236.746195434],[516601.3096718954,5276236.954340191],[516600.8678581019,5276233.841170495]]]},"properties":{"id_build":1726,"id_source":"w145339343","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.83775619394,5276092.097335431],[516479.59847158956,5276092.04937312],[516479.64747165464,5276090.660266511],[516480.88675655477,5276090.708228831],[516480.8621777544,5276091.430566814],[516480.83775619394,5276092.097335431]]]},"properties":{"id_build":1727,"id_source":"w145339357","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.06180487905,5276122.356559032],[516439.0105031043,5276122.242452145],[516439.01489456027,5276120.686509845],[516440.14162572264,5276120.689690015],[516440.10155844735,5276121.578693891],[516440.06180487905,5276122.356559032]]]},"properties":{"id_build":1728,"id_source":"w145339364","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516743.1508104361,5276385.065004051],[516744.12726657296,5276385.067811281],[516744.1972661771,5276386.846247691],[516743.22081033804,5276386.843440448],[516743.1508104361,5276385.065004051]]]},"properties":{"id_build":1729,"id_source":"w145339366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516971.8726272936,5276074.424751688],[516971.8017211463,5276072.979729427],[516972.44771911384,5276072.981611776],[516973.37915803946,5276072.984325984],[516973.45006379456,5276074.429348266],[516971.8726272936,5276074.424751688]]]},"properties":{"id_build":1730,"id_source":"w145339376","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.738653627,5276391.394490513],[516663.7355691186,5276392.472536685],[516663.7332477862,5276393.283849786],[516662.5314573531,5276393.280411342],[516662.5365448377,5276391.502190849],[516663.738653627,5276391.394490513]]]},"properties":{"id_build":1731,"id_source":"w145339399","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9458449956,5276413.634790798],[516861.00248358905,5276413.623373061],[516861.0217388928,5276409.566829255],[516864.9651030455,5276409.578246998],[516864.9458449956,5276413.634790798]]]},"properties":{"id_build":1732,"id_source":"w145339404","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516758.62475981284,5276437.011751106],[516748.2590751366,5276437.093072404],[516748.36678662355,5276425.75713215],[516758.9575061281,5276425.787598199],[516758.62475981284,5276437.011751106]]]},"properties":{"id_build":1733,"id_source":"w145339406","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.557471524,5276315.105698821],[516764.15837483003,5276315.107428415],[516764.2996433993,5276318.219746285],[516763.6990603037,5276318.106877908],[516763.557471524,5276315.105698821]]]},"properties":{"id_build":1734,"id_source":"w145339417","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.60257824854,5276658.014799131],[517201.1336627775,5276657.691808532],[517201.20516026573,5276658.9145574225],[517197.67407647206,5276659.237547982],[517197.60257824854,5276658.014799131]]]},"properties":{"id_build":1735,"id_source":"w145339425","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.49132136494,5276364.118965824],[516530.3442512383,5276363.007151673],[516534.5521170041,5276362.463397902],[516534.69855529093,5276363.797489716],[516530.49132136494,5276364.118965824]]]},"properties":{"id_build":1736,"id_source":"w145339433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517294.54228186025,5276717.428257263],[517293.8920560095,5276708.757420999],[517299.00074361806,5276708.316921271],[517302.68198633404,5276708.005552393],[517303.2570914447,5276716.676166492],[517294.54228186025,5276717.428257263]]]},"properties":{"id_build":1737,"id_source":"w145339436","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.0911976859,5276334.327671552],[516723.0090644684,5276336.772508826],[516721.9574876115,5276336.769489495],[516721.88939505897,5276334.324220889],[516723.0911976859,5276334.327671552]]]},"properties":{"id_build":1738,"id_source":"w145339442","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516477.60912386206,5276126.1302671805],[516476.4823937355,5276126.127079761],[516476.56159617787,5276124.682488683],[516477.6880121693,5276124.796814852],[516477.6485051287,5276125.485768763],[516477.60912386206,5276126.1302671805]]]},"properties":{"id_build":1739,"id_source":"w145339444","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.2067489602,5276309.184808479],[516983.293204752,5276305.295170807],[516984.87057873193,5276305.299770631],[516984.85923488665,5276309.189627331],[516983.2067489602,5276309.184808479]]]},"properties":{"id_build":1740,"id_source":"w145339457","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517177.3112994618,5276346.241221923],[517171.9779825131,5276346.33663432],[517172.29277893173,5276315.996415829],[517177.7009087921,5276316.0123639535],[517177.3112994618,5276346.241221923]]]},"properties":{"id_build":1741,"id_source":"w145339466","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.6551090745,5276207.589040175],[517014.15739522903,5276207.593428462],[517014.28879346803,5276214.039914561],[517012.86162319884,5276214.035745645],[517012.6551090745,5276207.589040175]]]},"properties":{"id_build":1742,"id_source":"w145339473","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516786.5493315647,5276521.1137989415],[516781.5172645809,5276520.98815692],[516781.712640882,5276505.318018877],[516786.4445999127,5276505.331656236],[516786.5493315647,5276521.1137989415]]]},"properties":{"id_build":1743,"id_source":"w145339475","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516981.95586162416,5276153.407765401],[516980.88515163807,5276152.226563099],[516982.21067567077,5276151.0301191835],[516983.2813856127,5276152.211321726],[516982.64873436716,5276152.787403387],[516981.95586162416,5276153.407765401]]]},"properties":{"id_build":1744,"id_source":"w145339481","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.91641029704,5276392.141043464],[517301.5100422443,5276394.587881566],[517300.0779640309,5276396.250723786],[517298.57935751625,5276395.023735101],[517300.91641029704,5276392.141043464]]]},"properties":{"id_build":1745,"id_source":"w145339485","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.00284796226,5276560.150770581],[516409.2388298845,5276557.937093668],[516413.12856347504,5276563.61617935],[516410.34324121574,5276565.831123986],[516406.00284796226,5276560.150770581]]]},"properties":{"id_build":1746,"id_source":"w145339492","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.8694511488,5276691.103725653],[516835.12628640357,5276683.851466578],[516839.197231338,5276678.639668017],[516848.790183557,5276685.891499217],[516844.8694511488,5276691.103725653]]]},"properties":{"id_build":1747,"id_source":"w145339508","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517100.5976526736,5276338.758048243],[517100.58721037756,5276342.314488804],[517096.90669429896,5276342.303683364],[517096.7672353575,5276338.635663045],[517100.5976526736,5276338.758048243]]]},"properties":{"id_build":1748,"id_source":"w145339513","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.237328742,5276576.619165476],[517293.3073959539,5276576.832743955],[517293.0906477962,5276573.942465878],[517296.0205820287,5276573.728887289],[517296.237328742,5276576.619165476]]]},"properties":{"id_build":1749,"id_source":"w145339518","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.3395547346,5276425.877620272],[516600.82089998334,5276434.781567596],[516595.8190901741,5276437.190157668],[516591.19334760617,5276439.421999839],[516586.6368798862,5276430.517845968],[516596.3395547346,5276425.877620272]]]},"properties":{"id_build":1750,"id_source":"w145339533","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.97734718176,5276239.996961635],[516962.90482276503,5276239.107632861],[516964.47470327053,5276239.112205241],[516965.9844926524,5276239.116603001],[516966.05669285497,5276240.117070567],[516962.97734718176,5276239.996961635]]]},"properties":{"id_build":1751,"id_source":"w145339535","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.10930430086,5276189.782597409],[516968.904233789,5276190.89048327],[516967.7814012244,5276189.553535872],[516968.29363710847,5276189.054899565],[516968.91135724244,5276188.445430936],[516970.10930430086,5276189.782597409]]]},"properties":{"id_build":1752,"id_source":"w145339537","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516443.5653047086,5276078.68857918],[516442.13841533975,5276078.573411461],[516442.14280757,5276077.01746927],[516443.569697321,5276077.13263699],[516443.5672500078,5276077.999519069],[516443.5653047086,5276078.68857918]]]},"properties":{"id_build":1753,"id_source":"w145339540","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.07057756523,5276598.914840215],[516747.4971185779,5276597.576638274],[516749.68295903574,5276594.915571019],[516751.2570576102,5276596.031495917],[516749.07057756523,5276598.914840215]]]},"properties":{"id_build":1754,"id_source":"w145339547","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.2331309151,5276258.926927454],[516933.47777187184,5276258.804868231],[516933.4075050703,5276257.137568524],[516937.08775152406,5276257.259409266],[516937.2331309151,5276258.926927454]]]},"properties":{"id_build":1755,"id_source":"w145339548","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516572.9112353868,5276238.762838204],[516572.98192186886,5276240.318994508],[516569.15016588225,5276240.641511528],[516568.8544528837,5276238.973575469],[516572.9112353868,5276238.762838204]]]},"properties":{"id_build":1756,"id_source":"w145339553","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.4110365673,5276671.810239225],[516782.5036513788,5276673.919279489],[516781.45565829094,5276672.693722154],[516781.4569393532,5276672.249166842],[516783.4110365673,5276671.810239225]]]},"properties":{"id_build":1757,"id_source":"w145339554","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.4859140658,5276369.53516734],[516753.48335645965,5276370.424277546],[516750.17841967224,5276370.414771524],[516750.2564086274,5276369.414738566],[516753.4859140658,5276369.53516734]]]},"properties":{"id_build":1758,"id_source":"w145339556","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.76356116636,5276564.834339647],[516761.1897761652,5276563.607272898],[516762.8485877333,5276561.38925274],[516764.49748271063,5276562.616536148],[516762.76356116636,5276564.834339647]]]},"properties":{"id_build":1759,"id_source":"w145339557","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.9873950573,5276656.711071435],[516628.870813592,5276659.9195113005],[516628.272801963,5276658.91754613],[516633.3887490936,5276655.931383394],[516633.9873950573,5276656.711071435]]]},"properties":{"id_build":1760,"id_source":"w145339560","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.5220804062,5276303.4303304665],[516734.5254972639,5276302.241145684],[516737.30468116427,5276302.249131711],[516737.37640874187,5276303.427418473],[516734.5220804062,5276303.4303304665]]]},"properties":{"id_build":1761,"id_source":"w145339561","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517056.0582766109,5276517.340139837],[517055.61607724125,5276514.4492112445],[517058.39678792265,5276513.901656746],[517058.83833486843,5276517.014863147],[517056.0582766109,5276517.340139837]]]},"properties":{"id_build":1762,"id_source":"w145339562","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.12152029225,5276077.588554969],[516526.7256014936,5276076.47887274],[516528.6003472773,5276077.595588656],[516528.0716971592,5276078.594345117],[516527.02909904794,5276078.057916516],[516526.12152029225,5276077.588554969]]]},"properties":{"id_build":1763,"id_source":"w145339565","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.2334780852,5276465.165278706],[516866.2288515798,5276473.776208694],[516864.21469652496,5276468.991367797],[516884.06879210443,5276460.491134204],[516886.2334780852,5276465.165278706]]]},"properties":{"id_build":1764,"id_source":"w145339566","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.57944157236,5276211.321770827],[516621.4383528619,5276211.338487916],[516621.28368409007,5276212.894001695],[516615.5756369294,5276212.655435825],[516615.57944157236,5276211.321770827]]]},"properties":{"id_build":1765,"id_source":"w145339567","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516431.7669368122,5276293.488190592],[516431.914968276,5276294.266585785],[516429.4359200896,5276294.370731794],[516426.9571854595,5276294.363740092],[516426.9600066232,5276293.363491201],[516431.7669368122,5276293.488190592]]]},"properties":{"id_build":1766,"id_source":"w145339569","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.66237964673,5276337.146211291],[516775.65549704415,5276339.53569485],[516775.6502150476,5276341.369484565],[516774.4484138466,5276341.366023054],[516774.53569020407,5276337.142966115],[516775.66237964673,5276337.146211291]]]},"properties":{"id_build":1767,"id_source":"w145339570","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.62958517805,5276462.721213016],[517265.10743221117,5276461.497127655],[517268.94172032294,5276460.2859583525],[517269.3133209612,5276461.620737397],[517267.4413755298,5276462.181999715],[517265.62958517805,5276462.721213016]]]},"properties":{"id_build":1768,"id_source":"w145339574","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.9267323346,5276365.4463122655],[516722.91875439684,5276368.22478166],[516721.6421656298,5276368.109976582],[516721.7249361272,5276365.442861621],[516722.9267323346,5276365.4463122655]]]},"properties":{"id_build":1769,"id_source":"w145339578","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.85580934695,5276349.809089012],[516694.42867253604,5276349.804998043],[516694.36694003403,5276345.136954287],[516695.86919051316,5276345.141260563],[516695.85580934695,5276349.809089012]]]},"properties":{"id_build":1770,"id_source":"w145339581","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.13807009574,5276330.476475642],[516578.80862700794,5276330.803263279],[516578.6612488463,5276329.802586719],[516581.0654886405,5276329.587151636],[516581.13807009574,5276330.476475642]]]},"properties":{"id_build":1771,"id_source":"w145339585","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.41557140806,5276234.833414604],[516947.4433247865,5276234.950454241],[516947.511324159,5276237.395725323],[516945.4006229702,5276237.389584017],[516945.41557140806,5276234.833414604]]]},"properties":{"id_build":1772,"id_source":"w145339589","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.0628488982,5276150.435742255],[516619.13272838976,5276150.649660212],[516619.0649069764,5276148.093254896],[516621.994394428,5276148.10161438],[516622.0628488982,5276150.435742255]]]},"properties":{"id_build":1773,"id_source":"w145339594","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.791189366,5276273.4232632015],[516957.47207233595,5276273.322839337],[516957.4681893303,5276274.656504424],[516953.93785759766,5276274.646226828],[516953.791189366,5276273.4232632015]]]},"properties":{"id_build":1774,"id_source":"w145339595","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.66937904124,5276224.891737601],[517044.75329471636,5276225.020678521],[517044.749391785,5276226.354343496],[517038.5149242408,5276226.336101845],[517038.66937904124,5276224.891737601]]]},"properties":{"id_build":1775,"id_source":"w145339599","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516900.52627091476,5276069.438292968],[516899.61623766826,5276069.82464132],[516898.7212277588,5276070.2110334],[516898.0490522239,5276068.875407395],[516899.85409570264,5276068.102666757],[516900.52627091476,5276069.438292968]]]},"properties":{"id_build":1776,"id_source":"w145339602","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.3195140428,5276162.69264126],[517169.5412549084,5276163.915831632],[517167.8729839693,5276164.15542142],[517166.4602347516,5276164.3513089],[517166.2388208139,5276163.016979913],[517169.3195140428,5276162.69264126]]]},"properties":{"id_build":1777,"id_source":"w145339603","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516455.2107974985,5276450.039029884],[516458.7262602135,5276455.2725287145],[516453.45843596366,5276458.814113713],[516449.9432846117,5276453.469479245],[516455.2107974985,5276450.039029884]]]},"properties":{"id_build":1778,"id_source":"w145339604","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.51092869946,5276662.07298891],[516639.44745191,5276664.728730676],[516638.8494425941,5276663.726764408],[516642.9877106292,5276661.182375704],[516643.51092869946,5276662.07298891]]]},"properties":{"id_build":1779,"id_source":"w145339607","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.74391012086,5276360.147089336],[516656.6162716282,5276360.477283288],[516656.02045847,5276358.697344377],[516657.37343432906,5276358.367794786],[516657.54387229437,5276359.179601949],[516657.74391012086,5276360.147089336]]]},"properties":{"id_build":1780,"id_source":"w145339613","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.5745534381,5276548.6361868745],[516774.15730330616,5276546.75137007],[516775.50640072476,5276547.755513597],[516773.99844046624,5276549.751685181],[516772.5745534381,5276548.6361868745]]]},"properties":{"id_build":1781,"id_source":"w145339614","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516518.01120495045,5276421.098210783],[516523.20399110124,5276417.556471117],[516524.9991008325,5276420.228916649],[516519.88142745546,5276423.770867784],[516518.01120495045,5276421.098210783]]]},"properties":{"id_build":1782,"id_source":"w145339615","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.67932282126,5276613.7116255425],[516718.59262317914,5276619.276975154],[516713.77767365845,5276622.041647647],[516710.7898989137,5276616.253807267],[516715.67932282126,5276613.7116255425]]]},"properties":{"id_build":1783,"id_source":"w145339616","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.1407663358,5276440.025125238],[517290.4047937825,5276441.344740081],[517289.8849536665,5276439.342681051],[517294.54581637814,5276438.022842738],[517295.1407663358,5276440.025125238]]]},"properties":{"id_build":1784,"id_source":"w145339617","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516764.13878232747,5276478.482733146],[516758.05480701063,5276478.465223476],[516758.07047716546,5276473.019422547],[516764.078707468,5276473.258993603],[516764.13878232747,5276478.482733146]]]},"properties":{"id_build":1785,"id_source":"w145339622","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.4402878488,5276463.609962823],[516644.30656143103,5276462.523898269],[516645.77447476395,5276474.531181486],[516636.9082191574,5276475.617243785],[516636.14497184986,5276469.346784297],[516635.4402878488,5276463.609962823]]]},"properties":{"id_build":1786,"id_source":"w145339623","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.1822638936,5276318.570663134],[516654.2450872839,5276317.6150415605],[516656.1979585347,5276317.642854069],[516656.210311259,5276318.576462682],[516655.22633272194,5276318.57364874],[516654.1822638936,5276318.570663134]]]},"properties":{"id_build":1787,"id_source":"w145339625","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.7621772565,5276525.929218821],[516450.32913138374,5276529.601254632],[516448.4488667784,5276530.485061333],[516446.80680153647,5276526.81281391],[516448.7621772565,5276525.929218821]]]},"properties":{"id_build":1788,"id_source":"w145339626","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5676782188,5276109.634408768],[517004.1493231504,5276108.19421022],[517005.0481144268,5276109.085951612],[517003.3913539503,5276110.5259306375],[517002.5676782188,5276109.634408768]]]},"properties":{"id_build":1789,"id_source":"w145339627","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516998.95150196913,5276285.702465033],[516998.97815554566,5276284.291068565],[516999.0048415706,5276282.868558227],[517002.0468019247,5276282.921893378],[517001.9934608432,5276285.755800163],[516998.95150196913,5276285.702465033]]]},"properties":{"id_build":1790,"id_source":"w145339629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.31223967264,5276348.113480887],[516763.9131395751,5276348.115210464],[516763.97801528435,5276351.671867386],[516763.2272107492,5276351.55856664],[516763.31223967264,5276348.113480887]]]},"properties":{"id_build":1791,"id_source":"w145339635","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.99117617006,5276302.676582416],[517076.00160331355,5276299.120142069],[517079.0812416151,5276299.129172086],[517079.0299815219,5276301.240676381],[517078.9956995068,5276302.685392169],[517075.99117617006,5276302.676582416]]]},"properties":{"id_build":1792,"id_source":"w145339638","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5039097194,5276348.958776898],[516817.5697154581,5276352.182018177],[516814.75280655245,5276352.2405686295],[516814.686999255,5276349.01732738],[516817.5039097194,5276348.958776898]]]},"properties":{"id_build":1793,"id_source":"w145339649","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.6409891206,5276191.088694231],[516958.45651978045,5276193.193987487],[516957.85754534334,5276192.525405418],[516960.0416910907,5276190.53125068],[516960.6409891206,5276191.088694231]]]},"properties":{"id_build":1794,"id_source":"w145339652","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517248.0033555812,5276276.732189821],[517245.73777672776,5276280.837650939],[517242.4383818015,5276278.938506864],[517244.6285165385,5276274.943960834],[517248.0033555812,5276276.732189821]]]},"properties":{"id_build":1795,"id_source":"w145339657","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516376.13867655554,5276068.718330577],[516379.4431589674,5276068.949901398],[516379.36022958555,5276071.728158342],[516375.9806327038,5276071.496376375],[516376.13867655554,5276068.718330577]]]},"properties":{"id_build":1796,"id_source":"w145339659","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.8876132131,5276686.427216163],[517296.4600710029,5276678.646159892],[517310.43284680997,5276677.798558897],[517310.93580895185,5276685.468700671],[517304.4300557743,5276685.9161524745],[517296.8876132131,5276686.427216163]]]},"properties":{"id_build":1797,"id_source":"w145339663","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.4683326608,5276332.66559459],[516817.592303268,5276336.555841918],[516814.79034516093,5276336.636663497],[516814.7349717848,5276335.002750102],[516814.6663726825,5276332.746416232],[516817.4683326608,5276332.66559459]]]},"properties":{"id_build":1798,"id_source":"w145339666","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517029.4017953378,5276257.750870861],[517029.3926966029,5276260.862755974],[517026.3884766497,5276260.742833107],[517026.4723625422,5276257.742306332],[517027.8093857164,5276257.746215087],[517029.4017953378,5276257.750870861]]]},"properties":{"id_build":1799,"id_source":"w145339668","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.35697633075,5276347.033884055],[516775.4836638599,5276347.0371292],[516775.4399293341,5276349.181999323],[516775.39542655327,5276351.593602511],[516774.3441724461,5276351.479434944],[516774.35697633075,5276347.033884055]]]},"properties":{"id_build":1800,"id_source":"w145339670","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516555.7811183797,5276396.076774314],[516555.08232532116,5276396.1636996595],[516554.89142568427,5276394.618315464],[516555.56768535834,5276394.53132604],[516555.6854949033,5276395.365208532],[516555.7811183797,5276396.076774314]]]},"properties":{"id_build":1801,"id_source":"w145339674","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517006.92690877523,5276263.131046093],[517004.5922222867,5276265.235883598],[517003.8433579193,5276264.455719334],[517006.1029308451,5276262.350662207],[517006.92690877523,5276263.131046093]]]},"properties":{"id_build":1802,"id_source":"w145339687","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.98307237215,5276656.081367511],[516646.0855823886,5276654.745125225],[516647.9588666154,5276653.6724247085],[516649.17011591804,5276652.97570714],[516649.91738840076,5276654.311520414],[516646.98307237215,5276656.081367511]]]},"properties":{"id_build":1803,"id_source":"w145339700","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516651.87771884125,5276336.45756192],[516650.6975608167,5276336.765378934],[516650.3113280208,5276335.241661132],[516651.5066041891,5276334.900545362],[516651.6847456027,5276335.645690531],[516651.87771884125,5276336.45756192]]]},"properties":{"id_build":1804,"id_source":"w145339707","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517151.7167505023,5276069.394577287],[517153.8895529558,5276071.290350546],[517150.72322423966,5276075.170915296],[517148.62553826487,5276073.275364359],[517151.7167505023,5276069.394577287]]]},"properties":{"id_build":1805,"id_source":"w145339722","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.3238100596,5276316.730594808],[516706.3928658032,5276318.84244685],[516704.7403828061,5276318.837707],[516704.6682025747,5276317.815014903],[516704.59589481127,5276316.836778313],[516706.3238100596,5276316.730594808]]]},"properties":{"id_build":1806,"id_source":"w145339726","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.08753126045,5276614.559714278],[516738.0640589347,5276612.9979418125],[516739.7976373813,5276610.891269662],[516741.6708918263,5276612.452610879],[516740.08753126045,5276614.559714278]]]},"properties":{"id_build":1807,"id_source":"w145339741","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.42762873217,5276383.937990368],[516423.92538842635,5276383.933753828],[516424.0117833797,5276379.932969521],[516425.514024717,5276379.937206081],[516425.42762873217,5276383.937990368]]]},"properties":{"id_build":1808,"id_source":"w145339752","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.0264814498,5276091.247111155],[516523.1290756915,5276091.817050961],[516523.97665442387,5276092.252899962],[516523.67461486306,5276092.807741225],[516521.6490109898,5276091.912878175],[516522.0264814498,5276091.247111155]]]},"properties":{"id_build":1809,"id_source":"w145339758","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.9367410138,5276212.5835429765],[517054.4341306908,5276212.690282655],[517054.3775657397,5276206.355154244],[517055.8047379124,5276206.35933333],[517055.9367410138,5276212.5835429765]]]},"properties":{"id_build":1810,"id_source":"w145339765","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.5862104722,5276407.409071394],[517278.1073766196,5276408.966574099],[517273.8230419209,5276409.954123105],[517273.5272099003,5276408.397289109],[517277.5862104722,5276407.409071394]]]},"properties":{"id_build":1811,"id_source":"w145339773","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516979.8083662509,5276238.156630529],[516979.7983220517,5276241.601931813],[516976.34340805945,5276241.480720918],[516976.35312627326,5276238.146558382],[516979.8083662509,5276238.156630529]]]},"properties":{"id_build":1812,"id_source":"w145339774","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517249.6616656492,5276503.017631195],[517247.7458540468,5276503.178666702],[517244.5528349538,5276503.447060609],[517244.41248643957,5276500.112451974],[517249.5209908671,5276499.794161227],[517249.6616656492,5276503.017631195]]]},"properties":{"id_build":1813,"id_source":"w145339797","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.16097781085,5276362.926295954],[516774.2488939568,5276358.48096132],[516775.22567467723,5276358.372634975],[516775.36309467943,5276362.818618641],[516774.16097781085,5276362.926295954]]]},"properties":{"id_build":1814,"id_source":"w145339802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517081.4476094306,5276260.615087243],[517074.01136044535,5276260.593282932],[517073.954166075,5276254.480431307],[517081.6157639796,5276254.502896409],[517081.4476094306,5276260.615087243]]]},"properties":{"id_build":1815,"id_source":"w145339808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.6936799623,5276233.466428232],[516892.2387596583,5276233.345267244],[516892.1729933541,5276230.122025626],[516895.5534463564,5276230.020691175],[516895.6936799623,5276233.466428232]]]},"properties":{"id_build":1816,"id_source":"w145339813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516584.6668397883,5276119.988019352],[516580.56807812303,5276108.52896779],[516583.71818561124,5276110.20503045],[516586.025879991,5276117.546817247],[516584.6668397883,5276119.988019352]]]},"properties":{"id_build":1817,"id_source":"w145339829","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.20775971754,5276268.77679256],[517316.2281522651,5276269.599408794],[517315.4436451674,5276280.822189774],[517300.6486216247,5276280.000244837],[517301.20775971754,5276268.77679256]]]},"properties":{"id_build":1818,"id_source":"w145339831","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8920560095,5276708.757420999],[517294.54228186025,5276717.428257263],[517284.6257508971,5276718.176794087],[517283.9755103804,5276709.505958955],[517288.0097253775,5276709.20674242],[517293.8920560095,5276708.757420999]]]},"properties":{"id_build":1819,"id_source":"w145339838","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.1294314409,5276177.052080336],[517254.44843944017,5276180.282001447],[517252.79229544825,5276181.499632317],[517250.4732870246,5276178.269711856],[517252.1294314409,5276177.052080336]]]},"properties":{"id_build":1820,"id_source":"w145339851","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.58656096697,5276352.21551668],[516605.4131145696,5276352.1067335745],[516605.55700190156,5276354.32993738],[516604.88067341194,5276354.439148764],[516604.7336489059,5276353.316218844],[516604.58656096697,5276352.21551668]]]},"properties":{"id_build":1821,"id_source":"w145339853","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.82626548264,5276303.441372857],[516753.8292387005,5276302.40778235],[516756.38308331254,5276302.415129277],[516756.3050285546,5276303.437389803],[516753.82626548264,5276303.441372857]]]},"properties":{"id_build":1822,"id_source":"w145339856","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.36022958555,5276071.728158342],[516379.4431589674,5276068.949901398],[516381.0954000779,5276069.065687508],[516380.9373538713,5276071.843733178],[516379.36022958555,5276071.728158342]]]},"properties":{"id_build":1823,"id_source":"w145339859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.9947170736,5276226.185425816],[517024.8487121747,5276224.740182963],[517031.00741734204,5276224.980467838],[517031.00286759174,5276226.536410309],[517024.9947170736,5276226.185425816]]]},"properties":{"id_build":1824,"id_source":"w145339863","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516624.78831008566,5276116.657069926],[516625.90742832026,5276119.327615629],[516623.6514277123,5276120.210293507],[516622.60710689623,5276117.651101341],[516624.78831008566,5276116.657069926]]]},"properties":{"id_build":1825,"id_source":"w145339864","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.9581498849,5276246.103512019],[516710.3196825707,5276246.101680176],[516710.3995155914,5276244.457042118],[516710.99320178357,5276244.358719779],[516710.9581498849,5276246.103512019]]]},"properties":{"id_build":1826,"id_source":"w145339873","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.5243773496,5276252.372020749],[516590.50791520556,5276258.151236141],[516586.7525495835,5276258.029400496],[516586.84380520973,5276252.361537775],[516590.5243773496,5276252.372020749]]]},"properties":{"id_build":1827,"id_source":"w145339874","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.98280703305,5276386.196045883],[516749.9121699192,5276384.63988696],[516756.9726994396,5276384.660197274],[516757.0436544386,5276386.105217509],[516749.98280703305,5276386.196045883]]]},"properties":{"id_build":1828,"id_source":"w145339876","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516598.28452993964,5276086.018082235],[516597.67568554915,5276088.794838018],[516590.4563355466,5276091.663900704],[516587.681798964,5276089.988904057],[516598.28452993964,5276086.018082235]]]},"properties":{"id_build":1829,"id_source":"w145339880","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.2685430519,5276421.722388241],[516773.3156430455,5276421.716763475],[516773.32428533223,5276418.716016289],[516775.35197779915,5276418.832996192],[516775.31029242935,5276420.266578337],[516775.2685430519,5276421.722388241]]]},"properties":{"id_build":1830,"id_source":"w145339881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.2459878492,5276080.870250399],[516740.11829059606,5276081.2004281785],[516739.5979090052,5276079.309558667],[516740.6501712098,5276079.0903036175],[516740.94063186744,5276079.958027667],[516741.2459878492,5276080.870250399]]]},"properties":{"id_build":1831,"id_source":"w145339884","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.2959859256,5276327.663730957],[516764.047433339,5276327.554754161],[516764.1877419052,5276331.0004883995],[516763.43661482143,5276330.998326408],[516763.2959859256,5276327.663730957]]]},"properties":{"id_build":1832,"id_source":"w145339887","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.6320752299,5276443.855497638],[516773.2364437069,5276444.000046967],[516773.1762689579,5276449.245668025],[516761.57191093394,5276449.10111879],[516761.6320752299,5276443.855497638]]]},"properties":{"id_build":1833,"id_source":"w145339891","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516729.3349891194,5276383.358206829],[516726.4807318983,5276383.350008792],[516726.41551461973,5276379.904490946],[516729.3448856046,5276379.912904702],[516729.3349891194,5276383.358206829]]]},"properties":{"id_build":1834,"id_source":"w145339895","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.11668712634,5276072.9937920235],[516434.19525251637,5276071.771477966],[516435.32199313893,5276071.774657182],[516435.32011153834,5276072.441489542],[516434.11668712634,5276072.9937920235]]]},"properties":{"id_build":1835,"id_source":"w145339900","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.599090257,5276185.21413008],[516889.58813274803,5276188.99284733],[516886.3585295837,5276188.872343358],[516886.36916278093,5276185.204764847],[516889.599090257,5276185.21413008]]]},"properties":{"id_build":1836,"id_source":"w145339909","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516459.0488174855,5276527.18081824],[516460.25215079315,5276526.628520728],[516460.7672382854,5276527.7524874965],[516461.2226144267,5276528.742917906],[516460.0192814614,5276529.295215216],[516459.0488174855,5276527.18081824]]]},"properties":{"id_build":1837,"id_source":"w145339912","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516322.697496363,5276616.597929573],[516321.7980571497,5276615.928570478],[516323.3055333292,5276614.043420827],[516324.2046611298,5276614.823918977],[516322.697496363,5276616.597929573]]]},"properties":{"id_build":1838,"id_source":"w145339914","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.5425100012,5276548.510556871],[516769.27675820445,5276546.181616027],[516770.77575638215,5276547.297329815],[516768.8161782405,5276549.625621402],[516767.5425100012,5276548.510556871]]]},"properties":{"id_build":1839,"id_source":"w145339919","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.1315263611,5276346.442013285],[516723.19929908734,5276348.998420724],[516721.77216206136,5276348.994323054],[516721.77950121695,5276346.4381312905],[516723.1315263611,5276346.442013285]]]},"properties":{"id_build":1840,"id_source":"w145339927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516578.14227872144,5276485.7300872905],[516578.7349385473,5276488.6214065505],[516576.3298154476,5276489.170258893],[516575.73715448804,5276486.278939874],[516578.14227872144,5276485.7300872905]]]},"properties":{"id_build":1841,"id_source":"w145339928","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516781.18479896506,5276532.101171507],[516781.2149020738,5276521.654124008],[516786.99839132803,5276521.670791958],[516786.89316773164,5276532.117622949],[516781.18479896506,5276532.101171507]]]},"properties":{"id_build":1842,"id_source":"w145339929","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.08541060647,5276264.870442183],[516800.05734441924,5276264.864591884],[516800.0643971578,5276262.419539233],[516802.2426913836,5276262.4258229155],[516802.08541060647,5276264.870442183]]]},"properties":{"id_build":1843,"id_source":"w145339936","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516930.25240802416,5276257.239535998],[516926.6472751037,5276257.117917872],[516926.5770063238,5276255.45061826],[516930.1818172167,5276255.683375093],[516930.25240802416,5276257.239535998]]]},"properties":{"id_build":1844,"id_source":"w145339937","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516433.8088691983,5276102.222642119],[516432.5322167181,5276102.107900608],[516432.76571607665,5276099.21892934],[516433.8126320877,5276100.888977331],[516433.8088691983,5276102.222642119]]]},"properties":{"id_build":1845,"id_source":"w145339938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.6949573406,5276453.846723315],[517307.17642421374,5276454.27565552],[517305.9886444854,5276454.616659145],[517305.54326160945,5276452.837099425],[517308.17446406465,5276452.066940161],[517308.6949573406,5276453.846723315]]]},"properties":{"id_build":1846,"id_source":"w145339942","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.9624734583,5276352.998769526],[516723.0286505661,5276356.110870862],[516721.9022839126,5276355.996497086],[516721.8354680107,5276353.106673313],[516722.9624734583,5276352.998769526]]]},"properties":{"id_build":1847,"id_source":"w145339945","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516998.4396920588,5276213.993637257],[516996.78750344226,5276213.87767587],[516996.9562187373,5276207.543205762],[516998.383390587,5276207.547370778],[516998.4396920588,5276213.993637257]]]},"properties":{"id_build":1848,"id_source":"w145339948","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516900.5290308987,5276223.811304387],[516900.59898509784,5276225.589742334],[516898.9464755107,5276225.584947446],[516898.9513124408,5276223.9178662095],[516900.5290308987,5276223.811304387]]]},"properties":{"id_build":1849,"id_source":"w145339949","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.2570914447,5276716.676166492],[517302.68198633404,5276708.005552393],[517311.54669648485,5276707.365059155],[517311.85951730557,5276710.777981322],[517312.3471117539,5276716.036344006],[517303.2570914447,5276716.676166492]]]},"properties":{"id_build":1850,"id_source":"w145339953","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.3017242322,5276401.676447153],[517293.52210952475,5276403.344197893],[517290.3647746608,5276404.223941571],[517290.0696066397,5276402.444829184],[517293.3017242322,5276401.676447153]]]},"properties":{"id_build":1851,"id_source":"w145339954","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.83895044867,5276113.267792247],[516989.4159698002,5276111.818825661],[516991.75136024825,5276109.49170499],[516993.17401664477,5276111.051810871],[516990.83895044867,5276113.267792247]]]},"properties":{"id_build":1852,"id_source":"w145339960","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516473.91997456487,5276554.007532949],[516478.7326638324,5276552.020634249],[516479.180492564,5276553.022158738],[516474.3674895732,5276555.120195879],[516473.91997456487,5276554.007532949]]]},"properties":{"id_build":1853,"id_source":"w145339963","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516591.55087812373,5276234.814878971],[516596.88523491344,5276234.385518599],[516597.1023424724,5276237.275768341],[516591.61807709665,5276237.5935618],[516591.55087812373,5276234.814878971]]]},"properties":{"id_build":1854,"id_source":"w145339968","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3291203006,5276479.350491839],[516522.58400322945,5276477.236723719],[516526.3436438832,5276475.802575204],[516527.08875978045,5276477.9163438035],[516523.3291203006,5276479.350491839]]]},"properties":{"id_build":1855,"id_source":"w145339969","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4339716028,5276489.391515131],[516734.5889388699,5276489.289440222],[516734.5867034031,5276490.067411804],[516731.4314172638,5276490.280625509],[516731.4339716028,5276489.391515131]]]},"properties":{"id_build":1856,"id_source":"w145339973","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.3686753498,5276137.719861718],[517221.0826810887,5276134.393694421],[517224.60455288953,5276137.293740729],[517221.81543128873,5276140.6196843],[517227.0308250631,5276144.9028721005],[517224.1218502096,5276148.117320398],[517218.4941124783,5276143.566180893],[517221.3059296345,5276140.1847329885],[517218.3686753498,5276137.719861718]]]},"properties":{"id_build":1857,"id_source":"w145339979","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.2222799789,5276501.201554797],[516778.6446389925,5276501.308149067],[516778.7290351847,5276498.085340308],[516780.30635681783,5276498.089884855],[516780.2222799789,5276501.201554797]]]},"properties":{"id_build":1858,"id_source":"w145339983","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516587.5171980766,5276226.912474267],[516583.61095127114,5276227.012490365],[516583.4664191426,5276225.011565078],[516587.14795809815,5276224.688629619],[516587.5171980766,5276226.912474267]]]},"properties":{"id_build":1859,"id_source":"w145339984","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.9072451642,5276330.367395415],[516774.70544169203,5276330.363933855],[516774.67258220195,5276315.69340019],[516775.9495016069,5276315.697078091],[516775.9431951581,5276317.886511791],[516775.9072451642,5276330.367395415]]]},"properties":{"id_build":1860,"id_source":"w145339986","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.05321620224,5276303.427859214],[516722.05672624183,5276302.205332804],[516724.6853648431,5276302.324020259],[516724.83243143687,5276303.424725417],[516722.05321620224,5276303.427859214]]]},"properties":{"id_build":1861,"id_source":"w145339987","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516991.6556098473,5276168.062036567],[516992.1978955891,5276167.563490024],[516992.8606893995,5276166.95415543],[516993.6843584312,5276167.845676025],[516992.5540694681,5276169.064914876],[516991.6556098473,5276168.062036567]]]},"properties":{"id_build":1862,"id_source":"w145339994","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.56683235563,5276288.736152503],[516983.50144154794,5276285.401770694],[516984.85348100815,5276285.405713412],[516984.76864452,5276288.73965714],[516983.56683235563,5276288.736152503]]]},"properties":{"id_build":1863,"id_source":"w145340007","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516773.72267903294,5276384.708414491],[516772.5170459854,5276386.038618699],[516770.6462866736,5276383.588158045],[516771.14356226317,5276383.056119439],[516771.7764876937,5276382.36887593],[516773.72267903294,5276384.708414491]]]},"properties":{"id_build":1864,"id_source":"w145340021","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.8230419209,5276409.954123105],[517278.1073766196,5276408.966574099],[517277.5862104722,5276407.409071394],[517280.4427648834,5276406.639568106],[517280.2200676866,5276405.7497892985],[517282.1742926363,5276405.311028921],[517282.32253739156,5276405.978307359],[517285.8550990502,5276405.210812761],[517286.3759333175,5276406.879454983],[517290.7353842108,5276405.892138199],[517290.3647746608,5276404.223941571],[517293.52210952475,5276403.344197893],[517293.3017242322,5276401.676447153],[517295.1113385934,5276399.34788586],[517294.2864284072,5276398.900877229],[517296.9255754309,5276395.463382278],[517297.750155814,5276396.02153006],[517298.57935751625,5276395.023735101],[517300.0779640309,5276396.250723786],[517301.5100422443,5276394.587881566],[517300.91641029704,5276392.141043464],[517298.7668835222,5276382.465499843],[517297.7143243979,5276382.795792853],[517297.26992355456,5276380.682817669],[517298.3969349236,5276380.5750252195],[517297.6543963013,5276377.683186233],[517299.2327412356,5276377.354454929],[517298.2684971814,5276373.239420084],[517301.5006320538,5276372.471042597],[517301.27925733593,5276371.136707944],[517303.6844989838,5276370.588154815],[517304.0564277742,5276371.811797121],[517308.94235402066,5276370.603778608],[517313.46572034905,5276390.288960208],[517309.9324852835,5276391.278715618],[517311.41424251226,5276398.173784745],[517299.19759381923,5276414.47502896],[517294.1756740972,5276410.903642084],[517291.84556167206,5276411.452422145],[517292.8799653545,5276417.234760888],[517276.34453094134,5276420.853298491],[517273.8230419209,5276409.954123105]]]},"properties":{"id_build":1865,"id_source":"w145340023","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9984406455,5276239.670006835],[516922.8901305849,5276239.513586845],[516921.4445331818,5276238.097912695],[516921.3745855287,5276236.3194744475],[516918.3703509881,5276236.199607338],[516918.29071739805,5276237.7553316625],[516917.0092615154,5276239.30756512],[516912.7280921852,5276239.183992132],[516912.65523736336,5276238.405802752],[516911.0551497923,5276238.456726477],[516909.50013059477,5276238.507781486],[516909.4230807087,5276239.174395924],[516902.43748826644,5276239.154119204],[516902.551950971,5276225.5954096215],[516904.73025906255,5276225.601731601],[516904.886293561,5276223.601670147],[516937.6350705993,5276224.030233138],[516937.7237591556,5276219.362624146],[516952.8213805269,5276219.517688635],[516953.1079268353,5276224.297529346],[516955.58636827715,5276224.415883651],[516957.38910641416,5276224.42113199],[516973.83876799536,5276224.580187612],[516973.71830930945,5276240.139393686],[516966.05669285497,5276240.117070567],[516965.9844926524,5276239.116603001],[516964.47470327053,5276239.112205241],[516962.90482276503,5276239.107632861],[516962.97734718176,5276239.996961635],[516955.99175557034,5276239.976620678],[516955.94058441615,5276231.752134461],[516953.9879440763,5276231.635310514],[516954.0565877824,5276233.858304164],[516952.8515293902,5276234.966193396],[516948.11935036053,5276234.952421361],[516948.1229077757,5276233.729895107],[516946.6807842538,5276233.70347093],[516945.27621770423,5276233.677156378],[516945.11479224736,5276234.943679209],[516940.2327085595,5276234.818337765],[516939.1092315375,5276233.703673296],[516939.04122858046,5276231.258402337],[516937.4641577736,5276231.142676223],[516937.2142530602,5276239.588565974],[516929.77765462594,5276239.678084633],[516929.7885903656,5276238.500035701],[516928.48918438854,5276238.47403087],[516926.9268797258,5276238.447262269],[516926.9984406455,5276239.670006835]]]},"properties":{"id_build":1866,"id_source":"w145340026","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516954.2088142937,5276258.97631818],[516957.438700953,5276258.985721133],[516957.5057250184,5276261.764408699],[516959.1507130176,5276261.769198354],[516960.8858373497,5276261.774250959],[516960.9020197271,5276256.217313229],[516964.6580273955,5276256.117112622],[516964.7286089882,5276257.67327397],[516977.72294825397,5276257.8222775655],[516984.9888784794,5276264.734123623],[516984.7884149898,5276281.960192844],[516980.3570514915,5276281.836131963],[516980.4337465573,5276283.870212137],[516980.4969094137,5276285.393010226],[516983.50144154794,5276285.401770694],[516983.56683235563,5276288.736152503],[516983.293204752,5276305.295170807],[516983.2067489602,5276309.184808479],[516969.3866052065,5276308.92224619],[516969.53069093387,5276285.249908907],[516972.3098832135,5276285.258007053],[516972.32024698966,5276281.701566773],[516971.04364387254,5276281.586707079],[516970.97824578144,5276278.252325465],[516970.8480970048,5276271.3612847775],[516964.2377866972,5276271.453166949],[516960.93246981147,5276271.554680221],[516960.86091646,5276270.33193516],[516957.4808090943,5276270.322092901],[516957.47207233595,5276273.322839337],[516953.791189366,5276273.4232632015],[516937.1914385768,5276273.26382699],[516933.51120224,5276273.141986153],[516933.44449003175,5276270.2521600835],[516930.13917309424,5276270.353690837],[516930.1356194126,5276271.576217162],[516926.5301723737,5276271.565737842],[516923.52563317324,5276271.55700678],[516914.1847727111,5276280.754467255],[516904.1492584092,5276270.500479856],[516918.6104356445,5276256.983426885],[516926.6472751037,5276257.117917872],[516930.25240802416,5276257.239535998],[516930.3145991196,5276261.685304545],[516931.8243826313,5276261.689693462],[516933.61959785107,5276261.694912635],[516933.47777187184,5276258.804868231],[516937.2331309151,5276258.926927454],[516954.2088142937,5276258.97631818]]]},"properties":{"id_build":1867,"id_source":"w145340028","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516748.3165812212,5276312.616778243],[516748.3973510506,5276310.649838084],[516751.3267568965,5276310.658262813],[516751.3233365985,5276311.847447606],[516751.62155080226,5276312.62628313],[516748.3165812212,5276312.616778243]]]},"properties":{"id_build":1868,"id_source":"w145340039","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.1348096863,5276097.514587056],[517266.34193279874,5276095.739930126],[517269.58542074653,5276091.192818321],[517279.03056131356,5276097.778072674],[517274.50449966855,5276104.210750217],[517270.17945476674,5276101.119354857],[517265.1348096863,5276097.514587056]]]},"properties":{"id_build":1869,"id_source":"w145340040","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517282.5879415028,5276443.099774469],[517283.18322484725,5276444.990916969],[517283.11555875547,5276445.012944113],[517278.29670688824,5276446.4212346375],[517277.7014221085,5276444.530092634],[517282.5879415028,5276443.099774469]]]},"properties":{"id_build":1870,"id_source":"w145340047","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516413.1665898989,5276496.821332804],[516416.15785463195,5276501.497630539],[516409.00920531724,5276506.14535115],[516405.94313986314,5276501.357706669],[516405.9434529456,5276501.246567866],[516413.1665898989,5276496.821332804]]]},"properties":{"id_build":1871,"id_source":"w145340049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.26962416584,5276167.904067435],[516685.0874343887,5276167.898160603],[516685.1227927953,5276171.2880213335],[516683.9510342829,5276171.273550777],[516683.2674262466,5276171.293820569],[516683.26962416584,5276167.904067435]]]},"properties":{"id_build":1872,"id_source":"w145340050","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.74169116555,5276651.754134288],[517281.5887273293,5276653.262134636],[517280.86336554994,5276644.591077878],[517287.99302690936,5276643.989855934],[517297.31645791116,5276643.1951066535],[517297.38331389,5276645.973800211],[517297.74169116555,5276651.754134288]]]},"properties":{"id_build":1873,"id_source":"w145340055","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.7730003394,5276088.1511097625],[517252.0020650358,5276093.252365389],[517247.58010644733,5276089.905078621],[517248.7862383781,5276088.463834247],[517251.57540017384,5276085.137903768],[517255.7730003394,5276088.1511097625]]]},"properties":{"id_build":1874,"id_source":"w145340069","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516812.92877093604,5276099.414766988],[516813.7463813582,5276102.417897791],[516809.4622229198,5276103.294649536],[516809.3896731995,5276102.405322924],[516809.17074095143,5276100.181898022],[516809.02467911213,5276098.736661],[516812.4084146224,5276097.523890856],[516812.92877093604,5276099.414766988]]]},"properties":{"id_build":1875,"id_source":"w145340085","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516729.8442238768,5276310.674312818],[516732.7361051339,5276310.671506441],[516732.73268863297,5276311.860691237],[516732.7682015904,5276312.572087239],[516729.76368378376,5276312.563456083],[516729.8442238768,5276310.674312818]]]},"properties":{"id_build":1876,"id_source":"w145340087","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517013.7858695171,5276100.775992796],[517011.2247951925,5276103.213585201],[517003.9609640123,5276095.523737503],[517010.8143495687,5276089.431066938],[517014.3265361523,5276093.120048583],[517017.92859738466,5276096.89820672],[517013.7858695171,5276100.775992796]]]},"properties":{"id_build":1877,"id_source":"w145340098","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.0825711721,5276098.35610536],[516442.0806887805,5276099.022937746],[516442.07912012294,5276099.5786314085],[516442.0033769783,5276099.800696826],[516441.1019888168,5276099.798152392],[516441.1814965001,5276098.242422183],[516442.0825711721,5276098.35610536]]]},"properties":{"id_build":1878,"id_source":"w145340113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.7558953051,5276197.116372383],[516622.7528502893,5276198.1833043555],[516622.74923433375,5276199.450286076],[516622.07320472837,5276199.448356732],[516621.32206072134,5276199.446213108],[516621.4041527149,5276197.001375026],[516622.7558953051,5276197.116372383]]]},"properties":{"id_build":1879,"id_source":"w145340114","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516989.4338395002,5276182.948273253],[516991.4554499082,5276185.17696425],[516986.4839490272,5276189.941469646],[516979.520652989,5276182.25252747],[516981.72721480264,5276180.302902055],[516984.64173585724,5276177.7107317485],[516989.4338395002,5276182.948273253]]]},"properties":{"id_build":1880,"id_source":"w145340119","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.0753890971,5276411.912529097],[516995.22496380494,5276412.135245032],[517001.2377905388,5276410.8191176625],[517001.60686016694,5276413.0429896135],[516995.59468428924,5276414.136839036],[516995.0753890971,5276411.912529097]]]},"properties":{"id_build":1881,"id_source":"w145340120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3549554954,5276337.869753061],[516524.1063969395,5276337.760745317],[516524.5573879519,5276337.650885211],[516524.62903192913,5276338.873624824],[516523.5771402256,5276338.981780086],[516523.3549554954,5276337.869753061]]]},"properties":{"id_build":1882,"id_source":"w145340129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4731653695,5276345.021155147],[516730.64788536465,5276344.685365282],[516730.5807543637,5276341.906680221],[516732.0830056987,5276341.9109958345],[516731.9989530544,5276345.022665649],[516731.4731653695,5276345.021155147]]]},"properties":{"id_build":1883,"id_source":"w145340130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.6064899209,5276207.850306603],[516951.3462681769,5276210.177661411],[516951.3355939814,5276213.845240047],[516949.98353792785,5276213.841305152],[516949.8514216569,5276207.617098169],[516953.6064899209,5276207.850306603]]]},"properties":{"id_build":1884,"id_source":"w145340134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.97771007544,5276154.373845637],[517178.96044401976,5276153.829892636],[517181.6590108078,5276155.7272274615],[517182.2461604993,5276160.396827017],[517175.7839830609,5276161.15574498],[517174.97771007544,5276154.373845637]]]},"properties":{"id_build":1885,"id_source":"w145340135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.0653775792,5276503.5730968695],[517283.81971345947,5276503.863540947],[517280.97977823886,5276504.110734822],[517280.8345039249,5276502.443207164],[517280.90895487915,5276502.665707625],[517286.9942258277,5276502.239208389],[517287.0653775792,5276503.5730968695]]]},"properties":{"id_build":1886,"id_source":"w145340136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.4585400555,5276082.779420615],[516978.4601598776,5276082.223726995],[516979.73713057814,5276082.227449451],[516979.7309747853,5276084.339085201],[516978.37888865307,5276084.335143787],[516978.4585400555,5276082.779420615]]]},"properties":{"id_build":1887,"id_source":"w145340149","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516423.9007373334,5276286.130786277],[516423.75740559114,5276283.685309836],[516427.5888112573,5276283.473835986],[516427.7315144427,5276286.141590057],[516423.9755372062,5276286.2421368575],[516423.9007373334,5276286.130786277]]]},"properties":{"id_build":1888,"id_source":"w145340153","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.87330216554,5276219.409610847],[516955.6002806121,5276219.636917478],[516955.58636827715,5276224.415883651],[516953.1079268353,5276224.297529346],[516952.8213805269,5276219.517688635],[516953.87330216554,5276219.409610847]]]},"properties":{"id_build":1889,"id_source":"w145340160","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.8882106922,5276642.68990681],[517276.5242070212,5276638.79893405],[517280.80672521406,5276638.367081174],[517282.3843390052,5276638.26062298],[517282.6732300868,5276642.151373209],[517276.8882106922,5276642.68990681]]]},"properties":{"id_build":1890,"id_source":"w145340165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.2871814142,5276357.468266155],[516731.8880803421,5276357.469992431],[516731.9539333214,5276360.693232677],[516730.30178144167,5276360.577346772],[516730.3104013976,5276357.576599863],[516731.2871814142,5276357.468266155]]]},"properties":{"id_build":1891,"id_source":"w145340172","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516757.0142588361,5276083.027246647],[516757.3115250099,5276084.139498331],[516753.77852066775,5276085.018452144],[516753.62988728215,5276084.462326389],[516753.4809341958,5276084.017339367],[516757.0142588361,5276083.027246647]]]},"properties":{"id_build":1892,"id_source":"w145340179","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.78722865693,5276151.068237939],[516688.01416588476,5276150.5131898895],[516692.4402196184,5276152.526386621],[516691.0037983431,5276155.74532003],[516686.502631579,5276153.731909179],[516687.78722865693,5276151.068237939]]]},"properties":{"id_build":1893,"id_source":"w145340187","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.602525208,5276153.284771935],[516685.22726859554,5276153.172557282],[516686.4367501761,5276150.508670565],[516687.78722865693,5276151.068237939],[516686.502631579,5276153.731909179],[516685.602525208,5276153.284771935]]]},"properties":{"id_build":1894,"id_source":"w145340206","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516891.40163040214,5276470.181553619],[516894.7854905747,5276468.857692302],[516894.7690477847,5276474.525770717],[516868.8996856695,5276485.231335993],[516867.0351146534,5276480.669206731],[516891.40163040214,5276470.181553619]]]},"properties":{"id_build":1895,"id_source":"w145340215","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516582.1441115197,5276082.637920553],[516567.17296965956,5276090.708511004],[516567.09816997516,5276090.59715862],[516564.40854004986,5276085.4770861585],[516579.5299233754,5276077.406916271],[516582.1441115197,5276082.637920553]]]},"properties":{"id_build":1896,"id_source":"w145340229","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517116.2351705334,5276129.527912303],[517116.2345173363,5276129.750189761],[517113.0022730373,5276130.518670037],[517111.6678291365,5276124.513206233],[517114.9000765821,5276123.744725217],[517116.2351705334,5276129.527912303]]]},"properties":{"id_build":1897,"id_source":"w145340241","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.07978186005,5276401.674494142],[516528.8802568849,5276402.457581467],[516527.9738691112,5276404.233244021],[516526.99804703833,5276404.008195455],[516526.2478755474,5276403.672647679],[516526.6486801279,5276402.717983781],[516527.07978186005,5276401.674494142]]]},"properties":{"id_build":1898,"id_source":"w145340243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517061.40960443753,5276139.247374948],[517062.7314690056,5276139.306817014],[517064.5640191481,5276139.401097467],[517064.18202875915,5276141.589430156],[517062.0778275653,5276141.9166848585],[517060.50529232546,5276140.244983237],[517061.40960443753,5276139.247374948]]]},"properties":{"id_build":1899,"id_source":"w145340250","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517243.1927025778,5276633.032017121],[517243.62788869074,5276638.256875921],[517228.37752233335,5276639.323137448],[517227.80295472697,5276630.430254459],[517232.17554012645,5276630.020860213],[517242.90411369555,5276629.030130154],[517243.1927025778,5276633.032017121]]]},"properties":{"id_build":1900,"id_source":"w145340268","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.93384484365,5276174.652147025],[516683.9510342829,5276171.273550777],[516685.1227927953,5276171.2880213335],[516685.77629125695,5276171.289893432],[516690.2831772004,5276171.302806448],[516690.273495558,5276174.681424213],[516683.93384484365,5276174.652147025]]]},"properties":{"id_build":1901,"id_source":"w145340273","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.34793885244,5276367.849543001],[516708.573275547,5276367.850189461],[516710.97718584357,5276367.745946795],[516710.9746347262,5276368.635057004],[516708.3457069767,5276368.627514434],[516708.34793885244,5276367.849543001]]]},"properties":{"id_build":1902,"id_source":"w145340279","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516696.57362740434,5276204.218174295],[516694.17665807845,5276201.877370596],[516699.07311262505,5276197.001262104],[516699.44741018844,5276197.446893902],[516701.31953451777,5276199.452775766],[516696.57362740434,5276204.218174295]]]},"properties":{"id_build":1903,"id_source":"w145340283","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.5944334747,5276144.956409338],[517297.1189968445,5276145.69963347],[517296.53787112463,5276146.620367324],[517293.4419200097,5276144.488405841],[517289.4164521179,5276141.709076454],[517289.2662217863,5276141.708630512],[517290.47334323166,5276139.933978463],[517297.5944334747,5276144.956409338]]]},"properties":{"id_build":1904,"id_source":"w145340289","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.3367883923,5276090.071752278],[516381.7123674114,5276090.072808587],[516381.5549465512,5276092.628576871],[516380.12805945316,5276092.513424331],[516380.13493553037,5276090.068372255],[516381.3367883923,5276090.071752278]]]},"properties":{"id_build":1905,"id_source":"w145340294","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516404.51353591715,5276502.242797072],[516410.2719903253,5276511.150195136],[516405.0793563652,5276514.692035665],[516404.5529579529,5276514.912832251],[516398.49436977325,5276505.893455016],[516404.51353591715,5276502.242797072]]]},"properties":{"id_build":1906,"id_source":"w145340295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.92335913266,5276328.514374193],[516747.52198853117,5276327.729490667],[516749.1882124525,5276322.955275623],[516754.0654298941,5276324.747538632],[516752.1741839583,5276329.409965378],[516749.92335913266,5276328.514374193]]]},"properties":{"id_build":1907,"id_source":"w145340297","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516693.5826849343,5276356.693233713],[516693.749383969,5276361.4282622235],[516690.4895732481,5276361.3966915095],[516690.5027590644,5276356.795546235],[516693.5826849343,5276356.693233713]]]},"properties":{"id_build":1908,"id_source":"w145340302","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.92335913266,5276328.514374193],[516752.1741839583,5276329.409965378],[516754.72545896407,5276330.306421763],[516751.1689496699,5276339.409646108],[516746.4426080367,5276337.395539865],[516749.92335913266,5276328.514374193]]]},"properties":{"id_build":1909,"id_source":"w145340304","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516972.5909987635,5276188.789571483],[516975.023741673,5276186.551639461],[516977.41128810385,5276184.358032586],[516984.44969888194,5276192.04719131],[516979.5549440142,5276196.2562279655],[516977.3086374184,5276193.804606725],[516972.5909987635,5276188.789571483]]]},"properties":{"id_build":1910,"id_source":"w145340309","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516607.2630372961,5276361.892300015],[516607.1816497041,5276361.458623195],[516607.11503103614,5276361.113900226],[516608.1669203756,5276361.005760055],[516608.2394972642,5276361.895084454],[516607.26240347716,5276362.114577568],[516607.2630372961,5276361.892300015]]]},"properties":{"id_build":1911,"id_source":"w145340324","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.8643134391,5276333.893210595],[516687.78442411334,5276335.560076935],[516686.2821711685,5276335.555772751],[516686.287265812,5276333.777552421],[516687.8646318855,5276333.782071824],[516687.8643134391,5276333.893210595]]]},"properties":{"id_build":1912,"id_source":"w145340326","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516445.7912196681,5276647.063104779],[516443.15771078237,5276648.722764026],[516443.0829159876,5276648.611413126],[516437.8482142841,5276640.483436051],[516440.6322565662,5276638.71305967],[516445.7912196681,5276647.063104779]]]},"properties":{"id_build":1913,"id_source":"w145340333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.64095088927,5276338.90895429],[516732.0168332051,5276338.798894454],[516732.0830056987,5276341.9109958345],[516730.5807543637,5276341.906680221],[516730.4391492019,5276338.905501861],[516731.64095088927,5276338.90895429]]]},"properties":{"id_build":1914,"id_source":"w145340339","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516618.53180815093,5276150.64794562],[516618.60470344505,5276151.426131117],[516617.10224450956,5276151.477414261],[516615.82513065706,5276151.529340641],[516615.7525520465,5276150.640016443],[516618.45732732693,5276150.425453824],[516618.53180815093,5276150.64794562]]]},"properties":{"id_build":1915,"id_source":"w145340355","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.28058505175,5276627.536977323],[516691.30831061304,5276626.089374006],[516690.26124529104,5276624.53041678],[516690.6377454764,5276624.198076627],[516691.1647820996,5276623.755028219],[516693.3343394492,5276626.762019669],[516692.28058505175,5276627.536977323]]]},"properties":{"id_build":1916,"id_source":"w145340369","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516589.37717530894,5276101.3299749],[516587.4276495766,5276100.101886688],[516587.2026190347,5276099.990106209],[516584.2027383982,5276098.31446945],[516585.25973813154,5276096.428105398],[516583.3102098885,5276095.200018573],[516586.5566442332,5276089.430001715],[516587.681798964,5276089.988904057],[516590.4563355466,5276091.663900704],[516597.67568554915,5276088.794838018],[516598.28452993964,5276086.018082235],[516598.5887939902,5276084.68527374],[516605.2065956495,5276082.036785389],[516606.92253727745,5276086.15384392],[516607.7497624259,5276085.82278365],[516609.8381108678,5276091.052301263],[516607.05565754377,5276092.155763589],[516605.02943242167,5276091.483148973],[516603.88938914327,5276096.147763543],[516603.8884386868,5276096.481179734],[516603.3629453992,5276096.368542121],[516600.43691623467,5276095.137666045],[516597.95492958475,5276096.241989062],[516598.7755016371,5276098.244840841],[516594.8650519137,5276099.789653063],[516594.0438454785,5276098.009079294],[516591.7130424231,5276098.7804167885],[516590.86753621395,5276100.256165466],[516590.0522666272,5276101.665316617],[516589.37717530894,5276101.3299749]]]},"properties":{"id_build":1917,"id_source":"w145340372","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.6990603037,5276318.106877908],[516764.2996433993,5276318.219746285],[516764.15837483003,5276315.107428415],[516763.557471524,5276315.105698821],[516763.55971073743,5276314.327727456],[516764.2357270479,5276314.329673253],[516764.32203653856,5276310.440032653],[516766.0499548666,5276310.333866862],[516766.066911403,5276304.443512319],[516767.7948315431,5276304.337347046],[516768.2471097364,5276303.782950739],[516768.622995018,5276303.672893265],[516769.37188564526,5276304.453027267],[516775.4557226575,5276304.581687093],[516775.6656961372,5276309.916996853],[516776.942296667,5276310.031813734],[516776.939735526,5276310.920923857],[516777.5409594219,5276310.811516065],[516777.5332757224,5276313.478846442],[516776.93045138684,5276314.143948064],[516776.85117662314,5276315.588535656],[516775.9495016069,5276315.697078091],[516774.67258220195,5276315.69340019],[516774.70544169203,5276330.363933855],[516775.9072451642,5276330.367395415],[516776.5829394791,5276330.480481418],[516776.65453066165,5276331.703224242],[516777.40213596914,5276332.9279144],[516777.4714858602,5276334.928628626],[516776.7181182932,5276335.704436307],[516776.49278034765,5276335.703787214],[516776.5637312007,5276337.148807586],[516775.66237964673,5276337.146211291],[516774.53569020407,5276337.142966115],[516774.4484138466,5276341.366023054],[516765.7356750666,5276341.229795739],[516765.7334355444,5276342.007767135],[516764.1557517447,5276342.114365408],[516764.0096853021,5276340.6691289805],[516763.25855946384,5276340.666967007],[516763.26047877286,5276340.000134384],[516764.0867172879,5276340.002512559],[516764.0212016595,5276336.668133246],[516763.3455078276,5276336.555048697],[516763.3477470282,5276335.777077305],[516763.9483283066,5276335.889945653],[516764.03623689426,5276331.444611073],[516763.4353352731,5276331.442881487],[516763.43661482143,5276330.998326408],[516764.1877419052,5276331.0004883995],[516764.047433339,5276327.554754161],[516763.2959859256,5276327.663730957],[516763.29854499677,5276326.774620808],[516764.12510529003,5276326.665860219],[516764.1462186595,5276319.33070155],[516763.6952216137,5276319.440543113],[516763.6990603037,5276318.106877908]]]},"properties":{"id_build":1918,"id_source":"w145340383","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.5287825823,5276258.6596976705],[517119.54896461684,5276259.459962929],[517119.5616352829,5276260.260206107],[517116.4291682031,5276260.328797342],[517116.3540545731,5276260.328576597],[517110.59992598876,5276260.456150854],[517110.5800692339,5276259.544746875],[517110.5599512653,5276258.722253901],[517105.84245490126,5276258.83065043],[517105.5269449322,5276258.840837764],[517105.5596709144,5276260.485801613],[517097.36415416386,5276260.672903061],[517097.4106327723,5276262.751352106],[517094.3007014358,5276262.820021387],[517094.44703192986,5276269.266554164],[517093.38032216474,5276269.296765335],[517093.5186854602,5276275.898870366],[517093.72903568053,5276275.888373753],[517093.8144185443,5276280.067477592],[517090.1410809719,5276280.15672345],[517090.2407389143,5276284.591490481],[517102.6578513906,5276284.327862457],[517102.5853110656,5276280.893432232],[517100.72984778613,5276280.943553906],[517100.6765771185,5276278.6205774555],[517100.63078511204,5276276.308736943],[517100.9613168107,5276276.298593455],[517100.80882032344,5276269.396369477],[517099.84726946254,5276269.4268882265],[517099.8413243492,5276268.893400149],[517098.39153553406,5276268.922485707],[517098.37824207183,5276268.333406205],[517099.89563320804,5276268.304519119],[517106.03286539036,5276268.166945534],[517105.9863572737,5276266.099610271],[517107.87183811486,5276266.0606923895],[517110.34327002993,5276266.001268536],[517110.38941744785,5276268.190856464],[517116.9247844338,5276268.043350028],[517116.87818219565,5276266.0093562985],[517119.09419548017,5276265.960299484],[517121.2350952455,5276265.911022707],[517121.28169596446,5276267.94501648],[517127.65932514274,5276267.797058391],[517127.61942093424,5276266.04093354],[517129.72276397963,5276265.991549437],[517131.93877740443,5276265.942497513],[517131.9847205577,5276268.198768888],[517138.87312181346,5276268.052325533],[517138.86652618414,5276267.741114915],[517140.7895635389,5276267.702318208],[517143.31354193174,5276267.6541769635],[517143.3669920102,5276269.910470553],[517146.76238433504,5276269.831553913],[517146.6040010445,5276262.395840545],[517143.68185280694,5276262.465036295],[517143.6418225226,5276260.753366837],[517138.8191679673,5276260.861427125],[517138.8127358465,5276260.494647133],[517132.26984834264,5276260.64210694],[517132.22325138265,5276258.608113093],[517127.23534527945,5276258.715696891],[517127.2750862642,5276260.527391098],[517121.71625300904,5276260.655528674],[517121.6696850367,5276258.610421046],[517119.5287825823,5276258.6596976705]]]},"properties":{"id_build":1919,"id_source":"w145340387","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516737.28923768434,5276568.984380702],[516728.8021678025,5276568.848855382],[516728.8238767993,5276561.291416276],[516731.03948633175,5276561.342236997],[516734.1563487923,5276561.41787614],[516734.0837938576,5276560.528549838],[516737.3138324016,5276560.42669231],[516737.28923768434,5276568.984380702]]]},"properties":{"id_build":1920,"id_source":"w145340394","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.4609051296,5276170.539146926],[516656.5151910728,5276167.316252298],[516656.5693817131,5276164.126699312],[516656.64272719366,5276159.49238568],[516662.9746603319,5276159.5994087495],[516662.79285805457,5276170.635055953],[516659.73578214174,5276170.592969052],[516656.4609051296,5276170.539146926]]]},"properties":{"id_build":1921,"id_source":"w145340401","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.3148455045,5276546.247690347],[516646.42158587504,5276542.450507434],[516651.1289310974,5276553.689076037],[516640.23997561546,5276558.225795059],[516638.5017615793,5276554.075317246],[516640.27651291183,5276553.324637939],[516639.0903319225,5276550.498299969],[516637.3148455045,5276546.247690347]]]},"properties":{"id_build":1922,"id_source":"w145340409","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516989.3905898614,5276146.2720515635],[516986.9577274637,5276148.543319115],[516984.64537511393,5276150.70379942],[516983.61915087374,5276149.722777767],[516978.16778319434,5276143.872051493],[516977.60594231787,5276143.348057285],[516982.35148166993,5276138.80516501],[516989.3905898614,5276146.2720515635]]]},"properties":{"id_build":1923,"id_source":"w145340410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.2304757219,5276104.453664931],[517022.7714930366,5276110.471398941],[517021.60418129235,5276111.501586479],[517020.5121803587,5276112.465310521],[517021.33520338085,5276113.579112401],[517019.07621713716,5276115.4618858155],[517012.7866420573,5276108.552851367],[517017.2304757219,5276104.453664931]]]},"properties":{"id_build":1924,"id_source":"w145340420","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.10789369897,5276229.618760244],[517180.6144075908,5276229.743191536],[517180.68525971565,5276231.188216824],[517185.6424563575,5276231.313981463],[517185.47255250544,5276237.98186308],[517176.1587540177,5276237.843249116],[517176.10789369897,5276229.618760244]]]},"properties":{"id_build":1925,"id_source":"w145340422","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.22741933283,5276585.004929495],[517241.15734584,5276584.791323317],[517241.08684278186,5276583.235157635],[517250.92815868335,5276582.597462598],[517251.4315376739,5276590.15645906],[517244.0617935659,5276590.645875364],[517238.5852016031,5276591.007536846],[517238.22741933283,5276585.004929495]]]},"properties":{"id_build":1926,"id_source":"w145340425","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.3783753412,5276156.468280295],[517242.20892421016,5276153.461085539],[517250.0380015535,5276147.705002463],[517252.76106359,5276151.469589962],[517256.3967712376,5276156.503875327],[517249.62259938294,5276161.151676908],[517245.5074034312,5276155.693645137],[517244.3783753412,5276156.468280295]]]},"properties":{"id_build":1927,"id_source":"w145340431","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.7946397715,5276171.213987815],[516670.9564024517,5276171.15854472],[516671.0134957539,5276166.957629282],[516673.7776575393,5276166.987769591],[516673.75840305723,5276168.465871847],[516674.8324810868,5276168.491174663],[516674.7946397715,5276171.213987815]]]},"properties":{"id_build":1928,"id_source":"w145340432","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517009.42587351566,5276153.33232682],[517015.26666230743,5276159.573209172],[517010.37055960734,5276164.226774787],[517003.40661502886,5276156.760081832],[517005.4405597949,5276154.765505598],[517006.86385041283,5276156.103337493],[517007.7907178029,5276155.094672805],[517009.42587351566,5276153.33232682]]]},"properties":{"id_build":1929,"id_source":"w145340433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516449.02716880164,5276644.849449745],[516449.9243914492,5276646.296800355],[516446.61396191345,5276648.287965118],[516440.6322565662,5276638.71305967],[516452.746741257,5276630.967492996],[516457.98111680715,5276639.2066221945],[516451.75096850976,5276643.13447836],[516449.02716880164,5276644.849449745]]]},"properties":{"id_build":1930,"id_source":"w145340437","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516902.00847877923,5276179.915423455],[516902.08520602505,5276179.359947726],[516904.26385396696,5276179.255130748],[516904.33735583565,5276179.811042461],[516904.2580479067,5276181.255628094],[516902.07972323184,5276181.249306332],[516902.00847877923,5276179.915423455]]]},"properties":{"id_build":1931,"id_source":"w145340443","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.4484841748,5276239.444541673],[517036.4449082128,5276240.667067926],[517034.74733448087,5276240.662102672],[517033.36523905344,5276240.658060529],[517033.3684893389,5276239.546673024],[517033.22118677676,5276238.545984924],[517036.45108487236,5276238.555431668],[517036.4484841748,5276239.444541673]]]},"properties":{"id_build":1932,"id_source":"w145340448","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516469.43851244403,5276598.228459754],[516468.390754303,5276596.891820274],[516466.1255344864,5276598.452484897],[516462.44549766544,5276600.987180204],[516457.0596187109,5276593.192178321],[516465.71541564056,5276586.7705422],[516472.5242790568,5276596.014393047],[516469.43851244403,5276598.228459754]]]},"properties":{"id_build":1933,"id_source":"w145340450","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.11479224736,5276234.943679209],[516945.27621770423,5276233.677156378],[516946.6807842538,5276233.70347093],[516948.1229077757,5276233.729895107],[516948.11935036053,5276234.952421361],[516947.4433247865,5276234.950454241],[516945.41557140806,5276234.833414604],[516945.11479224736,5276234.943679209]]]},"properties":{"id_build":1934,"id_source":"w145340453","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516621.9299621588,5276591.77104321],[516622.3780804312,5276592.661440021],[516618.6929660211,5276594.318018653],[516614.43995465164,5276584.414448492],[516625.570111478,5276579.556064796],[516629.52584367,5276588.347396985],[516625.59251457104,5276590.125516184],[516621.9299621588,5276591.77104321]]]},"properties":{"id_build":1935,"id_source":"w145340467","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516370.72102513135,5276633.181406043],[516369.6732507774,5276631.844784289],[516367.4748256748,5276633.705752115],[516361.69266892783,5276638.601878852],[516356.07699429436,5276632.362280622],[516366.7686823321,5276623.056583985],[516373.582346478,5276630.6332370285],[516370.72102513135,5276633.181406043]]]},"properties":{"id_build":1936,"id_source":"w145340468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516322.8110251639,5276683.282069103],[516320.5110425571,5276689.232711249],[516318.04464360344,5276695.605218914],[516308.6670381053,5276691.689059537],[516314.5678098391,5276676.590587439],[516325.44697643135,5276680.73324478],[516324.1614141939,5276683.841552836],[516322.8110251639,5276683.282069103]]]},"properties":{"id_build":1937,"id_source":"w145340470","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516647.0248967697,5276441.748543914],[516648.44207499037,5276453.111072135],[516636.6228082623,5276454.577683124],[516635.46256034327,5276445.294204096],[516638.53572096926,5276444.913994131],[516641.0378460404,5276444.598837925],[516640.77338390547,5276442.51976993],[516647.0248967697,5276441.748543914]]]},"properties":{"id_build":1938,"id_source":"w145340476","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.38060234755,5276529.060900982],[516411.26403018396,5276532.269531371],[516409.0207477234,5276528.706740211],[516408.79635669896,5276528.372688906],[516412.55875493673,5276525.938217702],[516413.83813393896,5276525.052705867],[516416.38060234755,5276529.060900982]]]},"properties":{"id_build":1939,"id_source":"w145340479","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517085.797206348,5276339.826007755],[517085.7048137286,5276345.716142109],[517079.6958114312,5276345.69851712],[517079.6334098588,5276341.363884887],[517080.9857623297,5276341.256711185],[517081.0651122526,5276339.812127493],[517085.797206348,5276339.826007755]]]},"properties":{"id_build":1940,"id_source":"w145340489","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517192.86877385166,5276302.464730587],[517187.97884610214,5276302.4725256525],[517176.86952180817,5276302.473093067],[517164.1752787014,5276302.480124605],[517160.8702700485,5276302.4814995015],[517160.89744987444,5276293.256982466],[517166.75628006837,5276293.2742483085],[517166.75922828045,5276292.273999484],[517193.04885542335,5276292.351546981],[517192.86877385166,5276302.464730587]]]},"properties":{"id_build":1941,"id_source":"w145340490","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.6411216746,5276083.422964819],[516847.14434509614,5276086.399153117],[516845.2061180089,5276081.281123165],[516848.81521911523,5276080.069025887],[516848.5179701768,5276078.956769501],[516853.4053313475,5276077.303814135],[516855.6411216746,5276083.422964819]]]},"properties":{"id_build":1942,"id_source":"w145340493","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517165.4230368867,5276082.993995874],[517157.2563537128,5276075.8569940375],[517162.98514710827,5276069.094351078],[517166.3565277291,5276072.105057747],[517165.2258565024,5276073.435401758],[517167.2338236632,5276075.186212679],[517169.94604533445,5276077.561482526],[517165.4230368867,5276082.993995874]]]},"properties":{"id_build":1943,"id_source":"w145340496","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516599.9990412304,5276644.055299111],[516595.9727778566,5276646.833430877],[516593.7526714116,5276648.371946675],[516594.6501743543,5276649.7081808485],[516591.9405653751,5276651.70097537],[516585.73219303205,5276642.68097242],[516594.9128709823,5276636.594441548],[516599.9990412304,5276644.055299111]]]},"properties":{"id_build":1944,"id_source":"w145340497","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516544.49005647266,5276565.877255409],[516544.9372413556,5276567.101062633],[516541.3281897649,5276568.424487083],[516537.90218211926,5276558.189903903],[516548.4279717261,5276554.552193621],[516551.5573147579,5276563.452263346],[516546.96359619836,5276565.028507214],[516544.49005647266,5276565.877255409]]]},"properties":{"id_build":1945,"id_source":"w145340504","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516893.52116676624,5276179.668520778],[516893.5227785363,5276179.11282707],[516894.7095903427,5276179.116269494],[516896.0015626882,5276179.120017219],[516896.0744205412,5276179.8982063085],[516895.92064482084,5276181.120296669],[516893.36674687365,5276181.112888685],[516893.52116676624,5276179.668520778]]]},"properties":{"id_build":1946,"id_source":"w145340519","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.621782191,5276118.423359291],[517009.8396076474,5276114.545786709],[517016.42899196286,5276121.677973303],[517014.0948950421,5276123.560529213],[517012.9714104429,5276122.445850707],[517011.81919082504,5276123.453856356],[517010.9381010668,5276124.218146787],[517005.621782191,5276118.423359291]]]},"properties":{"id_build":1947,"id_source":"w145340522","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.784861146,5276360.907147859],[516674.3981628508,5276364.795929754],[516676.0503145649,5276364.911799802],[516676.04745055793,5276365.912048787],[516670.9394990607,5276366.008565147],[516669.97290106723,5276362.560468145],[516674.784861146,5276360.907147859]]]},"properties":{"id_build":1948,"id_source":"w145340523","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.7767123757,5276627.988929125],[516383.1246074021,5276629.437537065],[516380.564654364,5276631.653129974],[516372.7773966973,5276623.073474082],[516383.24348870275,5276613.878313064],[516389.68284872785,5276621.009373074],[516384.954217694,5276625.186033792],[516381.7767123757,5276627.988929125]]]},"properties":{"id_build":1949,"id_source":"w145340524","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516639.94080895506,5276623.497299625],[516640.98788788903,5276625.056247772],[516637.7518542983,5276627.26979626],[516632.2936640596,5276618.585306245],[516643.8075746186,5276610.838420515],[516648.4443221011,5276617.853476952],[516641.70172446046,5276622.324250274],[516639.94080895506,5276623.497299625]]]},"properties":{"id_build":1950,"id_source":"w145340527","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.81973907386,5276440.717592876],[516578.417149331,5276441.9418300325],[516574.80611490225,5276443.932066418],[516569.3523999701,5276433.580556692],[516579.808701351,5276428.053330167],[516584.51540411345,5276436.957906413],[516580.27983321535,5276439.335349909],[516577.81973907386,5276440.717592876]]]},"properties":{"id_build":1951,"id_source":"w145340528","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.9169899081,5276508.031454986],[516605.63048986107,5276507.6918074],[516606.77812675084,5276513.507686415],[516595.90351498465,5276515.63279754],[516593.6527143329,5276504.2012223415],[516602.8138767127,5276502.40464103],[516603.45057488646,5276505.651735554],[516603.9169899081,5276508.031454986]]]},"properties":{"id_build":1952,"id_source":"w145340530","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.66246391216,5276557.847549606],[516582.25089449476,5276559.583004556],[516578.94290138874,5276560.684983556],[516575.1740434486,5276549.538056626],[516588.6316921884,5276545.019646379],[516591.8120678301,5276554.4422399],[516585.03061028343,5276556.723515508],[516581.66246391216,5276557.847549606]]]},"properties":{"id_build":1953,"id_source":"w145340532","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516586.808469918,5276467.850157522],[516596.30816161464,5276465.887820409],[516597.18243530806,5276470.113620383],[516597.85672740196,5276473.349707263],[516599.45757087204,5276473.009736765],[516600.1318613543,5276476.245823928],[516589.0238959238,5276478.525878567],[516586.808469918,5276467.850157522]]]},"properties":{"id_build":1954,"id_source":"w145340537","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517072.11273681733,5276201.050178222],[517073.1343577337,5276201.030944892],[517073.152363656,5276202.575839484],[517073.16364001244,5276203.853979074],[517071.8115815715,5276203.850015905],[517071.0604379927,5276203.847814279],[517071.0685815919,5276201.069345686],[517072.11273681733,5276201.050178222]]]},"properties":{"id_build":1955,"id_source":"w145340538","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516902.26417144487,5276143.573492026],[516904.2977633999,5276141.690019322],[516904.3744913377,5276141.134543652],[516906.1018174619,5276141.250696784],[516906.08955903805,5276145.473968713],[516904.21297161677,5276145.023963365],[516902.26417144487,5276143.573492026]]]},"properties":{"id_build":1956,"id_source":"w145340543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.18131284905,5276702.787586663],[516462.38429603167,5276702.346428362],[516465.5919392864,5276710.13527778],[516461.6065129049,5276711.791106389],[516459.965136244,5276707.89657639],[516462.89748382807,5276706.793468139],[516461.18131284905,5276702.787586663]]]},"properties":{"id_build":1957,"id_source":"w145340545","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.35219286405,5276371.319063318],[517250.2082228702,5276369.206981718],[517250.0616193538,5276367.984010293],[517250.66482164396,5276367.2078187],[517254.0392759008,5276369.10719035],[517251.92658622627,5276372.32398446],[517250.35219286405,5276371.319063318]]]},"properties":{"id_build":1958,"id_source":"w145340546","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.767048109,5276496.827697093],[516643.8213333498,5276495.642143292],[516645.24028268276,5276506.382294427],[516634.59303786984,5276507.7855751775],[516634.1666031033,5276504.561305642],[516635.7595481711,5276504.354690229],[516635.164042102,5276499.840717091],[516634.767048109,5276496.827697093]]]},"properties":{"id_build":1959,"id_source":"w145340550","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516511.90918057266,5276639.3592777075],[516514.9989104654,5276643.6913741],[516516.9216065666,5276646.375294232],[516518.05075795477,5276645.489379101],[516520.0704942264,5276648.38474101],[516510.58821910666,5276654.915093283],[516503.48031075724,5276645.225790053],[516511.90918057266,5276639.3592777075]]]},"properties":{"id_build":1960,"id_source":"w145340552","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516495.5454952477,5276582.742790266],[516496.21612850693,5276584.634064899],[516493.1338091251,5276585.625592071],[516489.10936832166,5276574.500225283],[516499.4097687763,5276570.861788465],[516502.83867076685,5276580.096099726],[516498.0341999059,5276581.838494438],[516495.5454952477,5276582.742790266]]]},"properties":{"id_build":1961,"id_source":"w145340556","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.23779169226,5276074.14962475],[516483.46037286695,5276073.144337894],[516484.21530751756,5276071.812798982],[516484.95028090815,5276072.226095653],[516486.8979953117,5276068.797394286],[516487.9479845124,5276069.378292434],[516485.8265905757,5276073.128806765],[516485.23779169226,5276074.14962475]]]},"properties":{"id_build":1962,"id_source":"w145340559","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516888.3047688973,5276217.107465006],[516888.3756937034,5276218.552486533],[516887.1719336831,5276219.215834311],[516888.2212760396,5276219.996854659],[516888.29381211754,5276220.88618245],[516886.19126084563,5276220.657806898],[516886.20221626206,5276216.879089453],[516886.2157494133,5276212.211262058],[516887.8682627871,5276212.216053325],[516887.1106756437,5276214.436650365],[516888.30960277066,5276215.440383791],[516888.3047688973,5276217.107465006]]]},"properties":{"id_build":1963,"id_source":"w145340565","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516504.7908608275,5276633.33755434],[516505.76948024565,5276632.562349935],[516507.5645308836,5276635.234791133],[516499.28650669503,5276640.879457674],[516492.47931235534,5276631.079880542],[516499.5537120139,5276626.098632408],[516502.9653553656,5276630.809509339],[516504.7908608275,5276633.33755434]]]},"properties":{"id_build":1964,"id_source":"w145340566","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.0620686216,5276530.281592197],[516644.6752617223,5276527.99735327],[516647.25102258334,5276538.696355962],[516636.05191398197,5276541.365049068],[516635.29480800836,5276538.206518514],[516636.87319815846,5276537.833152296],[516636.2125923293,5276535.07500028],[516635.0620686216,5276530.281592197]]]},"properties":{"id_build":1965,"id_source":"w145340568","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.1568574699,5276119.858054962],[516770.4361549446,5276114.829588012],[516772.44381893915,5276114.112961226],[516771.92971430375,5276112.655551376],[516773.06511089916,5276112.258718143],[516775.315226616,5276118.644614377],[516772.1568574699,5276119.858054962]]]},"properties":{"id_build":1966,"id_source":"w145340574","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.9445336778,5276653.68460539],[516545.7721501352,5276651.280656264],[516543.58422422805,5276646.784395544],[516552.53447092505,5276642.47537906],[516557.61247429444,5276652.825809069],[516546.7820009719,5276658.018592858],[516545.0639784064,5276654.679519835],[516546.9445336778,5276653.68460539]]]},"properties":{"id_build":1967,"id_source":"w145340577","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516378.4251916238,5276511.060544665],[516391.6696423066,5276502.206632659],[516395.33409937896,5276507.885071622],[516395.7077741339,5276508.552961716],[516382.3888465947,5276517.184375714],[516382.08934329805,5276516.850114159],[516378.4251916238,5276511.060544665]]]},"properties":{"id_build":1968,"id_source":"w145340578","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.90423365426,5276706.872470948],[516428.75231116137,5276709.76449622],[516417.96540999564,5276712.901556956],[516414.67716130393,5276701.711631405],[516424.0057958772,5276698.992782522],[516425.4490659283,5276703.898114885],[516426.4459500797,5276707.29068827],[516427.90423365426,5276706.872470948]]]},"properties":{"id_build":1969,"id_source":"w145340580","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516398.63051615073,5276617.589230991],[516399.45358546363,5276618.7029457595],[516396.89424733387,5276620.6962538315],[516389.93319861655,5276612.1189014185],[516401.0756331288,5276602.814536187],[516407.28840398724,5276610.389536268],[516402.41738884454,5276614.443528021],[516398.63051615073,5276617.589230991]]]},"properties":{"id_build":1970,"id_source":"w145340581","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516712.2172260661,5276137.1458017565],[516710.51089434116,5276132.328559187],[516707.44091584464,5276123.684201528],[516714.17037604237,5276121.391803953],[516715.32490508875,5276124.79599037],[516716.51663956384,5276128.322537435],[516714.6444501427,5276128.9506605035],[516712.9752637923,5276129.512682879],[516715.22476865764,5276136.13194728],[516712.2172260661,5276137.1458017565]]]},"properties":{"id_build":1971,"id_source":"w145340582","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.41007720213,5276390.0626334],[516578.4108721772,5276391.373254841],[516577.38366357936,5276382.812575481],[516581.629170566,5276382.235620999],[516585.3487041668,5276381.723855557],[516585.8656264011,5276384.837238713],[516589.7130391004,5276384.259156433],[516590.41007720213,5276390.0626334]]]},"properties":{"id_build":1972,"id_source":"w145340585","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516626.24756656075,5276421.183918006],[516626.99455716833,5276422.6308665555],[516623.98533774086,5276424.289371625],[516618.5323255602,5276413.715538436],[516628.4613410312,5276408.742592888],[516633.16830286797,5276417.536069537],[516629.06853333185,5276419.691586121],[516626.24756656075,5276421.183918006]]]},"properties":{"id_build":1973,"id_source":"w145340586","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.11756001617,5276193.169595673],[516840.6758714676,5276193.241234174],[516848.7654767111,5276193.342427871],[516855.9161828299,5276193.429801572],[516859.5065587247,5276193.473535201],[516863.5175435104,5276193.529602795],[516868.91811399756,5276193.600811544],[516873.2744320816,5276193.724569846],[516880.0420858773,5276193.799749511],[516885.9684573583,5276193.872497952],[516885.8862542609,5276196.317332554],[516870.96900753275,5276196.107394536],[516835.1856071729,5276195.614865164],[516835.11756001617,5276193.169595673]]]},"properties":{"id_build":1974,"id_source":"w145340587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516462.15769500594,5276676.227952937],[516458.6767520253,5276672.117058231],[516457.06729425857,5276670.212020538],[516455.7122039351,5276671.319588448],[516452.2688390424,5276667.197689855],[516461.2280966282,5276659.665507059],[516469.6861213402,5276670.0254151365],[516462.15769500594,5276676.227952937]]]},"properties":{"id_build":1975,"id_source":"w145340592","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516677.5002887559,5276149.705097958],[516680.14586579526,5276143.93341201],[516680.44568969874,5276144.156549947],[516687.797418264,5276147.511798322],[516686.9658987119,5276149.343220211],[516686.4367501761,5276150.508670565],[516685.22726859554,5276153.172557282],[516677.5002887559,5276149.705097958]]]},"properties":{"id_build":1976,"id_source":"w145340596","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.5128061236,5276110.9798362525],[516781.49778041063,5276110.649255088],[516781.94456705544,5276112.006446141],[516783.92199508904,5276111.356419976],[516785.8371545224,5276116.674414445],[516782.8293332421,5276117.77714347],[516780.5128061236,5276110.9798362525]]]},"properties":{"id_build":1977,"id_source":"w145340597","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.53803362144,5276140.862150645],[517025.728037038,5276139.776460164],[517026.7071985208,5276138.8679770585],[517025.60644878336,5276137.686678714],[517027.93377960473,5276135.548486336],[517034.6205075575,5276142.76989032],[517030.1240125398,5276146.902251577],[517024.53803362144,5276140.862150645]]]},"properties":{"id_build":1978,"id_source":"w145340600","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516421.1939280671,5276606.761119545],[516421.71781169414,5276607.429435014],[516419.00824275735,5276609.422309774],[516412.4227589521,5276600.845989404],[516423.26167947304,5276592.65220814],[516429.3232734794,5276600.560224479],[516424.302643282,5276604.391496499],[516421.1939280671,5276606.761119545]]]},"properties":{"id_build":1979,"id_source":"w145340601","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.79945962655,5276238.340730637],[516580.6568251824,5276235.67297286],[516582.91055957985,5276235.5682495665],[516582.98029413534,5276237.457822257],[516582.0038133147,5276237.455042103],[516582.07671230583,5276238.233227239],[516580.79945962655,5276238.340730637]]]},"properties":{"id_build":1980,"id_source":"w145340608","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.707091166,5276514.283912312],[517145.73062654276,5276510.579419049],[517142.3130507869,5276508.035371946],[517142.6908929682,5276507.258505815],[517140.2932463963,5276505.250933063],[517145.1944041167,5276498.819253892],[517155.9857694905,5276507.186515328],[517150.707091166,5276514.283912312]]]},"properties":{"id_build":1981,"id_source":"w145340614","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.98601893726,5276119.950240609],[516755.06880009937,5276119.564366495],[516755.5307431614,5276120.877143253],[516757.41796273424,5276120.24907654],[516759.36996549525,5276125.8227894725],[516756.4372693467,5276126.925748256],[516753.98601893726,5276119.950240609]]]},"properties":{"id_build":1982,"id_source":"w145340618","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516786.44589287025,5276108.751911492],[516788.8449769497,5276115.571686974],[516785.8371545224,5276116.674414445],[516783.92199508904,5276111.356419976],[516785.77907854127,5276110.761617485],[516785.22783551266,5276109.159617877],[516786.44589287025,5276108.751911492]]]},"properties":{"id_build":1983,"id_source":"w145340622","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.95172140555,5276561.945929143],[516655.6762102364,5276557.858704793],[516660.6057941624,5276567.541960992],[516650.2263630428,5276572.513563939],[516648.58221276436,5276569.619230738],[516650.3119584591,5276568.846197882],[516648.78117067565,5276565.707681375],[516646.95172140555,5276561.945929143]]]},"properties":{"id_build":1984,"id_source":"w145340628","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.3181013553,5276684.2172127785],[517037.31062291126,5276686.773405833],[517032.1278369931,5276686.8693850655],[517032.15709154936,5276676.866890558],[517039.8935671247,5276676.778382975],[517040.0219951673,5276684.225123962],[517037.3181013553,5276684.2172127785]]]},"properties":{"id_build":1985,"id_source":"w145340629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.06602898974,5276125.906039263],[517043.2285759874,5276132.570221365],[517038.25002914394,5276137.145724565],[517032.79883419385,5276131.25049168],[517034.0114732069,5276130.131527175],[517034.99814913067,5276129.223067437],[517034.28679633734,5276128.454123179],[517037.06602898974,5276125.906039263]]]},"properties":{"id_build":1986,"id_source":"w145340631","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516610.4459319329,5276431.030261574],[516611.2674025821,5276432.699699924],[516607.6573018895,5276434.356499586],[516602.50344844523,5276424.228093191],[516613.710914045,5276418.703068765],[516618.11807832675,5276427.273398719],[516613.7479517816,5276429.417040654],[516610.4459319329,5276431.030261574]]]},"properties":{"id_build":1987,"id_source":"w145340634","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.5511308796,5276096.03868152],[516642.9090684559,5276084.144905878],[516646.1396868999,5276083.931858513],[516646.0690177223,5276082.375701664],[516647.4249159009,5276081.045901218],[516650.9563176823,5276080.722576563],[516652.7559225661,5276081.839117774],[516652.82658996567,5276083.395274705],[516656.4331065415,5276083.072168132],[516656.7259423284,5276085.740356817],[516660.0313584137,5276085.638670695],[516660.0358088613,5276084.082728514],[516661.76728938636,5276082.754005676],[516664.69776368374,5276082.428970381],[516666.49577536643,5276084.101209477],[516666.5680291326,5276085.101672959],[516669.9488797384,5276084.889068674],[516670.244571995,5276086.557009514],[516683.6934939802,5276085.4841200765],[516683.54740062443,5276084.038886311],[516698.7994313817,5276082.860057046],[516713.1194628133,5276092.347998964],[516707.40906920965,5276092.887314506],[516707.19137282483,5276090.21933865],[516698.4005924749,5276090.9721073685],[516698.75641647953,5276097.86378528],[516693.12114538904,5276098.403330171],[516692.82673436945,5276096.290833208],[516685.16301936435,5276096.935712418],[516685.52554452856,5276101.493476219],[516647.28341170575,5276104.273680792],[516646.924986146,5276098.2711159345],[516643.6189423409,5276098.59508694],[516643.5511308796,5276096.03868152]]]},"properties":{"id_build":1988,"id_source":"w145340635","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.77629125695,5276171.289893432],[516685.1227927953,5276171.2880213335],[516685.0874343887,5276167.898160603],[516690.3456621367,5276167.846542259],[516690.38092193793,5276171.269744647],[516690.2831772004,5276171.302806448],[516685.77629125695,5276171.289893432]]]},"properties":{"id_build":1989,"id_source":"w145340637","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.19418965396,5276363.691821756],[516731.19514747756,5276363.358405428],[516730.21900696337,5276363.2444616],[516730.30178144167,5276360.577346772],[516731.9539333214,5276360.693232677],[516731.9453125097,5276363.6939795995],[516731.19418965396,5276363.691821756]]]},"properties":{"id_build":1990,"id_source":"w145340638","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.95738518384,5276135.399521269],[516990.4914795466,5276129.382031658],[516990.11687554425,5276129.047519895],[516994.7863480456,5276124.837834885],[517001.52434747043,5276132.526136721],[516999.17468524666,5276134.597590615],[516997.0057552777,5276136.51397731],[516995.95738518384,5276135.399521269]]]},"properties":{"id_build":1991,"id_source":"w145340639","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.1587732574,5276594.188236292],[516604.18672958843,5276597.83311204],[516604.78380104783,5276599.168491069],[516601.70020324615,5276600.6045160955],[516597.14926422323,5276589.810991536],[516607.978641518,5276585.0628568325],[516609.91940955404,5276589.302815153],[516612.1587732574,5276594.188236292]]]},"properties":{"id_build":1992,"id_source":"w145340643","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.4125223566,5276615.834214726],[517291.31449095363,5276615.614613164],[517291.2033911241,5276612.557938975],[517291.0364936441,5276608.056281839],[517300.051242635,5276607.5273556635],[517300.69519868016,5276618.309828695],[517290.4780621569,5276619.057463333],[517290.4125223566,5276615.834214726]]]},"properties":{"id_build":1993,"id_source":"w145340645","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517074.79789526836,5276555.960548177],[517081.81081693637,5276546.534234166],[517088.5563624077,5276551.444173118],[517086.0151493906,5276554.848707687],[517083.4286778503,5276558.319794461],[517081.5551709339,5276556.8694820795],[517079.6696031221,5276559.531306113],[517074.79789526836,5276555.960548177]]]},"properties":{"id_build":1994,"id_source":"w145340646","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517180.77885511704,5276097.598569968],[517171.63799912366,5276089.680696335],[517177.3667958312,5276082.918067365],[517182.7390338271,5276087.535096286],[517184.1101784657,5276088.717222082],[517184.863960156,5276087.830328471],[517187.26176451077,5276089.837917871],[517180.77885511704,5276097.598569968]]]},"properties":{"id_build":1995,"id_source":"w145340648","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516665.35302038875,5276588.449811899],[516674.15386499744,5276583.918274801],[516679.3068139802,5276594.269025407],[516668.7017683238,5276599.351089029],[516666.90932475316,5276595.789487632],[516668.6397013743,5276594.794182568],[516667.3250298434,5276592.256434069],[516665.35302038875,5276588.449811899]]]},"properties":{"id_build":1996,"id_source":"w145340650","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.4914795466,5276129.382031658],[516995.95738518384,5276135.399521269],[516994.66199815227,5276136.562708091],[516993.6226518662,5276137.504362862],[516994.37088550953,5276138.506803078],[516992.4127025693,5276140.279324806],[516985.97192019207,5276133.7032969715],[516990.4914795466,5276129.382031658]]]},"properties":{"id_build":1997,"id_source":"w145340668","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516378.9430712898,5276674.103937554],[516371.9361304754,5276681.864014206],[516372.98483263387,5276682.867219994],[516370.8001350197,5276685.195012014],[516362.4089466636,5276677.725068364],[516371.60089482693,5276667.526048989],[516375.4367859004,5276670.971051103],[516378.9430712898,5276674.103937554]]]},"properties":{"id_build":1998,"id_source":"w145340674","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.44848438265,5276545.287587381],[516611.323737317,5276544.617540836],[516609.5737059533,5276547.235446622],[516607.09951542615,5276550.94045705],[516598.8529516835,5276545.471100946],[516604.9628410731,5276536.375062266],[516614.40895237285,5276542.6258269185],[516612.44848438265,5276545.287587381]]]},"properties":{"id_build":1999,"id_source":"w145340677","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516744.9386395603,5276311.862429544],[516745.50198671845,5276311.864049237],[516745.5054697351,5276310.652636686],[516748.3973510506,5276310.649838084],[516748.3165812212,5276312.616778243],[516745.01193117234,5276312.496136464],[516744.9386395603,5276311.862429544]]]},"properties":{"id_build":2000,"id_source":"w145340678","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516587.93970311026,5276606.0111510465],[516588.61188657244,5276607.346742369],[516585.527980596,5276608.893914777],[516580.82648332237,5276598.211113891],[516590.9792144777,5276593.6833006255],[516592.8755280316,5276597.711961165],[516595.23479239433,5276602.697743179],[516587.93970311026,5276606.0111510465]]]},"properties":{"id_build":2001,"id_source":"w145340679","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.8472771201,5276513.44331253],[516643.6467330414,5276512.056979207],[516645.3363294047,5276522.708992377],[516634.8912453084,5276524.3462436665],[516634.374806668,5276521.07726106],[516636.02045140124,5276520.826340377],[516635.5481903408,5276517.868675062],[516634.8472771201,5276513.44331253]]]},"properties":{"id_build":2002,"id_source":"w145340680","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.95500866266,5276488.517840442],[516635.5074685124,5276484.793381957],[516635.0894006649,5276481.269059179],[516644.10580535734,5276480.2056511985],[516645.3603406367,5276490.656368965],[516634.66083882557,5276491.937246675],[516634.271958199,5276488.713084487],[516635.95500866266,5276488.517840442]]]},"properties":{"id_build":2003,"id_source":"w145340682","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516482.9520393269,5276281.963159623],[516482.9479504375,5276283.407963546],[516479.4924235492,5276283.509324858],[516479.1448436231,5276273.616912339],[516491.0888245886,5276273.317299966],[516491.290563267,5276281.653345188],[516485.8442172016,5276281.860205736],[516482.9520393269,5276281.963159623]]]},"properties":{"id_build":2004,"id_source":"w145340687","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517010.9381010668,5276124.218146787],[517011.7614488391,5276125.220808598],[517009.39614029496,5276127.50337807],[517007.16643058194,5276129.652976825],[517000.3533198008,5276121.964449243],[517004.94768991554,5276117.754553149],[517005.621782191,5276118.423359291],[517010.9381010668,5276124.218146787]]]},"properties":{"id_build":2005,"id_source":"w145340693","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516512.08596099174,5276577.010399696],[516512.60700080806,5276578.67897266],[516509.59946987143,5276579.781842904],[516505.6507959553,5276568.434400026],[516517.38019291,5276564.133206938],[516520.8074941019,5276573.923222807],[516515.22872252564,5276575.896800256],[516512.08596099174,5276577.010399696]]]},"properties":{"id_build":2006,"id_source":"w145340701","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517053.4785263166,5276179.90127443],[517053.3406623045,5276175.677562471],[517056.1202324226,5276175.574561743],[517060.46451580606,5276179.810593393],[517060.7568358448,5276182.589941981],[517056.2499579439,5276182.576742275],[517053.4785263166,5276179.90127443]]]},"properties":{"id_build":2007,"id_source":"w145340704","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.9600066232,5276293.363491201],[516426.9571854595,5276294.363740092],[516421.4739240063,5276294.348277347],[516421.2658189354,5276288.235009904],[516423.9007373334,5276286.130786277],[516423.9755372062,5276286.2421368575],[516427.7315144427,5276286.141590057],[516431.86274465726,5276286.153244015],[516431.78919915087,5276285.597338278],[516436.29662345775,5276285.387777441],[516436.2906642983,5276287.499413966],[516436.3500954807,5276293.056564195],[516436.2630639608,5276297.279625326],[516432.3571810303,5276297.2686039945],[516432.28144076833,5276297.490669604],[516431.83201620897,5276297.044843024],[516431.914968276,5276294.266585785],[516431.7669368122,5276293.488190592],[516426.9600066232,5276293.363491201]]]},"properties":{"id_build":2008,"id_source":"w145340708","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1336627775,5276657.691808532],[517200.4081818678,5276649.020762026],[517201.46003083343,5276648.912729059],[517205.51688148873,5276648.591294106],[517206.1633059086,5276658.595785208],[517201.20516026573,5276658.9145574225],[517201.1336627775,5276657.691808532]]]},"properties":{"id_build":2009,"id_source":"w145340709","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9984406455,5276239.670006835],[516926.9268797258,5276238.447262269],[516928.48918438854,5276238.47403087],[516929.7885903656,5276238.500035701],[516929.77765462594,5276239.678084633],[516929.25185738684,5276239.676556299],[516927.29889621126,5276239.670880047],[516926.9984406455,5276239.670006835]]]},"properties":{"id_build":2010,"id_source":"w145340710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.87743278395,5276586.696636637],[517015.7301783533,5276592.241505661],[517012.65718851046,5276590.00973252],[517011.67719546804,5276591.22940712],[517008.64956131426,5276588.8977428125],[517004.85749615886,5276585.985921202],[517010.0595237749,5276579.332727664],[517011.6259037933,5276580.5042704865],[517019.87743278395,5276586.696636637]]]},"properties":{"id_build":2011,"id_source":"w145340713","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.66606141155,5276135.731348239],[516724.8848492956,5276130.836088613],[516726.65194165247,5276130.185439086],[516726.092981248,5276128.65010673],[516727.43894981075,5276128.164957601],[516729.67386266513,5276134.62859023],[516726.66606141155,5276135.731348239]]]},"properties":{"id_build":2012,"id_source":"w145340718","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516606.53989781404,5276523.298415293],[516605.8033739656,5276523.451910734],[516606.3738633178,5276526.209802204],[516607.2479618423,5276530.491173529],[516598.1017058145,5276532.343360063],[516595.64231768524,5276520.311034842],[516605.517605199,5276518.305327457],[516606.53989781404,5276523.298415293]]]},"properties":{"id_build":2013,"id_source":"w145340719","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.9110310835,5276117.911203072],[516762.30234291696,5276124.830970901],[516759.36996549525,5276125.8227894725],[516757.41796273424,5276120.24907654],[516759.3879695881,5276119.565678823],[516758.9260272876,5276118.25290176],[516759.9110310835,5276117.911203072]]]},"properties":{"id_build":2014,"id_source":"w145340720","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.52273153834,5276607.654278189],[516572.3024503038,5276611.079058287],[516572.9740041878,5276612.63692545],[516569.13838228094,5276614.404246755],[516564.21248032857,5276603.387401706],[516575.41766787303,5276598.529135834],[516577.2537450183,5276602.613189684],[516579.52273153834,5276607.654278189]]]},"properties":{"id_build":2015,"id_source":"w145340725","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516507.2013660457,5276524.872031629],[516510.55769394356,5276533.217023379],[516497.2477809634,5276538.625149876],[516492.8455607688,5276528.276689207],[516499.4634410816,5276525.405802542],[516500.35846566875,5276527.631132276],[516503.3964121917,5276526.406089745],[516507.2013660457,5276524.872031629]]]},"properties":{"id_build":2016,"id_source":"w145340730","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.25894905085,5276691.800742965],[516547.12938696094,5276694.362271249],[516537.19587691745,5276701.113577762],[516531.13768947317,5276692.0940589635],[516539.3408798961,5276686.33808519],[516542.205650476,5276690.525076018],[516543.7539465021,5276692.796724836],[516545.25894905085,5276691.800742965]]]},"properties":{"id_build":2017,"id_source":"w145340731","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.33696618566,5276216.530062196],[516957.38910641416,5276224.42113199],[516955.58636827715,5276224.415883651],[516955.6002806121,5276219.636917478],[516953.87330216554,5276219.409610847],[516953.9571511145,5276216.409083314],[516957.33696618566,5276216.530062196]]]},"properties":{"id_build":2018,"id_source":"w145340736","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.17619177676,5276664.145831394],[516433.20417321083,5276662.587132395],[516430.24717574933,5276664.434822155],[516425.0780443309,5276667.676634144],[516419.39519100473,5276658.658291768],[516431.88640317426,5276650.469185152],[516438.61574423517,5276661.268729025],[516434.17619177676,5276664.145831394]]]},"properties":{"id_build":2019,"id_source":"w145340745","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516593.44312766456,5276488.12982429],[516602.9655119441,5276486.100878971],[516604.1959677301,5276491.850309523],[516605.4116207543,5276497.521900404],[516593.95023090445,5276499.956533404],[516593.0755478738,5276495.875214152],[516595.01457250724,5276495.469522175],[516593.44312766456,5276488.12982429]]]},"properties":{"id_build":2020,"id_source":"w145340761","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516745.77984305884,5276129.006751267],[516743.92439213005,5276123.811195295],[516745.75154912646,5276123.171838187],[516745.2672930913,5276121.781200305],[516746.5380216279,5276121.3402951285],[516748.77230879257,5276128.015098654],[516745.77984305884,5276129.006751267]]]},"properties":{"id_build":2021,"id_source":"w145340764","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516358.9090110873,5276693.719354116],[516360.33262889093,5276694.945890267],[516357.99741271965,5276697.38440394],[516349.3821496108,5276689.46929065],[516357.74443225376,5276680.490457033],[516361.3625717074,5276683.912610364],[516364.9357669719,5276687.290183801],[516358.9090110873,5276693.719354116]]]},"properties":{"id_build":2022,"id_source":"w145340768","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.4780101886,5276590.482740645],[516482.45034261665,5276591.930308711],[516479.3655135281,5276593.810953705],[516473.08462493203,5276583.790610337],[516482.5644564276,5276578.149308077],[516487.72309929744,5276586.610528368],[516483.18601232814,5276589.420633496],[516481.4780101886,5276590.482740645]]]},"properties":{"id_build":2023,"id_source":"w145340771","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516766.9063664702,5276114.597146554],[516768.06432898884,5276114.189263344],[516768.53378111025,5276115.502062747],[516770.4361549446,5276114.829588012],[516772.1568574699,5276119.858054962],[516769.2241558716,5276120.961007308],[516766.9063664702,5276114.597146554]]]},"properties":{"id_build":2024,"id_source":"w145340775","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.8946269752,5276150.011772415],[517055.8344825122,5276144.899170682],[517054.86124027136,5276143.784923953],[517055.53857822495,5276143.34234858],[517056.7365148534,5276144.679532798],[517056.796333061,5276149.903273276],[517055.8946269752,5276150.011772415]]]},"properties":{"id_build":2025,"id_source":"w145340776","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516678.300130347,5276132.703022092],[516683.01806694554,5276137.717817807],[516680.6824934411,5276140.156200781],[516676.93787267606,5276136.255590159],[516678.36888073257,5276134.926011889],[516677.2456526611,5276133.700259538],[516678.300130347,5276132.703022092]]]},"properties":{"id_build":2026,"id_source":"w145340777","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.26666230743,5276159.573209172],[517009.42587351566,5276153.33232682],[517008.2276033374,5276152.106291072],[517010.374321322,5276150.078703964],[517013.048274708,5276147.56364305],[517020.3113789418,5276155.47578037],[517015.56582329323,5276160.018641876],[517015.26666230743,5276159.573209172]]]},"properties":{"id_build":2027,"id_source":"w145340778","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516558.9441761684,5276501.45730691],[516562.3020241777,5276509.2466343045],[516551.5479702914,5276513.883928285],[516547.4437429604,5276504.425390849],[516551.7304091634,5276502.548197404],[516552.4764600002,5276504.328552963],[516554.82287623367,5276503.290509247],[516558.9441761684,5276501.45730691]]]},"properties":{"id_build":2028,"id_source":"w145340781","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.9577909081,5276663.1745154485],[516524.0869399849,5276662.288601468],[516526.4061547434,5276665.518234641],[516517.6759289262,5276671.717290536],[516510.79400854855,5276661.8063395005],[516518.09402760776,5276656.714613711],[516521.22180230345,5276660.868997949],[516522.9577909081,5276663.1745154485]]]},"properties":{"id_build":2029,"id_source":"w145340783","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517043.2285759874,5276132.570221365],[517037.06602898974,5276125.906039263],[517036.7742168642,5276125.51619682],[517039.3425111329,5276123.1786623895],[517041.5191666909,5276121.195630192],[517048.0324135952,5276128.661049143],[517043.43802069605,5276132.870911374],[517043.2285759874,5276132.570221365]]]},"properties":{"id_build":2030,"id_source":"w145340789","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.3364870518,5276699.455163351],[516580.8186451935,5276698.570265338],[516584.903970909,5276696.136824478],[516589.01528162544,5276703.039198399],[516576.3765905208,5276710.227291784],[516571.74172857526,5276702.545458724],[516578.6633630765,5276698.452989393],[516579.3364870518,5276699.455163351]]]},"properties":{"id_build":2031,"id_source":"w145340790","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.51576838526,5276076.65703624],[517271.670561467,5276071.971833312],[517275.74232184293,5276066.760342959],[517276.6566618438,5276067.463235031],[517277.6159394238,5276068.210716424],[517278.29462192,5276067.323612073],[517282.3419891116,5276070.3363914825],[517277.51576838526,5276076.65703624]]]},"properties":{"id_build":2032,"id_source":"w145340795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.53803362144,5276140.862150645],[517030.1240125398,5276146.902251577],[517030.55073870963,5276147.392513904],[517025.353828608,5276152.156327095],[517018.6155586762,5276144.579136055],[517020.6268809207,5276142.617840917],[517023.51200921426,5276139.814438729],[517024.53803362144,5276140.862150645]]]},"properties":{"id_build":2033,"id_source":"w145340796","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516487.04796895076,5276612.83758845],[516490.25033207156,5276617.192218178],[516492.2854600518,5276619.965360097],[516493.2637652643,5276619.301292427],[516495.1339347052,5276621.973942438],[516486.62994802126,5276627.840266286],[516479.52259554947,5276617.928715239],[516487.04796895076,5276612.83758845]]]},"properties":{"id_build":2034,"id_source":"w145340798","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.73532960116,5276127.239594564],[517238.0121524776,5276122.262862331],[517235.1431382534,5276122.121004389],[517229.24611871305,5276117.180069006],[517232.1784355163,5276113.698957105],[517239.1545859276,5276119.498864973],[517243.9489725602,5276113.756020617],[517250.49807233,5276119.17680285],[517247.61668252526,5276123.213754925],[517244.73532960116,5276127.239594564]]]},"properties":{"id_build":2035,"id_source":"w145340802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.4204377207,5276262.268975632],[517278.97888904467,5276259.51954745],[517276.685856254,5276255.144953765],[517285.036010884,5276250.946419266],[517290.2626302963,5276261.520207296],[517281.30959984456,5276266.3837838555],[517279.44231214473,5276262.821772299],[517280.4204377207,5276262.268975632]]]},"properties":{"id_build":2036,"id_source":"w145340803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.1870534222,5276183.618978079],[516683.1225049812,5276185.174748375],[516683.02568237786,5276187.508403829],[516673.03608265484,5276187.257519566],[516673.2060370855,5276180.367347473],[516683.87199878384,5276180.509029687],[516683.7128556694,5276183.620484187],[516683.1870534222,5276183.618978079]]]},"properties":{"id_build":2037,"id_source":"w145340804","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.8994838646,5276120.16548458],[516410.10444459214,5276120.082629203],[516406.41668455285,5276119.927758926],[516406.4961827375,5276118.372028213],[516410.70170795266,5276118.717294673],[516410.6287844529,5276117.939111888],[516411.98054930946,5276118.054060262],[516411.8994838646,5276120.16548458]]]},"properties":{"id_build":2038,"id_source":"w145340805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.87084797036,5276687.502018275],[516600.7571434927,5276694.292619408],[516591.5784497238,5276699.712308407],[516586.94454895373,5276691.697046845],[516590.10446955904,5276689.816672554],[516590.9268588121,5276691.152692287],[516592.8530134477,5276689.968984987],[516596.87084797036,5276687.502018275]]]},"properties":{"id_build":2039,"id_source":"w145340807","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516737.3138324016,5276560.42669231],[516740.54387106816,5276560.3248365745],[516740.6908958065,5276561.436656485],[516742.9818705536,5276561.398786612],[516746.0240066223,5276561.340849599],[516746.08665275556,5276565.675479162],[516743.1471504234,5276569.223498702],[516737.28923768434,5276568.984380702],[516737.3138324016,5276560.42669231]]]},"properties":{"id_build":2040,"id_source":"w145340810","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517063.6984623697,5276575.822033236],[517068.9447306069,5276579.727299153],[517070.44366309844,5276580.843090288],[517069.11632858904,5276582.68411984],[517065.4662444201,5276587.7191679785],[517063.6668750787,5276586.6024978],[517061.3293662733,5276589.707562672],[517056.2336463745,5276585.691604692],[517063.6984623697,5276575.822033236]]]},"properties":{"id_build":2041,"id_source":"w145340812","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516671.77373182547,5276460.301870441],[516677.75995424646,5276460.36346583],[516677.72045737127,5276463.664201936],[516677.7086496993,5276465.164554137],[516679.2108055493,5276465.191083946],[516679.1492195798,5276470.959058283],[516672.45671105385,5276470.984351197],[516671.65327894,5276470.893139448],[516671.77373182547,5276460.301870441]]]},"properties":{"id_build":2042,"id_source":"w145340818","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.87743278395,5276586.696636637],[517019.9525422027,5276586.696856147],[517025.00469240185,5276579.932098083],[517033.99702825956,5276587.071338014],[517030.1521479841,5276591.950242709],[517027.7535231078,5276590.276132468],[517026.62233341107,5276591.828781774],[517023.4897148157,5276589.4412328955],[517019.87743278395,5276586.696636637]]]},"properties":{"id_build":2043,"id_source":"w145340819","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.36916278093,5276185.204764847],[516886.3585295837,5276188.872343358],[516886.2689152814,5276193.873369042],[516885.9684573583,5276193.872497952],[516880.0420858773,5276193.799749511],[516873.2744320816,5276193.724569846],[516873.30450050905,5276191.123988522],[516873.37820191047,5276183.833439309],[516886.3727071771,5276183.98223868],[516886.36916278093,5276185.204764847]]]},"properties":{"id_build":2044,"id_source":"w145340823","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.8255744459,5276202.42274308],[516622.06495814346,5276202.3379641725],[516621.96460226394,5276208.550384411],[516621.8136069239,5276211.450698475],[516621.4383528619,5276211.338487916],[516615.57944157236,5276211.321770827],[516612.6503029235,5276211.202275749],[516612.8255744459,5276202.42274308]]]},"properties":{"id_build":2045,"id_source":"w145340828","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516765.7976703733,5276345.786701586],[516765.7334355444,5276342.007767135],[516765.7356750666,5276341.229795739],[516774.4484138466,5276341.366023054],[516774.35729642684,5276346.922745282],[516774.35697633075,5276347.033884055],[516765.7190386014,5276347.009011852],[516765.7976703733,5276345.786701586]]]},"properties":{"id_build":2046,"id_source":"w145340829","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516373.9193650266,5276697.762569255],[516373.0155696464,5276698.64914584],[516370.8436875874,5276696.420245568],[516376.86889120936,5276690.54678173],[516378.9021227548,5276688.663124815],[516388.41363867844,5276698.359039599],[516381.10847107467,5276705.340288143],[516376.5029638901,5276700.481643239],[516373.9193650266,5276697.762569255]]]},"properties":{"id_build":2047,"id_source":"w145340830","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517118.788082462,5276180.993093768],[517120.52094647364,5276179.219951966],[517124.2652438269,5276183.120848801],[517123.21102515334,5276184.006867009],[517125.38248664717,5276186.3471850185],[517121.76620511943,5276190.004163402],[517122.88965587306,5276191.118863092],[517120.78024206817,5276193.224316435],[517119.28317874676,5276191.441680793],[517113.8912613316,5276185.868850156],[517116.0006752742,5276183.763394343],[517117.27435754513,5276184.878534405],[517118.40434305865,5276183.770458411],[517117.2812166462,5276182.544620863],[517118.788082462,5276180.993093768]]]},"properties":{"id_build":2048,"id_source":"w145340832","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.16778319434,5276143.872051493],[516983.61915087374,5276149.722777767],[516982.21067567077,5276151.0301191835],[516980.88515163807,5276152.226563099],[516981.95586162416,5276153.407765401],[516979.7566391196,5276155.412981934],[516973.2494541728,5276148.425557603],[516978.16778319434,5276143.872051493]]]},"properties":{"id_build":2049,"id_source":"w145340833","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.4979184417,5276515.980232304],[516678.9300190825,5276516.025582875],[516678.88514644536,5276505.467181637],[516685.1193142669,5276505.485039049],[516685.1626258203,5276508.719328781],[516685.18073302176,5276510.26422267],[516686.6078305081,5276510.268311469],[516686.5161613529,5276516.04731395],[516682.4979184417,5276515.980232304]]]},"properties":{"id_build":2050,"id_source":"w145340837","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516562.6941762543,5276609.05120901],[516552.76682121475,5276613.579712032],[516553.3639027952,5276614.915085799],[516550.13010807586,5276616.350711133],[516548.8614660468,5276613.457473245],[516545.5775074416,5276606.112920895],[516558.51334604557,5276600.148142631],[516560.5365753596,5276604.455002734],[516562.6941762543,5276609.05120901]]]},"properties":{"id_build":2051,"id_source":"w145340842","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.7765466697,5276138.338035167],[516694.47558127705,5276139.517767079],[516692.1432681735,5276132.953843282],[516690.3311432628,5276133.593260249],[516688.93256656965,5276134.08938116],[516686.4064734528,5276126.991434225],[516692.95561269985,5276124.7096095625],[516696.00317309814,5276133.320553333],[516697.7765466697,5276138.338035167]]]},"properties":{"id_build":2052,"id_source":"w145340844","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516971.93300774373,5276595.0033363495],[516971.5658822164,5276592.112632766],[516970.82968680415,5276586.998058582],[516984.05412949633,5276585.258374974],[516985.4549525987,5276594.264780842],[516979.398613931,5276595.114010015],[516975.31098295155,5276595.680020333],[516975.16400389385,5276594.568194334],[516971.93300774373,5276595.0033363495]]]},"properties":{"id_build":2053,"id_source":"w145340846","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.5335728286,5276223.481661524],[517013.94130263606,5276224.997273456],[517015.22923882306,5276226.379168131],[517015.0621274216,5276232.1579442015],[517012.8090323254,5276232.040222791],[517006.8177615644,5276225.910042107],[517006.6749973252,5276223.353412243],[517012.1580023149,5276223.480564518],[517012.5335728286,5276223.481661524]]]},"properties":{"id_build":2054,"id_source":"w145340848","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516696.51532750734,5276434.166007302],[516696.5275943874,5276429.887163988],[516696.54432194214,5276424.052377692],[516706.75980560255,5276423.970533366],[516706.71723159426,5276428.338201481],[516706.7397202572,5276430.97227692],[516703.5850407293,5276430.963228191],[516703.65090820706,5276434.18646845],[516696.51532750734,5276434.166007302]]]},"properties":{"id_build":2055,"id_source":"w145340849","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516573.06146317127,5276238.763265674],[516572.84402751137,5276235.984155605],[516574.4217362683,5276235.877505467],[516574.3519989143,5276233.987932896],[516578.1831268961,5276233.887696793],[516578.55173698295,5276236.333818409],[516578.6208402384,5276238.44566855],[516573.06146317127,5276238.763265674]]]},"properties":{"id_build":2056,"id_source":"w145340850","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.23573725903,5276311.730889583],[516726.81410701777,5276311.732550609],[516726.8158944614,5276311.11017352],[516726.8171392883,5276310.676732333],[516729.8442238768,5276310.674312818],[516729.76368378376,5276312.563456083],[516726.30848830816,5276312.553532167],[516726.23573725903,5276311.730889583]]]},"properties":{"id_build":2057,"id_source":"w145340854","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.1944781963,5276526.806760082],[516519.38844864746,5276518.127066352],[516524.24669084116,5276515.984738782],[516534.8804160415,5276511.391508746],[516536.74618338863,5276515.620114875],[516534.3394977989,5276516.724678566],[516536.12983797805,5276521.064210095],[516523.1944781963,5276526.806760082]]]},"properties":{"id_build":2058,"id_source":"w145340856","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.4235602682,5276492.118323116],[516683.5201754362,5276492.121464474],[516683.5396495066,5276495.81135865],[516683.5505326919,5276497.256206069],[516684.5570142206,5276497.259089426],[516684.5857784996,5276502.949525065],[516676.864229345,5276502.994092675],[516676.82018012024,5276492.146730802],[516682.4235602682,5276492.118323116]]]},"properties":{"id_build":2059,"id_source":"w145340857","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517033.99702825956,5276587.071338014],[517039.0482189989,5276580.640008525],[517048.565651787,5276588.003086947],[517044.9464131702,5276592.77150274],[517044.7201093022,5276593.104259682],[517042.02267777367,5276590.873570176],[517040.8163750281,5276592.4259969415],[517037.8638299467,5276590.105651076],[517033.99702825956,5276587.071338014]]]},"properties":{"id_build":2060,"id_source":"w145340858","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.66606141155,5276135.731348239],[516723.26731119596,5276136.955238914],[516720.91227150214,5276130.469035964],[516719.1301887275,5276131.108530231],[516717.76916659105,5276131.604752032],[516715.32490508875,5276124.79599037],[516721.836692042,5276122.447407135],[516724.8848492956,5276130.836088613],[516726.66606141155,5276135.731348239]]]},"properties":{"id_build":2061,"id_source":"w145340860","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.5852016031,5276591.007536846],[517228.63874826353,5276591.644941628],[517223.56036934437,5276591.963339397],[517223.13370724954,5276583.848873494],[517233.95111420663,5276583.32517637],[517234.0987019883,5276584.21473138],[517238.15527063305,5276584.004457892],[517238.22741933283,5276585.004929495],[517238.5852016031,5276591.007536846]]]},"properties":{"id_build":2062,"id_source":"w145340861","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516966.02005650825,5276082.498668978],[516951.6799746239,5276082.612512055],[516951.62549494975,5276075.5216429],[516957.6349374579,5276075.4835657105],[516960.6096285297,5276075.458885016],[516960.59826226823,5276074.2029737085],[516965.9617407844,5276074.151910202],[516965.96067248995,5276074.518667985],[516966.02005650825,5276082.498668978]]]},"properties":{"id_build":2063,"id_source":"w145340867","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.6965743838,5276385.600337075],[516774.6214623781,5276385.600120734],[516773.9444940577,5276385.931590048],[516773.642765707,5276386.37527984],[516773.1908134233,5276386.818537006],[516772.5170459854,5276386.038618699],[516773.72267903294,5276384.708414491],[516774.6965743838,5276385.600337075]]]},"properties":{"id_build":2064,"id_source":"w145340870","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.836692042,5276122.447407135],[516728.3786900476,5276120.043348102],[516730.89038254065,5276126.907878781],[516729.1308321686,5276127.547434723],[516727.43894981075,5276128.164957601],[516726.092981248,5276128.65010673],[516726.65194165247,5276130.185439086],[516724.8848492956,5276130.836088613],[516721.836692042,5276122.447407135]]]},"properties":{"id_build":2065,"id_source":"w145340873","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516915.57037831744,5276639.006289835],[516915.887276741,5276641.096637808],[516910.57470249827,5276641.903642877],[516907.5990749046,5276642.350675981],[516906.4122810718,5276634.611903307],[516906.294300976,5276633.855810451],[516918.10673275654,5276632.056308758],[516919.0945604136,5276638.471942666],[516915.57037831744,5276639.006289835]]]},"properties":{"id_build":2066,"id_source":"w145340874","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.5145778916,5276166.161693045],[517001.14605286194,5276172.057417559],[516996.3631953153,5276176.522388016],[516989.92310617457,5276169.724077852],[516991.6556098473,5276168.062036567],[516992.5540694681,5276169.064914876],[516993.6843584312,5276167.845676025],[516995.5145778916,5276166.161693045]]]},"properties":{"id_build":2067,"id_source":"w145340875","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.50791520556,5276258.151236141],[516590.5243773496,5276252.372020749],[516592.5581468393,5276250.377300453],[516592.5647958208,5276248.043386567],[516598.8743527516,5276248.061364991],[516601.12079674867,5276250.512840151],[516600.8732811024,5276258.291910871],[516590.50791520556,5276258.151236141]]]},"properties":{"id_build":2068,"id_source":"w145340877","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516894.37288275093,5276093.204328826],[516894.3132402408,5276087.869452113],[516902.5863040721,5276084.336984994],[516904.9729168282,5276090.234313323],[516919.56217322784,5276084.497412228],[516921.35333112377,5276088.503643406],[516936.31948041427,5276082.323320482],[516937.5274384579,5276085.39428774],[516939.0784070181,5276089.333142193],[516937.80014514114,5276089.773983551],[516939.14350317064,5276092.778661134],[516940.27153291006,5276092.337383134],[516942.13617351436,5276096.899532895],[516934.5404368767,5276099.989354521],[516933.79380354506,5276098.431228453],[516925.9720804333,5276101.74268355],[516923.4355851261,5276095.73377122],[516915.8395342536,5276098.934755935],[516915.81952241034,5276105.825357049],[516915.89237861475,5276106.603546303],[516915.6660634856,5276106.93630803],[516914.8381780889,5276107.489602072],[516904.2342995978,5276111.793264396],[516904.237525112,5276110.681877102],[516901.003363917,5276112.117307333],[516898.3901197069,5276106.663881541],[516894.55471068353,5276108.208710683],[516894.43381456414,5276098.094650677],[516895.86262512277,5276097.543096875],[516894.37288275093,5276093.204328826]]]},"properties":{"id_build":2069,"id_source":"w145340878","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517246.790487916,5276559.46813298],[517252.1249282664,5276558.928234314],[517252.3361002781,5276563.7078704275],[517252.71164888964,5276563.708982975],[517252.99970784533,5276567.888692115],[517253.4321247181,5276574.047117097],[517245.09331479575,5276574.5781172095],[517244.31153618847,5276559.571931944],[517246.790487916,5276559.46813298]]]},"properties":{"id_build":2070,"id_source":"w145340881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.4361534763,5276466.023461445],[516726.91957317555,5276465.928068187],[516726.96292583155,5276469.140130322],[516726.9809583127,5276470.707252034],[516728.4831764227,5276470.711566798],[516728.61647866573,5276476.602354399],[516722.60793142585,5276476.473958718],[516721.25593646866,5276476.470076772],[516721.4361534763,5276466.023461445]]]},"properties":{"id_build":2071,"id_source":"w145340901","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516897.0251113974,5276654.800981086],[516896.5093478744,5276651.354152069],[516896.06740254816,5276648.35209633],[516908.0896218744,5276646.719892749],[516909.2678028349,5276654.836516116],[516906.630299391,5276655.240075571],[516900.7766677294,5276656.145544558],[516900.3314996623,5276654.254876706],[516897.0251113974,5276654.800981086]]]},"properties":{"id_build":2072,"id_source":"w145340905","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516390.4344471359,5276540.768627366],[516389.9856638759,5276540.100526188],[516391.1896135092,5276539.325936798],[516395.25337610114,5276536.558883584],[516395.7766432904,5276537.449474243],[516397.87064923457,5276540.678420934],[516392.7534718403,5276544.109345215],[516390.4344471359,5276540.768627366]]]},"properties":{"id_build":2073,"id_source":"w145340906","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.92199508904,5276111.356419976],[516781.10702695005,5276102.879467578],[516787.3178900074,5276100.707913823],[516788.532088676,5276104.245654405],[516789.6941214169,5276107.638763342],[516787.8895534067,5276108.255943883],[516786.44589287025,5276108.751911492],[516785.22783551266,5276109.159617877],[516785.77907854127,5276110.761617485],[516783.92199508904,5276111.356419976]]]},"properties":{"id_build":2074,"id_source":"w145340909","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516688.5475384418,5276200.305283572],[516690.6066234345,5276202.600660803],[516691.8420609111,5276203.982333048],[516692.6705483633,5276203.206729813],[516694.99208484765,5276205.6584563395],[516691.5269524236,5276209.0938543985],[516688.81519557734,5276211.75343552],[516682.97315651696,5276205.846296984],[516688.5475384418,5276200.305283572]]]},"properties":{"id_build":2075,"id_source":"w145340915","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517223.470358274,5276675.729132691],[517225.79176289716,5276675.547061226],[517237.33876741567,5276674.614312157],[517237.96904946025,5276682.4404196525],[517231.74857850996,5276682.933253015],[517227.6391416107,5276683.265628006],[517227.7188673162,5276684.243894093],[517224.18041798216,5276684.522390805],[517223.470358274,5276675.729132691]]]},"properties":{"id_build":2076,"id_source":"w145340929","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516691.5269524236,5276209.0938543985],[516694.22278403427,5276211.991211969],[516693.69507308234,5276212.656537398],[516694.9305713885,5276214.0159825785],[516696.5404931512,5276215.77660415],[516691.2668932515,5276221.207332314],[516685.42550299875,5276215.077913702],[516688.81519557734,5276211.75343552],[516691.5269524236,5276209.0938543985]]]},"properties":{"id_build":2077,"id_source":"w145340947","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.3580005194,5276171.215600691],[516683.2674262466,5276171.293820569],[516683.9510342829,5276171.273550777],[516683.93384484365,5276174.652147025],[516683.91452412086,5276176.15247702],[516683.8952989121,5276177.619465391],[516679.0578814306,5276177.616724722],[516675.9784657722,5276177.50788151],[516675.29482668004,5276177.53926611],[516675.3580005194,5276171.215600691]]]},"properties":{"id_build":2078,"id_source":"w145340948","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.50293789245,5276551.090502597],[517121.6138564258,5276548.429353903],[517119.81513897487,5276547.090388844],[517121.7909264959,5276544.406615028],[517124.71689276857,5276540.436414552],[517131.5368655295,5276545.568901776],[517124.37396903895,5276554.883575571],[517123.0249330065,5276553.87935107],[517119.50293789245,5276551.090502597]]]},"properties":{"id_build":2079,"id_source":"w145340957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.86156171677,5276566.396145998],[517073.1847487064,5276568.181192549],[517077.4568739679,5276571.30563195],[517074.553357904,5276575.320377837],[517072.47943891987,5276578.18170358],[517070.9801803454,5276577.177050733],[517068.9447306069,5276579.727299153],[517063.6984623697,5276575.822033236],[517070.86156171677,5276566.396145998]]]},"properties":{"id_build":2080,"id_source":"w145340960","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516560.63958416146,5276565.589737603],[516558.47973147535,5276559.137492942],[516556.8412193121,5276554.242687237],[516567.21649213997,5276550.715722627],[516570.41965346655,5276560.060571411],[516566.0963853038,5276561.615341803],[516563.0513120615,5276562.70696375],[516563.6471322065,5276564.486893703],[516560.63958416146,5276565.589737603]]]},"properties":{"id_build":2081,"id_source":"w145340961","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.43732122966,5276548.1922605205],[516697.4649700194,5276548.309213435],[516697.4567807124,5276551.165480799],[516697.4509494133,5276553.1993209915],[516699.25358558825,5276553.204489678],[516699.3875521996,5276558.872999691],[516691.42591683764,5276558.8501753425],[516691.45617771894,5276548.2919885125],[516695.43732122966,5276548.1922605205]]]},"properties":{"id_build":2082,"id_source":"w145340962","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516676.93787267606,5276136.255590159],[516670.49673149735,5276129.67991209],[516675.69368777523,5276124.804644369],[516680.78593640315,5276130.265068428],[516679.4375534611,5276131.594882713],[516678.300130347,5276132.703022092],[516677.2456526611,5276133.700259538],[516678.36888073257,5276134.926011889],[516676.93787267606,5276136.255590159]]]},"properties":{"id_build":2083,"id_source":"w145340963","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.0027122569,5276349.305057677],[517161.4758642451,5276316.186812168],[517166.884649071,5276315.980472727],[517166.46921705775,5276354.989294],[517162.788381375,5276355.089585676],[517162.71326896537,5276355.089364331],[517162.7299718989,5276349.421287115],[517161.0027122569,5276349.305057677]]]},"properties":{"id_build":2084,"id_source":"w145340964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.1954257455,5276687.207484216],[517244.64174318523,5276678.881473555],[517251.08734681905,5276678.456004726],[517250.81408383173,5276674.35413662],[517257.31226877397,5276673.928830416],[517257.513547796,5276676.974657421],[517258.1316476113,5276686.367802383],[517251.63347647805,5276686.79310765],[517245.1954257455,5276687.207484216]]]},"properties":{"id_build":2085,"id_source":"w145340965","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516745.77984305884,5276129.006751267],[516742.62928480556,5276130.120204589],[516740.2820308832,5276123.545104435],[516738.7631351063,5276124.08532346],[516736.5374525672,5276124.868019145],[516734.15295119624,5276118.181674887],[516741.0405861895,5276115.745281187],[516743.92439213005,5276123.811195295],[516745.77984305884,5276129.006751267]]]},"properties":{"id_build":2086,"id_source":"w145340966","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517203.6539356513,5276287.603854497],[517206.5233438754,5276282.499903461],[517213.7975134657,5276286.522428257],[517213.41964770167,5276287.299289563],[517215.32447006635,5276288.338519025],[517229.0933380521,5276295.792253544],[517226.3757862515,5276300.340944129],[517208.7531009279,5276290.508551618],[517203.6539356513,5276287.603854497]]]},"properties":{"id_build":2087,"id_source":"w145340967","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516973.9911678581,5276533.104492986],[516970.5972869465,5276537.873611258],[516969.0895808534,5276539.75859366],[516966.61613068025,5276537.973151174],[516966.088741484,5276538.527313466],[516961.3295472146,5276534.979206759],[516954.546709278,5276529.93593971],[516959.8244862561,5276523.060642971],[516973.9911678581,5276533.104492986]]]},"properties":{"id_build":2088,"id_source":"w145340969","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517091.0850754668,5276585.571501407],[517094.8323913051,5276588.360994287],[517087.8939553439,5276598.009791176],[517085.81071067223,5276596.36992424],[517082.7907174182,5276594.004901684],[517082.49847564904,5276593.770650933],[517084.534578573,5276590.998129568],[517083.03565139254,5276589.882334773],[517086.60234649054,5276585.113788333],[517088.03506752686,5276583.195274129],[517091.0850754668,5276585.571501407]]]},"properties":{"id_build":2089,"id_source":"w145340970","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.4476048942,5276133.164074187],[516702.1436367559,5276129.481612459],[516700.90672902315,5276125.98828074],[516707.44091584464,5276123.684201528],[516710.51089434116,5276132.328559187],[516712.2172260661,5276137.1458017565],[516709.12683463295,5276138.237217866],[516706.89142225496,5276131.940301237],[516705.3123758386,5276132.50258436],[516703.4476048942,5276133.164074187]]]},"properties":{"id_build":2090,"id_source":"w145340977","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517042.96208691545,5276526.52639938],[517035.24264163716,5276520.724546939],[517037.1275512254,5276518.2849863],[517039.90077910625,5276520.293615364],[517044.9530095337,5276513.528875118],[517053.49769165326,5276519.666576057],[517047.9183838059,5276526.8743250575],[517045.66247897124,5276525.189511538],[517044.62069139443,5276524.419598129],[517042.96208691545,5276526.52639938]]]},"properties":{"id_build":2091,"id_source":"w145340979","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.10789369897,5276229.618760244],[517176.1587540177,5276237.843249116],[517168.4223475765,5276237.709299538],[517168.3727867442,5276229.040255772],[517171.22712011455,5276229.048670186],[517171.44689196337,5276230.9386932505],[517172.798944172,5276230.942679565],[517172.9531044874,5276229.60945754],[517176.10789369897,5276229.618760244]]]},"properties":{"id_build":2092,"id_source":"w145340980","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.58010644733,5276089.905078621],[517242.52925038815,5276096.002807698],[517229.7135455804,5276111.524441007],[517220.7213660682,5276104.16262798],[517233.4609604982,5276088.974169004],[517236.4006739231,5276085.537537054],[517240.01939480496,5276081.102659067],[517248.7862383781,5276088.463834247],[517247.58010644733,5276089.905078621]]]},"properties":{"id_build":2093,"id_source":"w145340981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.87330409273,5276381.089249704],[516494.9884055601,5276381.645057851],[516495.2745434024,5276384.046485186],[516490.87146874383,5276384.567486577],[516486.49095995055,5276385.0774412025],[516485.46386681375,5276376.427867439],[516489.8443820108,5276375.917912031],[516489.8884108678,5276376.2847976005],[516498.1610882979,5276375.307969193],[516498.87330409273,5276381.089249704]]]},"properties":{"id_build":2094,"id_source":"w145340985","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.00347881654,5276506.033481069],[516769.7678374289,5276506.061589475],[516769.7543963527,5276510.729419077],[516768.6280604965,5276510.615036163],[516768.61526032165,5276515.060588199],[516760.87921569793,5276514.927179045],[516760.97072912904,5276511.837758162],[516761.04542934836,5276509.370671343],[516759.84366282116,5276509.367212761],[516760.00347881654,5276506.033481069]]]},"properties":{"id_build":2095,"id_source":"w145340987","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517263.03295058414,5276249.102925636],[517260.90403226216,5276245.106699823],[517259.2980099922,5276242.09005389],[517266.5204732807,5276238.221570475],[517266.8189520654,5276238.889293689],[517269.0759942171,5276237.673448403],[517270.95252416644,5276238.123571512],[517273.71624737844,5276243.355334609],[517270.2550781715,5276245.345585574],[517264.1538919049,5276248.517207629],[517263.03295058414,5276249.102925636]]]},"properties":{"id_build":2096,"id_source":"w145340989","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.8964585728,5276089.074826678],[517301.8031733583,5276093.62236513],[517299.6162330992,5276096.505501554],[517299.6903585624,5276096.839140827],[517296.317410711,5276094.384050276],[517296.9206472205,5276093.607863725],[517288.90074214526,5276087.693648832],[517293.65350018226,5276080.817096763],[517299.16254057206,5276084.867827235],[517304.8964585728,5276089.074826678]]]},"properties":{"id_build":2097,"id_source":"w145340992","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.3246404779,5276170.749210978],[516960.6989198449,5276171.194859591],[516958.64246174874,5276173.18938584],[516955.5765559197,5276176.181231245],[516950.1854387424,5276170.2751364885],[516955.1569264161,5276165.510600288],[516955.7562275057,5276166.068043307],[516958.9945793294,5276163.1878398005],[516963.33764753497,5276167.868353685],[516960.3246404779,5276170.749210978]]]},"properties":{"id_build":2098,"id_source":"w145340993","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.97315651696,5276205.846296984],[516678.2536843005,5276201.387194374],[516675.1962680936,5276193.598664158],[516683.5438439164,5276190.177239804],[516684.96083181584,5276193.73776787],[516683.9833885538,5276194.068386875],[516684.900292315,5276196.516085898],[516685.6979674135,5276198.630024535],[516688.5475384418,5276200.305283572],[516682.97315651696,5276205.846296984]]]},"properties":{"id_build":2099,"id_source":"w145340995","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517068.243085077,5276511.596570852],[517069.4958564388,5276519.824584308],[517066.33992181823,5276520.2598941615],[517066.4124265917,5276521.149224663],[517062.5950993403,5276521.727080077],[517057.0194117812,5276522.56652315],[517056.0582766109,5276517.340139837],[517058.83833486843,5276517.014863147],[517058.39678792265,5276513.901656746],[517058.323305227,5276513.345742751],[517068.243085077,5276511.596570852]]]},"properties":{"id_build":2100,"id_source":"w145340996","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.6019536271,5276561.51973853],[517040.07569733175,5276563.1940725],[517034.87329592597,5276569.958377981],[517028.95263387257,5276565.49547218],[517031.2150252251,5276562.390174796],[517027.01732865116,5276559.48826665],[517030.48537830426,5276555.052817074],[517034.78696224064,5276558.38847662],[517037.9794532451,5276560.85400439],[517037.6019536271,5276561.51973853]]]},"properties":{"id_build":2101,"id_source":"w145340997","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.46301023726,5276106.496668371],[516770.4361549446,5276114.829588012],[516768.53378111025,5276115.502062747],[516768.06432898884,5276114.189263344],[516766.9063664702,5276114.597146554],[516765.0866839952,5276115.247632528],[516763.40991326416,5276115.831846582],[516761.1893499014,5276109.612749567],[516760.9061814555,5276108.822843187],[516767.46301023726,5276106.496668371]]]},"properties":{"id_build":2102,"id_source":"w145341002","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.86156171677,5276566.396145998],[517068.31304418645,5276564.610439979],[517074.79789526836,5276555.960548177],[517079.6696031221,5276559.531306113],[517081.39289013913,5276560.98117729],[517079.18360227486,5276563.89767346],[517076.9441423901,5276566.858537904],[517075.14509461087,5276565.630725419],[517073.1847487064,5276568.181192549],[517070.86156171677,5276566.396145998]]]},"properties":{"id_build":2103,"id_source":"w145341004","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517125.0086314618,5276134.666126894],[517125.2310362819,5276135.667038037],[517119.14180211147,5276137.316232998],[517116.8380527343,5276128.862845856],[517122.8518529822,5276127.324566394],[517122.6291207044,5276126.434794087],[517125.7111051497,5276125.676991301],[517135.1074249234,5276123.359579192],[517137.18711219577,5276131.367755595],[517125.0086314618,5276134.666126894]]]},"properties":{"id_build":2104,"id_source":"w145341005","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.1987808469,5276313.079136292],[516638.2086231996,5276309.6338345185],[516636.8565895596,5276309.629972259],[516636.88611419266,5276299.294067049],[516645.2984652616,5276299.429242759],[516645.3244753006,5276306.09769748],[516645.3405447308,5276310.987889065],[516645.2593967971,5276313.099310968],[516643.90736395563,5276313.095447069],[516638.1987808469,5276313.079136292]]]},"properties":{"id_build":2105,"id_source":"w145341008","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516676.3134550907,5276223.16501222],[516676.2284764133,5276226.610098447],[516669.91921413527,5276226.480897529],[516670.0035528951,5276223.258088723],[516669.4780723134,5276223.145445092],[516669.48567450006,5276220.489228943],[516669.50224662083,5276214.698900063],[516676.78832454485,5276214.719757617],[516676.8392537653,5276223.166517716],[516676.3134550907,5276223.16501222]]]},"properties":{"id_build":2106,"id_source":"w145341012","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.98071891523,5276212.449815496],[517155.1267047752,5276212.330268847],[517154.95552610647,5276219.442706056],[517152.9277711106,5276219.325594177],[517153.02383305336,5276212.212935702],[517150.1694914565,5276212.204530228],[517150.1721094907,5276211.315420271],[517157.9085512839,5276211.449345516],[517157.98071891523,5276212.449815496]]]},"properties":{"id_build":2107,"id_source":"w145341013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516863.5893772487,5276373.665022897],[516858.75950442336,5276373.706609853],[516858.68503834936,5276363.1036663465],[516861.24643203925,5276363.088853307],[516863.9205263762,5276363.063253751],[516866.7973917634,5276363.049356626],[516866.8195832188,5276365.76122972],[516868.1566458829,5276365.742874132],[516868.1776456937,5276368.8659607135],[516868.20890392317,5276373.633944694],[516863.5893772487,5276373.665022897]]]},"properties":{"id_build":2108,"id_source":"w145341016","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.7730003394,5276088.1511097625],[517257.4219269976,5276089.378531733],[517266.34193279874,5276095.739930126],[517265.1348096863,5276097.514587056],[517261.6649935628,5276102.394449694],[517257.7000020165,5276099.470840271],[517254.0947719402,5276096.815034564],[517255.07489829615,5276095.595401384],[517252.0020650358,5276093.252365389],[517255.7730003394,5276088.1511097625]]]},"properties":{"id_build":2109,"id_source":"w145341017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517069.4958564388,5276519.824584308],[517068.243085077,5276511.596570852],[517078.76375426556,5276509.849177945],[517079.3538817307,5276513.518520433],[517082.2093795291,5276513.082336369],[517083.8104217852,5276522.922901037],[517080.89283334,5276526.604183062],[517077.2651584163,5276523.98176013],[517076.80099102407,5276520.901827838],[517076.602136474,5276519.556453719],[517072.72462117026,5276520.167467944],[517072.65211734676,5276519.278137362],[517069.4958564388,5276519.824584308]]]},"properties":{"id_build":2110,"id_source":"w145341018","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517101.4242536637,5276517.695458526],[517093.5543074549,5276512.004226442],[517095.66588059074,5276509.120790905],[517098.5138769171,5276511.240807171],[517103.49139937584,5276504.364758302],[517111.8858129837,5276510.502103767],[517106.6068651345,5276517.710679421],[517104.34336462617,5276516.059162738],[517103.23408171645,5276515.255698666],[517101.4242536637,5276517.695458526]]]},"properties":{"id_build":2111,"id_source":"w145341020","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517111.5951743709,5276558.291346937],[517113.5552138666,5276555.8520315355],[517111.98182639154,5276554.513731032],[517114.2738857707,5276551.553034575],[517116.3623340949,5276548.869590002],[517117.7415143985,5276549.840559615],[517119.50293789245,5276551.090502597],[517123.0249330065,5276553.87935107],[517116.6912071379,5276562.196214416],[517115.2670617406,5276561.191770941],[517111.5951743709,5276558.291346937]]]},"properties":{"id_build":2112,"id_source":"w145341024","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5350048466,5276111.894195056],[516761.1893499014,5276109.612749567],[516763.40991326416,5276115.831846582],[516763.6404682047,5276116.632715634],[516761.7306161923,5276117.294057101],[516759.9110310835,5276117.911203072],[516758.9260272876,5276118.25290176],[516759.3879695881,5276119.565678823],[516757.41796273424,5276120.24907654],[516754.5350048466,5276111.894195056]]]},"properties":{"id_build":2113,"id_source":"w145341025","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516809.17074095143,5276100.181898022],[516809.3896731995,5276102.405322924],[516807.21003632084,5276102.84359163],[516807.8067923021,5276104.290129151],[516806.3763884279,5276105.397398185],[516804.11907216377,5276106.724561137],[516802.7650676394,5276107.387492854],[516801.2614734228,5276107.827714075],[516800.3597658013,5276107.936252769],[516799.30782704393,5276108.044358302],[516797.52043769567,5276102.704499972],[516795.9593536531,5276097.031875875],[516806.86043409316,5276093.840270916],[516806.5618951357,5276093.172571569],[516810.7722278355,5276091.851045984],[516812.4084146224,5276097.523890856],[516809.02467911213,5276098.736661],[516809.17074095143,5276100.181898022]]]},"properties":{"id_build":2114,"id_source":"w145341028","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.1221276677,5276658.992667148],[516885.75399710814,5276656.43538525],[516885.2385493169,5276652.877418413],[516896.5093478744,5276651.354152069],[516897.0251113974,5276654.800981086],[516897.7616849959,5276659.804407527],[516895.46252740955,5276660.086700053],[516889.87239443866,5276660.781778909],[516889.57840715337,5276658.55813107],[516886.1221276677,5276658.992667148]]]},"properties":{"id_build":2115,"id_source":"w145341029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517094.8323913051,5276588.360994287],[517091.0850754668,5276585.571501407],[517093.0457496546,5276582.909901419],[517091.32221111923,5276581.548937771],[517093.83271948365,5276578.366594827],[517096.37340491917,5276575.139885651],[517099.5208276983,5276577.594201127],[517103.1182520786,5276580.27211942],[517096.10631474137,5276589.364991823],[517094.8323913051,5276588.360994287]]]},"properties":{"id_build":2116,"id_source":"w145341031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.4396282992,5276158.6440572115],[516962.9902333824,5276158.198189671],[516968.1122956015,5276153.3229633635],[516973.8038702442,5276159.229950162],[516970.76893435046,5276161.899572764],[516968.3816727025,5276163.993157436],[516967.85716370464,5276163.547070683],[516965.37189838104,5276165.762624728],[516960.95371531224,5276161.081890604],[516963.4396282992,5276158.6440572115]]]},"properties":{"id_build":2117,"id_source":"w145341032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516694.7574757959,5276339.914508547],[516697.31162252586,5276339.810690836],[516697.22121594404,5276345.145136541],[516695.86919051316,5276345.141260563],[516694.36694003403,5276345.136954287],[516693.91594632773,5276345.24680125],[516693.92550318164,5276341.912638092],[516694.15657506464,5276339.912786106],[516694.7574757959,5276339.914508547]]]},"properties":{"id_build":2118,"id_source":"w145341033","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.7765466697,5276138.338035167],[516696.00317309814,5276133.320553333],[516692.95561269985,5276124.7096095625],[516699.62513293314,5276122.361453603],[516700.90672902315,5276125.98828074],[516702.1436367559,5276129.481612459],[516700.0834061116,5276130.198112702],[516698.5419493968,5276130.749391469],[516700.84436946205,5276137.257662301],[516697.7765466697,5276138.338035167]]]},"properties":{"id_build":2119,"id_source":"w145341034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.65090820706,5276434.18646845],[516703.7151818094,5276437.965402674],[516704.84153293475,5276438.079772985],[516704.82272492413,5276444.63696153],[516697.46150466136,5276444.726991658],[516697.47224281053,5276440.98161446],[516697.4796671049,5276438.392080682],[516696.50353854866,5276438.278142463],[516696.51532750734,5276434.166007302],[516703.65090820706,5276434.18646845]]]},"properties":{"id_build":2120,"id_source":"w145341035","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517288.10130726104,5276534.139610405],[517281.264308965,5276534.786157182],[517281.048212663,5276531.673602164],[517280.2220011611,5276531.671150582],[517279.8094051281,5276526.435242846],[517279.2083803869,5276518.887068785],[517287.54793319874,5276518.13383977],[517288.4860957446,5276531.028838877],[517287.80977452477,5276531.1379709635],[517288.10130726104,5276534.139610405]]]},"properties":{"id_build":2121,"id_source":"w145341036","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.1870786678,5276691.110719722],[516615.9343539589,5276692.446528708],[516609.76535077754,5276695.985401796],[516603.8606549354,5276685.854847291],[516607.2462256004,5276683.863985914],[516608.5921499593,5276685.979479322],[516611.36066236976,5276684.398077537],[516615.9647963607,5276681.777200762],[516619.92649883893,5276688.456890137],[516615.1870786678,5276691.110719722]]]},"properties":{"id_build":2122,"id_source":"w145341037","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516898.1218683828,5276561.557911486],[516901.1272255585,5276561.233213381],[516901.5685301667,5276564.457546704],[516910.3602378458,5276563.149391661],[516911.75698477257,5276573.600583734],[516902.9656151015,5276574.797597841],[516902.5529043923,5276572.073476201],[516902.30220887996,5276570.461222275],[516899.521862744,5276570.897712447],[516898.1218683828,5276561.557911486]]]},"properties":{"id_build":2123,"id_source":"w145341039","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516932.1806521488,5276575.771584197],[516939.75023026107,5276581.461724694],[516937.7893026891,5276584.234514927],[516935.3161851818,5276582.337946779],[516929.8879485395,5276589.323968283],[516921.71878723416,5276583.187539307],[516927.07287924795,5276575.867875521],[516929.4488444137,5276577.597448073],[516930.29580510943,5276578.211178875],[516932.1806521488,5276575.771584197]]]},"properties":{"id_build":2124,"id_source":"w145341040","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516845.2061180089,5276081.281123165],[516847.14434509614,5276086.399153117],[516848.2620816111,5276089.514296545],[516845.17879712407,5276090.72791483],[516843.68772970815,5276086.83371479],[516843.25167205976,5276086.965821391],[516842.63514354965,5276087.164089958],[516839.50469741353,5276078.708424969],[516843.79048551735,5276077.276001679],[516845.2061180089,5276081.281123165]]]},"properties":{"id_build":2125,"id_source":"w145341043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516694.7574757959,5276339.914508547],[516694.15657506464,5276339.912786106],[516693.92550318164,5276341.912638092],[516687.6166845584,5276341.672278911],[516687.69625532243,5276340.116551329],[516687.78442411334,5276335.560076935],[516687.8643134391,5276333.893210595],[516691.25157629,5276334.014056766],[516694.69892914343,5276334.135077154],[516694.7574757959,5276339.914508547]]]},"properties":{"id_build":2126,"id_source":"w145341047","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.17932001816,5276570.506685514],[517111.25195732794,5276572.849647863],[517104.6168515059,5276581.4990581805],[517103.1182520786,5276580.27211942],[517099.5208276983,5276577.594201127],[517101.5566179849,5276574.932824561],[517099.7575778621,5276573.705004441],[517101.84614216036,5276570.977099078],[517104.4323253856,5276567.60604533],[517108.17932001816,5276570.506685514]]]},"properties":{"id_build":2127,"id_source":"w145341050","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516942.00622427446,5276528.899186887],[516950.4758813098,5276535.036518111],[516945.499536274,5276541.5792811755],[516942.8758596565,5276539.793411687],[516942.4235829088,5276540.347794635],[516939.44821301807,5276538.10523062],[516934.4042626074,5276534.322924293],[516937.5705227418,5276530.331101293],[516939.8193012068,5276531.893598352],[516942.00622427446,5276528.899186887]]]},"properties":{"id_build":2128,"id_source":"w145341051","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5350048466,5276111.894195056],[516757.41796273424,5276120.24907654],[516755.5307431614,5276120.877143253],[516755.06880009937,5276119.564366495],[516753.98601893726,5276119.950240609],[516752.0536025325,5276120.6226343],[516750.32418995915,5276121.228928641],[516749.92917846586,5276120.149738047],[516747.8504270943,5276114.242244983],[516754.5350048466,5276111.894195056]]]},"properties":{"id_build":2129,"id_source":"w145341056","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516874.2575637766,5276658.069158312],[516885.75399710814,5276656.43538525],[516886.1221276677,5276658.992667148],[516887.0814570764,5276664.885856226],[516883.73761858727,5276665.398517593],[516878.5903417639,5276666.194916991],[516878.14613362786,5276663.970834341],[516874.989969838,5276664.517386592],[516874.623122933,5276661.515550083],[516874.2575637766,5276658.069158312]]]},"properties":{"id_build":2130,"id_source":"w145341058","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516420.8416285172,5276412.043394281],[516413.48043597635,5276412.111555669],[516413.598082654,5276397.0191203095],[516421.78527389385,5276397.042199686],[516421.7741804486,5276400.976512649],[516421.7689784351,5276402.821416477],[516423.6467727267,5276402.826711534],[516423.6320424436,5276408.050234447],[516420.7774843252,5276408.153324984],[516420.8416285172,5276412.043394281]]]},"properties":{"id_build":2131,"id_source":"w145341062","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5186876564,5276165.015168298],[517003.94896876364,5276166.530843414],[517006.0083639488,5276168.681851933],[517001.7676237892,5276172.703842097],[517001.14605286194,5276172.057417559],[516995.5145778916,5276166.161693045],[516994.7207926963,5276165.325829234],[516998.96153329435,5276161.303833983],[517002.5186876564,5276165.015168298]]]},"properties":{"id_build":2132,"id_source":"w145341063","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516842.63514354965,5276087.164089958],[516841.3191700104,5276087.660413231],[516840.6047661077,5276087.9361967705],[516841.6464259395,5276091.384537925],[516840.14250328694,5276091.935887838],[516839.6905232521,5276092.379139706],[516838.9454701356,5276090.265332247],[516835.3688220896,5276080.252424358],[516839.50469741353,5276078.708424969],[516842.63514354965,5276087.164089958]]]},"properties":{"id_build":2133,"id_source":"w145341065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.98480952985,5276594.239177568],[517278.71785260853,5276590.548544538],[517278.33553444024,5276585.2349283835],[517287.57597574947,5276584.595512559],[517288.3754553154,5276593.60020874],[517290.55428606697,5276593.3843977405],[517290.987783062,5276599.164953902],[517277.01449205406,5276600.123740713],[517276.73087022227,5276594.4547700705],[517278.98480952985,5276594.239177568]]]},"properties":{"id_build":2134,"id_source":"w145341067","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.40256154514,5276391.311168368],[516564.1679246222,5276389.298872815],[516563.896774624,5276386.919712491],[516574.81421447155,5276385.661552237],[516575.7085656122,5276393.399419391],[516564.9564494136,5276394.63582019],[516565.32299959706,5276397.804343683],[516561.0101261951,5276398.303320664],[516560.2625040366,5276391.7884095],[516564.40256154514,5276391.311168368]]]},"properties":{"id_build":2135,"id_source":"w145341068","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.53301771346,5276528.664118092],[517308.3957342559,5276529.25417036],[517302.53565521975,5276529.73688604],[517301.8089869534,5276521.510383511],[517302.109428029,5276521.511276093],[517301.81790181994,5276518.509635996],[517308.5794809976,5276517.974028878],[517308.8710037507,5276520.975669321],[517314.9562577866,5276520.549199334],[517315.53301771346,5276528.664118092]]]},"properties":{"id_build":2136,"id_source":"w145341069","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.46301023726,5276106.496668371],[516773.9671353153,5276104.214805],[516774.3175862116,5276105.11604544],[516776.31339892093,5276111.12333479],[516774.28319875523,5276111.839895346],[516773.06511089916,5276112.258718143],[516771.92971430375,5276112.655551376],[516772.44381893915,5276114.112961226],[516770.4361549446,5276114.829588012],[516767.46301023726,5276106.496668371]]]},"properties":{"id_build":2137,"id_source":"w145341070","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516653.86661644635,5276192.5373797],[516648.60860209365,5276192.52234768],[516648.76931466936,5276188.855198495],[516647.86794021324,5276188.852622031],[516647.8759136626,5276186.063039528],[516647.89271825337,5276180.18379995],[516654.9531775386,5276180.315124739],[516654.9287067888,5276188.872808069],[516653.8019887188,5276188.869586318],[516653.86661644635,5276192.5373797]]]},"properties":{"id_build":2138,"id_source":"w145341071","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516875.1173554576,5276568.715290208],[516876.4432415473,5276577.721451566],[516873.2125657392,5276578.045509538],[516873.4550173764,5276579.913359713],[516873.72673980414,5276582.048030102],[516865.1603975124,5276583.356892936],[516863.5369534461,5276573.3496148335],[516872.0278784739,5276572.151670806],[516871.660701856,5276569.260973744],[516875.1173554576,5276568.715290208]]]},"properties":{"id_build":2139,"id_source":"w145341072","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517236.4006739231,5276085.537537054],[517233.4609604982,5276088.974169004],[517228.3655749426,5276084.73578691],[517231.07961084944,5276081.409624483],[517225.2343716352,5276076.724468194],[517227.6847472279,5276073.653145781],[517232.77392119734,5276067.299896105],[517240.6426921013,5276073.547004794],[517233.25336959714,5276082.972011291],[517236.4006739231,5276085.537537054]]]},"properties":{"id_build":2140,"id_source":"w145341074","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516853.4053313475,5276077.303814135],[516854.45824150136,5276076.862302192],[516853.78895088995,5276074.52643279],[516859.72922864236,5276072.431970859],[516862.1149244426,5276078.6626975695],[516860.4607646308,5276079.213607325],[516860.87020261533,5276080.492898576],[516861.2051679458,5276081.549694964],[516855.6411216746,5276083.422964819],[516853.4053313475,5276077.303814135]]]},"properties":{"id_build":2141,"id_source":"w145341076","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.7814012244,5276189.553535872],[516968.904233789,5276190.89048327],[516970.10930430086,5276189.782597409],[516971.99202548416,5276188.120987961],[516972.5909987635,5276188.789571483],[516977.3086374184,5276193.804606725],[516972.1118122125,5276198.568467568],[516965.7474814753,5276191.548125305],[516967.7814012244,5276189.553535872]]]},"properties":{"id_build":2142,"id_source":"w145341079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.72428456316,5276312.328846117],[516690.5550448526,5276312.339822805],[516690.55663732294,5276311.784128973],[516695.88933845964,5276311.910553209],[516695.96030964266,5276313.3555724975],[516698.9645083429,5276313.475324986],[516698.8677269587,5276321.0325458],[516694.8642128538,5276321.021068416],[516686.774560523,5276320.997885177],[516686.72428456316,5276312.328846117]]]},"properties":{"id_build":2143,"id_source":"w145341083","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.17932001816,5276570.506685514],[517104.4323253856,5276567.60604533],[517102.9333959316,5276566.490245458],[517104.7432096277,5276564.050485915],[517103.0947126405,5276562.711967195],[517105.83905512444,5276559.196896879],[517108.37230983033,5276555.947943177],[517111.5951743709,5276558.291346937],[517115.2670617406,5276561.191770941],[517108.17932001816,5276570.506685514]]]},"properties":{"id_build":2144,"id_source":"w145341090","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.22240795614,5276451.068121091],[517273.823939021,5276460.300437065],[517269.3133209612,5276461.620737397],[517268.94172032294,5276460.2859583525],[517265.10743221117,5276461.497127655],[517261.46421374625,5276448.927535245],[517266.8771629606,5276447.276484708],[517268.2153246664,5276451.9483222645],[517271.22240795614,5276451.068121091]]]},"properties":{"id_build":2145,"id_source":"w145341095","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516913.2679867197,5276544.708638124],[516915.1528373226,5276542.269038057],[516917.77619840065,5276544.166033848],[516922.978808983,5276537.290485506],[516931.37336367165,5276543.427570753],[516926.09499265003,5276550.525170985],[516924.0866986438,5276548.918922115],[516923.0225924768,5276548.071167814],[516921.06230761996,5276550.62168593],[516913.2679867197,5276544.708638124]]]},"properties":{"id_build":2146,"id_source":"w145341097","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516681.736394427,5276611.391502696],[516680.4576299114,5276612.054678212],[516679.4799386039,5276612.496436843],[516678.8901737204,5276611.2388687655],[516678.2855140744,5276609.936802206],[516678.136250721,5276609.602955543],[516678.8886150524,5276609.160551345],[516679.7911977476,5276608.718577493],[516680.2424891474,5276608.497590617],[516681.736394427,5276611.391502696]]]},"properties":{"id_build":2147,"id_source":"w145341098","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.85087504645,5276196.155146128],[516833.5314830729,5276196.165782581],[516833.4838398453,5276199.655430634],[516833.4239955626,5276204.767682689],[516832.8662802749,5276244.398480049],[516824.1540393985,5276244.039888198],[516824.1569287303,5276243.039639419],[516826.0121443718,5276243.078340619],[516830.6163982117,5276243.169441587],[516830.6493700758,5276239.557497237],[516830.8603297159,5276218.54159361],[516830.87159873074,5276217.241291957],[516830.93295020144,5276211.606687669],[516830.9429062476,5276208.161386503],[516830.94624633976,5276207.005543534],[516830.95318345027,5276204.604946605],[516830.95896437566,5276202.604449174],[516830.977712736,5276201.3152831355],[516831.00483968365,5276199.726064193],[516831.04949460295,5276197.270006453],[516829.84766363876,5276197.266533581],[516829.85087504645,5276196.155146128]]]},"properties":{"id_build":2148,"id_source":"w145341099","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.0405861895,5276115.745281187],[516747.5747686263,5276113.452360846],[516747.8504270943,5276114.242244983],[516749.92917846586,5276120.149738047],[516748.1696878505,5276120.767060496],[516746.5380216279,5276121.3402951285],[516745.2672930913,5276121.781200305],[516745.75154912646,5276123.171838187],[516743.92439213005,5276123.811195295],[516741.0405861895,5276115.745281187]]]},"properties":{"id_build":2149,"id_source":"w145341111","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516857.97577624145,5276600.340471974],[516867.44372486806,5276598.9230702445],[516867.9604762072,5276602.036479904],[516869.39570610644,5276601.818357669],[516871.5673284676,5276601.491229384],[516872.96896528295,5276610.275330381],[516863.20027551195,5276611.802991963],[516861.6484059552,5276603.01845839],[516858.49221077503,5276603.565019604],[516857.97577624145,5276600.340471974]]]},"properties":{"id_build":2150,"id_source":"w145341113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516388.72309787094,5276668.463327282],[516382.9628921312,5276660.222781011],[516383.33905971766,5276660.001559854],[516382.0675309204,5276658.10860774],[516386.73332574713,5276654.898683267],[516387.9300580003,5276656.680286197],[516389.52532957675,5276655.628948399],[516397.0350841417,5276650.704371254],[516402.64506262675,5276658.944508236],[516388.72309787094,5276668.463327282]]]},"properties":{"id_build":2151,"id_source":"w145341118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.6950320301,5276528.357414285],[517145.16350462975,5276534.828445533],[517143.27790058166,5276537.490248968],[517139.8306881263,5276534.812748177],[517134.6281453011,5276541.576964582],[517126.38434754807,5276535.328888833],[517131.58754014515,5276528.342387538],[517133.611100752,5276529.8487273045],[517134.8851939287,5276530.797163818],[517136.6950320301,5276528.357414285]]]},"properties":{"id_build":2152,"id_source":"w145341121","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516341.94998879405,5276634.656554511],[516348.7686634626,5276640.4549573725],[516346.2813413978,5276643.559886826],[516349.8781325813,5276646.570755844],[516345.507794827,5276651.559774285],[516342.0609098222,5276648.660468308],[516340.85505576344,5276650.124128658],[516339.04627580714,5276652.3196196575],[516332.2276055027,5276646.521228061],[516341.94998879405,5276634.656554511]]]},"properties":{"id_build":2153,"id_source":"w145341124","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516336.2829002875,5276593.185547418],[516341.00231297803,5276597.644375801],[516335.4277054335,5276603.519140105],[516338.94848250353,5276606.863207893],[516333.29846502293,5276612.84890239],[516320.0377982541,5276600.808638814],[516325.83865533344,5276594.601075046],[516330.6328724024,5276599.1712444],[516336.2829002875,5276593.185547418]]]},"properties":{"id_build":2154,"id_source":"w145341126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516688.0323321238,5276537.390483916],[516690.0603033196,5276537.396295433],[516694.0414542475,5276537.296566472],[516693.9783639869,5276540.963996363],[516693.95168941724,5276542.408736256],[516695.3787790326,5276542.412827223],[516695.43732122966,5276548.1922605205],[516691.45617771894,5276548.2919885125],[516688.0011221452,5276548.28208699],[516688.0323321238,5276537.390483916]]]},"properties":{"id_build":2155,"id_source":"w145341127","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516499.2253662568,5276317.796206828],[516495.4684636372,5276318.23012379],[516495.611764314,5276320.675602199],[516490.7879469947,5276321.217640139],[516485.0925073205,5276321.868354564],[516484.2147453022,5276313.530395672],[516493.9828877432,5276312.335514466],[516493.4690570205,5276308.1107522715],[516497.90198301576,5276307.678748896],[516499.2253662568,5276317.796206828]]]},"properties":{"id_build":2156,"id_source":"w145341128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516719.81402363325,5276455.460531965],[516723.4947867622,5276455.3599604815],[516725.7481198606,5276455.366431411],[516725.6415065097,5276458.489151028],[516725.58449219447,5276460.033829238],[516726.93585256225,5276460.2599897655],[516726.91957317555,5276465.928068187],[516721.4361534763,5276466.023461445],[516719.78371222963,5276466.018717228],[516719.81402363325,5276455.460531965]]]},"properties":{"id_build":2157,"id_source":"w145341129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516670.1818092707,5276449.650130074],[516674.7635909636,5276449.663246592],[516676.1152738855,5276449.77825652],[516676.2106597219,5276453.190518506],[516676.2518121009,5276454.557654684],[516677.7543526086,5276454.450817563],[516677.75995424646,5276460.36346583],[516671.77373182547,5276460.301870441],[516670.22638081916,5276460.319669069],[516670.1818092707,5276449.650130074]]]},"properties":{"id_build":2158,"id_source":"w145341130","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.6397947854,5276417.173895139],[516673.57280512684,5276424.831228451],[516662.90716354677,5276424.734019502],[516662.9738847996,5276417.1655971315],[516666.70686741313,5276417.198506683],[516666.7056588236,5276417.620834066],[516668.4407047055,5276417.636913539],[516670.38606302533,5276417.653595514],[516670.38752637827,5276417.142357103],[516673.6397947854,5276417.173895139]]]},"properties":{"id_build":2159,"id_source":"w145341132","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.57280512684,5276424.831228451],[516673.6397947854,5276417.173895139],[516676.3891655481,5276417.081741309],[516676.3949582388,5276417.681912254],[516677.9122759651,5276417.664029199],[516679.78261816717,5276417.647157586],[516679.77673033584,5276417.080328269],[516684.0056405228,5276417.04798544],[516684.0887965503,5276424.7279767655],[516673.57280512684,5276424.831228451]]]},"properties":{"id_build":2160,"id_source":"w145341133","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.99994430726,5276092.573410235],[516827.744223117,5276093.344870398],[516827.29673927824,5276092.232181045],[516824.2141026968,5276093.22353297],[516822.6491900899,5276088.884566461],[516826.0332552416,5276087.560665499],[516825.36299138254,5276085.558215529],[516827.01971462497,5276084.118186012],[516829.99994430726,5276092.573410235]]]},"properties":{"id_build":2161,"id_source":"w145341136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516494.4680380542,5276422.16510978],[516498.63746538915,5276419.265060188],[516499.235524196,5276420.267011559],[516500.6569757586,5276422.271552915],[516499.3775610046,5276423.157045616],[516500.34991726966,5276424.604616235],[516497.4149022752,5276426.59681579],[516495.99408025347,5276424.369997639],[516494.4680380542,5276422.16510978]]]},"properties":{"id_build":2162,"id_source":"w145341142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516624.4445740503,5276631.78852205],[516625.41686408705,5276633.236114175],[516622.63244533585,5276635.117541164],[516612.6094005774,5276620.529636151],[516618.6301699447,5276616.32350471],[516621.9210095193,5276621.223044529],[516625.006187861,5276619.231336073],[516630.9159937305,5276627.583689729],[516626.83750875713,5276630.228283408],[516624.4445740503,5276631.78852205]]]},"properties":{"id_build":2163,"id_source":"w145341143","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517208.2384958115,5276187.569423524],[517206.9743457479,5276185.7763394],[517205.7248498034,5276186.650651872],[517200.8472827935,5276190.070462241],[517199.3811093508,5276188.010047844],[517196.7930724672,5276184.3014536975],[517196.6060078346,5276184.056394026],[517204.56971291965,5276178.467357076],[517203.52247324475,5276176.986105649],[517207.50434844097,5276174.186033613],[517214.0644842665,5276183.485584049],[517208.2384958115,5276187.569423524]]]},"properties":{"id_build":2164,"id_source":"w145341147","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.82056079607,5276512.423488431],[517251.0430657663,5276515.913936351],[517248.6540632405,5276516.073569889],[517248.86220563215,5276519.341695653],[517241.90561039286,5276519.78788288],[517241.0582649214,5276506.626425483],[517248.54074780236,5276506.14845275],[517248.7990650314,5276510.228047387],[517248.9499172318,5276512.551315389],[517250.82056079607,5276512.423488431]]]},"properties":{"id_build":2165,"id_source":"w145341148","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1531162342,5276274.726487868],[517199.37289469823,5276274.732344461],[517197.7654340988,5276274.73871172],[517197.77504199196,5276276.572545541],[517191.88601832866,5276276.599615354],[517165.5505969351,5276276.744217963],[517161.26900096354,5276276.776056455],[517161.21043305966,5276266.062014903],[517174.4007016229,5276265.989755293],[517174.4046080308,5276267.212303732],[517201.10812933685,5276267.068828042],[517201.1531162342,5276274.726487868]]]},"properties":{"id_build":2166,"id_source":"w145341150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7844929818,5276529.927891156],[516759.79440794094,5276526.482588242],[516760.92106074735,5276526.485830653],[516760.8908943744,5276523.918416218],[516760.8619434207,5276520.928674345],[516768.5983000783,5276520.950944693],[516768.5854998852,5276525.3964968],[516769.1863814968,5276525.398226966],[516769.1732608185,5276529.954917905],[516759.7844929818,5276529.927891156]]]},"properties":{"id_build":2167,"id_source":"w145341152","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.64173585724,5276177.7107317485],[516983.1443029672,5276176.039269993],[516985.0273564029,5276174.266526034],[516986.076045639,5276175.269841449],[516987.206656188,5276173.939462597],[516988.93883366376,5276172.388559236],[516994.5562266637,5276177.961931268],[516989.4338395002,5276182.948273253],[516984.64173585724,5276177.7107317485]]]},"properties":{"id_build":2168,"id_source":"w145341154","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.2006602698,5276360.783084844],[516763.9517835137,5276360.785246815],[516763.9617004057,5276357.339944816],[516763.21025683306,5276357.448921624],[516763.21281591547,5276356.559811433],[516763.88882732484,5276356.561757201],[516763.97609588655,5276352.33870002],[516763.22529143875,5276352.225399279],[516763.2272107492,5276351.55856664],[516763.97801528435,5276351.671867386],[516763.9131395751,5276348.115210464],[516763.31223967264,5276348.113480887],[516763.3141589901,5276347.446648258],[516763.9904913576,5276347.337455262],[516763.9201773253,5276345.670157486],[516765.7976703733,5276345.786701586],[516765.7190386014,5276347.009011852],[516774.35697633075,5276347.033884055],[516774.3441724461,5276351.479434944],[516775.39542655327,5276351.593602511],[516776.0714385419,5276351.595549694],[516776.1423892726,5276353.040570098],[516776.5914631188,5276353.597562133],[516776.9647841739,5276354.37661538],[516777.1853191169,5276356.0443460895],[516776.35684192,5276356.819937465],[516776.43131402,5276357.042431376],[516776.13086452876,5276357.041565931],[516776.05223072064,5276358.263876082],[516775.22567467723,5276358.372634975],[516774.2488939568,5276358.48096132],[516774.16097781085,5276362.926295954],[516772.5836195732,5276362.921753161],[516772.7123996234,5276370.3684837315],[516773.98930703895,5276370.372161231],[516773.74252452503,5276377.817810268],[516773.13490606804,5276380.149993994],[516772.1533281591,5276381.925402348],[516771.7764876937,5276382.36887593],[516771.14356226317,5276383.056119439],[516770.6462866736,5276383.588158045],[516770.57085461554,5276383.699080536],[516768.5396299333,5276384.804628894],[516766.5093658797,5276385.576761627],[516764.1799340148,5276385.903475123],[516760.5739183227,5276386.11537592],[516757.0436544386,5276386.105217509],[516756.9726994396,5276384.660197274],[516749.9121699192,5276384.63988696],[516749.98280703305,5276386.196045883],[516749.98056958226,5276386.974017337],[516748.02765794366,5276386.968401077],[516748.0266991472,5276387.301817413],[516747.72465325514,5276387.8566473285],[516747.04672800255,5276388.5215361025],[516746.3704007418,5276388.630731058],[516745.24499945523,5276388.1829364095],[516744.72145241156,5276387.4034532495],[516744.6479381016,5276386.847543396],[516744.1972661771,5276386.846247691],[516744.12726657296,5276385.067811281],[516743.1508104361,5276385.065004051],[516738.71920181555,5276385.052265606],[516738.66612972965,5276377.383474038],[516737.9917177749,5276376.825837302],[516738.820187011,5276376.050240463],[516741.0051474138,5276373.722587027],[516744.6105309346,5276373.732951651],[516744.6949095624,5276370.5101430835],[516749.50177062646,5276370.635104895],[516749.5052865018,5276369.412578361],[516750.2564086274,5276369.414738566],[516750.17841967224,5276370.414771524],[516753.48335645965,5276370.424277546],[516753.4859140658,5276369.53516734],[516754.3121483884,5276369.537544138],[516754.4598150536,5276370.427086501],[516758.13999304635,5276370.5488143535],[516758.2106281657,5276372.104973349],[516765.27149283333,5276372.01415491],[516765.36612058623,5276365.234905816],[516763.9389875138,5276365.230797804],[516763.87475179776,5276361.451863258],[516763.1987409566,5276361.44991749],[516763.2006602698,5276360.783084844]]]},"properties":{"id_build":2169,"id_source":"w145341162","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516563.4883828253,5276337.717016715],[516564.4663605341,5276345.110586284],[516559.3191937313,5276345.7850153865],[516559.0250634393,5276343.561385671],[516549.54226067493,5276344.801424318],[516548.2187502499,5276334.761751447],[516553.3809479773,5276334.087355227],[516558.873800669,5276333.358333831],[516559.2634924589,5276336.315757023],[516563.2384678975,5276335.793589667],[516563.4883828253,5276337.717016715]]]},"properties":{"id_build":2170,"id_source":"w145341166","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516704.7403828061,5276318.837707],[516706.3928658032,5276318.84244685],[516706.3238100596,5276316.730594808],[516706.41326881695,5276311.729565763],[516713.6241125105,5276311.7502542315],[516713.6030628213,5276319.085412848],[516710.8989998414,5276319.077653628],[516710.81463940593,5276322.300462377],[516704.8056138866,5276322.28322424],[516704.7403828061,5276318.837707]]]},"properties":{"id_build":2171,"id_source":"w145341169","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.9109585862,5276147.123309944],[516656.9194870865,5276154.647488472],[516655.4697679829,5276154.6433427185],[516655.4770682107,5276157.34405705],[516649.3326339671,5276157.3376037935],[516649.3333506945,5276154.459088969],[516650.4225179277,5276154.462202473],[516650.42129713675,5276152.261633961],[516650.42098420265,5276147.115867426],[516651.94601089903,5276147.053543425],[516656.9109585862,5276147.123309944]]]},"properties":{"id_build":2172,"id_source":"w145341170","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516869.09666915133,5276183.821037245],[516868.97100453195,5276190.900270601],[516868.91811399756,5276193.600811544],[516863.5175435104,5276193.529602795],[516859.5065587247,5276193.473535201],[516855.9161828299,5276193.429801572],[516848.7654767111,5276193.342427871],[516840.6758714676,5276193.241234174],[516835.11756001617,5276193.169595673],[516833.5251328657,5276193.164993061],[516831.6622935592,5276193.159609427],[516831.66614765755,5276191.825944496],[516829.11225447344,5276191.818564676],[516827.7601933753,5276191.814658166],[516827.85521617753,5276184.924273083],[516827.9354684188,5276183.146270221],[516869.09666915133,5276183.821037245]]]},"properties":{"id_build":2173,"id_source":"w145341174","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.4258190121,5276310.435157834],[516569.1589265336,5276316.772204441],[516569.3801548171,5276318.217649506],[516565.3975923156,5276318.762019071],[516565.6169247857,5276320.8742966065],[516561.03355666634,5276321.383618412],[516556.90099266055,5276321.84976948],[516555.9469567534,5276313.95614108],[516564.43724562036,5276313.091164646],[516564.2179124069,5276310.978887181],[516568.4258190121,5276310.435157834]]]},"properties":{"id_build":2174,"id_source":"w145341175","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516727.80475401296,5276419.251934143],[516727.8076269578,5276418.251685077],[516732.0141948473,5276418.15262912],[516732.0870713467,5276418.9308164045],[516733.3941723845,5276418.879001954],[516734.79140733706,5276418.827446788],[516734.7933234326,5276418.160614081],[516738.5485831826,5276418.2825454585],[516738.3756813245,5276426.172967465],[516727.6350588643,5276426.030968582],[516727.80475401296,5276419.251934143]]]},"properties":{"id_build":2175,"id_source":"w145341176","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516465.67933436437,5276373.715661284],[516465.46606510767,5276372.103533153],[516470.0344564532,5276371.560752098],[516470.40118552034,5276374.684813868],[516478.9217633465,5276373.697545235],[516479.83846291,5276381.546599757],[516475.2400336191,5276382.089288123],[516470.7994347681,5276382.599084566],[516470.5060584304,5276380.097612322],[516466.44843573053,5276380.641837062],[516465.67933436437,5276373.715661284]]]},"properties":{"id_build":2176,"id_source":"w145341178","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517204.5787715509,5276681.385875555],[517204.1946850875,5276676.6501855515],[517213.6531151637,5276675.9001573725],[517213.81250576087,5276677.878916886],[517217.388512726,5276677.600524897],[517218.0837897503,5276686.315940681],[517213.42596812587,5276686.680046264],[517208.82823360816,5276687.044333128],[517208.66884159506,5276685.065573727],[517204.8899819768,5276685.365599696],[517204.5787715509,5276681.385875555]]]},"properties":{"id_build":2177,"id_source":"w145341185","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.4433229589,5276251.470691096],[517266.46907475195,5276255.559215397],[517266.39462000964,5276255.336715215],[517267.44785929227,5276254.784139056],[517265.4236441223,5276250.943817561],[517264.1538919049,5276248.517207629],[517270.2550781715,5276245.345585574],[517273.71591776295,5276243.466473356],[517275.73410218535,5276246.80665104],[517272.8000492073,5276248.353905122],[517274.4433229589,5276251.470691096]]]},"properties":{"id_build":2178,"id_source":"w145341187","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.3166578448,5276526.815835304],[516689.879966363,5276526.937531172],[516690.00557766075,5276530.283196637],[516689.1793661639,5276530.280828907],[516689.2573054855,5276531.914806107],[516689.3209871243,5276533.282007132],[516689.996659493,5276533.395083176],[516690.0603033196,5276537.396295433],[516688.0323321238,5276537.390483916],[516682.39876044233,5276537.485483325],[516682.3166578448,5276526.815835304]]]},"properties":{"id_build":2179,"id_source":"w145341188","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.2304757219,5276104.453664931],[517016.93098727375,5276104.119370913],[517013.7858695171,5276100.775992796],[517017.92859738466,5276096.89820672],[517018.3805907086,5276096.454968648],[517021.5253834079,5276099.909487958],[517028.33881733264,5276107.486901315],[517026.1244409796,5276109.525397975],[517023.89497809985,5276111.586079311],[517022.7714930366,5276110.471398941],[517017.2304757219,5276104.453664931]]]},"properties":{"id_build":2180,"id_source":"w145341189","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.6710180425,5276361.152011207],[516682.7251192288,5276368.487385566],[516679.02978885215,5276368.4101178665],[516676.1155618765,5276368.357316933],[516676.04745055793,5276365.912048787],[516676.0503145649,5276364.911799802],[516674.3981628508,5276364.795929754],[516674.784861146,5276360.907147859],[516675.1607409508,5276360.797084357],[516675.3100109688,5276361.130930796],[516682.6710180425,5276361.152011207]]]},"properties":{"id_build":2181,"id_source":"w145341191","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.65886569035,5276320.995297646],[516435.97091994947,5276320.95154708],[516435.9856608941,5276315.728024892],[516437.33769300935,5276315.731840523],[516437.20628680324,5276309.063090409],[516442.91455961374,5276309.190342942],[516442.9064016315,5276312.079950927],[516446.1961915999,5276312.144809467],[516450.04181727004,5276312.211239766],[516450.07688929955,5276321.069169426],[516439.65886569035,5276320.995297646]]]},"properties":{"id_build":2182,"id_source":"w145341192","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516830.863430188,5276331.83739931],[516830.77304630174,5276326.724712083],[516833.67259179236,5276326.666408165],[516833.6214958951,5276323.554348997],[516837.8581152321,5276323.47768393],[516840.2242972178,5276323.44006925],[516841.3660761777,5276323.421142813],[516841.5337310353,5276332.979641573],[516837.57506760827,5276333.0459935265],[516833.67649443087,5276333.112521854],[516833.6503040815,5276331.778769788],[516830.863430188,5276331.83739931]]]},"properties":{"id_build":2183,"id_source":"w145341193","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.5991968046,5276203.860901217],[516956.4012498125,5276202.523737293],[516958.7369145326,5276200.085464424],[516958.13826443284,5276199.305743573],[516960.41283634934,5276197.211826533],[516963.5610682983,5276194.320249112],[516968.8773589149,5276200.114998975],[516963.75533687696,5276204.990224873],[516963.0815736042,5276204.21028473],[516960.3700134714,5276206.758600955],[516957.5991968046,5276203.860901217]]]},"properties":{"id_build":2184,"id_source":"w145341194","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.4591439988,5276383.372138076],[516699.0645214799,5276383.382474518],[516699.14409482566,5276381.826746982],[516700.9618064588,5276381.831959142],[516703.7259299311,5276381.83988616],[516706.1067906644,5276381.913398913],[516706.0308125049,5276390.070834495],[516698.97028969065,5276390.050585923],[516698.96487242175,5276391.939945186],[516695.5097240795,5276391.93003943],[516695.4591439988,5276383.372138076]]]},"properties":{"id_build":2185,"id_source":"w145341198","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517259.09370585,5276640.525486645],[517258.73528944195,5276634.7451551445],[517262.04106522957,5276634.421533673],[517261.9722156196,5276632.309673512],[517266.13410197693,5276632.033047972],[517271.58812457795,5276631.671345638],[517272.0153743635,5276639.5635382375],[517262.77469261194,5276640.314117407],[517262.847165754,5276641.203450601],[517259.16585017013,5276641.525958607],[517259.09370585,5276640.525486645]]]},"properties":{"id_build":2186,"id_source":"w145341199","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.82656602125,5276330.59547624],[517001.4723542305,5276330.465784249],[517001.6631336481,5276316.573877093],[517022.09319330216,5276316.855830894],[517028.60916862584,5276323.320981999],[517028.55652725266,5276341.325462216],[517014.5107988062,5276341.17327258],[517014.4662059015,5276330.726008999],[517011.1089270179,5276330.627290348],[517007.82656602125,5276330.59547624]]]},"properties":{"id_build":2187,"id_source":"w145341202","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516966.02005650825,5276082.498668978],[516965.96067248995,5276074.518667985],[516971.8726272936,5276074.424751688],[516973.45006379456,5276074.429348266],[516973.37915803946,5276072.984325984],[516978.5624889338,5276072.888293248],[516978.4851051405,5276073.666045341],[516978.4601598776,5276082.223726995],[516978.4585400555,5276082.779420615],[516966.02005650825,5276082.498668978]]]},"properties":{"id_build":2188,"id_source":"w145341206","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.8031733583,5276093.62236513],[517304.8964585728,5276089.074826678],[517305.87692711496,5276087.744063311],[517308.4252520014,5276089.641010336],[517308.95304449915,5276088.975740536],[517312.1085177152,5276091.307938327],[517317.27272981044,5276095.113153863],[517312.2939475941,5276102.211294501],[517303.67380425637,5276096.072995582],[517304.2770415775,5276095.296809788],[517301.8031733583,5276093.62236513]]]},"properties":{"id_build":2189,"id_source":"w145341207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.774560523,5276320.997885177],[516679.3909688374,5276320.976735165],[516674.30582990125,5276320.962174428],[516674.3876246536,5276318.628475342],[516674.4032157858,5276313.182675746],[516677.8580925626,5276313.303707636],[516677.86254809395,5276311.7477649],[516683.64624555595,5276311.764329715],[516683.5692224356,5276312.430947151],[516686.72428456316,5276312.328846117],[516686.774560523,5276320.997885177]]]},"properties":{"id_build":2190,"id_source":"w145341208","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517204.5787715509,5276681.385875555],[517201.8141987498,5276681.577760364],[517201.8862210235,5276682.622687191],[517196.98811698385,5276682.963868212],[517192.15010008577,5276683.305230735],[517191.59476644784,5276675.512691715],[517200.97782572894,5276674.8513322845],[517200.88392723387,5276673.584061279],[517203.9865896715,5276673.359832853],[517204.1946850875,5276676.6501855515],[517204.5787715509,5276681.385875555]]]},"properties":{"id_build":2191,"id_source":"w145341211","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.2750568855,5276502.1659109825],[517273.7814289126,5276502.488966968],[517273.7159721239,5276501.766364303],[517270.6731390615,5276502.046303339],[517266.9015365986,5276502.390767074],[517265.838794767,5276490.962447922],[517270.7599273271,5276490.510252542],[517271.0874443333,5276494.045468487],[517273.49918752455,5276493.819227688],[517273.27356354316,5276491.38459753],[517276.24129164487,5276491.104437031],[517276.3578750623,5276492.316206369],[517277.2750568855,5276502.1659109825]]]},"properties":{"id_build":2192,"id_source":"w145341213","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.3651101278,5276147.854270886],[517297.1189968445,5276145.69963347],[517297.5944334747,5276144.956409338],[517290.47334323166,5276139.933978463],[517290.3231128544,5276139.933532494],[517295.45338697237,5276132.391263979],[517302.72504283173,5276137.303008425],[517304.38517209666,5276134.75172703],[517307.75875356013,5276136.984545012],[517300.3651101278,5276147.854270886]]]},"properties":{"id_build":2193,"id_source":"w145341217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517040.603091387,5276562.639916875],[517042.563750044,5276559.978300024],[517046.33355181845,5276555.0991838435],[517048.6567508107,5276556.884220549],[517049.32763577293,5276556.063750355],[517050.91817982856,5276554.112347244],[517058.263643927,5276559.357426847],[517052.3823019297,5276567.1199859725],[517045.41108995496,5276562.320568118],[517043.4510812798,5276564.7599064065],[517040.603091387,5276562.639916875]]]},"properties":{"id_build":2194,"id_source":"w145341219","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.794799036,5276209.43326149],[516650.2879426624,5276209.420375863],[516650.25191559654,5276203.629896758],[516650.2372923692,5276200.862477523],[516652.7911813988,5276200.869778919],[516661.5044498512,5276200.894697995],[516661.2635283956,5276206.339852016],[516660.287042327,5276206.337058751],[516658.93307741155,5276207.000023909],[516658.7758554968,5276209.444646697],[516654.794799036,5276209.43326149]]]},"properties":{"id_build":2195,"id_source":"w145341221","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.16484131094,5276444.558365523],[516716.26993832923,5276434.111534993],[516717.09616347885,5276434.113906533],[516723.7059646633,5276434.132883078],[516723.76958697126,5276438.1340951305],[516723.0181545904,5276438.243077102],[516723.0514977709,5276439.71021695],[516723.0846494563,5276441.244040069],[516723.68585887883,5276441.134626731],[516723.67596554966,5276444.579929191],[516716.16484131094,5276444.558365523]]]},"properties":{"id_build":2196,"id_source":"w145341222","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.67596554966,5276444.579929191],[516723.59159929317,5276447.802738409],[516723.06582088803,5276447.801228642],[516723.02376558573,5276449.368177743],[516722.9814550024,5276451.024037883],[516723.5823442767,5276451.025763324],[516723.4947867622,5276455.3599604815],[516719.81402363325,5276455.460531965],[516716.0587875316,5276455.338612601],[516716.16484131094,5276444.558365523],[516723.67596554966,5276444.579929191]]]},"properties":{"id_build":2197,"id_source":"w145341225","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516711.39269472566,5276222.93213811],[516711.23098683794,5276226.932702111],[516707.8508546365,5276226.923004786],[516707.9352143819,5276223.700196476],[516699.89832535904,5276223.566007413],[516699.84551761247,5276215.786079524],[516704.1196745279,5276215.742766313],[516707.8079408111,5276215.697775517],[516707.80539030116,5276216.58688551],[516711.41118993156,5276216.4860906],[516711.39269472566,5276222.93213811]]]},"properties":{"id_build":2198,"id_source":"w145341229","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516662.69450080284,5276310.03725495],[516666.4501495848,5276310.048000885],[516666.5265347032,5276309.603660764],[516671.8595563773,5276309.618924224],[516671.85605686624,5276310.841450656],[516674.55980543804,5276310.960330505],[516674.4032157858,5276313.182675746],[516674.3876246536,5276318.628475342],[516668.26592613664,5276318.6109523475],[516662.59490480996,5276318.594725128],[516662.69450080284,5276310.03725495]]]},"properties":{"id_build":2199,"id_source":"w145341233","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.3580005194,5276171.215600691],[516674.7946397715,5276171.213987815],[516674.8324810868,5276168.491174663],[516673.75840305723,5276168.465871847],[516673.7776575393,5276166.987769591],[516673.76867960114,5276164.876090503],[516683.27077155025,5276164.881072162],[516683.27344425564,5276166.570402541],[516683.26962416584,5276167.904067435],[516683.2674262466,5276171.293820569],[516675.3580005194,5276171.215600691]]]},"properties":{"id_build":2200,"id_source":"w145341234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516519.47852828365,5276671.72240366],[516524.8222559083,5276667.847674187],[516528.2649384169,5276672.191893461],[516529.16813073016,5276671.52761861],[516531.55484175246,5276674.790787407],[516533.7320674613,5276677.764399162],[516535.1622794699,5276676.6570626255],[516537.18231193454,5276679.441291824],[516529.35528557486,5276684.976056846],[516522.7706806182,5276676.17733243],[516519.47852828365,5276671.72240366]]]},"properties":{"id_build":2201,"id_source":"w145341237","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.35321085516,5276466.071238974],[516706.41396032204,5276465.98034944],[516706.86430729605,5276466.092781026],[516706.9097677424,5276476.428904357],[516699.2481442923,5276476.518070265],[516699.26057268423,5276472.183657267],[516699.86145976756,5276472.185380268],[516699.895296518,5276470.862914767],[516699.94549395994,5276469.073709409],[516699.2694956266,5276469.07177103],[516699.35321085516,5276466.071238974]]]},"properties":{"id_build":2202,"id_source":"w145341246","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.6805126607,5276499.041971895],[517223.5340564024,5276499.272689859],[517223.4543442899,5276500.828410845],[517227.0593211016,5276500.95021312],[517226.9805943173,5276502.172517679],[517226.5095492299,5276509.061789924],[517225.5331136853,5276509.058901767],[517224.4107304122,5276507.610765139],[517222.03743753996,5276507.53706256],[517220.2799845521,5276507.487409828],[517220.6805126607,5276499.041971895]]]},"properties":{"id_build":2203,"id_source":"w145341247","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.2532031125,5276387.820869112],[516594.79268180573,5276388.819240966],[516594.8732465634,5276389.541878466],[516590.41007720213,5276390.0626334],[516589.7130391004,5276384.259156433],[516593.6502703529,5276383.792472281],[516593.3494356062,5276381.290972317],[516597.44443616876,5276380.813626256],[516602.35096455883,5276380.227456713],[516602.8351083202,5276384.29654925],[516603.2532031125,5276387.820869112]]]},"properties":{"id_build":2204,"id_source":"w145341248","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.2066591496,5276182.73529361],[516607.8490675126,5276182.714604775],[516607.8458034095,5276183.859333848],[516602.94085162843,5276183.834235871],[516602.95786737907,5276180.500094943],[516599.38995344273,5276180.478811456],[516599.4256912755,5276173.210380432],[516602.6105245009,5276173.230571928],[516602.6224395269,5276171.685764813],[516602.0515673639,5276171.684137563],[516602.0839821745,5276165.582663435],[516605.9523962674,5276165.593691301],[516605.91557297914,5276173.239993945],[516606.67423183355,5276173.242156992],[516607.4328906891,5276173.244320136],[516607.43602794217,5276172.1440465795],[516611.2593371377,5276172.166063351],[516611.2233309667,5276179.523405319],[516611.2066591496,5276182.73529361]]]},"properties":{"id_build":2205,"id_source":"w145341257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516659.73578214174,5276170.592969052],[516659.60336901067,5276177.494362691],[516652.8959454072,5276177.364041655],[516652.9494031611,5276174.430107699],[516652.9671588703,5276173.474357464],[516647.0558832217,5276173.368547475],[516647.10065126844,5276170.845805367],[516647.1094333487,5276170.4012718685],[516656.4609051296,5276170.539146926],[516659.73578214174,5276170.592969052]]]},"properties":{"id_build":2206,"id_source":"w145341298","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516653.86661644635,5276192.5373797],[516654.31698559935,5276192.649807127],[516654.2323374253,5276195.983754733],[516652.9557096037,5276195.868964835],[516652.7911813988,5276200.869778919],[516650.2372923692,5276200.862477523],[516644.4534848548,5276200.845946145],[516644.4648232963,5276196.8782928735],[516644.47698749724,5276192.621678886],[516648.60860209365,5276192.52234768],[516653.86661644635,5276192.5373797]]]},"properties":{"id_build":2207,"id_source":"w145341299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516363.2680664688,5276585.814947959],[516357.697171169,5276590.356025095],[516360.54227199074,5276593.587068373],[516355.5735087431,5276597.685280383],[516352.80289234035,5276594.676728055],[516352.4267217231,5276594.8979511745],[516347.18654155463,5276588.659416587],[516358.1026869244,5276579.687753485],[516361.02196553315,5276583.252424358],[516363.2680664688,5276585.814947959]]]},"properties":{"id_build":2208,"id_source":"w145341308","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.1610882979,5276375.307969193],[516497.94807994977,5276373.606928828],[516501.9153870719,5276373.129153897],[516502.2238672,5276375.597328661],[516510.9625265891,5276374.521813071],[516511.9319818519,5276382.29322467],[516507.84443785215,5276382.792879886],[516503.2008451268,5276383.368760073],[516502.8556601056,5276380.6004041005],[516498.87330409273,5276381.089249704],[516498.1610882979,5276375.307969193]]]},"properties":{"id_build":2209,"id_source":"w145341309","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5068044968,5276370.134745798],[516534.69855529093,5276363.797489716],[516534.5521170041,5276362.463397902],[516538.53433106485,5276362.030146062],[516539.04843965557,5276366.1437739],[516548.06411990995,5276365.391405624],[516549.0923222587,5276373.618663134],[516544.2913297543,5276374.0718097165],[516539.85100254044,5276374.481528638],[516539.2636767835,5276369.700854698],[516535.5068044968,5276370.134745798]]]},"properties":{"id_build":2210,"id_source":"w145341311","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516698.5579004369,5276455.288407075],[516696.6046931219,5276455.393946795],[516696.5423269278,5276450.948179816],[516697.4436608405,5276450.950763911],[516697.450766508,5276448.472368882],[516697.46150466136,5276444.726991658],[516704.82272492413,5276444.63696153],[516704.8787092717,5276451.305504383],[516703.9022642566,5276451.302703706],[516703.8907887826,5276455.3037001835],[516698.5579004369,5276455.288407075]]]},"properties":{"id_build":2211,"id_source":"w145341319","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.7262602135,5276455.2725287145],[516455.2107974985,5276450.039029884],[516457.39278995077,5276448.711519242],[516456.5703354741,5276447.37551903],[516459.8818244145,5276445.050943908],[516462.62008831836,5276448.881888567],[516463.1732091883,5276449.839253365],[516467.6126243535,5276447.073312449],[516471.80124898156,5276453.308979794],[516461.8674180204,5276460.060412989],[516458.7262602135,5276455.2725287145]]]},"properties":{"id_build":2212,"id_source":"w145341323","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517139.1620102541,5276506.803560414],[517136.8998668048,5276509.797676986],[517134.034553827,5276513.567998161],[517130.66210638575,5276511.001862716],[517130.20980947267,5276511.556231101],[517127.5044364933,5276509.469960647],[517123.68991051894,5276506.535767976],[517126.85696957144,5276502.321770121],[517130.82932680764,5276505.223087172],[517133.0911419197,5276502.340107061],[517139.1620102541,5276506.803560414]]]},"properties":{"id_build":2213,"id_source":"w145341338","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516756.51179958193,5276790.218875004],[516758.01972421433,5276788.2115844125],[516757.28524455987,5276787.66488594],[516760.037263055,5276783.982965525],[516763.0576072566,5276786.236682484],[516768.8588430596,5276790.432240269],[516784.59417213954,5276769.472156537],[516770.8862185781,5276759.318943511],[516770.3433344397,5276760.050902521],[516761.00211219443,5276772.338294838],[516747.11415508634,5276762.084594029],[516746.2896703551,5276761.49318224],[516740.1071457761,5276769.733090808],[516738.75020335964,5276771.4740845235],[516736.1943969709,5276774.834273478],[516756.51179958193,5276790.218875004]]]},"properties":{"id_build":2214,"id_source":"w146255123","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516641.0212486999,5276710.633940361],[516639.12989868957,5276715.407544977],[516638.44980093907,5276716.850418482],[516636.86079074984,5276720.958049224],[516625.4545774944,5276717.369002348],[516626.0595642178,5276715.9259129],[516620.80741489964,5276714.0215446185],[516623.7588258641,5276706.250187084],[516629.0116159792,5276707.932280317],[516629.54054457694,5276706.822393288],[516641.0212486999,5276710.633940361]]]},"properties":{"id_build":2215,"id_source":"w146259605","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516031.60331127886,5277617.491933038],[516033.77484332904,5277617.042239892],[516034.6389688443,5277616.855682108],[516034.4239756618,5277615.843717388],[516038.1358975285,5277615.064849094],[516043.44828688545,5277613.956973912],[516041.8471878017,5277606.339482613],[516029.78717286524,5277608.873594352],[516031.25491963245,5277615.834990004],[516031.60331127886,5277617.491933038]]]},"properties":{"id_build":2216,"id_source":"w147733318","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.6094331704,5277062.656235037],[517238.6393403624,5277062.385037347],[517238.4446299623,5277052.048453409],[517217.42245869956,5277052.230762986],[517217.6094331704,5277062.656235037]]]},"properties":{"id_build":2217,"id_source":"w156350962","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.57108332566,5277080.592570804],[517224.91956923646,5277094.808390994],[517228.5700949458,5277094.641367381],[517228.60375565256,5277080.72675527],[517224.57108332566,5277080.592570804]]]},"properties":{"id_build":2218,"id_source":"w156350964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515330.34358018084,5277047.0122428695],[515327.48935724195,5277047.115868646],[515327.2818923599,5277040.335802238],[515331.4134636849,5277040.013260081],[515331.48534830083,5277041.235985799],[515339.14707697916,5277040.811605393],[515339.3606763779,5277045.257755205],[515338.5339528567,5277045.477856746],[515338.8153367004,5277052.702677115],[515330.627900222,5277053.1256737495],[515330.34358018084,5277047.0122428695]]]},"properties":{"id_build":2219,"id_source":"w167333729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.80598102853,5276995.974814463],[515281.3700200273,5276991.98051492],[515277.24599886755,5276989.4134812765],[515281.0926446736,5276983.199753622],[515289.3401052013,5276988.556107031],[515287.75649798964,5276990.997021762],[515291.6554929299,5276993.452332272],[515287.0548843428,5277000.775470276],[515283.1558924037,5276998.320162817],[515282.92999683745,5276998.541849251],[515278.80598102853,5276995.974814463]]]},"properties":{"id_build":2220,"id_source":"w167333943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515206.99290592025,5277087.2547713155],[515219.8148777121,5277095.179188898],[515215.441489814,5277101.8361397125],[515212.89206248155,5277100.273522857],[515209.87546940916,5277105.044648361],[515203.5772912612,5277101.027171582],[515206.4428048901,5277096.589067328],[515205.392816986,5277096.030626939],[515207.2016698086,5277093.590277974],[515204.05257467995,5277091.581540224],[515206.99290592025,5277087.2547713155]]]},"properties":{"id_build":2221,"id_source":"w167333947","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515210.17252455314,5276272.387510339],[515206.8637618165,5276273.823684262],[515205.5943780321,5276270.930742294],[515206.4974803048,5276270.2662629485],[515205.1535623589,5276267.150847439],[515218.1644574304,5276260.961015285],[515232.05855570326,5276290.449312006],[515220.85420171847,5276295.199020089],[515217.56751845655,5276288.188640959],[515215.3869124815,5276289.072060135],[515210.68119361944,5276278.946071136],[515212.7866893062,5276278.062454008],[515210.17252455314,5276272.387510339]]]},"properties":{"id_build":2222,"id_source":"w167334306","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515386.32081853424,5276838.661877653],[515386.24130759935,5276840.328762267],[515378.34929717076,5276842.530708049],[515378.1260334573,5276841.752140917],[515373.4659355704,5276843.0735119805],[515372.2748005218,5276839.069340219],[515372.7260240009,5276838.848252099],[515371.75873917603,5276835.400369646],[515375.89280608995,5276834.188747869],[515375.67012862343,5276833.1879031025],[515390.5526099963,5276828.892771747],[515392.7852328767,5276836.678448132],[515386.32081853424,5276838.661877653]]]},"properties":{"id_build":2223,"id_source":"w167334405","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515354.76783331804,5276870.2533917865],[515353.5611603613,5276872.139584134],[515345.3141785345,5276866.560863224],[515347.5007401425,5276863.343575931],[515352.5249174299,5276866.357590287],[515356.0680768592,5276861.365648595],[515363.7159691763,5276866.275966151],[515364.99863217276,5276864.056557463],[515367.9230651461,5276865.842508995],[515367.243300401,5276867.285530511],[515366.56558896124,5276867.950579976],[515361.5910187947,5276874.605833844],[515354.76783331804,5276870.2533917865]]]},"properties":{"id_build":2224,"id_source":"w167334423","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515392.4224124489,5276973.934967667],[515391.44664309977,5276973.710109062],[515387.0908828351,5276973.58745773],[515382.5101028537,5276973.353075549],[515383.2107053798,5276964.019194172],[515384.93810895155,5276964.023757901],[515386.014826819,5276954.468591389],[515393.82423891575,5276955.04492965],[515392.96812110307,5276966.378912647],[515394.39481227024,5276966.493823933],[515394.16274105496,5276969.049422812],[515392.8108611616,5276969.04584901],[515392.4224124489,5276973.934967667]]]},"properties":{"id_build":2225,"id_source":"w167334442","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515399.85845731327,5276888.488227246],[515399.9332688706,5276888.599564748],[515402.8573848572,5276890.496672826],[515405.55647668557,5276892.282047403],[515409.5303000372,5276894.848774],[515400.7857409368,5276907.0510025425],[515399.58640844346,5276906.158713416],[515397.9273336227,5276908.710538279],[515393.8035980053,5276906.032283554],[515395.46237792977,5276903.591596413],[515394.6376889204,5276903.033717812],[515399.916221499,5276895.045619778],[515396.91700144013,5276893.148314572],[515399.85845731327,5276888.488227246]]]},"properties":{"id_build":2226,"id_source":"w167334686","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515401.29545554845,5276884.713279404],[515399.8690383801,5276884.487227608],[515398.67175834166,5276882.81696656],[515398.7545052098,5276879.927554347],[515393.43170367775,5276876.245872524],[515399.76320852083,5276867.704859926],[515399.01362056454,5276867.147179372],[515401.6523162404,5276863.375409663],[515410.64912982594,5276869.400753522],[515409.5950027596,5276870.3982208185],[515403.1860288938,5276879.828135142],[515410.38263601775,5276884.959600041],[515407.8935671486,5276888.954041122],[515402.12161634007,5276884.715464533],[515401.29545554845,5276884.713279404]]]},"properties":{"id_build":2227,"id_source":"w167334755","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515355.0193147325,5276888.814376596],[515357.96015290066,5276884.376545963],[515364.18335530517,5276888.393989917],[515361.0174913005,5276892.720084183],[515355.0193147325,5276888.814376596]]]},"properties":{"id_build":2228,"id_source":"w167336104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515317.6142273136,5277089.5452405615],[515317.4950121753,5277077.764120534],[515330.8639374958,5277077.577025069],[515330.8323345792,5277089.580027772],[515317.6142273136,5277089.5452405615]]]},"properties":{"id_build":2229,"id_source":"w167336415","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515364.56155618536,5276915.846482748],[515369.9917130995,5276907.303059467],[515379.6638503379,5276913.552417918],[515373.9329713484,5276922.206177994],[515364.56155618536,5276915.846482748]]]},"properties":{"id_build":2230,"id_source":"w167336511","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515392.4224124489,5276973.934967667],[515392.8108611616,5276969.04584901],[515394.16274105496,5276969.049422812],[515393.77399739623,5276974.049680276],[515392.4224124489,5276973.934967667]]]},"properties":{"id_build":2231,"id_source":"w167336601","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515344.80900183745,5277001.260799205],[515344.17448993435,5277014.040189457],[515333.1359789119,5277013.344273772],[515333.9206747092,5277000.565277938],[515344.80900183745,5277001.260799205]]]},"properties":{"id_build":2232,"id_source":"w167336790","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515285.63311472855,5277056.008154112],[515285.6564550351,5277047.117041415],[515297.7492749688,5277046.704240446],[515297.72474826185,5277056.0399087705],[515285.63311472855,5277056.008154112]]]},"properties":{"id_build":2233,"id_source":"w167336879","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515284.10906693747,5276978.539804559],[515288.8604815982,5276970.994781051],[515297.7830155439,5276976.686337778],[515292.9567815223,5276984.120017943],[515284.10906693747,5276978.539804559]]]},"properties":{"id_build":2234,"id_source":"w167337006","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515411.60897698184,5276620.228237965],[515414.3305489142,5276613.567064358],[515426.7848097565,5276618.823604123],[515423.9884114464,5276625.37343423],[515411.60897698184,5276620.228237965]]]},"properties":{"id_build":2235,"id_source":"w167337067","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515253.26825382706,5277025.471012597],[515259.1487688345,5277016.928665491],[515265.1474593397,5277020.611997454],[515259.040754473,5277029.4871648345],[515253.26825382706,5277025.471012597]]]},"properties":{"id_build":2236,"id_source":"w167337092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.80598102853,5276995.974814463],[515274.75706570985,5276993.407979631],[515277.24599886755,5276989.4134812765],[515281.3700200273,5276991.98051492],[515278.80598102853,5276995.974814463]]]},"properties":{"id_build":2237,"id_source":"w167337424","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515349.09260930563,5276857.790789324],[515351.34226959577,5276859.130395317],[515350.13500953995,5276861.238866094],[515347.80936517916,5276860.232479231],[515349.09260930563,5276857.790789324]]]},"properties":{"id_build":2238,"id_source":"w167337560","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515339.11969533615,5277022.695766066],[515347.75545427116,5277023.163080242],[515347.12328133185,5277035.053359381],[515338.487539992,5277034.586046093],[515339.11969533615,5277022.695766066]]]},"properties":{"id_build":2239,"id_source":"w167337686","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515211.35845580883,5277083.598565003],[515218.3004604511,5277071.169061032],[515226.84942783916,5277076.081556321],[515219.53189621255,5277088.510068691],[515211.35845580883,5277083.598565003]]]},"properties":{"id_build":2240,"id_source":"w167337732","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515242.708058359,5277042.892287077],[515249.7936907096,5277033.019409241],[515255.41656144965,5277036.812886749],[515248.1053227642,5277046.796306702],[515242.708058359,5277042.892287077]]]},"properties":{"id_build":2241,"id_source":"w167338116","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515385.47867458686,5277015.260575378],[515386.18808738695,5277002.592526754],[515393.92233089334,5277003.168666881],[515392.9118983876,5277016.05819825],[515385.47867458686,5277015.260575378]]]},"properties":{"id_build":2242,"id_source":"w167338256","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515354.1177448014,5277088.307706697],[515354.8150655078,5277080.19634839],[515367.9557445589,5277081.120133085],[515367.18330275314,5277089.231291665],[515354.1177448014,5277088.307706697]]]},"properties":{"id_build":2243,"id_source":"w167338292","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515337.62988307315,5276961.009325413],[515352.7989490893,5276961.8272778485],[515352.0898976625,5276974.384190685],[515336.9211570027,5276973.455101116],[515337.62988307315,5276961.009325413]]]},"properties":{"id_build":2244,"id_source":"w167338301","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515369.91250833607,5276937.310558524],[515379.2363699753,5276933.223008837],[515383.7159449862,5276943.34855098],[515374.39268320386,5276947.213815749],[515369.91250833607,5276937.310558524]]]},"properties":{"id_build":2245,"id_source":"w167338342","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.195128983,5277085.662927032],[515288.93630723923,5277085.13542206],[515288.91792258644,5277092.137173722],[515278.4774602272,5277092.554328038],[515278.195128983,5277085.662927032]]]},"properties":{"id_build":2246,"id_source":"w167338410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515342.7140231991,5276884.225216003],[515346.3886291676,5276886.346552347],[515348.3390287862,5276887.240810012],[515346.67821374413,5276890.459482643],[515341.12890151056,5276887.221810324],[515342.7140231991,5276884.225216003]]]},"properties":{"id_build":2247,"id_source":"w167338874","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515346.3886291676,5276886.346552347],[515342.7140231991,5276884.225216003],[515340.6891017456,5276883.108484612],[515344.9149273824,5276875.562122646],[515350.6892725137,5276878.911531333],[515346.3886291676,5276886.346552347]]]},"properties":{"id_build":2248,"id_source":"w167338881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515254.8360973313,5277057.705624167],[515247.3729331387,5277068.3554852605],[515239.35114840127,5277062.888641219],[515247.9463848784,5277050.130080614],[515252.07008454006,5277052.80823273],[515250.4873835225,5277054.915741042],[515254.8360973313,5277057.705624167]]]},"properties":{"id_build":2249,"id_source":"w167338918","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515269.159142738,5277008.730571464],[515274.363178487,5277000.408745228],[515281.63660254714,5277004.873415666],[515274.09617763053,5277016.301017088],[515265.0246393264,5277010.164546832],[515266.6847927021,5277007.168128283],[515269.159142738,5277008.730571464]]]},"properties":{"id_build":2250,"id_source":"w167338946","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515461.30732624885,5276601.021679048],[515454.2090166633,5276615.339847933],[515446.6333249236,5276611.429862714],[515467.46083291573,5276574.809071392],[515473.611545678,5276577.9373196885],[515471.8769411743,5276580.600061695],[515461.30732624885,5276601.021679048]]]},"properties":{"id_build":2251,"id_source":"w167338962","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515310.5376069686,5277038.846935077],[515315.26883741585,5277038.970516935],[515314.48711015086,5277050.638126874],[515304.34815330873,5277050.611469431],[515304.0673107966,5277043.164373031],[515310.22638060775,5277042.958284724],[515310.5376069686,5277038.846935077]]]},"properties":{"id_build":2252,"id_source":"w167338996","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515316.26046075247,5276947.505179084],[515321.9164167533,5276938.740025631],[515329.18958944705,5276943.315893835],[515321.3468190594,5276955.409475835],[515312.64958927187,5276949.718475711],[515314.6107877114,5276946.500583252],[515316.26046075247,5276947.505179084]]]},"properties":{"id_build":2253,"id_source":"w167338998","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515221.4630635116,5276981.821037437],[515224.2526727522,5276977.71616299],[515225.8269574584,5276978.831675772],[515230.19986722944,5276972.3970116135],[515237.02331567387,5276976.638169571],[515229.9364744163,5276986.955617765],[515221.4630635116,5276981.821037437]]]},"properties":{"id_build":2254,"id_source":"w167339017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515202.821539837,5276297.263572999],[515200.6406494529,5276298.258136476],[515197.3278399925,5276272.465119814],[515201.3132021881,5276270.8084273115],[515211.3934312228,5276293.84062878],[515202.821539837,5276297.263572999]]]},"properties":{"id_build":2255,"id_source":"w167339048","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515260.9956838682,5277085.951242251],[515262.266024785,5277088.39964479],[515269.4037143239,5277087.306961274],[515271.1083457862,5277095.9803267615],[515262.3935080816,5277097.068873962],[515258.06346617686,5277087.166094333],[515260.9956838682,5277085.951242251]]]},"properties":{"id_build":2256,"id_source":"w167339123","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515302.2385815895,5277081.72503518],[515302.2441309816,5277079.61339582],[515309.9794487792,5277079.744869068],[515310.0340962133,5277087.524790529],[515296.2905559863,5277087.377530542],[515296.2303429746,5277081.7092486145],[515302.2385815895,5277081.72503518]]]},"properties":{"id_build":2257,"id_source":"w167339135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515276.4584073152,5276888.830028044],[515282.2701125132,5276877.95359227],[515290.67026750755,5276882.421229536],[515282.4440939965,5276897.514626494],[515273.2192525455,5276892.489139588],[515275.48320238665,5276888.382911176],[515276.4584073152,5276888.830028044]]]},"properties":{"id_build":2258,"id_source":"w167339197","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515243.07958199625,5277101.797287072],[515243.4571322786,5277101.0202977],[515248.18482083763,5277102.477492186],[515245.83713976975,5277109.917703302],[515235.4811210005,5277106.778685898],[515237.75194223376,5277100.005107635],[515243.07958199625,5277101.797287072]]]},"properties":{"id_build":2259,"id_source":"w167339201","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515414.50482259446,5276859.852948459],[515420.17925783567,5276844.197281082],[515427.3069715855,5276846.994651341],[515420.1221630934,5276865.758222477],[515411.04318862414,5276862.399998216],[515412.10320036876,5276859.1797537105],[515414.50482259446,5276859.852948459]]]},"properties":{"id_build":2260,"id_source":"w167339246","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515374.35096287605,5277048.350808326],[515374.82065794844,5277041.1279692035],[515386.53416214004,5277042.1591668585],[515385.8986814221,5277055.271970304],[515372.7588269083,5277054.014728542],[515372.9982211419,5277048.680655806],[515374.35096287605,5277048.350808326]]]},"properties":{"id_build":2261,"id_source":"w167339277","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515345.9643344385,5277075.838567758],[515346.1837853826,5277078.0619398225],[515350.5397611912,5277078.073421828],[515350.36523677147,5277087.297555672],[515337.97237799247,5277087.598316965],[515338.00311733776,5277075.928731039],[515345.9643344385,5277075.838567758]]]},"properties":{"id_build":2262,"id_source":"w167339300","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515341.7717633265,5276899.782284674],[515343.5824909287,5276896.675145287],[515351.6070456299,5276901.141881268],[515345.7215926794,5276911.46235612],[515339.0468927362,5276907.777161316],[515343.1219022526,5276900.452679883],[515341.7717633265,5276899.782284674]]]},"properties":{"id_build":2263,"id_source":"w167339372","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515294.2826739215,5276962.562405954],[515301.59789337905,5276951.134239322],[515308.87077417393,5276955.821221126],[515307.13635648874,5276958.484013379],[515302.1362162462,5276966.350673376],[515301.6309427291,5276967.138437193],[515294.2826739215,5276962.562405954]]]},"properties":{"id_build":2264,"id_source":"w167339390","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.966845591,5276925.9906852655],[515337.11744984327,5276927.443798221],[515334.09656884713,5276933.770802909],[515323.29462516314,5276928.741083056],[515320.65074631333,5276934.513388464],[515315.47786344815,5276930.943311679],[515318.196843755,5276925.171201534],[515320.764742027,5276919.732114145],[515333.966845591,5276925.9906852655]]]},"properties":{"id_build":2265,"id_source":"w167339786","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515302.1362162462,5276966.350673376],[515307.13635648874,5276958.484013379],[515310.14279000816,5276960.4924311815],[515310.3648892573,5276961.7155514145],[515308.1778004137,5276965.155130813],[515306.975252172,5276965.48538851],[515306.52550171316,5276965.150787276],[515304.71539917926,5276968.035660645],[515302.1362162462,5276966.350673376]]]},"properties":{"id_build":2266,"id_source":"w167339921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.3672531719,5276982.559194302],[515338.69907029544,5276982.795516173],[515338.69321509294,5276985.018294099],[515346.0522581291,5276985.482242489],[515345.4987039203,5276996.039052252],[515336.8631973045,5276995.460602633],[515337.4038555209,5276989.793903564],[515333.123795828,5276989.449212602],[515333.3672531719,5276982.559194302]]]},"properties":{"id_build":2267,"id_source":"w167340039","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515394.7416549124,5277090.971183214],[515394.12085164705,5277098.527040974],[515376.7773950528,5277096.480699802],[515376.94315615005,5277090.590733958],[515384.52737148287,5277091.055326356],[515384.8392353101,5277086.721702431],[515388.593500172,5277087.065042203],[515388.3590861694,5277090.509753097],[515394.7416549124,5277090.971183214]]]},"properties":{"id_build":2268,"id_source":"w167340053","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515245.06322824437,5276946.540366744],[515250.64513713395,5276937.330392123],[515252.219718901,5276938.334773069],[515254.55815889576,5276934.451010792],[515260.25710082054,5276937.911272269],[515257.8432623872,5276941.905974378],[515257.4683208753,5276941.682712639],[515252.0371968283,5276950.670796449],[515245.06322824437,5276946.540366744]]]},"properties":{"id_build":2269,"id_source":"w167340189","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515385.0498505867,5276978.583349862],[515384.27003166894,5276989.472977368],[515380.8155331887,5276989.352711883],[515380.5805331683,5276993.019700355],[515371.6446087625,5276992.440405652],[515372.5033222484,5276980.106169091],[515380.46290976845,5276980.682886078],[515380.6198702199,5276978.127088242],[515385.0498505867,5276978.583349862]]]},"properties":{"id_build":2270,"id_source":"w167340233","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515378.5159931608,5277035.3584642615],[515379.3697253766,5277024.913589216],[515384.5510009741,5277025.260695354],[515384.93209881935,5277023.150048359],[515392.14058898774,5277023.724797171],[515391.44262255164,5277032.058428226],[515387.3125105145,5277031.8252332825],[515386.62453699094,5277036.380142219],[515378.5159931608,5277035.3584642615]]]},"properties":{"id_build":2271,"id_source":"w167340268","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515506.5118116054,5276605.365174154],[515508.61161166785,5276606.593301425],[515505.1412053949,5276612.3633207055],[515501.66991845553,5276618.466758588],[515486.5224382316,5276609.201869594],[515493.53892493056,5276597.439733246],[515495.56421279476,5276598.445378307],[515497.6016259869,5276594.894332148],[515508.6246342482,5276601.703192971],[515506.5118116054,5276605.365174154]]]},"properties":{"id_build":2272,"id_source":"w167340487","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516328.160293198,5277561.190231442],[516326.86342273565,5277563.042630068],[516325.67212490586,5277564.739729221],[516326.12177060934,5277565.074409719],[516322.95524178696,5277569.511125304],[516322.28061766404,5277569.064674426],[516321.428659649,5277570.262596454],[516320.24490569416,5277571.9486038815],[516323.5426160953,5277574.291786325],[516322.69050277624,5277575.545277671],[516321.5820019268,5277577.175925894],[516322.1067435148,5277577.510816626],[516318.563495567,5277582.391037941],[516317.9639691698,5277581.944798048],[516317.20237896114,5277583.0540621],[516314.6538068204,5277586.725649184],[516313.6660252678,5277588.156585457],[516314.1904548738,5277588.6026144745],[516312.5317928999,5277590.9319039285],[516317.3286203588,5277594.279542425],[516316.3183104982,5277595.710415122],[516315.2175117467,5277597.274402244],[516315.81703676487,5277597.720641869],[516312.3492139709,5277602.48993855],[516311.52471167024,5277601.931929063],[516310.6349011164,5277603.240886505],[516309.48870505963,5277604.927001389],[516301.5440610336,5277599.347756939],[516309.3091840523,5277588.588938021],[516303.9876054099,5277584.906417035],[516315.373587584,5277568.378474706],[516312.150967316,5277566.035507336],[516321.19778641826,5277553.502058017],[516328.160293198,5277561.190231442]]]},"properties":{"id_build":2273,"id_source":"w188736211","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516756.81474360847,5276794.565311747],[516752.18515822693,5276800.820274783],[516749.9217006159,5276799.157781216],[516742.3001276249,5276793.301025846],[516738.4093175929,5276798.613435779],[516722.9023292213,5276818.607383708],[516725.20337200403,5276820.258860795],[516714.1657835096,5276834.864277684],[516725.0106371621,5276842.908593142],[516729.496692101,5276836.919931521],[516730.98060132214,5276838.03559258],[516733.57431359944,5276834.542142363],[516732.1576802395,5276833.5378137315],[516739.4714498097,5276823.656279419],[516740.96987058985,5276824.949808352],[516745.78092674847,5276818.261913052],[516741.34386044234,5276815.0372157395],[516743.89179019,5276811.799260015],[516746.5457988083,5276808.239305124],[516757.0222575284,5276813.80420345],[516762.8398559032,5276799.261636802],[516756.81474360847,5276794.565311747]]]},"properties":{"id_build":2274,"id_source":"w191378073","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.8398559032,5276799.261636802],[516756.81474360847,5276794.565311747],[516763.0576072566,5276786.236682484],[516768.8588430596,5276790.432240269],[516769.79010329506,5276798.281389898],[516769.84248593723,5276798.348224614],[516765.53724123986,5276798.90264084],[516764.39517186425,5276799.054948558],[516762.8398559032,5276799.261636802]]]},"properties":{"id_build":2275,"id_source":"w191378075","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.9217006159,5276799.157781216],[516752.18515822693,5276800.820274783],[516756.81474360847,5276794.565311747],[516763.0576072566,5276786.236682484],[516760.037263055,5276783.982965525],[516757.28524455987,5276787.66488594],[516758.01972421433,5276788.2115844125],[516756.51179958193,5276790.218875004],[516754.8152137307,5276792.536814526],[516754.046087155,5276793.590429456],[516749.9217006159,5276799.157781216]]]},"properties":{"id_build":2276,"id_source":"w191378076","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.438001557,5277391.878772268],[515979.19350894564,5277393.067691808],[515978.7560307001,5277388.287479796],[515981.5356106823,5277387.96168949],[515981.1698773814,5277384.404212037],[515988.45662630635,5277383.646239138],[515988.16294415167,5277381.200357094],[515994.09730272536,5277380.6609572405],[515994.6101734063,5277385.33023772],[515990.8539980895,5277385.764479267],[515991.0291382136,5277387.620994949],[515991.438001557,5277391.878772268]]]},"properties":{"id_build":2277,"id_source":"w340436078","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515989.81834194367,5277161.2592804795],[515989.6043284271,5277157.146521671],[515990.8813681562,5277157.038888951],[515990.6658291111,5277153.481824735],[515994.6468497844,5277153.270479632],[515994.50519383507,5277150.158177269],[516004.9462214674,5277149.520029064],[516005.1599189749,5277153.74392733],[516002.23032720375,5277153.9581547715],[516002.3363827386,5277156.359065057],[516002.512622491,5277160.549518388],[515989.81834194367,5277161.2592804795]]]},"properties":{"id_build":2278,"id_source":"w340436079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515908.0248913796,5277301.182480078],[515906.97531082877,5277300.512773819],[515903.9561247212,5277306.061514867],[515897.6571230187,5277302.598979277],[515904.6763501609,5277289.837074992],[515908.1258024974,5277291.735874859],[515909.9376239515,5277288.2954924535],[515915.4117459428,5277291.311227244],[515912.31683936843,5277297.082036509],[515910.7421643633,5277296.18861499],[515909.49675459677,5277298.474691186],[515908.0248913796,5277301.182480078]]]},"properties":{"id_build":2279,"id_source":"w340436080","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.89196691266,5277104.502782046],[516002.44135065685,5277104.501543611],[516002.5805601217,5277108.502957248],[515994.7735472662,5277107.147829443],[515994.77537902974,5277106.480995973],[515993.498328143,5277106.588627854],[515993.49741233385,5277106.922044595],[515991.4705557302,5277106.583058446],[515991.18967941054,5277099.469343077],[516002.756728339,5277099.0565625895],[516002.83759661496,5277102.424319277],[516002.89196691266,5277104.502782046]]]},"properties":{"id_build":2280,"id_source":"w340436081","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516036.59115396446,5277139.826799865],[516032.38481568027,5277140.0374959335],[516032.31216153887,5277139.148177807],[516030.9676780353,5277139.200045892],[516029.68327636487,5277139.2520796945],[516029.6823584756,5277139.585496449],[516024.34918061085,5277139.9042360205],[516023.7820060924,5277127.677301747],[516026.7116119262,5277127.463085124],[516026.6392626515,5277126.462628172],[516035.87808544043,5277126.043505859],[516036.59115396446,5277139.826799865]]]},"properties":{"id_build":2281,"id_source":"w340436085","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.1805322246,5277148.158171221],[515953.94768512424,5277148.168647194],[515936.15327989176,5277149.109061801],[515935.9416613635,5277144.107193778],[515937.9697248772,5277144.001604962],[515937.5467943133,5277133.886729994],[515942.7445753217,5277133.645338017],[515942.5414457876,5277128.2878458975],[515949.0387471465,5277127.961105956],[515949.28684079146,5277133.352063419],[515951.36744950333,5277133.257737157],[515951.68765914085,5277139.738061919],[515951.8657628049,5277143.261680008],[515953.89352241234,5277143.267235656],[515954.1805322246,5277148.158171221]]]},"properties":{"id_build":2282,"id_source":"w340436087","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515968.3501831486,5277376.255832734],[515957.7575401694,5277377.560467947],[515957.34597059386,5277374.280715985],[515957.0226920693,5277371.668044811],[515953.7925102022,5277371.992612114],[515953.13062500703,5277366.87836802],[515957.11210754915,5277366.444719599],[515957.26047858916,5277367.111965002],[515961.3924646263,5277366.567592208],[515961.32010742463,5277365.56713571],[515969.4335797194,5277364.589125796],[515970.46180164703,5277373.038570492],[515967.90751291317,5277373.364983986],[515968.3501831486,5277376.255832734]]]},"properties":{"id_build":2283,"id_source":"w340436089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515875.2901403201,5277369.432983595],[515869.7373369813,5277367.750748839],[515869.35036218213,5277369.20562525],[515869.0544760419,5277370.305102646],[515868.7543818484,5277370.193144934],[515867.01104574924,5277376.078802275],[515859.8072744629,5277373.947518751],[515861.6266115305,5277367.728647006],[515862.0015025091,5277367.951947909],[515865.6389774104,5277355.958762338],[515874.04345081386,5277358.426745784],[515873.28548752406,5277360.98089431],[515877.6376155629,5277362.326438612],[515875.2901403201,5277369.432983595]]]},"properties":{"id_build":2284,"id_source":"w340436092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515915.07744518295,5277358.661020923],[515910.95092496293,5277357.204925362],[515909.6648198532,5277360.646744252],[515901.3366780763,5277357.734358613],[515902.62338600296,5277354.0702599995],[515903.3737737271,5277354.294589186],[515903.74446306366,5277353.306457638],[515904.13023314613,5277352.29613935],[515901.2043875683,5277351.176749989],[515903.096143345,5277345.958347008],[515911.2744057585,5277348.759185647],[515910.8964782462,5277349.647271129],[515917.49885745824,5277351.99925312],[515915.07744518295,5277358.661020923]]]},"properties":{"id_build":2285,"id_source":"w340436093","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515930.2410335626,5277328.139049027],[515920.791250246,5277323.434216629],[515922.5431719053,5277319.9269903265],[515923.53315355483,5277320.418712789],[515924.1523469428,5277319.186754686],[515924.5827571924,5277318.332155567],[515920.3678532804,5277316.23120109],[515922.48974249285,5277312.002577867],[515927.6646518251,5277314.572947054],[515928.1101437374,5277313.696161496],[515932.31753672735,5277315.797101021],[515931.8795847459,5277316.662792915],[515935.1645224755,5277318.294423361],[515930.2410335626,5277328.139049027]]]},"properties":{"id_build":2286,"id_source":"w340436094","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.25160203734,5277022.227392276],[516004.24699797266,5277021.373977898],[516004.1025942196,5277019.261926013],[516011.1632690234,5277018.947917244],[516011.88221778534,5277030.619566664],[516011.8819121729,5277030.730705561],[516005.1213607511,5277031.156678063],[516005.04900644044,5277030.156221538],[516000.07622744533,5277030.475974406],[515996.78607631923,5277030.689214122],[515996.85843203904,5277031.6896705385],[515992.0508828566,5277032.009884183],[515991.8255719257,5277032.0092653865],[515991.25160203734,5277022.227392276]]]},"properties":{"id_build":2287,"id_source":"w340436095","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.37919796957,5277175.301839482],[516027.1793568095,5277175.810168896],[516026.089537657,5277162.47039743],[516030.3712674348,5277162.148764683],[516030.66371969884,5277165.039203714],[516033.01493032963,5277164.85673988],[516034.79524398997,5277164.717160691],[516034.57789573004,5277161.826928269],[516038.3339126577,5277161.503853669],[516038.6965647304,5277166.172722724],[516038.1705451992,5277166.282413565],[516038.4617688344,5277169.617408703],[516043.82477734156,5277169.365448232],[516044.01456051326,5277171.3553729905],[516044.37919796957,5277175.301839482]]]},"properties":{"id_build":2288,"id_source":"w340436096","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515923.4590751039,5277342.012970069],[515923.30796395923,5277342.345976149],[515920.9826103236,5277341.339358964],[515919.84851837705,5277344.1147525385],[515911.52187654946,5277340.646657683],[515913.72918530036,5277335.384664639],[515914.3187908135,5277333.9859149335],[515911.01835028885,5277332.53207748],[515912.9076907805,5277328.20278942],[515916.4334327095,5277329.657243825],[515915.828988585,5277330.989268877],[515919.2793244571,5277332.554658678],[515919.80836554646,5277331.333567587],[515926.7847406968,5277334.242281495],[515923.4590751039,5277342.012970069]]]},"properties":{"id_build":2289,"id_source":"w340436097","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.84584408434,5277121.2847579075],[516000.89256845036,5277121.501669444],[516001.2485340446,5277128.615591942],[516001.9244556266,5277128.6174494745],[516001.92384475993,5277128.839727307],[515988.779094503,5277129.47045618],[515988.2081820834,5277118.577192713],[515992.94055707473,5277118.2567697335],[515992.9390307741,5277118.812464303],[515998.1220210255,5277118.49328324],[515997.691253628,5277111.268015796],[516002.8715018303,5277111.949089164],[516002.5607062981,5277115.726986583],[516002.7105717055,5277118.583690119],[516002.84584408434,5277121.2847579075]]]},"properties":{"id_build":2290,"id_source":"w340436098","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515947.7653076292,5277313.205380153],[515949.61713163,5277308.876001208],[515947.95185833005,5277308.160145031],[515949.4106364209,5277304.752149654],[515950.4383207078,5277305.188410066],[515952.17682903976,5277301.103229057],[515955.50740871154,5277302.52383039],[515955.6963773636,5277302.079789113],[515959.6720856972,5277303.768896272],[515959.24124273314,5277304.779087322],[515962.60933817655,5277306.210909554],[515960.175455573,5277311.916822147],[515957.9925424407,5277310.999492547],[515955.78715952253,5277310.059874235],[515953.4213015186,5277315.610380366],[515947.7653076292,5277313.205380153]]]},"properties":{"id_build":2291,"id_source":"w340436099","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515899.36237567844,5277393.182559464],[515899.43929567095,5277392.515930766],[515897.11153040326,5277392.398434703],[515897.18996744265,5277391.176111166],[515893.06012874225,5277390.942556753],[515893.21669780277,5277388.609048543],[515889.91294662264,5277388.377751454],[515890.226992435,5277383.377318021],[515901.56513660174,5277384.075112346],[515901.4172274424,5277385.986312774],[515901.25350936956,5277388.186433497],[515904.78255737456,5277388.418352474],[515904.2356125116,5277396.196643833],[515900.9318660457,5277395.965340474],[515899.284545203,5277394.182605048],[515899.36237567844,5277393.182559464]]]},"properties":{"id_build":2292,"id_source":"w340436100","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.5294215951,5277061.877587022],[515981.5300316691,5277061.655309213],[515984.5347723037,5277061.441277452],[515984.24717296194,5277056.772618823],[515981.24273496174,5277056.875511831],[515980.88429967477,5277050.6507026395],[515991.70102109294,5277050.013561011],[515991.7700198755,5277052.236545322],[515995.37559285824,5277052.024169288],[515995.627219469,5277056.114803004],[515993.86192481633,5277056.243321585],[515993.93367014325,5277057.466055814],[515997.52403610444,5277057.320323197],[515997.7544734942,5277060.921883965],[515981.5294215951,5277061.877587022]]]},"properties":{"id_build":2293,"id_source":"w340436101","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.734450973,5277165.275211357],[515954.73353736685,5277165.608628123],[515936.78174503986,5277166.44858353],[515936.57043198706,5277161.335576424],[515938.5233875404,5277161.229782261],[515938.24092860625,5277154.67176358],[515936.28797085927,5277154.777557842],[515936.00307562825,5277149.108650704],[515936.15327989176,5277149.109061801],[515953.94768512424,5277148.168647194],[515954.1659151024,5277153.492839383],[515949.20856923907,5277153.701537749],[515949.3151032838,5277155.935738634],[515949.4220025605,5277158.036572825],[515954.37934474216,5277157.827874649],[515954.734450973,5277165.275211357]]]},"properties":{"id_build":2294,"id_source":"w340436102","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515940.7394441584,5277396.941085121],[515930.1476358483,5277397.956809203],[515929.40272956726,5277390.241669345],[515932.3323821354,5277389.9607220795],[515932.20085341315,5277388.626684625],[515936.01691904006,5277388.259253069],[515935.8853302795,5277386.947443325],[515940.35494171997,5277386.515119579],[515940.0482887819,5277383.313453943],[515943.8868881441,5277382.946089223],[515944.61718255613,5277390.505595207],[515940.7259883893,5277390.883929405],[515940.77706667327,5277391.428654247],[515940.21367198584,5277391.482681639],[515940.359701319,5277393.005696645],[515940.7394441584,5277396.941085121]]]},"properties":{"id_build":2295,"id_source":"w340436103","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516053.37011408113,5277046.849062126],[516054.2722748032,5277046.518130189],[516055.6882082727,5277050.523065134],[516049.2231887128,5277052.728037179],[516048.2551151489,5277049.724595855],[516048.25634038675,5277049.280040246],[516047.7382799191,5277049.223042575],[516047.1300953336,5277049.165796575],[516042.54449965013,5277050.709117365],[516041.2039668349,5277046.593253635],[516043.30870092363,5277045.932213839],[516041.89245162794,5277042.038420859],[516048.73330424743,5277039.723336766],[516050.07505874254,5277043.394646591],[516051.9541781065,5277042.844127773],[516053.37011408113,5277046.849062126]]]},"properties":{"id_build":2296,"id_source":"w340436104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.01143970306,5277107.358461034],[515937.0469848299,5277107.956458836],[515936.67190665286,5277099.564381532],[515939.79660786263,5277099.417338957],[515939.6269183536,5277095.560325325],[515944.69702842156,5277095.329699412],[515944.86659284454,5277099.231168764],[515947.37532993074,5277099.126899441],[515947.1418576833,5277093.880464081],[515951.1979288702,5277093.702636564],[515951.5021159183,5277100.549678161],[515947.64885737165,5277100.716946942],[515947.7052563945,5277102.061892327],[515947.75478434947,5277103.173425432],[515949.79782200896,5277103.090109633],[515950.01143970306,5277107.358461034]]]},"properties":{"id_build":2297,"id_source":"w340436105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515942.2207905686,5277511.441369855],[515942.74677711766,5277511.3316703625],[515943.256937478,5277517.001198069],[515928.14992719545,5277518.760312667],[515925.3788876802,5277491.278970126],[515927.0313415142,5277491.172350625],[515925.3496946768,5277474.496778963],[515925.9507821691,5277474.387283373],[515925.3664149095,5277468.38413526],[515941.9679449718,5277466.651332995],[515942.04060842877,5277467.540650434],[515946.0971193588,5277467.107200206],[515946.24731542036,5277467.107611583],[515947.2709853649,5277477.224138166],[515938.85758647113,5277478.090217412],[515939.2377503071,5277481.870011759],[515941.4165682732,5277503.459328946],[515942.2207905686,5277511.441369855]]]},"properties":{"id_build":2298,"id_source":"w340436106","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516063.1517378081,5277170.963577326],[516058.3296164245,5277171.161441811],[516058.2315542447,5277168.59384273],[516054.28833760635,5277168.716336744],[516054.3338302266,5277171.283790806],[516044.01456051326,5277171.3553729905],[516043.82477734156,5277169.365448232],[516043.3944766091,5277164.718620369],[516049.8008247221,5277164.680705803],[516051.9712093463,5277164.708916741],[516051.9936137725,5277162.030510142],[516052.0115448886,5277160.974731801],[516061.61745629786,5277160.867853932],[516061.7216467785,5277166.658523206],[516063.01343027607,5277166.650972769],[516063.1517378081,5277170.963577326]]]},"properties":{"id_build":2299,"id_source":"w340436107","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515963.57663236477,5277282.107343178],[515960.20076940535,5277280.76441104],[515960.5033037378,5277279.987261901],[515959.4681056896,5277279.5509791495],[515958.40292822605,5277279.092386462],[515958.0249890726,5277279.980468812],[515952.47364624776,5277277.742460815],[515955.4986798359,5277270.08210516],[515958.64924841694,5277271.424416999],[515959.48083797144,5277269.4261803925],[515963.9816925279,5277271.32789535],[515964.208609248,5277270.739476699],[515967.5394167995,5277272.082287556],[515963.57663236477,5277282.107343178]]]},"properties":{"id_build":2300,"id_source":"w340436108","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515953.05730436207,5277127.760949142],[515952.53900640167,5277127.7928710515],[515949.0387471465,5277127.961105956],[515942.5414457876,5277128.2878458975],[515937.2760070094,5277128.551280838],[515936.53479011724,5277113.989945158],[515938.4802512838,5277113.884130397],[515938.45176177047,5277113.317239705],[515944.4232700894,5277113.022397237],[515944.3806431931,5277112.133162537],[515944.82380945486,5277112.112148133],[515945.0942559433,5277117.569850318],[515947.1223288786,5277117.464264673],[515947.1295347473,5277117.575424159],[515947.25780970143,5277120.09864776],[515947.4216876635,5277123.333263281],[515952.8223465555,5277123.059093987],[515953.05730436207,5277127.760949142]]]},"properties":{"id_build":2301,"id_source":"w340436109","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515980.75235966925,5277290.26766411],[515976.62641696754,5277288.589244341],[515977.45831527805,5277286.479871296],[515975.82286561746,5277285.841886875],[515974.3074542365,5277285.24868816],[515972.719065367,5277289.356502343],[515965.2172611507,5277286.335153209],[515966.7299355572,5277282.449408946],[515972.88176664733,5277284.800217703],[515973.6385637212,5277282.6906381],[515970.03740210977,5277281.3470821455],[515971.7015014453,5277277.017195408],[515975.8277587268,5277278.584472691],[515976.58394773334,5277276.697171374],[515980.78499936813,5277278.37579719],[515981.3140582195,5277277.154711752],[515985.2898067966,5277278.83272242],[515980.75235966925,5277290.26766411]]]},"properties":{"id_build":2302,"id_source":"w340436110","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515956.62831835996,5277186.730374629],[515949.2665607788,5277187.36592914],[515941.161116144,5277188.066140675],[515937.92344494903,5277188.346240785],[515937.55858415534,5277184.455350501],[515941.54019012203,5277184.021691279],[515941.3954638439,5277182.020779377],[515943.57402200875,5277181.804464849],[515943.27584317606,5277178.247176097],[515943.0650473006,5277175.690384471],[515946.52064274007,5277175.366428123],[515949.90113677713,5277175.042268095],[515951.70936501614,5277172.935566267],[515956.1415909392,5277172.503151539],[515956.65177052165,5277178.172677358],[515955.9007529453,5277178.170619262],[515956.13346447865,5277180.94975097],[515956.62831835996,5277186.730374629]]]},"properties":{"id_build":2303,"id_source":"w340436111","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515995.69249066676,5277073.3638704745],[515996.368723982,5277073.254588445],[515996.6581446534,5277077.256414377],[515984.71492745343,5277077.890454001],[515984.49999152403,5277074.111112655],[515985.5517400473,5277074.002860233],[515985.04798587103,5277065.999415761],[515984.0713391168,5277066.107874441],[515983.99684608256,5277065.885390468],[515989.78070857836,5277065.567851237],[515989.9251162434,5277067.679902909],[515992.85475091543,5277067.465669211],[515992.7103443054,5277065.353617461],[515997.8933821053,5277065.034436108],[515998.2524089241,5277071.036968718],[515995.62349369255,5277071.140886043],[515995.65826696315,5277072.152353241],[515995.69249066676,5277073.3638704745]]]},"properties":{"id_build":2304,"id_source":"w340436112","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516035.463870323,5277107.370886055],[516030.22078582784,5277107.689868497],[516030.2909929406,5277109.468297849],[516024.5819683985,5277109.897142369],[516024.43206897867,5277109.785590082],[516024.07582451636,5277102.782805224],[516023.2493886296,5277102.891670695],[516022.8913072812,5277096.555719451],[516027.4731906611,5277096.346050082],[516027.5464579643,5277097.013090271],[516028.29503856314,5277097.904268861],[516031.07445394964,5277097.689640938],[516031.0060828135,5277095.244378152],[516034.7618363952,5277095.032440094],[516035.05414883414,5277100.701372477],[516035.14780358697,5277102.146447185],[516035.463870323,5277107.370886055]]]},"properties":{"id_build":2305,"id_source":"w340436113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515926.8041810391,5277272.226338206],[515925.45541112387,5277271.111251168],[515921.3489371699,5277276.034626521],[515920.1810505361,5277277.431794204],[515918.9070772011,5277276.428052962],[515916.94443825533,5277280.090299808],[515911.91939069325,5277277.631489787],[515914.7862713691,5277272.860315105],[515914.18698594865,5277272.302978211],[515922.47509529296,5277262.434197983],[515924.3483565246,5277263.995277848],[515926.98508766905,5277261.0017160745],[515931.1061986137,5277264.458323555],[515928.54426345276,5277267.563227876],[515929.2937491901,5277268.120977174],[515928.9170299972,5277268.5645056255],[515929.51631440374,5277269.12184404],[515926.8041810391,5277272.226338206]]]},"properties":{"id_build":2306,"id_source":"w340436114","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515928.9182404744,5277350.474526742],[515930.27885059465,5277347.255195515],[515929.0784736336,5277346.807352155],[515930.9678230325,5277342.478069837],[515932.99308014393,5277343.372729996],[515934.5045018173,5277339.931532907],[515937.95513164153,5277341.385794868],[515938.40877195843,5277340.275638818],[515939.0840604477,5277340.499767022],[515942.3093898668,5277341.953414794],[515941.855748931,5277343.063570544],[515945.3063750779,5277344.517836876],[515942.96337502304,5277349.957270253],[515940.4127291338,5277348.950028358],[515940.0424288442,5277349.793676939],[515939.73257340747,5277350.504123277],[515936.882137444,5277349.273782623],[515935.2193010084,5277353.159123876],[515928.9182404744,5277350.474526742]]]},"properties":{"id_build":2307,"id_source":"w340436115","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515939.3132622729,5277366.507105026],[515939.38623176585,5277367.285283331],[515939.8976262022,5277372.510253584],[515932.9863661818,5277373.269314828],[515932.69448498805,5277370.156601925],[515930.974255311,5277370.3186044125],[515929.31410515384,5277370.4807717865],[515929.60598813614,5277373.593484517],[515923.4463309814,5277374.132333922],[515922.8616463299,5277368.240325995],[515924.88993553363,5277368.023593802],[515924.45210670587,5277363.354525126],[515928.5086887938,5277362.921062551],[515928.3606184037,5277362.142678939],[515933.31869845977,5277361.600546287],[515933.1724535337,5277360.155328811],[515937.1539391124,5277359.721666741],[515937.8109714847,5277366.614132252],[515939.3132622729,5277366.507105026]]]},"properties":{"id_build":2308,"id_source":"w340436116","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515986.69147790514,5277370.082336845],[515987.2925773468,5277369.972847574],[515987.4433862742,5277369.750982092],[515987.9580944578,5277373.753428142],[515980.67072313005,5277374.733679599],[515980.15539995214,5277370.953512117],[515976.47401078825,5277371.499108033],[515975.8863299003,5277366.71848426],[515976.86292611726,5277366.61002427],[515976.42178417824,5277363.163480126],[515979.9529798429,5277362.6174719315],[515980.1007382898,5277363.506995829],[515986.1108237802,5277362.745516018],[515985.8901028841,5277361.077813071],[515990.6228912282,5277360.535110618],[515991.3580120935,5277366.316399009],[515986.32452591456,5277366.969414996],[515986.47863359377,5277368.281287724],[515986.69147790514,5277370.082336845]]]},"properties":{"id_build":2309,"id_source":"w340436117","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515941.30368145637,5277306.06362496],[515941.1827909874,5277306.330029441],[515940.1776362498,5277305.893832346],[515938.938236135,5277308.724503703],[515939.4108189333,5277308.9258490475],[515939.1765483032,5277309.458678655],[515932.1104551207,5277306.394108932],[515933.6219465291,5277302.930684009],[515932.50426206493,5277302.449724382],[515933.4111209428,5277300.385006123],[515933.9325970227,5277299.186123603],[515932.9874598462,5277298.772319964],[515934.76344708406,5277294.709464365],[515935.7536145276,5277295.134505511],[515935.98791582923,5277294.590561883],[515940.66115427646,5277296.614984521],[515941.0465997403,5277295.726921591],[515945.05220453115,5277297.471670448],[515941.30368145637,5277306.06362496]]]},"properties":{"id_build":2310,"id_source":"w340436118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516001.90437916777,5277299.883780148],[515995.81759986526,5277301.200732139],[515991.3572888055,5277295.487009087],[515990.4293117163,5277294.29526476],[515987.8707147817,5277296.177614765],[515983.89162267186,5277295.722130654],[515984.7363376686,5277288.944922957],[515984.88653832814,5277288.945335317],[515984.88531783613,5277289.389891093],[515987.438118503,5277289.619179727],[515988.0529594924,5277284.5084380675],[515998.5636544339,5277285.759847101],[515998.64119788725,5277284.870941911],[515998.8664990339,5277284.871560994],[515998.0983941973,5277291.0932782665],[515999.97529093106,5277291.320715266],[515999.5891002896,5277295.209546454],[516000.8654990982,5277295.324193859],[516001.90437916777,5277299.883780148]]]},"properties":{"id_build":2311,"id_source":"w340436119","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.9597745419,5277030.724398038],[516050.9281568224,5277033.616700656],[516052.50686489034,5277033.0653539235],[516052.73033742595,5277033.732808461],[516041.0031500615,5277037.701520912],[516041.0037623991,5277037.4792431155],[516041.9059238574,5277037.148309265],[516040.1926246168,5277032.031161242],[516039.21535882744,5277032.361888479],[516039.051600251,5277031.827966643],[516038.84320803155,5277031.138326232],[516034.9411844808,5277029.90504241],[516037.2129665144,5277023.131774689],[516040.36426285916,5277024.251852167],[516041.10978924105,5277026.254421268],[516044.71813641116,5277025.041825675],[516044.04771487036,5277023.039463056],[516048.5582289084,5277021.49593647],[516051.5384832976,5277030.173051044],[516049.9597745419,5277030.724398038]]]},"properties":{"id_build":2312,"id_source":"w340436120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515956.7905100884,5277204.279787623],[515945.575159112,5277205.238206422],[515945.24535956915,5277202.258757597],[515939.1606211896,5277202.797796313],[515938.65194808785,5277196.572577199],[515940.60489186755,5277196.46678375],[515940.2427717684,5277191.575642901],[515941.44500568474,5277191.356654821],[515941.161116144,5277188.066140675],[515949.2665607788,5277187.36592914],[515949.41155819804,5277189.266816225],[515950.0874727263,5277189.2686677575],[515950.59704768466,5277195.160471043],[515949.99593093,5277195.269964106],[515950.1118615312,5277196.815124376],[515950.21331978193,5277198.16019343],[515950.8895377419,5277198.050906129],[515951.0348692542,5277199.829540467],[515956.3682924738,5277199.399594921],[515956.7905100884,5277204.279787623]]]},"properties":{"id_build":2313,"id_source":"w340436121","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516071.34535073163,5277108.403386315],[516055.976526858,5277109.383472698],[516055.3284592774,5277099.279081883],[516056.03454797657,5277099.23657296],[516056.0489249588,5277099.470006091],[516055.5531547035,5277099.501980962],[516055.6251929298,5277100.6135771535],[516059.63641603553,5277100.357903686],[516059.5860511194,5277099.557558534],[516062.84612472163,5277099.344271492],[516068.18691361905,5277099.003360057],[516068.15831396775,5277098.4809242785],[516068.6991767287,5277098.437960945],[516068.6273863299,5277097.237453458],[516073.795379703,5277096.9182982575],[516073.8170208192,5277097.240663293],[516073.4865071202,5277097.261978861],[516073.96193648933,5277104.598515266],[516071.11502230255,5277104.77959448],[516071.34535073163,5277108.403386315]]]},"properties":{"id_build":2314,"id_source":"w340436122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.6584310408,5277029.033621653],[516074.1413129159,5277031.45794001],[516074.0665160622,5277031.346593792],[516074.89357671386,5277031.015457723],[516071.8400942773,5277021.671290428],[516062.3681273394,5277024.868206888],[516060.43198325194,5277018.861320296],[516063.13817333034,5277017.979667092],[516062.91500795196,5277017.201073276],[516064.34320730646,5277016.760454293],[516064.6414763441,5277017.539255367],[516068.0245223303,5277016.326052609],[516067.80105085945,5277015.658597501],[516069.6804875745,5277014.996945513],[516067.81822488183,5277009.434819389],[516068.0438433781,5277009.324302229],[516068.342112311,5277010.103103483],[516071.1234422794,5277009.210547355],[516074.50615697296,5277008.119601149],[516074.282992724,5277007.341006905],[516074.6588193564,5277007.230904657],[516081.6584310408,5277029.033621653]]]},"properties":{"id_build":2315,"id_source":"w340436123","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.5997250952,5277106.854133846],[516042.61425721465,5277107.168302728],[516042.4637456587,5277107.2790278],[516042.31997054006,5277104.944696825],[516039.8412751344,5277105.049007993],[516039.98505124234,5277107.383338908],[516035.47827871516,5277107.593205246],[516035.463870323,5277107.370886055],[516035.14780358697,5277102.146447185],[516038.57310081157,5277101.933601573],[516038.5016716062,5277100.59972778],[516038.28768990183,5277096.486967502],[516041.21731198987,5277096.272758156],[516041.07537312474,5277093.271593795],[516045.3568483824,5277093.061110897],[516045.8825683889,5277093.062559613],[516046.16858493723,5277098.286916224],[516045.19224865857,5277098.284225739],[516045.3351040364,5277100.951973496],[516046.31159300514,5277100.899094552],[516049.2410600234,5277100.740458698],[516049.5997250952,5277106.854133846]]]},"properties":{"id_build":2316,"id_source":"w340436124","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515894.7171689724,5277444.183042372],[515892.36060389754,5277454.623750564],[515886.7315755778,5277453.38585008],[515886.5032483523,5277454.496625062],[515886.2031588412,5277454.384666424],[515871.9429857318,5277451.233859018],[515872.24792348745,5277449.567593347],[515855.9612879314,5277445.966741808],[515858.1663832994,5277435.970165943],[515862.36947295954,5277436.870734123],[515862.90091524704,5277434.760525944],[515869.8057310346,5277436.3353],[515870.1854644259,5277434.78037793],[515870.3356613161,5277434.780787346],[515869.9559278843,5277436.335709405],[515883.69075311034,5277439.373938624],[515884.07049002254,5277437.819017445],[515884.2203836181,5277437.93056619],[515883.9157450575,5277439.485692241],[515890.89564803825,5277441.060696233],[515890.36419614987,5277443.170901898],[515893.2161126461,5277443.845525182],[515894.7171689724,5277444.183042372]]]},"properties":{"id_build":2317,"id_source":"w340436125","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515892.9991492734,5277413.281488637],[515891.02170827467,5277422.389554281],[515889.2430542315,5277421.951254669],[515887.79459121136,5277421.602768473],[515887.41454900557,5277423.268828342],[515881.260102179,5277421.9183598375],[515881.6401427076,5277420.252299575],[515880.25914633623,5277419.948455213],[515876.94178688707,5277419.205885211],[515875.56079002883,5277418.902041965],[515875.18105419644,5277420.45696365],[515874.80556104705,5277420.45593981],[515868.87640432594,5277419.106098714],[515869.25644148333,5277417.44003766],[515867.9655016413,5277417.158669645],[515864.28033722413,5277416.348420584],[515863.1019843704,5277416.089588386],[515862.79704755486,5277417.7558544455],[515856.7927866732,5277416.405821066],[515857.17342593614,5277414.517481303],[515855.1094221487,5277414.067300998],[515851.4692527386,5277413.279410558],[515853.3703254455,5277404.615683116],[515859.14960556576,5277405.853960251],[515858.9978942748,5277406.409245954],[515861.85013515473,5277406.972714819],[515862.00184670405,5277406.41742919],[515862.30224194867,5277406.418247599],[515892.9991492734,5277413.281488637]]]},"properties":{"id_build":2318,"id_source":"w340436126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515922.31439386326,5277128.954907566],[515918.2582570581,5277129.166096829],[515918.11625576724,5277126.164935453],[515922.0975961358,5277125.842401806],[515922.31439386326,5277128.954907566]]]},"properties":{"id_build":2319,"id_source":"w340436127","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516053.70282393025,5277144.097264428],[516051.149655505,5277143.979085852],[516051.15517023223,5277141.978585333],[516053.70864595653,5277141.9856249895],[516053.70282393025,5277144.097264428]]]},"properties":{"id_build":2320,"id_source":"w340436128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516046.31159300514,5277100.899094552],[516045.3351040364,5277100.951973496],[516045.19224865857,5277098.284225739],[516046.16858493723,5277098.286916224],[516046.24736955954,5277099.676380265],[516046.31159300514,5277100.899094552]]]},"properties":{"id_build":2321,"id_source":"w340436129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516010.8042518793,5277012.945384312],[516005.7716802394,5277013.153828242],[516005.70176973956,5277011.264260577],[516010.6595446834,5277010.944471184],[516010.8042518793,5277012.945384312]]]},"properties":{"id_build":2322,"id_source":"w340436130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.57310081157,5277101.933601573],[516035.14780358697,5277102.146447185],[516035.05414883414,5277100.701372477],[516038.5016716062,5277100.59972778],[516038.57310081157,5277101.933601573]]]},"properties":{"id_build":2323,"id_source":"w340436131","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516051.9712093463,5277164.708916741],[516049.8008247221,5277164.680705803],[516049.82727658877,5277163.258189711],[516049.8456055649,5277162.057930766],[516051.9936137725,5277162.030510142],[516051.9712093463,5277164.708916741]]]},"properties":{"id_build":2324,"id_source":"w340436132","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515995.37559285824,5277052.024169288],[515991.7700198755,5277052.236545322],[515991.70102109294,5277050.013561011],[515995.23149203346,5277049.800978625],[515995.37559285824,5277052.024169288]]]},"properties":{"id_build":2325,"id_source":"w340436134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515931.98898722423,5277188.852356485],[515928.1202505441,5277189.208533151],[515927.7556872826,5277185.206504568],[515931.6244265985,5277184.850327654],[515931.98898722423,5277188.852356485]]]},"properties":{"id_build":2326,"id_source":"w340436135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515908.1258024974,5277291.735874859],[515904.6763501609,5277289.837074992],[515906.4881701527,5277286.396691525],[515909.9376239515,5277288.2954924535],[515908.1258024974,5277291.735874859]]]},"properties":{"id_build":2327,"id_source":"w340436136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516068.4718461536,5277180.814126281],[516068.10676534363,5277177.034366595],[516070.43553387676,5277176.818514023],[516070.72520470864,5277180.709205496],[516068.4718461536,5277180.814126281]]]},"properties":{"id_build":2328,"id_source":"w340436137","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515949.90113677713,5277175.042268095],[515946.52064274007,5277175.366428123],[515946.37591793574,5277173.365516121],[515951.70936501614,5277172.935566267],[515949.90113677713,5277175.042268095]]]},"properties":{"id_build":2329,"id_source":"w340436138","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515943.57402200875,5277181.804464849],[515941.3954638439,5277182.020779377],[515941.54019012203,5277184.021691279],[515937.55858415534,5277184.455350501],[515943.27584317606,5277178.247176097],[515943.57402200875,5277181.804464849]]]},"properties":{"id_build":2330,"id_source":"w340436139","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515997.52403610444,5277057.320323197],[515993.93367014325,5277057.466055814],[515993.86192481633,5277056.243321585],[515995.627219469,5277056.114803004],[515997.46749539993,5277056.030946854],[515997.49579628865,5277056.664521135],[515997.52403610444,5277057.320323197]]]},"properties":{"id_build":2331,"id_source":"w340436140","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515934.828558404,5277188.593391526],[515931.98898722423,5277188.852356485],[515931.6244265985,5277184.850327654],[515934.4639997102,5277184.591362514],[515934.5878098145,5277186.003176278],[515934.828558404,5277188.593391526]]]},"properties":{"id_build":2332,"id_source":"w340436141","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515907.7303166042,5277491.453001076],[515906.75374265504,5277491.561472632],[515906.7534390045,5277491.672611615],[515907.4852852018,5277498.676419247],[515908.4621616567,5277498.456808833],[515909.11860365025,5277505.571550537],[515908.1420320384,5277505.680021861],[515908.79847354075,5277512.794763608],[515909.85014141165,5277512.686497617],[515910.0654110913,5277516.354699759],[515909.68931670144,5277516.575951619],[515909.2387323541,5277516.574720325],[515909.6026784015,5277520.799027826],[515911.6309139879,5277520.582291086],[515911.63030649355,5277520.804569054],[515901.4891304977,5277521.888259827],[515900.9035290108,5277516.329669705],[515894.593830795,5277516.868139201],[515894.15659662965,5277511.976793771],[515893.10492893413,5277512.085062596],[515892.37488752697,5277504.414422759],[515893.3514590406,5277504.305948793],[515892.47486215224,5277495.301231254],[515894.5782036137,5277495.08469356],[515894.2124244482,5277491.527221078],[515890.30977002217,5277490.6274496],[515890.61319435155,5277489.516879678],[515885.50958050415,5277488.391554039],[515885.2061570929,5277489.502124222],[515881.3782945311,5277488.713702619],[515880.92225119256,5277490.712975161],[515876.1187244509,5277489.699616131],[515876.4221461179,5277488.589045476],[515872.5194870302,5277487.689285937],[515872.7475073301,5277486.689649339],[515866.3678309542,5277485.338582081],[515866.13981169893,5277486.338218925],[515862.23714954517,5277485.438466286],[515862.46516816306,5277484.438829293],[515858.78749489185,5277483.650831781],[515859.39524056576,5277481.096271789],[515856.16784923436,5277480.420642351],[515857.07931535435,5277476.644371486],[515856.17874586536,5277476.419639131],[515857.9271879259,5277468.644615108],[515862.3555479832,5277469.54579703],[515862.5835672232,5277468.546160064],[515868.96295996086,5277470.008362076],[515868.73524260183,5277470.896859818],[515876.2401914544,5277472.695557194],[515876.46821296244,5277471.695920761],[515883.3729812811,5277473.270711108],[515883.2200565821,5277474.270552147],[515898.4558328709,5277477.646331248],[515898.6838580101,5277476.646695671],[515902.58682412724,5277477.435333748],[515902.3587983464,5277478.434969176],[515907.2145947878,5277479.559632435],[515906.7810712283,5277481.558964502],[515907.7303166042,5277491.453001076]]]},"properties":{"id_build":2333,"id_source":"w340436142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516031.07445394964,5277097.689640938],[516028.29503856314,5277097.904268861],[516027.5464579643,5277097.013090271],[516027.4731906611,5277096.346050082],[516027.47563799884,5277095.456938806],[516029.23335008835,5277095.350637536],[516031.0060828135,5277095.244378152],[516031.07445394964,5277097.689640938]]]},"properties":{"id_build":2334,"id_source":"w340436143","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515917.97413928754,5277068.260741543],[515918.1164461229,5277071.150763731],[515917.9659360246,5277071.261492011],[515912.3325934368,5277071.468374129],[515912.1902837402,5277068.578352086],[515912.4155932491,5277068.578967803],[515917.97413928754,5277068.260741543]]]},"properties":{"id_build":2335,"id_source":"w340436145","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515938.11654308863,5277529.323643373],[515938.2630864694,5277530.657722386],[515930.6004340153,5277531.637008369],[515929.93179821735,5277526.244897623],[515929.6363354237,5277524.443624138],[515943.91698706447,5277522.782276181],[515944.18173700664,5277524.827973892],[515944.65243691317,5277528.452421103],[515938.11654308863,5277529.323643373]]]},"properties":{"id_build":2336,"id_source":"w340436146","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516048.7962098312,5277071.39833799],[516046.45692983666,5277064.512340471],[516044.1771756846,5277057.826559557],[516052.3714028329,5277054.959510281],[516055.20234688657,5277063.3027964365],[516059.93844913976,5277061.648760979],[516061.7265187703,5277066.877261181],[516048.7962098312,5277071.39833799]]]},"properties":{"id_build":2337,"id_source":"w340436147","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515997.58652276755,5277195.856198719],[516002.3781531471,5277195.813795907],[516007.222354688,5277195.771541562],[516007.3098913818,5277204.907471169],[516005.507426889,5277204.913630092],[516005.5192698818,5277206.069516247],[516005.52403044084,5277207.069787254],[516007.64949133625,5277207.042288375],[516007.6836134624,5277211.021185945],[516005.6182656374,5277211.037736075],[515998.4458438339,5277211.106935948],[515998.4450803981,5277211.3847832745],[515992.3691690874,5277211.44588962],[515992.37002380955,5277211.134700616],[515992.3046898652,5277204.844010289],[515998.0050704489,5277204.792985999],[515998.00565064367,5277204.581822035],[515998.9744894754,5277204.573370119],[515998.95165594976,5277201.9504088545],[515998.58365883393,5277201.949397699],[515998.56030597433,5277199.515372622],[515997.6215068939,5277199.523907146],[515997.58652276755,5277195.856198719]]]},"properties":{"id_build":2338,"id_source":"w340436148","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516000.80342514755,5277326.1097442685],[515999.5732901146,5277320.09370117],[515997.7773941025,5277320.455527686],[515995.6959354228,5277320.88325409],[515993.3911620164,5277309.651804141],[515997.2084132611,5277308.8731985055],[515997.46042503125,5277310.085314598],[516002.84064380743,5277308.9887018865],[516006.13102932606,5277325.024104024],[516000.80342514755,5277326.1097442685]]]},"properties":{"id_build":2339,"id_source":"w340436149","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516000.2276142488,5277144.839190892],[515990.6884153924,5277145.257544692],[515989.9721869544,5277132.585645598],[515998.3851765897,5277132.05305629],[515998.59887959587,5277136.276954187],[515994.09182579437,5277136.597991428],[515994.1988619707,5277138.643256953],[515994.30614229816,5277140.599611353],[516000.01482898026,5277140.281876122],[516000.2276142488,5277144.839190892]]]},"properties":{"id_build":2340,"id_source":"w340436150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515974.50428071775,5277325.737451331],[515973.5410937191,5277320.955797921],[515975.9080523877,5277320.484391068],[515974.56697851606,5277313.834552263],[515981.6378246069,5277312.420253379],[515983.4900325458,5277321.638826062],[515981.3710254136,5277322.066454501],[515980.18380638125,5277322.2965894425],[515980.62833538087,5277324.509491299],[515974.50428071775,5277325.737451331]]]},"properties":{"id_build":2341,"id_source":"w340436151","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.6096173099,5277080.908840515],[515950.3840038305,5277081.019362225],[515950.4566712742,5277081.908679219],[515946.77601557004,5277082.120877348],[515946.4947788768,5277075.118303443],[515950.17513455235,5277075.017244036],[515950.31468523364,5277078.90751725],[515950.5396898997,5277079.019273348],[515950.6096173099,5277080.908840515]]]},"properties":{"id_build":2342,"id_source":"w340436152","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515975.7309372905,5277354.926125795],[515966.4456244798,5277356.000939135],[515966.2474580072,5277354.322184853],[515965.8363181361,5277350.886837869],[515965.5719940774,5277348.685545196],[515964.6855145441,5277348.7942541875],[515964.2155125918,5277344.914186797],[515967.9792526084,5277344.468834736],[515968.06723849196,5277345.247054573],[515974.48287908407,5277344.486674975],[515975.7309372905,5277354.926125795]]]},"properties":{"id_build":2343,"id_source":"w340436153","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.6540127332,5277347.562698949],[515979.4656309832,5277337.6985930195],[515986.6119763007,5277336.128911764],[515988.85975479346,5277346.237691067],[515987.05596083455,5277346.7439809],[515986.6565903244,5277347.231899392],[515986.15171429736,5277347.852895971],[515987.4131481205,5277353.413349249],[515978.84845017805,5277354.612375387],[515978.0471287233,5277348.31966404],[515981.6540127332,5277347.562698949]]]},"properties":{"id_build":2344,"id_source":"w340436156","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516015.81991089566,5277373.830003906],[516009.9606424697,5277374.369588141],[516009.30155723664,5277368.25508691],[516006.37207316904,5277368.469312097],[516006.2329592845,5277367.168594019],[516006.0057426528,5277365.134111083],[516005.0294511363,5277365.13142723],[516004.5184199266,5277359.795312226],[516013.9085981137,5277358.820873839],[516014.35919468844,5277358.822113206],[516015.81991089566,5277373.830003906]]]},"properties":{"id_build":2345,"id_source":"w340436157","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515495.42472828017,5277412.876625356],[515491.95983690437,5277416.757296231],[515480.484516221,5277411.169785446],[515480.7109944794,5277410.72582861],[515476.0610761967,5277408.379531812],[515475.8343027871,5277408.9346277965],[515470.20927799697,5277406.141184845],[515476.8374714125,5277398.82357678],[515480.6568768728,5277402.83476212],[515480.8073700758,5277402.724022516],[515483.27853862086,5277405.397947837],[515483.1280454383,5277405.508687377],[515486.57224398816,5277409.40773913],[515490.8859576199,5277411.097425246],[515495.42472828017,5277412.876625356]]]},"properties":{"id_build":2346,"id_source":"w340439541","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515436.0741341577,5277738.46966502],[515435.45892863965,5277732.588737952],[515445.4192726509,5277731.559327397],[515447.13941093604,5277731.386067713],[515446.87579394475,5277728.851380597],[515445.15565491794,5277729.024640357],[515444.3355584831,5277721.120424326],[515455.32498740795,5277719.993734998],[515456.1524015212,5277727.964655948],[515455.108290816,5277728.073023761],[515455.35715089145,5277730.50764626],[515457.2425569811,5277730.312600361],[515457.8576817442,5277736.215757566],[515451.0071124141,5277736.93109419],[515436.0741341577,5277738.46966502]]]},"properties":{"id_build":2347,"id_source":"w340439543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515452.2832572467,5277454.172639432],[515452.80678608944,5277449.3283354],[515454.946496038,5277449.556294463],[515455.3699214341,5277445.645298933],[515461.2935239475,5277446.283409431],[515461.4089752552,5277445.227888305],[515465.8760840485,5277445.706540056],[515465.6912426017,5277447.4398293095],[515472.73351095105,5277448.192062931],[515472.025329051,5277454.691856989],[515465.0506568513,5277453.939803733],[515464.973551208,5277454.6953492975],[515461.08455768245,5277454.273803292],[515458.5619374828,5277454.011483333],[515458.46960648336,5277454.844786388],[515452.2832572467,5277454.172639432]]]},"properties":{"id_build":2348,"id_source":"w340439544","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515603.34553410043,5277661.073265892],[515602.62559315364,5277655.103128538],[515608.8530442723,5277654.36407119],[515609.21302669245,5277657.343583286],[515612.6234980177,5277656.930397186],[515612.2855095155,5277654.150995513],[515616.0640706874,5277653.694342624],[515616.3504743157,5277656.106844775],[515618.99470353377,5277655.79163289],[515619.36204113933,5277658.82673529],[515622.9978586534,5277658.391931899],[515623.5342749008,5277662.783394039],[515615.43629737344,5277663.761925664],[515615.50984269753,5277664.34004996],[515605.8869243524,5277665.503442389],[515605.3212016432,5277660.834053836],[515603.9314578765,5277661.008152429],[515603.34553410043,5277661.073265892]]]},"properties":{"id_build":2349,"id_source":"w340439545","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515604.4897019244,5277665.666406818],[515604.19593328214,5277663.198315589],[515603.9314578765,5277661.008152429],[515605.3212016432,5277660.834053836],[515605.8869243524,5277665.503442389],[515604.4897019244,5277665.666406818]]]},"properties":{"id_build":2350,"id_source":"w340439558","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515447.13941093604,5277731.386067713],[515445.4192726509,5277731.559327397],[515445.27279872657,5277730.1585771935],[515445.15565491794,5277729.024640357],[515446.87579394475,5277728.851380597],[515447.13941093604,5277731.386067713]]]},"properties":{"id_build":2351,"id_source":"w340439560","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515544.98443172296,5277696.304053844],[515544.54335752846,5277692.746402141],[515549.35092868615,5277692.203541902],[515549.8673919152,5277695.650255539],[515544.98443172296,5277696.304053844]]]},"properties":{"id_build":2352,"id_source":"w340439564","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515458.5619374828,5277454.011483333],[515461.08455768245,5277454.273803292],[515460.99219681276,5277455.118220207],[515459.76094094483,5277454.9815829275],[515458.46960648336,5277454.844786388],[515458.5619374828,5277454.011483333]]]},"properties":{"id_build":2353,"id_source":"w340439566","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515593.9569061842,5277720.552367102],[515594.57374068396,5277714.552469135],[515598.1773990985,5277714.89554298],[515597.560263146,5277721.006579598],[515593.9569061842,5277720.552367102]]]},"properties":{"id_build":2354,"id_source":"w340439574","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515622.9978586534,5277658.391931899],[515619.36204113933,5277658.82673529],[515618.99470353377,5277655.79163289],[515622.6380324735,5277655.356849424],[515622.9978586534,5277658.391931899]]]},"properties":{"id_build":2355,"id_source":"w340439576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.3699214341,5277445.645298933],[515454.946496038,5277449.556294463],[515452.80678608944,5277449.3283354],[515453.23021006305,5277445.41733972],[515455.3699214341,5277445.645298933]]]},"properties":{"id_build":2356,"id_source":"w340439577","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515589.5515172767,5277683.086450071],[515589.844457721,5277685.865729874],[515587.0650426868,5277686.191706969],[515586.77210093493,5277683.41242731],[515589.5515172767,5277683.086450071]]]},"properties":{"id_build":2357,"id_source":"w340439580","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515590.87891432433,5277720.21070362],[515591.49574568606,5277714.210805338],[515594.57374068396,5277714.552469135],[515593.9569061842,5277720.552367102],[515590.87891432433,5277720.21070362]]]},"properties":{"id_build":2358,"id_source":"w340439581","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515460.495103367,5277704.5145740155],[515457.03955601645,5277699.292941308],[515456.2170516228,5277697.9570798855],[515463.96542057744,5277692.865225684],[515468.2287141727,5277699.32266044],[515460.495103367,5277704.5145740155]]]},"properties":{"id_build":2359,"id_source":"w340439582","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515457.03955601645,5277699.292941308],[515460.495103367,5277704.5145740155],[515461.52725180774,5277706.084386445],[515457.7660129124,5277708.519473977],[515453.27831464715,5277701.728031721],[515457.03955601645,5277699.292941308]]]},"properties":{"id_build":2360,"id_source":"w340439584","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516647.3272231901,5276230.861866866],[516647.3433114489,5276227.861142018],[516650.3177954621,5276227.880758534],[516650.30173744453,5276230.870369504],[516647.3272231901,5276230.861866866]]]},"properties":{"id_build":2361,"id_source":"w340441044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.4355512477,5276094.128881857],[517067.13326901064,5276090.596076785],[517063.2538647537,5276094.319003878],[517063.0516707761,5276094.1072461605],[517063.2022604631,5276093.985433665],[517061.0305765985,5276091.700708685],[517059.6077382097,5276090.207269482],[517057.9175345473,5276090.235661198],[517057.9749327648,5276088.590962074],[517058.14828507963,5276088.391418338],[517055.28767892375,5276085.371156112],[517055.084117552,5276085.626181313],[517052.11850884114,5276082.550043371],[517058.2881116858,5276076.555452343],[517064.3242600074,5276082.785841182],[517067.7664041878,5276079.606217921],[517067.40705252666,5276079.193948125],[517067.6105495312,5276078.961151102],[517071.0256097391,5276082.460944977],[517068.47949394735,5276084.90967012],[517070.6363171496,5276087.138784461],[517074.06616582425,5276090.716421319],[517070.4355512477,5276094.128881857]]]},"properties":{"id_build":2362,"id_source":"w340458103","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517073.18240030896,5276084.701174128],[517070.6363171496,5276087.138784461],[517068.47949394735,5276084.90967012],[517071.0256097391,5276082.460944977],[517073.18240030896,5276084.701174128]]]},"properties":{"id_build":2363,"id_source":"w340458104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516948.2559050773,5276182.861647405],[516941.4866524642,5276175.584532561],[516943.40715367236,5276173.845226042],[516946.23137091997,5276173.886784344],[516950.1854387424,5276170.2751364885],[516955.5765559197,5276176.181231245],[516952.14971464436,5276179.305395358],[516948.2559050773,5276182.861647405]]]},"properties":{"id_build":2364,"id_source":"w340458105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.26602563716,5276189.481960549],[517199.3811093508,5276188.010047844],[517196.7930724672,5276184.3014536975],[517194.6780208811,5276185.762253459],[517197.26602563716,5276189.481960549]]]},"properties":{"id_build":2365,"id_source":"w342041926","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517240.706688881,5276168.660550784],[517237.9328229983,5276164.29566403],[517240.36350740166,5276162.791358306],[517243.0179123028,5276166.911385191],[517240.706688881,5276168.660550784]]]},"properties":{"id_build":2366,"id_source":"w342041927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517242.49244455755,5276176.945745458],[517239.41012003535,5276172.746654339],[517244.1452364755,5276169.248656606],[517247.1374217638,5276173.447483299],[517242.49244455755,5276176.945745458]]]},"properties":{"id_build":2367,"id_source":"w342041928","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.17518141225,5276169.659947425],[517276.6076202427,5276167.566621497],[517277.96993512043,5276166.648202968],[517276.04647223535,5276164.286335498],[517279.18680745567,5276161.58384198],[517281.83891727746,5276163.936758443],[517285.12816591974,5276161.679268807],[517288.595690637,5276157.566276993],[517282.6813878658,5276153.414327445],[517279.59836899,5276157.0505626965],[517277.64606691594,5276159.345363113],[517276.3800199257,5276158.196868622],[517270.85277413647,5276162.837230372],[517274.17518141225,5276169.659947425]]]},"properties":{"id_build":2368,"id_source":"w342049830","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.37644594756,5276434.512684896],[516501.4542319284,5276432.498662402],[516497.4149022752,5276426.59681579],[516495.99408025347,5276424.369997639],[516492.35942843603,5276426.749206982],[516490.408135242,5276426.176869256],[516488.34611633734,5276427.571391027],[516483.94363449153,5276430.548586111],[516483.3226003329,5276429.702166827],[516480.41012717993,5276431.694438725],[516480.57452311524,5276431.994981063],[516485.28672197775,5276439.0101173725],[516496.4469464646,5276431.550903713],[516498.37644594756,5276434.512684896]]]},"properties":{"id_build":2369,"id_source":"w342465974","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516493.64502171235,5276421.029154192],[516494.4680380542,5276422.16510978],[516495.99408025347,5276424.369997639],[516492.35942843603,5276426.749206982],[516490.408135242,5276426.176869256],[516490.4016409399,5276423.1649655625],[516493.64502171235,5276421.029154192]]]},"properties":{"id_build":2370,"id_source":"w342465975","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516344.67308319703,5276729.521939073],[516344.64828067826,5276727.654722194],[516347.8404776213,5276727.61922676],[516347.8577683615,5276729.486422569],[516344.67308319703,5276729.521939073]]]},"properties":{"id_build":2371,"id_source":"w342485234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.2807567564,5276990.9849905465],[517312.51472675375,5276988.073821805],[517314.49701632257,5276988.235311607],[517314.26304533955,5276991.146480271],[517312.2807567564,5276990.9849905465]]]},"properties":{"id_build":2372,"id_source":"w359386742","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.2702275256,5276914.280452905],[517276.69373355195,5276908.235701899],[517278.6460750914,5276908.3748625005],[517278.2226000225,5276914.408499486],[517276.2702275256,5276914.280452905]]]},"properties":{"id_build":2373,"id_source":"w359398526","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.7677351302,5277061.408178474],[517287.95507745934,5277059.019227458],[517289.67454783234,5277059.1577006765],[517289.48720479914,5277061.546651635],[517287.7677351302,5277061.408178474]]]},"properties":{"id_build":2374,"id_source":"w360372711","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.8677928511,5277083.358600519],[517288.1630836809,5277080.025281002],[517289.6347077344,5277080.163018378],[517289.3394490695,5277083.485223936],[517287.8677928511,5277083.358600519]]]},"properties":{"id_build":2375,"id_source":"w360372712","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.7635186642,5277496.030374454],[517279.46213830437,5277496.362899804],[517275.86384685786,5277494.196106389],[517278.65090645745,5277491.359194578],[517281.57279122894,5277493.70180579],[517279.7635186642,5277496.030374454]]]},"properties":{"id_build":2376,"id_source":"w387152184","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.3584427139,5277511.345713579],[517271.90917656256,5277510.899820942],[517265.99427194946,5277504.880719199],[517268.37411330594,5277502.609408553],[517269.83512790286,5277501.2244928535],[517272.62857788196,5277496.231482159],[517279.9005194883,5277500.4763789615],[517280.50031098694,5277500.811579042],[517277.10343733215,5277506.691914877],[517272.3584427139,5277511.345713579]]]},"properties":{"id_build":2377,"id_source":"w387152186","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.6149855075,5277615.626851687],[517242.53439735953,5277616.173426837],[517242.39210490935,5277613.505646277],[517245.14197493275,5277613.058117362],[517245.6149855075,5277615.626851687]]]},"properties":{"id_build":2378,"id_source":"w387173657","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.84525912296,5277621.959549602],[517242.89243206225,5277622.064905373],[517242.67866466485,5277618.174373476],[517244.63149302686,5277618.069017633],[517244.84525912296,5277621.959549602]]]},"properties":{"id_build":2379,"id_source":"w387173658","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.36245371436,5277575.181611436],[517287.17630674475,5277579.296206583],[517290.70782856364,5277578.639854236],[517291.592813446,5277584.088340864],[517287.76090860565,5277584.743800679],[517287.6877921829,5277584.076743783],[517284.59232896543,5277584.567682611],[517284.60731527966,5277584.578841103],[517281.0008991541,5277585.168290848],[517281.5897949337,5277589.171077564],[517279.63629640965,5277589.498699001],[517280.15273525147,5277592.612150829],[517273.69114278903,5277593.704374978],[517272.4369250511,5277586.143136327],[517275.2171457862,5277585.59568563],[517274.55446773674,5277581.148120836],[517280.64059121226,5277580.054783098],[517280.05136393086,5277576.16313552],[517286.36245371436,5277575.181611436]]]},"properties":{"id_build":2380,"id_source":"w387394614","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517155.98558130657,5277526.894638601],[517155.826544245,5277529.894948325],[517157.6661322723,5277530.000395374],[517159.80604373943,5277530.128956163],[517159.9654104238,5277527.017507566],[517170.92797650956,5277527.605529314],[517170.13603201264,5277541.495686434],[517159.1734920206,5277540.907666101],[517159.5715799957,5277533.240183442],[517155.74194955855,5277533.117757315],[517155.73670959414,5277534.895980928],[517148.07745061495,5277534.651136235],[517148.1600769277,5277532.09516099],[517144.70593168866,5277531.973848108],[517144.94758793106,5277526.417562815],[517155.98558130657,5277526.894638601]]]},"properties":{"id_build":2381,"id_source":"w387399151","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517084.78955924936,5277374.423586465],[517095.63322274474,5277364.45282477],[517101.99610420235,5277371.473325399],[517111.108269777,5277362.942325403],[517121.06348252535,5277374.1967221685],[517126.6361935937,5277368.989536419],[517139.2119855874,5277382.919031716],[517127.69173604547,5277393.110002169],[517123.8737803335,5277388.986595031],[517115.8162890928,5277396.409276545],[517118.8852170041,5277399.863636559],[517113.23744335887,5277405.0706091495],[517106.3502259127,5277397.603995353],[517109.58862615685,5277394.501593572],[517098.2104591872,5277381.909358108],[517094.59590984037,5277385.232941558],[517084.78955924936,5277374.423586465]]]},"properties":{"id_build":2382,"id_source":"w387511001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517105.30896138964,5277419.717778871],[517102.2250186653,5277421.3758178735],[517099.61092794576,5277416.477983467],[517102.694872502,5277414.819943088],[517105.30896138964,5277419.717778871]]]},"properties":{"id_build":2383,"id_source":"w387511002","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.45106820005,5277254.937219527],[516978.462411162,5277251.04735704],[516981.9173743506,5277250.946292971],[516981.98112988047,5277254.836374498],[516978.45106820005,5277254.937219527]]]},"properties":{"id_build":2384,"id_source":"w396429780","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.4664992241,5277309.132957835],[516945.43259852676,5277305.298533329],[516948.9549248711,5277305.264329847],[516948.9963332607,5277309.098776243],[516945.4664992241,5277309.132957835]]]},"properties":{"id_build":2385,"id_source":"w396429781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.2629666239,5277277.627784703],[516908.27426277724,5277273.737922054],[516911.7292110635,5277273.63681637],[516911.7930131074,5277277.526897153],[516908.2629666239,5277277.627784703]]]},"properties":{"id_build":2386,"id_source":"w396429782","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.0888400894,5277073.8824572535],[516830.02566442493,5277073.904053678],[516830.0008336633,5277069.50284478],[516834.0565342102,5277069.470112727],[516834.0888400894,5277073.8824572535]]]},"properties":{"id_build":2387,"id_source":"w396523216","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516833.34398742137,5277170.460821068],[516829.28838934033,5277170.482439565],[516829.256048838,5277166.0812082905],[516833.31168211607,5277166.0484758755],[516833.34398742137,5277170.460821068]]]},"properties":{"id_build":2388,"id_source":"w396523217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516020.4281736209,5277410.352107497],[516016.048723295,5277410.7735037645],[516016.20199756575,5277412.385452595],[516012.9868851202,5277412.698914453],[516013.08924172085,5277413.710568208],[516010.30982498865,5277413.980773961],[516010.63866153726,5277417.293644465],[516013.410566837,5277417.023418215],[516013.62233102805,5277419.213454859],[516013.9875530512,5277422.94875694],[516021.58210139547,5277422.21390025],[516020.4281736209,5277410.352107497]]]},"properties":{"id_build":2389,"id_source":"w397413795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.2421809946,5277474.35140308],[516035.22262504767,5277473.109031757],[516034.4415742503,5277464.938103997],[516029.84431832563,5277465.381117839],[516029.7786272577,5277464.691870111],[516029.71290557226,5277464.013736274],[516030.8396826805,5277463.905698891],[516030.28488023055,5277458.113786869],[516024.17023911,5277458.697109253],[516024.73988365236,5277464.555745412],[516025.88918997743,5277464.447769079],[516025.94764703646,5277465.036971014],[516026.02057302586,5277465.82626445],[516021.460867498,5277466.26938827],[516022.2421809946,5277474.35140308]]]},"properties":{"id_build":2390,"id_source":"w397413796","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.0300554005,5277562.502122716],[516162.6891264104,5277567.152382966],[516160.58796003397,5277566.590850849],[516160.3071404589,5277567.657013883],[516159.92010584974,5277569.111871567],[516154.5846455353,5277567.685588184],[516153.4691596544,5277571.850237295],[516170.8863818383,5277576.477551327],[516171.8652543275,5277572.834883269],[516168.9086060426,5277572.048692157],[516169.720567477,5277569.01682938],[516168.4223510047,5277568.6686903145],[516170.2195311107,5277565.117206551],[516165.0300554005,5277562.502122716]]]},"properties":{"id_build":2391,"id_source":"w397413797","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515911.3623408433,5277371.54308232],[515911.00468095206,5277367.763352079],[515904.14632269973,5277368.400338359],[515903.95662013063,5277366.365962055],[515899.8175545019,5277366.754760547],[515899.65707064414,5277365.020541608],[515895.0147174127,5277365.452425053],[515895.5912227257,5277371.6000291975],[515895.7224871616,5277373.034090833],[515895.22671079414,5277373.077193212],[515895.5842592001,5277376.90137808],[515902.0970590686,5277376.2967798645],[515901.7396059615,5277372.4392529065],[515911.3623408433,5277371.54308232]]]},"properties":{"id_build":2392,"id_source":"w397413798","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.1744541304,5277475.863164372],[516018.9521267781,5277474.620199342],[516018.17065586976,5277466.593754464],[516013.6710605671,5277467.025935777],[516013.6053064676,5277466.3589160275],[516013.53967462596,5277465.647440685],[516014.69649032364,5277465.539482798],[516014.13397876086,5277459.814235063],[516008.056859629,5277460.408791548],[516008.6119284174,5277466.1117902445],[516009.7537243171,5277466.003790076],[516009.82680529665,5277466.73751382],[516009.8852333925,5277467.337829489],[516005.3781295091,5277467.769996559],[516006.1744541304,5277475.863164372]]]},"properties":{"id_build":2393,"id_source":"w397413799","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.89772915473,5277478.780250866],[516004.765387471,5277477.581957839],[516004.0065795965,5277469.500007317],[515999.4243798502,5277469.931972557],[515999.3734605043,5277469.331677629],[515999.300530951,5277468.542384531],[516000.3521780304,5277468.44524877],[515999.81953919446,5277462.775654463],[515993.75750536635,5277463.348039345],[515994.29002791847,5277469.062088681],[515995.4919013667,5277468.954250765],[515995.5575353716,5277469.665725899],[515995.6159649053,5277470.266041428],[515991.13893412275,5277470.687188147],[515991.89772915473,5277478.780250866]]]},"properties":{"id_build":2394,"id_source":"w397413800","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515885.72429406596,5277340.887404965],[515882.95763414854,5277339.223874241],[515884.4287484917,5277336.782812389],[515880.85231266246,5277334.639172456],[515879.4112391707,5277337.080317133],[515876.1871037216,5277335.182148442],[515872.006946012,5277342.372609258],[515870.9122787296,5277341.713900507],[515867.36660304817,5277347.572416866],[515877.12732848024,5277351.166612809],[515879.8054258658,5277346.750553169],[515878.8681966283,5277346.19229812],[515879.3283652863,5277345.437802624],[515879.89418882586,5277344.494657701],[515882.5633692172,5277346.102351185],[515885.72429406596,5277340.887404965]]]},"properties":{"id_build":2395,"id_source":"w397413801","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515993.1849896416,5277176.9170052],[515993.20752017386,5277176.917067087],[516000.604922827,5277176.981846513],[516000.5189848205,5277175.458995596],[516000.42623902287,5277173.680504521],[516006.82589151064,5277173.342446963],[516006.311188703,5277163.8719242485],[516001.3161153569,5277164.147158364],[516001.4664075405,5277166.848267598],[515993.5944762627,5277167.282312605],[515993.6873769024,5277169.005234084],[515988.79748175247,5277169.269653848],[515989.0192496598,5277173.293522187],[515988.5233667298,5277176.103996476],[515989.1764470674,5277176.216929599],[515993.1849896416,5277176.9170052]]]},"properties":{"id_build":2396,"id_source":"w397413802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515891.32574758044,5277310.994976256],[515885.83341727837,5277320.160133822],[515884.5362807439,5277319.38973035],[515881.48848028545,5277324.427162014],[515888.48553222377,5277328.024952895],[515890.7262191473,5277324.2856573695],[515892.4507252493,5277325.312850244],[515893.9219077318,5277322.849563035],[515894.8441496767,5277323.396665584],[515895.5985771679,5277322.142845707],[515897.9154010603,5277323.52730462],[515903.99619881227,5277313.38573567],[515899.83488588396,5277310.907067275],[515897.556455938,5277314.712940085],[515891.32574758044,5277310.994976256]]]},"properties":{"id_build":2397,"id_source":"w397413803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515957.28633141785,5277401.52091662],[515958.1708101757,5277410.358954916],[515960.98029606475,5277410.07769273],[515963.8348414951,5277409.79655545],[515964.0322143358,5277411.764271109],[515970.2671478267,5277411.147873409],[515970.0843090625,5277409.35802108],[515971.5716916592,5277409.2065054085],[515974.3736384126,5277408.936342981],[515976.32675568026,5277408.741650467],[515976.5095925481,5277410.531502994],[515982.8497280411,5277409.893179483],[515982.6743724723,5277408.114461264],[515983.9589279629,5277407.984619931],[515985.53642984363,5277407.833355234],[515985.71178455005,5277409.612073541],[515988.9719869417,5277409.287606469],[515988.774744519,5277407.2754343655],[515990.69782332686,5277407.0806641765],[515994.51391128276,5277406.702157075],[515993.63687483623,5277397.908589399],[515987.950299263,5277398.470898027],[515988.00879139296,5277399.048985618],[515985.11669001926,5277399.330007962],[515985.05816709145,5277398.763034302],[515965.8199410108,5277400.677421147],[515965.87849626725,5277401.233280716],[515963.046476203,5277401.514478775],[515962.9954305676,5277400.958639822],[515957.28633141785,5277401.52091662]]]},"properties":{"id_build":2398,"id_source":"w397413805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515911.7411557791,5277406.053023056],[515912.64093526785,5277414.813298116],[515915.5856551351,5277414.5101557],[515918.18479969696,5277414.250525851],[515918.37507295166,5277416.07373875],[515924.71522612224,5277415.4242380615],[515924.5543255536,5277413.845612841],[515925.8163488052,5277413.715697056],[515929.33948214725,5277413.358573902],[515930.79682312027,5277413.206965629],[515930.9652318852,5277414.785611575],[515937.2678081519,5277414.147135703],[515937.1068501041,5277412.590737921],[515938.50408206705,5277412.450081017],[515940.10414154595,5277412.287751797],[515940.26512923284,5277413.833035766],[515943.48777724145,5277413.508440427],[515943.3122880332,5277411.774178995],[515945.44570112746,5277411.557741896],[515948.9838872325,5277411.189557861],[515948.06938556733,5277402.340324801],[515942.41282805405,5277402.91387407],[515942.478773674,5277403.514209553],[515939.57162663195,5277403.806327281],[515939.5131601751,5277403.2171262875],[515920.3123923868,5277405.17622184],[515920.3561752924,5277405.643128703],[515917.55419920787,5277405.924431025],[515917.5028758133,5277405.468617544],[515911.7411557791,5277406.053023056]]]},"properties":{"id_build":2399,"id_source":"w397413808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515963.69375132996,5277480.425515954],[515988.53563316114,5277477.937468259],[515987.29284466937,5277465.597536089],[515985.1519399228,5277465.813937214],[515985.45175541827,5277468.759965447],[515985.9325352639,5277468.70571562],[515986.0056497237,5277469.42832516],[515986.0714679787,5277470.073116802],[515979.8140358822,5277470.700549554],[515979.7483084549,5277470.022416294],[515979.6825810114,5277469.344283033],[515980.12578124495,5277469.30104357],[515979.8259935911,5277466.343901719],[515975.3789392208,5277466.787370804],[515975.678729108,5277469.744512422],[515976.1895174775,5277469.70145812],[515976.2552758218,5277470.36847744],[515976.32851345104,5277471.046631269],[515970.0109746384,5277471.68502359],[515969.9451241391,5277471.051346031],[515969.87197722425,5277470.339850593],[515970.3227175915,5277470.285517084],[515970.0229250151,5277467.328375744],[515964.33638911246,5277467.901821238],[515964.6288271217,5277470.8033722015],[515966.07113509544,5277470.651731589],[515966.13692506374,5277471.307636897],[515966.2099809874,5277472.052473983],[515962.88219640707,5277472.387882336],[515963.69375132996,5277480.425515954]]]},"properties":{"id_build":2400,"id_source":"w397413811","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.96312690707,5277158.336966431],[515979.10167916736,5277158.351340977],[515979.12342395884,5277161.374402082],[515981.9849007167,5277161.348913661],[515981.96312690707,5277158.336966431]]]},"properties":{"id_build":2401,"id_source":"w397413812","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516072.96501421166,5277084.846228644],[516076.164860778,5277084.688352649],[516075.98707571934,5277081.075819789],[516072.7947374749,5277081.233716614],[516072.96501421166,5277084.846228644]]]},"properties":{"id_build":2402,"id_source":"w397413813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515982.2452878643,5277192.346507927],[515982.27447989746,5277195.39181761],[515986.3150951168,5277195.347340172],[515986.2859051947,5277192.302030464],[515982.2452878643,5277192.346507927]]]},"properties":{"id_build":2403,"id_source":"w397413814","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516249.76525638456,5277346.237613967],[516247.36144895654,5277346.4531851625],[516247.7480013951,5277350.566437112],[516250.14432820666,5277350.339731225],[516249.76525638456,5277346.237613967]]]},"properties":{"id_build":2404,"id_source":"w397413815","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.231751488,5277105.888411121],[516080.7257133919,5277105.695246646],[516080.26144594594,5277099.759101404],[516077.76748151536,5277099.952266084],[516078.231751488,5277105.888411121]]]},"properties":{"id_build":2405,"id_source":"w397413817","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516226.96903385577,5277336.649353121],[516227.4139155152,5277341.39626309],[516224.0560625917,5277341.709210785],[516224.7415277225,5277349.057462652],[516234.8751856691,5277348.107680217],[516235.414931093,5277353.843999811],[516245.04526077054,5277352.948401501],[516244.848383823,5277350.83619565],[516247.7480013951,5277350.566437112],[516247.36144895654,5277346.4531851625],[516249.76525638456,5277346.237613967],[516250.2986186312,5277346.183532674],[516250.16719267936,5277344.838374073],[516252.1804208157,5277344.643941729],[516252.3043363494,5277345.989079417],[516262.7234449951,5277345.017914252],[516262.5702991071,5277343.383731164],[516266.1835541268,5277343.049291243],[516266.3367300598,5277344.672360536],[516273.7810904305,5277343.981868556],[516273.6570244901,5277342.692299882],[516279.0055486229,5277342.196008631],[516279.129644465,5277343.474463524],[516289.8943139923,5277342.470971194],[516289.6974218289,5277340.36987772],[516291.9359830313,5277340.164975575],[516291.6077993308,5277336.674266911],[516292.98249747383,5277336.544745889],[516292.1220086176,5277327.362188943],[516279.4943377881,5277328.538291636],[516279.58917079365,5277329.538815149],[516274.6462982183,5277329.99178386],[516274.85048870684,5277332.170695034],[516266.94788030174,5277332.904361319],[516266.86039990606,5277331.959428466],[516257.1323712636,5277332.865832044],[516257.2273321646,5277333.82189961],[516241.6925476303,5277335.267817113],[516241.590322253,5277334.222817694],[516234.52154513,5277334.881056157],[516234.6237407744,5277335.937169345],[516226.96903385577,5277336.649353121]]]},"properties":{"id_build":2406,"id_source":"w397413818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.16724443773,5277358.331947912],[516037.5679393721,5277355.062787],[516037.1832078955,5277352.961185077],[516034.0349164607,5277353.541555027],[516035.01147646765,5277358.901182749],[516038.16724443773,5277358.331947912]]]},"properties":{"id_build":2407,"id_source":"w397413819","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515966.4456244798,5277356.000939135],[515966.2474580072,5277354.322184853],[515963.76835221617,5277354.615464428],[515963.50417991576,5277352.358602363],[515958.6962576015,5277352.91223491],[515959.1586002777,5277356.847850791],[515966.4456244798,5277356.000939135]]]},"properties":{"id_build":2408,"id_source":"w397413820","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515944.10481777333,5277319.81928603],[515940.1584339525,5277329.366501819],[515946.137192038,5277331.827948641],[515947.58875767456,5277328.308793174],[515952.77236952336,5277330.434649566],[515954.0424817551,5277327.3595576715],[515955.2672308345,5277324.395481532],[515944.10481777333,5277319.81928603]]]},"properties":{"id_build":2409,"id_source":"w397413821","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515998.79934177955,5277082.452523345],[515991.02499159914,5277082.8646125095],[515991.33948139206,5277088.678084947],[515983.87627061876,5277090.65810855],[515984.0834824115,5277094.515226594],[515999.3917615594,5277093.7126075765],[515999.1203874664,5277088.61054747],[515998.79934177955,5277082.452523345]]]},"properties":{"id_build":2410,"id_source":"w397413822","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515960.2707426561,5277394.960734896],[515973.1387926633,5277393.68457445],[515972.7585836388,5277389.927006174],[515970.56505185476,5277390.154382375],[515970.07530177926,5277385.262887896],[515961.4590295108,5277386.117264588],[515961.75861765485,5277389.152202363],[515961.97794273164,5277391.331143679],[515959.9271609589,5277391.536687287],[515960.2707426561,5277394.960734896]]]},"properties":{"id_build":2411,"id_source":"w397413823","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516010.4701708389,5277429.407420161],[516011.4286235544,5277438.62354614],[516013.26154416346,5277438.4396494785],[516014.60620297655,5277438.298866261],[516014.76707841357,5277439.8774940865],[516021.02460873325,5277439.227871054],[516020.8637655549,5277437.638129153],[516022.3361226367,5277437.48658513],[516024.25171340094,5277437.280691467],[516023.30072941276,5277428.086811815],[516010.4701708389,5277429.407420161]]]},"properties":{"id_build":2412,"id_source":"w397413824","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516016.1835117035,5277386.345345657],[516012.4573444223,5277386.790769806],[516012.3472327685,5277385.8680066215],[516006.96830530075,5277386.520054681],[516007.5632545642,5277391.378499723],[516007.9525399132,5277394.55816838],[516011.520963458,5277394.123421543],[516012.28478431905,5277400.382693088],[516017.81395856815,5277399.708835378],[516016.1835117035,5277386.345345657]]]},"properties":{"id_build":2413,"id_source":"w397413825","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516086.93658615055,5277064.979682176],[516083.0268902952,5277066.535952475],[516084.25010964373,5277069.6067884],[516076.4608609833,5277072.686076505],[516079.2802091818,5277079.7734635845],[516083.640973947,5277078.051727078],[516087.06944989885,5277076.694179234],[516088.79235446814,5277081.033389938],[516092.7095524848,5277079.477144252],[516086.93658615055,5277064.979682176]]]},"properties":{"id_build":2414,"id_source":"w397413827","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516063.69317544124,5277075.429333238],[516061.86020165554,5277070.145138599],[516053.15492219897,5277073.144133238],[516054.97294358345,5277078.406055949],[516055.1250520686,5277080.4403328085],[516055.28451751766,5277082.5301998425],[516057.3277480374,5277082.380238412],[516057.6478111377,5277086.148758668],[516070.08789585775,5277085.082794904],[516069.21460178815,5277074.955553282],[516063.69317544124,5277075.429333238]]]},"properties":{"id_build":2415,"id_source":"w397413828","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.3781531471,5277195.813795907],[515997.58652276755,5277195.856198719],[515990.0986559868,5277195.924542288],[515989.9816598111,5277183.832214582],[516001.9307045004,5277183.731673629],[516001.9190745219,5277182.49799028],[516007.17637706076,5277182.445757186],[516007.24740285584,5277189.392187806],[516002.3205536856,5277189.445328986],[516002.33841083845,5277191.145816487],[516002.3781531471,5277195.813795907]]]},"properties":{"id_build":2416,"id_source":"w397413829","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0301025402,5276660.920479226],[516860.36764077,5276656.250691424],[516863.5985943086,5276655.815487571],[516863.89355716633,5276657.705717589],[516873.8881398377,5276655.956432478],[516874.2575637766,5276658.069158312],[516874.623122933,5276661.515550083],[516871.69260547037,5276661.951618215],[516872.2789831032,5276666.954606239],[516867.6882515957,5276667.4970063],[516867.10090438265,5276662.827435219],[516866.8866307718,5276661.604277263],[516864.2565477208,5276662.041219302],[516864.4776890107,5276663.486676562],[516861.2464178667,5276664.03301875],[516861.0301025402,5276660.920479226]]]},"properties":{"id_build":2417,"id_source":"w400596000","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516941.0273708155,5276586.533412434],[516943.08581212536,5276583.805362878],[516939.75023026107,5276581.461724694],[516937.7893026891,5276584.234514927],[516941.0273708155,5276586.533412434]]]},"properties":{"id_build":2418,"id_source":"w400600045","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.81513897487,5276547.090388844],[517118.38377341797,5276545.985897636],[517116.2424195531,5276548.780325757],[517116.3623340949,5276548.869590002],[517117.7415143985,5276549.840559615],[517119.50293789245,5276551.090502597],[517121.6138564258,5276548.429353903],[517119.81513897487,5276547.090388844]]]},"properties":{"id_build":2419,"id_source":"w400603334","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517048.2857715979,5276583.545563108],[517050.0279259873,5276581.116702555],[517052.3515039206,5276582.768374263],[517050.61685999227,5276585.197256116],[517048.2857715979,5276583.545563108]]]},"properties":{"id_build":2420,"id_source":"w400613445","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516799.7787776995,5277553.718648327],[516812.12359147577,5277551.542599633],[516809.8255242501,5277538.565936669],[516810.26288468955,5277537.944816016],[516810.8811843963,5277537.07971006],[516811.6832476644,5277537.59326965],[516818.56003978127,5277527.943959624],[516806.6740278165,5277519.4518885575],[516799.8270278971,5277529.190210337],[516801.0036493646,5277530.027154998],[516797.39186938736,5277535.084712843],[516796.63303516974,5277535.204777407],[516799.7787776995,5277553.718648327]]]},"properties":{"id_build":2421,"id_source":"w435781590","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.70774063695,5277566.652460375],[517148.88434745267,5277569.2069212645],[517146.411910791,5277572.344899467],[517143.1751617761,5277569.812490804],[517145.70774063695,5277566.652460375]]]},"properties":{"id_build":2422,"id_source":"w435781591","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.6640488283,5277558.064963021],[516831.8242341644,5277548.06527406],[516836.4039948995,5277548.478620162],[516838.9967211449,5277558.2219749335],[516834.6640488283,5277558.064963021]]]},"properties":{"id_build":2423,"id_source":"w435781592","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516987.15406893403,5277654.321641245],[516990.4214277051,5277656.665114818],[516992.3290673127,5277654.025551798],[516989.0541982457,5277651.682055253],[516987.15406893403,5277654.321641245]]]},"properties":{"id_build":2424,"id_source":"w435784884","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516609.33237363776,5277190.0782949645],[516609.16506452323,5277185.543312856],[516614.06226501625,5277185.357232719],[516614.2295703245,5277189.892214979],[516609.33237363776,5277190.0782949645]]]},"properties":{"id_build":2425,"id_source":"w435813578","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516669.4973297549,5277423.34384193],[516670.1337268749,5277424.023617266],[516672.11260749,5277422.706719115],[516671.2290532606,5277421.792842112],[516669.4973297549,5277423.34384193]]]},"properties":{"id_build":2426,"id_source":"w435819542","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.5869031086,5277406.126620921],[516573.1128014712,5277405.641948887],[516572.5395703788,5277403.873193423],[516571.051347561,5277404.313516895],[516571.5869031086,5277406.126620921]]]},"properties":{"id_build":2427,"id_source":"w435819543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516258.24517404864,5276969.286250527],[516256.66769942973,5276966.692290082],[516260.9638319606,5276963.959133807],[516262.6089925861,5276966.519942521],[516258.24517404864,5276969.286250527]]]},"properties":{"id_build":2428,"id_source":"w437557214","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516093.4597656727,5276968.361700074],[516092.0617168763,5276968.757939384],[516091.34767165856,5276968.9560176525],[516092.9465069243,5276974.717474479],[516095.02843438333,5276974.1675299965],[516093.4597656727,5276968.361700074]]]},"properties":{"id_build":2429,"id_source":"w437562169","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516089.4591602032,5277059.874223377],[516085.75263820216,5277061.286571587],[516084.30610342504,5277057.492710142],[516088.01259677013,5277056.091474906],[516089.4591602032,5277059.874223377]]]},"properties":{"id_build":2430,"id_source":"w437582717","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516095.6548060893,5277076.328915905],[516093.65638889105,5277071.133165579],[516095.3405118155,5277070.482096041],[516093.6179468275,5277066.020630671],[516102.8279250986,5277062.489621298],[516106.22083716094,5277071.279045901],[516101.7098236079,5277073.01146403],[516099.454333206,5277073.872117457],[516099.789900285,5277074.739935368],[516095.6548060893,5277076.328915905]]]},"properties":{"id_build":2431,"id_source":"w437582718","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515952.8223465555,5277123.059093987],[515952.73688233824,5277121.358421668],[515952.65847158333,5277119.824478306],[515947.25780970143,5277120.09864776],[515947.4216876635,5277123.333263281],[515952.8223465555,5277123.059093987]]]},"properties":{"id_build":2432,"id_source":"w437630186","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515951.36744950333,5277133.257737157],[515952.75702542847,5277133.1948602535],[515952.53900640167,5277127.7928710515],[515949.0387471465,5277127.961105956],[515949.28684079146,5277133.352063419],[515951.36744950333,5277133.257737157]]]},"properties":{"id_build":2433,"id_source":"w437630188","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.1315156938,5277554.319955337],[517285.77713590744,5277549.739936899],[517292.8829962324,5277549.194225395],[517298.23870110343,5277548.776690132],[517298.5930711567,5277553.356709344],[517286.1315156938,5277554.319955337]]]},"properties":{"id_build":2434,"id_source":"w438287281","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.41561592894,5277557.277121761],[517286.1315156938,5277554.319955337],[517298.5930711567,5277553.356709344],[517298.832139988,5277556.302628608],[517294.49746291025,5277556.823222227],[517286.41561592894,5277557.277121761]]]},"properties":{"id_build":2435,"id_source":"w438287282","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517309.8518900829,5277691.703868796],[517308.1336885614,5277688.675752659],[517310.4129069613,5277687.39330555],[517312.1311076846,5277690.421422356],[517309.8518900829,5277691.703868796]]]},"properties":{"id_build":2436,"id_source":"w438289155","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.35906745127,5277744.385466203],[517264.2110827069,5277741.525763957],[517259.3541438978,5277743.478540203],[517260.5464294135,5277746.593994809],[517265.35906745127,5277744.385466203]]]},"properties":{"id_build":2437,"id_source":"w438291366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.1716129067,5277097.072873033],[516685.96700017335,5277106.108987814],[516695.68400416,5277093.489130312],[516683.8886061441,5277084.452996053],[516674.1716129067,5277097.072873033]]]},"properties":{"id_build":2438,"id_source":"w497190606","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.01516287745,5277751.881747486],[516365.88105948985,5277756.435553215],[516364.1466737017,5277758.99800935],[516357.25030385563,5277754.599715878],[516359.01516287745,5277751.881747486]]]},"properties":{"id_build":2439,"id_source":"w511310931","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516353.76459907193,5277752.389352845],[516357.34022969037,5277754.66665249],[516355.7336011374,5277757.196128116],[516352.0829707798,5277754.885276806],[516353.76459907193,5277752.389352845]]]},"properties":{"id_build":2440,"id_source":"w511310932","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516349.0649783172,5277663.675406129],[516348.04564560315,5277662.972362368],[516346.2964395198,5277665.456984015],[516345.284616336,5277664.75396182],[516344.3120154195,5277666.129365723],[516341.7409334434,5277669.800878135],[516340.97941243654,5277670.887911413],[516342.03632350604,5277671.579945444],[516338.54518309137,5277676.638125203],[516337.4958756373,5277675.912771168],[516336.56849154626,5277677.23273332],[516334.7437939247,5277679.861628452],[516329.7970436749,5277676.446870275],[516331.41786020977,5277674.217505246],[516329.98634436936,5277673.213230682],[516332.80654190487,5277669.07562449],[516331.88461402303,5277668.450654749],[516333.77699336346,5277665.788606686],[516334.27913521964,5277666.145663171],[516338.6069265481,5277659.989544105],[516338.0447079735,5277659.632318646],[516344.21248608985,5277650.7584407255],[516345.4942505849,5277651.60670245],[516347.59812665323,5277648.511807173],[516347.1109408058,5277648.177019522],[516350.48139047704,5277643.318557816],[516350.95365103136,5277643.619961863],[516352.97427189385,5277640.7582284575],[516359.79499764834,5277645.400810535],[516358.62617310206,5277647.120194258],[516357.7287554954,5277648.462465205],[516358.7405800338,5277649.165489542],[516355.43029696576,5277653.990773589],[516354.3358676686,5277653.287517768],[516352.9708611406,5277655.339771166],[516352.2845254135,5277656.3936721925],[516353.58127539174,5277657.2530917935],[516352.01304377796,5277659.471484374],[516350.1054788685,5277662.189053833],[516349.0649783172,5277663.675406129]]]},"properties":{"id_build":2441,"id_source":"w511310934","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516348.05916500377,5277684.900299504],[516347.49698063044,5277684.531959216],[516344.6560508041,5277682.679060342],[516346.5411091409,5277679.950311875],[516349.8766384887,5277682.171362319],[516348.05916500377,5277684.900299504]]]},"properties":{"id_build":2442,"id_source":"w511310935","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516374.83284527814,5277676.173266287],[516374.2596198944,5277677.06077308],[516376.0733942994,5277678.321755585],[516378.8764560123,5277680.285703168],[516382.75882350584,5277682.986212558],[516383.76312948717,5277683.689220167],[516384.41160733294,5277682.746356138],[516389.2084428481,5277686.049599012],[516388.5069912135,5277687.136795244],[516389.6387698841,5277687.906846664],[516391.32518870104,5277689.056335544],[516386.9293079395,5277695.378934056],[516384.1186528818,5277693.448303094],[516383.78692067135,5277693.91415704],[516381.20874608296,5277692.095321661],[516378.8855182256,5277690.410572581],[516379.2850547741,5277689.867111205],[516376.42182788946,5277687.936336093],[516374.5522147261,5277690.509522572],[516368.1369742376,5277685.90140456],[516370.57946636446,5277682.562961728],[516368.12866338354,5277680.844516291],[516367.83472936344,5277681.221565495],[516362.581202009,5277677.416927239],[516362.89769571414,5277677.028827192],[516359.7946516437,5277674.919562497],[516359.2520599634,5277675.59599106],[516355.22715156886,5277672.839527062],[516352.16576068924,5277677.287636688],[516352.7729090122,5277677.689445695],[516349.8766384887,5277682.171362319],[516346.5411091409,5277679.950311875],[516356.1247522109,5277666.084743854],[516358.4858876198,5277667.64733635],[516359.18705487525,5277666.660161648],[516360.10156428436,5277667.251772911],[516360.99360733747,5277667.821093207],[516361.65707108943,5277666.8893827805],[516366.37871215533,5277670.23685125],[516367.12816658925,5277670.772429674],[516367.8218878926,5277669.763007091],[516372.78360953485,5277673.188953721],[516372.0823469784,5277674.209468503],[516372.89926117845,5277674.789693347],[516374.83284527814,5277676.173266287]]]},"properties":{"id_build":2443,"id_source":"w511310936","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516402.6334300159,5277673.484145091],[516399.202345455,5277678.531343974],[516397.11119290214,5277677.102863144],[516396.10685607896,5277676.410967139],[516395.3376910094,5277677.542427794],[516390.55593355314,5277674.216994404],[516391.3552614468,5277673.041162099],[516390.31343812187,5277672.326933579],[516385.95123823965,5277669.347218918],[516386.63022544305,5277668.237731191],[516385.52093988925,5277667.478857698],[516382.5753178797,5277665.470049849],[516383.216663305,5277664.393797772],[516379.70027683274,5277659.727141945],[516379.1541429781,5277658.992082154],[516378.288761731,5277659.623144845],[516375.221785476,5277655.3689737115],[516373.6808173546,5277653.230753745],[516372.02764216077,5277650.9366228115],[516373.6378778447,5277649.807524584],[516372.3212571371,5277648.003355634],[516370.5857246121,5277645.620081626],[516368.2143451582,5277642.357015325],[516369.380673514,5277641.526745548],[516368.38571169606,5277640.16804149],[516366.2536356987,5277637.261296479],[516365.1090742757,5277635.691006669],[516364.07807411265,5277636.466087744],[516360.6517391793,5277631.810810904],[516361.8782389995,5277630.9473667685],[516361.003021087,5277629.733482391],[516358.85607450583,5277626.771128444],[516363.7474347761,5277623.183942941],[516365.37086396635,5277625.37796186],[516366.52217609214,5277624.547649305],[516369.536982928,5277628.668300985],[516369.79315294727,5277628.368943614],[516371.70100533694,5277630.897183727],[516371.3022780814,5277631.151684183],[516375.438858275,5277636.931477852],[516375.8452199548,5277636.632543206],[516377.65556747833,5277639.1160551105],[516378.36300030403,5277638.573459878],[516382.7990442256,5277644.676407061],[516381.3465376622,5277645.794832594],[516385.78279187105,5277651.819984838],[516383.89366831764,5277653.315056464],[516386.6985555898,5277657.301758729],[516385.3891396421,5277658.276104178],[516386.62349297025,5277659.957790707],[516391.82539249945,5277663.428885526],[516390.64895861724,5277665.18158344],[516394.76403283124,5277667.9160978915],[516395.4652375275,5277666.917813642],[516400.24699822936,5277670.243251019],[516399.5304609484,5277671.352631396],[516402.6334300159,5277673.484145091]]]},"properties":{"id_build":2444,"id_source":"w511310937","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.6018542644,5277734.042036863],[516336.5556702083,5277732.64704581],[516335.7787963308,5277733.856290625],[516331.656512627,5277731.0217713555],[516331.21139653435,5277731.754045952],[516324.7210106769,5277727.167992595],[516324.11000126763,5277728.144310297],[516320.8800574426,5277725.767974532],[516320.68384532497,5277726.111958113],[516318.1728457695,5277724.43782077],[516315.76725774753,5277722.663954042],[516316.02357663604,5277722.309024769],[516313.16056297475,5277720.300483372],[516312.79848864384,5277720.877396206],[516307.5294133561,5277717.261701638],[516310.1605599844,5277713.579228351],[516307.31283916207,5277711.470706838],[516309.5972126755,5277708.265163472],[516306.9666729189,5277706.36841639],[516308.36159594543,5277704.34957796],[516307.4848214647,5277703.691396555],[516309.2266457427,5277701.15117262],[516310.65790912276,5277702.244353341],[516312.6559926165,5277699.371428748],[516312.27369299316,5277699.125849779],[516315.63713547663,5277694.067296389],[516316.0421195687,5277694.257369207],[516318.0854212895,5277691.329003277],[516317.3207591006,5277690.860072462],[516320.1780505728,5277686.878159936],[516321.59476378775,5277687.804592699],[516323.3518984458,5277685.164390027],[516328.3284960425,5277688.645910437],[516326.43544084847,5277691.552466173],[516325.47755619,5277693.039054387],[516326.37710814417,5277693.608390462],[516323.8810510972,5277697.313463169],[516322.6970726799,5277699.088381589],[516323.8065472854,5277699.780559736],[516320.42057244654,5277704.839045304],[516319.1763636038,5277703.9908942655],[516318.11319410894,5277705.532758513],[516315.92643823137,5277708.738572141],[516314.6147998621,5277707.834663148],[516313.9209365782,5277708.899661609],[516312.78211390215,5277710.641366623],[516314.52843019064,5277711.857685023],[516315.5852123103,5277712.594169916],[516316.3244127393,5277711.429272811],[516318.9254699965,5277713.125889723],[516318.5479706868,5277713.847240815],[516320.30942840636,5277715.019147457],[516321.4787579972,5277715.7892909115],[516322.2254063753,5277714.6466434095],[516327.20989398565,5277717.983703414],[516326.31236976746,5277719.370434922],[516327.63148202683,5277720.285481542],[516329.07049610716,5277721.2897766875],[516331.2196136529,5277718.117204304],[516333.2282567178,5277719.512088093],[516335.9788712524,5277721.43141207],[516337.56779240584,5277722.536155889],[516337.00214908365,5277723.401459664],[516339.18303889764,5277724.96353875],[516338.3687408758,5277726.128222223],[516339.5379098838,5277726.953938838],[516342.49828469154,5277729.051678521],[516338.6018542644,5277734.042036863]]]},"properties":{"id_build":2445,"id_source":"w511310938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516352.1932044063,5277696.926131813],[516353.79919221107,5277694.630047338],[516363.01020035567,5277701.124271222],[516362.11285243224,5277702.444313788],[516364.7211288101,5277704.240997372],[516364.4044802438,5277704.684666838],[516367.1625698672,5277706.615140523],[516364.62131037714,5277710.364524819],[516367.50680854503,5277712.384268761],[516365.3879256989,5277715.479114901],[516368.79026279174,5277717.967100002],[516366.65676850465,5277720.9174227575],[516367.22630138596,5277721.341355551],[516358.9719442183,5277732.521055919],[516358.4022869206,5277732.14157953],[516354.19589652633,5277737.864579867],[516354.5703389391,5277738.232393437],[516352.70869795955,5277740.650013547],[516351.8693251346,5277740.047500373],[516348.9819999228,5277744.029313315],[516347.5806357747,5277742.991776918],[516345.77941804164,5277745.287315031],[516340.8628303072,5277741.850403489],[516343.0714296252,5277738.889168147],[516343.99855586805,5277737.658118137],[516343.0916902111,5277737.022074788],[516346.4768861477,5277732.241449691],[516347.458565923,5277732.9777295515],[516348.36316563975,5277731.746616982],[516351.0091009319,5277728.153115418],[516351.76288842293,5277727.143859586],[516350.92363840196,5277726.496890961],[516352.69548162894,5277723.9678781815],[516351.87857236987,5277723.387656117],[516353.0394644577,5277721.8127305],[516355.3762382446,5277718.674036065],[516356.4993662201,5277717.176802972],[516357.42125249456,5277717.812890584],[516359.23049243196,5277715.339554823],[516360.4745681127,5277716.232170063],[516361.0475377024,5277715.433573082],[516362.59304198105,5277713.281802855],[516361.0789680054,5277712.266174476],[516356.9495776104,5277709.287135577],[516356.38405502756,5277710.107981856],[516354.59265871556,5277708.902638203],[516351.4445717696,5277706.793251242],[516349.18094906,5277705.27539124],[516345.0135008672,5277702.4740778385],[516344.14402130595,5277701.8937093],[516343.4201763031,5277702.9363921145],[516338.4356225766,5277699.621546116],[516339.13706334593,5277698.534343854],[516338.00528012234,5277697.764302251],[516337.3381815904,5277697.317870576],[516338.06972284184,5277696.208524683],[516336.0760294902,5277694.835909237],[516344.6560508041,5277682.679060342],[516347.49698063044,5277684.531959216],[516346.1016336183,5277686.695268962],[516345.59946306085,5277686.349325339],[516342.4169359769,5277691.152747632],[516346.2544743416,5277693.775308913],[516346.8804164413,5277692.83237745],[516349.46629813284,5277694.584535285],[516349.17233480443,5277694.972699336],[516352.1932044063,5277696.926131813]]]},"properties":{"id_build":2446,"id_source":"w511310939","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.44947718084,5277647.337520978],[516290.91621797753,5277645.552193635],[516295.06209974474,5277639.98457485],[516297.45261590055,5277641.79173235],[516293.44947718084,5277647.337520978]]]},"properties":{"id_build":2447,"id_source":"w511321011","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516366.39091137395,5277505.616508609],[516370.7968560057,5277506.440216932],[516370.22496823524,5277509.517182924],[516367.09146993235,5277526.223807767],[516362.6780300549,5277525.400081083],[516365.8190883402,5277508.671247225],[516366.39091137395,5277505.616508609]]]},"properties":{"id_build":2448,"id_source":"w511510942","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516367.09146993235,5277526.223807767],[516370.22496823524,5277509.517182924],[516376.13955604786,5277510.634101137],[516372.9910531338,5277527.329566731],[516367.09146993235,5277526.223807767]]]},"properties":{"id_build":2449,"id_source":"w511510943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516356.793400002,5277524.316602577],[516362.6780300549,5277525.400081083],[516365.8190883402,5277508.671247225],[516359.8893834103,5277507.587638997],[516356.793400002,5277524.316602577]]]},"properties":{"id_build":2450,"id_source":"w511510944","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516108.097040633,5276759.548412974],[516115.1271261343,5276756.833826623],[516117.4315433435,5276762.763950243],[516110.39395318244,5276765.478513041],[516108.097040633,5276759.548412974]]]},"properties":{"id_build":2451,"id_source":"w512044889","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516122.49334104086,5276771.068983972],[516115.62599546823,5276752.978659571],[516124.0769432823,5276749.7901155595],[516130.93675578386,5276767.880429079],[516122.49334104086,5276771.068983972]]]},"properties":{"id_build":2452,"id_source":"w512044890","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516447.35248264484,5277195.186592137],[516442.5598645678,5277192.916917967],[516444.8943147721,5277188.033359183],[516449.6793944251,5277190.31412793],[516447.35248264484,5277195.186592137]]]},"properties":{"id_build":2453,"id_source":"w512044891","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.3207391258,5277193.637946984],[516424.7871167557,5277196.845561056],[516415.63695009885,5277192.485304164],[516417.17053720914,5277189.288801605],[516426.3207391258,5277193.637946984]]]},"properties":{"id_build":2454,"id_source":"w512044892","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516438.7591583956,5277185.126399674],[516436.43225373916,5277189.998868196],[516433.1308340789,5277196.891331703],[516426.3207391258,5277193.637946984],[516417.17053720914,5277189.288801605],[516415.63695009885,5277192.485304164],[516409.90683159156,5277189.757340717],[516429.33802621067,5277149.03494262],[516441.0832688713,5277154.647313241],[516438.7591583956,5277185.126399674]]]},"properties":{"id_build":2455,"id_source":"w512044893","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.5598645678,5277192.916917967],[516438.352282289,5277190.915634955],[516436.43225373916,5277189.998868196],[516438.7591583956,5277185.126399674],[516444.8943147721,5277188.033359183],[516442.5598645678,5277192.916917967]]]},"properties":{"id_build":2456,"id_source":"w512044894","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516435.05837101274,5277197.808118592],[516433.1308340789,5277196.891331703],[516436.43225373916,5277189.998868196],[516438.352282289,5277190.915634955],[516435.05837101274,5277197.808118592]]]},"properties":{"id_build":2457,"id_source":"w512044895","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516069.0396945243,5277473.035560016],[516062.05104658596,5277474.661144677],[516062.28850843094,5277475.695400138],[516056.00624563027,5277477.156231176],[516054.48074682814,5277477.518785768],[516054.24322238436,5277476.506758419],[516047.33722113835,5277478.121474623],[516045.2959812991,5277469.42471478],[516052.2095327072,5277467.798902963],[516051.9645589369,5277466.764627223],[516059.79489420407,5277464.930186466],[516060.0399279793,5277465.942234741],[516066.9910367551,5277464.316544045],[516069.0396945243,5277473.035560016]]]},"properties":{"id_build":2458,"id_source":"w512044896","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515946.5765771688,5277250.919393355],[515947.6404822066,5277251.844767385],[515943.94903867505,5277256.035741095],[515940.1355078872,5277252.702220362],[515938.57608406857,5277254.4650736945],[515934.4251048149,5277259.177152413],[515930.44677472976,5277255.687591343],[515932.4808208467,5277253.381449699],[515932.12121899676,5277253.058160367],[515943.54964595777,5277240.074976377],[515950.64471759397,5277246.296008161],[515946.5765771688,5277250.919393355]]]},"properties":{"id_build":2459,"id_source":"w512044897","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515915.3440152885,5277283.120040707],[515910.5152634018,5277280.28389322],[515911.91939069325,5277277.631489787],[515916.94443825533,5277280.090299808],[515915.3440152885,5277283.120040707]]]},"properties":{"id_build":2460,"id_source":"w512044898","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515952.49627888796,5277214.659588771],[515955.2156459335,5277214.411418444],[515955.5647721731,5277218.557888429],[515952.3722083781,5277218.826990067],[515952.46703860327,5277219.84973573],[515946.84061791963,5277220.3233382],[515946.6951334948,5277218.600273377],[515943.2021043634,5277218.890785088],[515943.47130563273,5277222.059005544],[515936.72560642526,5277222.629578808],[515936.24569553626,5277216.8712254455],[515941.2636766899,5277216.440402779],[515940.3468536196,5277205.679563585],[515945.575159112,5277205.238206422],[515956.7905100884,5277204.279787623],[515957.0669711766,5277207.536940377],[515954.6406180179,5277207.741456841],[515954.91738467215,5277210.887470574],[515952.19053631113,5277211.124506574],[515952.49627888796,5277214.659588771]]]},"properties":{"id_build":2461,"id_source":"w512044899","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516012.0009250653,5277347.946155161],[516006.5085494424,5277348.87574127],[516005.4739898637,5277342.749094539],[516004.82031752024,5277342.858437422],[516004.2943756768,5277342.945903526],[516004.13907986146,5277342.0674722865],[516001.3966599593,5277342.526721778],[515999.8372235946,5277333.364517349],[516005.06664133683,5277332.47865796],[516005.43624365225,5277334.624671956],[516009.6212550616,5277333.924883336],[516012.0009250653,5277347.946155161]]]},"properties":{"id_build":2462,"id_source":"w512044900","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515868.37853239337,5277395.120774774],[515866.2394841759,5277394.648158081],[515866.7488562241,5277392.37118054],[515868.887905237,5277392.843797418],[515868.62178731844,5277394.043381819],[515868.37853239337,5277395.120774774]]]},"properties":{"id_build":2463,"id_source":"w512044901","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515868.37853239337,5277395.120774774],[515866.9948304977,5277401.318603922],[515856.1570299767,5277398.9106866205],[515859.00796210876,5277386.17071789],[515861.4472286162,5277386.710833655],[515862.46606152924,5277382.123536163],[515867.19448951236,5277383.1700205775],[515866.8447630107,5277384.736138478],[515869.7718705196,5277385.388727015],[515868.8823970767,5277389.353993044],[515867.4938828109,5277389.0501312725],[515866.7488562241,5277392.37118054],[515866.2394841759,5277394.648158081],[515868.37853239337,5277395.120774774]]]},"properties":{"id_build":2464,"id_source":"w512044902","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515869.7718705196,5277385.388727015],[515866.8447630107,5277384.736138478],[515867.19448951236,5277383.1700205775],[515870.12159777194,5277383.822609285],[515869.7718705196,5277385.388727015]]]},"properties":{"id_build":2465,"id_source":"w512044903","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515861.4472286162,5277386.710833655],[515859.00796210876,5277386.17071789],[515860.026793188,5277381.5834199805],[515862.46606152924,5277382.123536163],[515861.4472286162,5277386.710833655]]]},"properties":{"id_build":2466,"id_source":"w512044904","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515920.00316201797,5277391.927512752],[515921.1600209149,5277391.808422368],[515922.48212806124,5277391.678670148],[515922.5842576223,5277392.779233413],[515926.5355588827,5277392.389937541],[515927.1202676066,5277398.270832181],[515911.7808466375,5277399.7737331325],[515911.38627725496,5277395.760508249],[515915.9235298425,5277395.306122683],[515915.65304632514,5277392.604686297],[515911.5439773602,5277393.01578634],[515911.00318800507,5277387.546230648],[515919.48421128513,5277386.713637481],[515920.00316201797,5277391.927512752]]]},"properties":{"id_build":2467,"id_source":"w512044905","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515993.2664731603,5277434.328085933],[515992.8307800081,5277434.371345029],[515993.14500245545,5277437.539692713],[515993.54696123156,5277441.57517196],[515993.9826233202,5277441.543026809],[515994.2236393625,5277444.022106668],[515978.7265531757,5277445.546625667],[515976.6808012521,5277424.768981631],[515992.17794214055,5277423.244457114],[515993.2664731603,5277434.328085933]]]},"properties":{"id_build":2468,"id_source":"w512044908","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515936.57651439,5277447.209334497],[515937.0046963138,5277447.166050634],[515937.2532766035,5277449.634034758],[515921.75622102217,5277451.158705345],[515920.56521557126,5277439.052323868],[515920.39710864733,5277437.362539195],[515919.7101464626,5277430.425537187],[515935.20725662383,5277428.900861081],[515936.2958949013,5277439.984479105],[515935.8677428754,5277440.016649122],[515936.57651439,5277447.209334497]]]},"properties":{"id_build":2469,"id_source":"w512044911","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515920.56521557126,5277439.052323868],[515918.980183691,5277439.214699515],[515918.8121067006,5277437.513800996],[515920.39710864733,5277437.362539195],[515920.56521557126,5277439.052323868]]]},"properties":{"id_build":2470,"id_source":"w512044913","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515965.039209424,5277444.386564843],[515965.4673613009,5277444.354396968],[515965.7158991834,5277446.833496224],[515950.2038086657,5277448.358049927],[515948.15786474105,5277427.61375774],[515963.6700099221,5277426.089198509],[515964.75859461183,5277437.172821928],[515964.33795205137,5277437.205010445],[515964.5862164695,5277439.784134694],[515965.039209424,5277444.386564843]]]},"properties":{"id_build":2471,"id_source":"w512044914","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515301.6149735216,5277730.468276622],[515309.02240219136,5277726.453376684],[515307.0792920615,5277722.891793777],[515308.0644355672,5277722.36091315],[515307.27225973475,5277720.90289885],[515302.25625422556,5277723.62375087],[515298.8796537226,5277725.45979691],[515301.6149735216,5277730.468276622]]]},"properties":{"id_build":2472,"id_source":"w512883031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515308.2719368924,5277694.854360282],[515311.3707061995,5277693.0175889535],[515312.94039489893,5277695.8002123125],[515313.9867557431,5277697.6923411405],[515310.9782774751,5277699.462664669],[515308.2719368924,5277694.854360282]]]},"properties":{"id_build":2473,"id_source":"w512883032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515315.5236459315,5277707.232178292],[515318.9534136178,5277705.174002204],[515321.0318395538,5277708.680375194],[515317.53466325544,5277710.671688829],[515315.5236459315,5277707.232178292]]]},"properties":{"id_build":2474,"id_source":"w512883033","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515319.47093431733,5277713.9776356425],[515322.90806267667,5277711.975051136],[515321.0318395538,5277708.680375194],[515317.53466325544,5277710.671688829],[515319.47093431733,5277713.9776356425]]]},"properties":{"id_build":2475,"id_source":"w512883034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515337.92158823524,5277745.434324529],[515335.5785691897,5277742.605200957],[515339.94356556894,5277739.004657681],[515342.29406412167,5277741.844916694],[515337.92158823524,5277745.434324529]]]},"properties":{"id_build":2476,"id_source":"w512883035","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515334.39700999716,5277743.580118764],[515332.57026705856,5277741.463651074],[515333.25164984714,5277739.364903496],[515330.5641570314,5277736.168113364],[515338.74500136805,5277729.332337031],[515338.5428900844,5277729.087296952],[515341.4478984663,5277726.683218093],[515345.8864516351,5277732.218564592],[515343.1848731769,5277734.367555864],[515344.1129406984,5277735.548083809],[515341.78739353747,5277737.486901243],[515339.94356556894,5277739.004657681],[515335.5785691897,5277742.605200957],[515334.39700999716,5277743.580118764]]]},"properties":{"id_build":2477,"id_source":"w512883036","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515356.6071998447,5277750.3737364905],[515353.4636129403,5277746.43109586],[515355.4201717048,5277744.880299085],[515353.54899565584,5277742.530313982],[515360.30670047563,5277737.157860018],[515359.07171647233,5277735.60975838],[515364.0835434755,5277731.6330643995],[515370.34082373406,5277739.462709854],[515367.26297505776,5277741.91077404],[515356.6071998447,5277750.3737364905]]]},"properties":{"id_build":2478,"id_source":"w512883037","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515774.97949981806,5277652.055582676],[515767.284048397,5277648.5782870315],[515758.60608483513,5277669.604673392],[515759.3800489547,5277669.428944749],[515760.3439535424,5277673.988287059],[515760.56562907744,5277675.322565114],[515761.61213653267,5277679.882131309],[515763.3479208627,5277679.486727655],[515774.97949981806,5277652.055582676]]]},"properties":{"id_build":2479,"id_source":"w512921407","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515988.0529594924,5277284.5084380675],[515988.1680515541,5277283.619635859],[515998.64119788725,5277284.870941911],[515998.5636544339,5277285.759847101],[515988.0529594924,5277284.5084380675]]]},"properties":{"id_build":2480,"id_source":"w513947049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515894.8441496767,5277323.396665584],[515895.8188399916,5277323.988367387],[515896.8309890087,5277324.613513559],[515897.379218036,5277324.615010429],[515897.9154010603,5277323.52730462],[515895.5985771679,5277322.142845707],[515894.8441496767,5277323.396665584]]]},"properties":{"id_build":2481,"id_source":"w513950435","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515880.85231266246,5277334.639172456],[515877.635686297,5277332.741023457],[515876.1871037216,5277335.182148442],[515879.4112391707,5277337.080317133],[515880.85231266246,5277334.639172456]]]},"properties":{"id_build":2482,"id_source":"w513950436","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515380.9321037927,5277303.45603995],[515380.9422561693,5277302.455809222],[515386.6647691887,5277302.5153851],[515386.6546452,5277303.504501927],[515380.9321037927,5277303.45603995]]]},"properties":{"id_build":2483,"id_source":"w520983188","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515370.77783009777,5277312.2426046245],[515381.1264648516,5277312.325503717],[515381.11710516707,5277313.025659285],[515388.5669078163,5277313.089800396],[515388.55625477247,5277314.278967351],[515395.2025153306,5277314.3298792625],[515395.25713916746,5277307.872805373],[515388.6334306327,5277307.810839064],[515388.61350510776,5277309.666819878],[515387.7123045676,5277309.664438051],[515386.59334326774,5277309.650366916],[515386.6546452,5277303.504501927],[515380.9321037927,5277303.45603995],[515370.8463037137,5277303.373835145],[515370.77783009777,5277312.2426046245]]]},"properties":{"id_build":2484,"id_source":"w520983189","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515577.8127584226,5277077.287769549],[515569.0140312181,5277078.820192613],[515566.4322735265,5277064.098393227],[515567.18363254244,5277063.978148256],[515566.59177972574,5277060.62014696],[515574.57152151223,5277059.230011121],[515575.1263236347,5277062.398976642],[515575.82511078834,5277062.278592163],[515577.3564080055,5277071.007155319],[515576.73275472556,5277071.116626633],[515577.8127584226,5277077.287769549]]]},"properties":{"id_build":2485,"id_source":"w520994557","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515475.8938899397,5276911.806857918],[515491.95903640206,5276920.262849165],[515494.4449569818,5276914.645796043],[515478.70015138056,5276907.168678651],[515478.39819424367,5276907.745802275],[515477.5105641185,5276908.26579936],[515475.8938899397,5276911.806857918]]]},"properties":{"id_build":2486,"id_source":"w521011697","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515741.11388215265,5277151.04582165],[515745.4299152796,5277146.3673945675],[515741.7664937252,5277143.001069259],[515747.5061140755,5277136.7927643275],[515744.38207208546,5277133.928025023],[515745.27089413255,5277132.963512781],[515742.04945627437,5277130.009599607],[515741.14561384195,5277130.97407173],[515737.4222483402,5277127.552017378],[515734.33397995005,5277130.900091129],[515733.01542164024,5277129.696219117],[515730.16820497846,5277132.778211055],[515736.22148569993,5277138.340439957],[515736.8316162878,5277137.675250524],[515738.77195859555,5277139.458730697],[515740.99699713755,5277141.498602554],[515736.2817511215,5277146.609398916],[515741.11388215265,5277151.04582165]]]},"properties":{"id_build":2487,"id_source":"w521011700","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.5081499401,5276735.87860551],[515676.2740840083,5276736.731058689],[515681.01602431067,5276744.12349887],[515686.35044575983,5276740.681422318],[515683.0672688473,5276735.460129528],[515678.9966540227,5276738.160975935],[515677.5081499401,5276735.87860551]]]},"properties":{"id_build":2488,"id_source":"w521018027","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515654.09705454734,5276760.9998721555],[515653.45603267744,5276759.175458638],[515657.15480076004,5276757.885068282],[515657.7883109031,5276759.709462009],[515654.09705454734,5276760.9998721555]]]},"properties":{"id_build":2489,"id_source":"w521018028","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515630.6380239616,5276823.64185457],[515633.67927986337,5276818.259744834],[515638.90637523215,5276821.185639637],[515635.8651159924,5276826.567746671],[515630.6380239616,5276823.64185457]]]},"properties":{"id_build":2490,"id_source":"w521018029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515628.07220987324,5276828.180580388],[515622.1552108155,5276824.852741615],[515624.7210217245,5276820.31401322],[515630.6380239616,5276823.64185457],[515628.07220987324,5276828.180580388]]]},"properties":{"id_build":2491,"id_source":"w521018030","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515637.7945506449,5276832.463330103],[515642.8960621762,5276823.419149056],[515638.90637523215,5276821.185639637],[515635.8651159924,5276826.567746671],[515630.6380239616,5276823.64185457],[515628.07220987324,5276828.180580388],[515628.4021107051,5276828.392631135],[515628.91527920257,5276827.482663132],[515637.7945506449,5276832.463330103]]]},"properties":{"id_build":2492,"id_source":"w521018031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.77791097027,5277009.835162292],[516639.45655539853,5277011.129180572],[516641.67280591326,5277008.268107373],[516639.99416114687,5277006.974088465],[516637.77791097027,5277009.835162292]]]},"properties":{"id_build":2493,"id_source":"w526288354","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517080.8456276374,5276596.477613228],[517084.5441794957,5276597.966621223],[517085.81071067223,5276596.36992424],[517082.7907174182,5276594.004901684],[517080.8456276374,5276596.477613228]]]},"properties":{"id_build":2494,"id_source":"w526288355","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517087.85522874363,5276583.050264745],[517088.03506752686,5276583.195274129],[517091.0850754668,5276585.571501407],[517093.0457496546,5276582.909901419],[517091.32221111923,5276581.548937771],[517089.91338157025,5276580.444519623],[517087.85522874363,5276583.050264745]]]},"properties":{"id_build":2495,"id_source":"w526288356","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.9905610838,5277021.83444589],[516592.7402675978,5277032.657017763],[516599.48713737744,5277023.873975643],[516618.92740616074,5277038.522082729],[516637.31464883074,5277014.257202541],[516634.67667504493,5277012.2602634905],[516617.9420650202,5276999.564772055],[516611.69185961806,5276994.823496893],[516593.3116354114,5277019.27741466],[516584.6548382924,5277013.040037663],[516577.9905610838,5277021.83444589]]]},"properties":{"id_build":2496,"id_source":"w571284277","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.42904832575,5276970.314135709],[516611.69185961806,5276994.823496893],[516617.9420650202,5276999.564772055],[516625.15652906685,5276990.127369442],[516618.2168825491,5276984.850647985],[516625.7253828442,5276975.025096101],[516613.1050395915,5276965.442168458],[516611.22038813686,5276967.90409506],[516608.96462485706,5276966.186107768],[516606.23563571356,5276969.757025579],[516608.6338115467,5276971.57544383],[516605.5278769049,5276975.645415893],[516586.43994342256,5276961.142841574],[516579.42904832575,5276970.314135709]]]},"properties":{"id_build":2497,"id_source":"w571284280","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"education","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.0238292529,5277021.001673058],[516794.4059905115,5277031.534735008],[516803.401202164,5277019.313078435],[516789.02653708885,5277008.780016158],[516780.0238292529,5277021.001673058]]]},"properties":{"id_build":2498,"id_source":"w573113425","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"religious","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516789.02653708885,5277008.780016158],[516803.401202164,5277019.313078435],[516807.14813780447,5277014.378170627],[516792.473051075,5277003.844232829],[516789.02653708885,5277008.780016158]]]},"properties":{"id_build":2499,"id_source":"w573113426","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.8873568716,5276940.4689903855],[516589.337105189,5276945.991628469],[516593.9662424732,5276939.792104659],[516586.51652219146,5276934.258346829],[516581.8873568716,5276940.4689903855]]]},"properties":{"id_build":2500,"id_source":"w690012549","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.5400215393,5276210.025111197],[516790.60044244904,5276210.156600517],[516790.60685031035,5276207.933825562],[516799.1842938976,5276208.169724482],[516812.34335571085,5276208.541112956],[516817.2705000914,5276208.677591141],[516817.2730673067,5276207.788481165],[516820.5252917838,5276207.875670312],[516830.9429062476,5276208.161386503],[516830.93295020144,5276211.606687669],[516830.87159873074,5276217.241291957],[516830.8603297159,5276218.54159361],[516830.6493700758,5276239.557497237],[516830.6163982117,5276243.169441587],[516826.0121443718,5276243.078340619],[516824.1569287303,5276243.039639419],[516820.626898998,5276242.918303923],[516816.87120668974,5276242.907458672],[516816.78871222876,5276245.4634331195],[516796.58469901275,5276244.84943373],[516794.18137722055,5276244.731363657],[516794.11107035045,5276243.064065767],[516793.284818073,5276243.061683366],[516791.81274695083,5276243.001869273],[516790.5059262591,5276242.942531937],[516788.0274897234,5276242.824247868],[516785.3326798286,5276239.5934303375],[516785.42060559377,5276235.1480967095],[516785.33716396603,5276238.037487797],[516783.4596365262,5276237.920937494],[516783.3713920251,5276242.477409922],[516778.7146534504,5276242.352853207],[516778.71305260464,5276242.908546975],[516765.8695448806,5276242.538142413],[516766.2838258176,5276229.091434495],[516761.17639210145,5276228.965594482],[516761.33845409175,5276224.853893025],[516765.1961443997,5276215.529263673],[516766.87457190565,5276206.531782006],[516783.6316145111,5276206.913464361],[516783.5400215393,5276210.025111197]],[[516783.61909498565,5276216.471439986],[516783.66078602173,5276220.250308974],[516790.4210583809,5276220.269793559],[516790.356196698,5276216.713137046],[516783.61909498565,5276216.471439986]]]},"properties":{"id_build":2501,"id_source":"r1966426","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516241.09212343633,5277248.977196142],[516242.2546729516,5277262.984053942],[516276.7327166033,5277260.635260236],[516276.88468024,5277262.691771448],[516278.54342781013,5277284.53538092],[516289.58567341015,5277283.67714538],[516290.4604470321,5277293.126476782],[516279.11781810987,5277293.98387072],[516280.2064092977,5277307.545971567],[516245.87760147697,5277310.339719119],[516242.3232628981,5277265.318181126],[516215.95860408695,5277266.800650824],[516214.27492902457,5277251.125250302],[516241.09212343633,5277248.977196142]],[[516251.5597403211,5277292.573207023],[516252.3582330856,5277302.466878845],[516262.42444873793,5277301.4947277745],[516261.84413440555,5277294.1578794755],[516264.0226631545,5277293.941684874],[516263.87898203137,5277291.607347532],[516251.5597403211,5277292.573207023]],[[516255.0006883697,5277270.577130827],[516255.6486674197,5277280.581522374],[516262.7844514483,5277280.156890021],[516262.9281333299,5277282.491227296],[516265.78288078465,5277282.165782362],[516264.6911461792,5277269.71507422],[516255.0006883697,5277270.577130827]]]},"properties":{"id_build":2502,"id_source":"r1957481","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516241.09212343633,5277248.977196142],[516242.2546729516,5277262.984053942],[516276.7327166033,5277260.635260236],[516276.88468024,5277262.691771448],[516278.54342781013,5277284.53538092],[516289.58567341015,5277283.67714538],[516290.4604470321,5277293.126476782],[516279.11781810987,5277293.98387072],[516280.2064092977,5277307.545971567],[516245.87760147697,5277310.339719119],[516242.3232628981,5277265.318181126],[516215.95860408695,5277266.800650824],[516214.27492902457,5277251.125250302],[516241.09212343633,5277248.977196142]],[[516251.5597403211,5277292.573207023],[516252.3582330856,5277302.466878845],[516262.42444873793,5277301.4947277745],[516261.84413440555,5277294.1578794755],[516264.0226631545,5277293.941684874],[516263.87898203137,5277291.607347532],[516251.5597403211,5277292.573207023]],[[516255.0006883697,5277270.577130827],[516255.6486674197,5277280.581522374],[516262.7844514483,5277280.156890021],[516262.9281333299,5277282.491227296],[516265.78288078465,5277282.165782362],[516264.6911461792,5277269.71507422],[516255.0006883697,5277270.577130827]]]},"properties":{"id_build":2503,"id_source":"r4269919","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"office","zindex":0}}]} \ No newline at end of file +{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG::32630"}},"features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516024.9683961687,5277296.946439595],[516026.6212130152,5277296.728709319],[516027.43477216567,5277301.287680061],[516017.6668578483,5277303.039036347],[516015.6678906746,5277292.586397509],[516018.2228291119,5277292.037727036],[516017.55732188013,5277288.257143474],[516024.2446167036,5277287.053006623],[516024.9095079655,5277291.055868838],[516024.00769258325,5277291.275666419],[516024.43630030286,5277293.810833144],[516024.9683961687,5277296.946439595]]]},"properties":{"ID_SOURCE":"w144655681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.39526110794,5276984.073272857],[516175.5858093718,5276985.060168392],[516175.43714451586,5276984.504056685],[516172.85325393453,5276968.381616507],[516166.3905668454,5276969.697347399],[516168.0592199558,5276963.811573978],[516168.7357779166,5276963.59117306],[516178.3534809266,5276962.061930177],[516180.5825289577,5276970.737023728],[516182.7989065447,5276983.968812689],[516180.39526110794,5276984.073272857]]]},"properties":{"ID_SOURCE":"w144655684","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515209.3949390471,5277720.201804266],[515208.48741457204,5277722.644508627],[515208.7118276695,5277722.978514249],[515204.42533369974,5277725.30125299],[515200.0913158248,5277717.065591265],[515203.1745556077,5277715.406545614],[515202.7260183943,5277714.627395786],[515203.4778372958,5277714.295939809],[515202.5065385013,5277712.404026971],[515205.664876303,5277710.745178741],[515209.3949390471,5277720.201804266]]]},"properties":{"ID_SOURCE":"w144655688","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":3}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.61863200256,5277230.846752613],[516077.17519379227,5277238.297415736],[516071.186209466,5277239.525647431],[516066.5047203102,5277240.490757546],[516065.98514693347,5277238.266528246],[516063.20487739687,5277238.814556204],[516061.7963539455,5277232.142283726],[516061.35249224893,5277229.695984178],[516064.28327479,5277229.03723081],[516064.8022363823,5277231.483737787],[516065.0235531896,5277232.92916556],[516075.61863200256,5277230.846752613]]]},"properties":{"ID_SOURCE":"w144655699","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":4}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515664.1764190668,5277467.342128461],[515660.79868234624,5277466.710658901],[515658.1715665703,5277466.214577757],[515658.5530349462,5277463.992808077],[515652.6983740826,5277462.865666991],[515654.06896538474,5277455.867545848],[515656.7710050133,5277456.430510461],[515658.1413037692,5277449.543529309],[515664.8965577721,5277450.89537841],[515663.5262513229,5277457.782358003],[515665.92789662635,5277458.344518717],[515664.1764190668,5277467.342128461]]]},"properties":{"ID_SOURCE":"w144655703","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":5}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516174.67147770344,5277260.128561075],[516171.892442859,5277260.231981404],[516171.82320722926,5277258.120133012],[516171.6306254968,5277246.338780041],[516175.9113759242,5277246.350671206],[516176.0532409562,5277249.351839741],[516181.6864221542,5277249.14521308],[516181.8140757099,5277257.258772839],[516178.3665809767,5277257.38256029],[516176.0307008726,5277257.464982069],[516176.02792195696,5277258.465232502],[516174.67147770344,5277260.128561075]]]},"properties":{"ID_SOURCE":"w144655705","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":6}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516040.65156725456,5277328.886745737],[516039.5995574881,5277329.106127102],[516040.70952027093,5277335.1107338965],[516030.71574736794,5277337.08372546],[516028.7934454314,5277326.075593501],[516031.6484638824,5277325.6388948755],[516030.98388738954,5277321.524892705],[516039.8502694766,5277319.8822149495],[516040.43974002753,5277323.996011235],[516039.6884350637,5277324.105081239],[516039.9847317877,5277325.595170731],[516040.65156725456,5277328.886745737]]]},"properties":{"ID_SOURCE":"w144655706","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":7}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515524.88225294393,5276927.052255153],[515519.0665873642,5276939.262117149],[515512.54105361016,5276936.021678881],[515512.99464364036,5276934.911490507],[515507.6539243682,5276932.363280306],[515497.092521505,5276927.311650027],[515499.8873806299,5276921.317546466],[515509.2642643977,5276925.565821083],[515510.2465500088,5276923.34564395],[515517.1473280721,5276926.698219115],[515518.50662252406,5276923.923349648],[515524.88225294393,5276927.052255153]]]},"properties":{"ID_SOURCE":"w144655707","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":8}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515322.3447152651,5277212.656013423],[515322.1504985372,5277215.111689844],[515317.1948092547,5277214.720775893],[515318.00206020754,5277204.764781972],[515327.56053698104,5277205.523458422],[515327.7933017364,5277202.690008687],[515334.2431968518,5277203.20712023],[515333.9481526977,5277206.8739535045],[515334.23347936035,5277206.896932877],[515333.6977187619,5277213.563904331],[515328.47923289915,5277213.150060766],[515322.3447152651,5277212.656013423]]]},"properties":{"ID_SOURCE":"w144655715","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":9}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.56272137834,5277099.198020428],[516134.33772099065,5277099.086257203],[516132.39028327266,5277097.19148537],[516131.35731794796,5277090.520237855],[516130.9147057491,5277087.629377882],[516138.54670367483,5277087.094827183],[516153.15715403995,5277086.07951259],[516161.6379738539,5277085.491777069],[516161.620082184,5277091.937833692],[516156.5872643528,5277092.257286065],[516156.79746207176,5277097.703717756],[516143.8022123211,5277098.55679144],[516134.56272137834,5277099.198020428]]]},"properties":{"ID_SOURCE":"w144655717","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":10}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.9411545877,5277443.070284832],[515396.9355424334,5277442.800889928],[515395.8398709683,5277442.509029097],[515395.53712653887,5277443.397346562],[515390.2828882048,5277442.383197233],[515391.73208643135,5277433.9404070955],[515401.3610131931,5277436.310919493],[515402.24536850344,5277434.157147763],[515408.508999567,5277436.852189443],[515410.2546569316,5277432.7446388],[515416.1807549418,5277435.283199692],[515412.0017457121,5277445.119117977],[515406.02302829514,5277442.60264997],[515403.2572577119,5277449.085893718],[515396.6559596999,5277446.28993883],[515397.9411545877,5277443.070284832]]]},"properties":{"ID_SOURCE":"w144655719","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":11}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.90756106406,5276917.560347263],[516175.35675777984,5276916.108437033],[516181.68487295066,5276914.592290403],[516182.65794043755,5276918.484885273],[516180.3430661997,5276919.06749315],[516181.4053024797,5276923.304868788],[516170.4398523116,5276926.01955923],[516170.00899598014,5276924.306810843],[516167.4686559667,5276924.944367603],[516166.8892548076,5276922.631052459],[516165.86425186775,5276918.5049226275],[516169.90756106406,5276917.560347263]]]},"properties":{"ID_SOURCE":"w144655720","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":12}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.14078399725,5277730.802708117],[516300.717251482,5277733.71355483],[516296.78402016434,5277743.816272947],[516289.1324694177,5277740.90522116],[516290.41098988947,5277737.541260023],[516291.2506664128,5277735.354153911],[516285.9996422362,5277733.338943655],[516287.4373227089,5277729.453069685],[516292.91363380296,5277731.4689117195],[516293.14078399725,5277730.802708117]]]},"properties":{"ID_SOURCE":"w144655721","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":13}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516208.46586159954,5277044.722507645],[516202.932245338,5277046.86321822],[516198.7669996766,5277048.474269759],[516194.4814672268,5277050.129445627],[516192.8409366837,5277045.901572347],[516197.0510591222,5277044.35732526],[516196.52873521356,5277043.133335013],[516206.90477388614,5277038.938894899],[516210.612076131,5277029.168915967],[516216.2399004336,5277030.962822461],[516212.45903352,5277040.176894255],[516208.46586159954,5277044.722507645]]]},"properties":{"ID_SOURCE":"w144655722","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":14}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516270.69036727457,5277031.003577895],[516272.715370906,5277032.009494548],[516268.86365883943,5277039.667375483],[516265.5637593341,5277037.991060116],[516263.01396267413,5277036.65026089],[516262.4845127639,5277037.982459349],[516258.58440235443,5277036.08219215],[516259.2187793678,5277034.8280841615],[516263.19086509733,5277027.092735322],[516264.56324525503,5277027.818976979],[516270.69036727457,5277031.003577895]]]},"properties":{"ID_SOURCE":"w144655723","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":15}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516216.9079867685,5277233.327988102],[516203.3112938563,5277234.512671925],[516202.582551088,5277226.508578912],[516202.221580835,5277221.284004248],[516201.85813583666,5277216.948541083],[516201.4220629415,5277211.723757573],[516200.76810667804,5277203.831012989],[516214.4396625941,5277202.757671189],[516215.01849911816,5277210.650208191],[516215.96169723343,5277222.544792619],[516216.9079867685,5277233.327988102]]]},"properties":{"ID_SOURCE":"w144655724","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":16}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.2136704966,5277510.006896295],[515495.01571383787,5277510.122831873],[515496.555824034,5277495.789900287],[515514.72501216165,5277497.505386562],[515513.4101499556,5277511.838913795],[515508.604801899,5277511.492691974],[515508.7588455083,5277510.048285235],[515502.3016473498,5277509.586528843],[515501.8480965826,5277513.5196692245],[515501.3022989893,5277518.252770441],[515494.32031518174,5277517.456206279],[515493.2136704966,5277510.006896295]]]},"properties":{"ID_SOURCE":"w144655726","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":17}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515374.5000598527,5277560.705344142],[515375.2527889869,5277560.040493373],[515370.1620499003,5277554.025503627],[515373.92540560005,5277550.812386982],[515374.7485368666,5277551.925958391],[515382.8015265351,5277545.278844425],[515386.6414607544,5277550.034659873],[515388.1160823373,5277551.8501355965],[515383.2987201319,5277556.060715942],[515386.06819894945,5277559.513367398],[515378.31737346324,5277565.494436428],[515374.5000598527,5277560.705344142]]]},"properties":{"ID_SOURCE":"w144655727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":18}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.21467226214,5277324.211343155],[516078.95492875896,5277328.103280305],[516069.8632484198,5277329.745276693],[516069.12359953905,5277325.631062798],[516068.5224939453,5277325.740543623],[516067.9961246499,5277323.260673516],[516067.4845908642,5277320.847528289],[516066.8080781993,5277321.067940993],[516065.8458861386,5277315.952855334],[516075.01330051414,5277314.088782118],[516076.9376674616,5277324.31895667],[516078.21467226214,5277324.211343155]]]},"properties":{"ID_SOURCE":"w144655728","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":19}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516051.8516781456,5277276.170668618],[516053.2146207635,5277283.031751115],[516055.9948682531,5277282.483718397],[516056.720768676,5277286.142219221],[516048.4927446037,5277287.764403024],[516047.8482856297,5277284.528458902],[516046.3304001551,5277284.835466861],[516042.4756375037,5277285.591709062],[516040.57927735127,5277276.072918673],[516047.4923520548,5277274.702720797],[516047.9367673757,5277276.948969355],[516051.8516781456,5277276.170668618]]]},"properties":{"ID_SOURCE":"w144655729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":20}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516139.26136510156,5276907.828398756],[516140.985107297,5276914.579358167],[516137.2196590864,5276915.535837587],[516137.5019786605,5276916.648017282],[516132.8045822239,5276917.835310347],[516130.9556723923,5276918.308089079],[516131.58723076864,5276920.777140671],[516127.46854805417,5276921.821559611],[516125.14302679634,5276912.690547515],[516135.5825591313,5276910.040998324],[516135.2779536568,5276908.8398452],[516139.26136510156,5276907.828398756]]]},"properties":{"ID_SOURCE":"w144655730","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":21}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516244.05596488353,5277451.815630974],[516244.9754398006,5277445.260946202],[516245.5008179353,5277445.373551983],[516246.95590874384,5277435.263887484],[516257.0150667328,5277436.736784674],[516255.9432081029,5277444.069020905],[516258.1201288075,5277444.408519017],[516257.85278458724,5277446.019300084],[516257.6617801833,5277447.185734993],[516256.9858955146,5277447.183847686],[516256.06671766745,5277453.627391643],[516244.05596488353,5277451.815630974]]]},"properties":{"ID_SOURCE":"w144655733","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":22}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515344.6930588767,5277330.234005865],[515345.0001949744,5277327.678601569],[515345.07793101144,5277326.678548892],[515347.6307391148,5277326.907556993],[515348.091006086,5277323.2411592435],[515356.2751330194,5277323.929577361],[515354.8887495385,5277337.040409091],[515346.630127081,5277336.129516996],[515347.0155859385,5277332.351782203],[515344.5378799538,5277332.122972287],[515344.6930588767,5277330.234005865]]]},"properties":{"ID_SOURCE":"w144655735","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":23}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.71616861044,5277407.681550811],[516077.34462803905,5277413.554229483],[516074.4962077554,5277414.335457199],[516074.8754062251,5277415.714637821],[516071.5985873488,5277416.616937959],[516071.2639872108,5277415.404590374],[516069.09948821185,5277415.998770957],[516065.3717103123,5277417.03319774],[516063.53501777083,5277410.415311187],[516072.3659030464,5277407.983492755],[516072.5295249986,5277408.561871461],[516075.71616861044,5277407.681550811]]]},"properties":{"ID_SOURCE":"w144655737","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":24}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516220.9155713463,5277077.987965598],[516219.9135356931,5277087.209774994],[516244.9910956697,5277089.724760221],[516244.28075332573,5277102.059293245],[516233.16678601824,5277101.583738953],[516233.39860108646,5277099.2504500095],[516229.493875879,5277099.017285657],[516229.87837344775,5277095.795303988],[516212.158128729,5277094.3011218365],[516212.8547878236,5277086.856697064],[516213.6324315668,5277077.3008423885],[516220.9155713463,5277077.987965598]]]},"properties":{"ID_SOURCE":"w144655742","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":25}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.3248129363,5277424.800726158],[516206.3405939799,5277425.103649337],[516206.14174150676,5277429.093015617],[516201.18582623324,5277428.868057055],[516200.5513652436,5277438.268721008],[516196.18141071324,5277437.978713285],[516196.1107613638,5277439.078801053],[516190.5544688136,5277438.707699602],[516190.8440466096,5277434.496305432],[516192.41332619917,5277434.600695529],[516192.6637798397,5277430.956005771],[516192.8518984591,5277428.122463402],[516194.09077707527,5277428.21482104],[516194.3569009081,5277424.336781339],[516201.3248129363,5277424.800726158]]]},"properties":{"ID_SOURCE":"w144655743","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":26}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515636.2029033357,5277201.420635363],[515635.8306790634,5277200.197098719],[515637.86020953616,5277199.535710759],[515638.0092185084,5277199.980669894],[515641.9931790884,5277198.657694448],[515643.1849492905,5277202.328507416],[515647.9851688802,5277204.675340377],[515648.6646659047,5277203.343489734],[515652.56486083113,5277205.2433487065],[515650.6017687363,5277209.127962463],[515648.2613806097,5277213.678401297],[515643.9865792165,5277211.444119449],[515643.2313857026,5277212.998046742],[515642.0312577736,5277212.439123832],[515641.5557609003,5277213.3158503575],[515641.1255637854,5277214.103786825],[515643.30051508767,5277215.221027196],[515641.9418251093,5277217.773590917],[515643.43130870943,5277222.44546151],[515640.80037911085,5277223.327511439],[515641.91823805956,5277226.553566814],[515641.166331147,5277226.884966107],[515640.94252054597,5277226.328666191],[515635.7560659738,5277227.9818322295],[515635.9798770052,5277228.538131948],[515635.0777685021,5277228.8691286715],[515634.6310415452,5277227.423112505],[515633.4398680339,5277223.530023268],[515631.4854475664,5277224.191614394],[515630.2939729283,5277220.409664767],[515628.8658567844,5277220.850390164],[515626.63131406996,5277213.953729014],[515627.8341278546,5277213.512398342],[515627.98254061886,5277214.179635097],[515632.1917930976,5277212.857257673],[515630.7019996276,5277208.296528987],[515634.83615560096,5277206.973951863],[515636.036285345,5277207.532873283],[515637.6220702104,5277204.314079727],[515636.9521269788,5277202.089485823],[515636.50121987564,5277202.199414621],[515636.2029033357,5277201.420635363]]]},"properties":{"ID_SOURCE":"w144655744","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":27}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.74888712296,5277490.72241816],[516080.9825276334,5277483.126688943],[516080.6341109884,5277481.48085719],[516084.01597046235,5277480.601080376],[516084.537049827,5277482.269617312],[516094.6826317698,5277479.630299552],[516096.68815046176,5277487.637911547],[516092.20925145905,5277488.7369283065],[516090.45073534595,5277489.176627295],[516090.5236829834,5277489.954807693],[516086.6912415606,5277490.833335708],[516086.4687121076,5277489.832462409],[516082.74888712296,5277490.72241816]]]},"properties":{"ID_SOURCE":"w144655745","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":28}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516183.86972478736,5277112.1159303365],[516184.16210360033,5277115.006377013],[516184.66928645794,5277121.676173006],[516177.0820820088,5277122.321927289],[516176.13724286744,5277110.983045814],[516175.0103946719,5277111.091055186],[516175.15874750353,5277111.758305911],[516174.18241343624,5277111.755593792],[516173.8835465194,5277111.199064771],[516173.447439863,5277105.974284299],[516183.2135702518,5277105.0011614105],[516183.86972478736,5277112.1159303365]]]},"properties":{"ID_SOURCE":"w144655746","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":29}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516043.81688143814,5277243.095551745],[516042.9585416305,5277238.436429921],[516042.04109945503,5277233.42149814],[516049.93038574385,5277232.109562608],[516049.8565101075,5277231.664799855],[516054.9658345304,5277230.789767866],[516057.03678929975,5277242.354015748],[516052.97950042476,5277243.009666773],[516052.3118650505,5277240.007052038],[516050.23797556094,5277240.40143799],[516046.60112891323,5277241.102708376],[516046.89755077974,5277242.548342446],[516043.81688143814,5277243.095551745]]]},"properties":{"ID_SOURCE":"w144655747","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":30}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516261.49049478,5276963.627185311],[516266.3809824721,5276960.528931693],[516268.25083432643,5276963.312649171],[516267.5742725089,5276963.533038533],[516270.3404081688,5276968.097496754],[516269.4372913139,5276968.761811887],[516271.6798661005,5276972.54682971],[516263.55368908186,5276977.858835782],[516260.6003814668,5276973.0826925095],[516258.24517404864,5276969.286250527],[516262.6089925861,5276966.519942521],[516260.9638319606,5276963.959133807],[516261.49049478,5276963.627185311]]]},"properties":{"ID_SOURCE":"w144655758","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":31}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.88557914854,5277309.700284456],[516175.6061748902,5277302.14200161],[516174.7747860499,5277301.339485342],[516174.1081851585,5277300.693022681],[516174.04203827376,5277297.469784686],[516184.78167941933,5277297.388488584],[516184.91612381075,5277303.056992255],[516186.71852749446,5277303.06200283],[516186.85605962545,5277307.619117149],[516180.6969252709,5277307.935416663],[516180.7670835365,5277309.713848499],[516177.7593751568,5277311.039168265],[516175.88557914854,5277309.700284456]]]},"properties":{"ID_SOURCE":"w144655760","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":32}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516028.70819155104,5277029.665601906],[516028.2575695011,5277029.664361487],[516020.3102552599,5277030.131505643],[516011.88221778534,5277030.619566664],[516011.1632690234,5277018.947917244],[516011.0194789036,5277016.613587401],[516016.8033919278,5277016.296074921],[516017.5544304009,5277016.298140825],[516017.7687358595,5277020.299760885],[516024.9802295484,5277019.763904276],[516025.1963649603,5277023.098691261],[516030.22923475056,5277022.779125237],[516030.3733229674,5277025.002316699],[516028.70819155104,5277029.665601906]]]},"properties":{"ID_SOURCE":"w144655766","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":33}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.8139863442,5277369.083275847],[515487.6449065924,5277373.179033028],[515483.0061918898,5277366.609450319],[515487.5201328621,5277363.620682726],[515488.6569711551,5277359.733815722],[515490.6133996418,5277358.294203924],[515492.10917786375,5277360.632118464],[515492.56036567123,5277360.411039525],[515494.95408136613,5277363.973881456],[515496.53412574664,5277362.866689213],[515498.5538206522,5277365.87283842],[515493.8139863442,5277369.083275847]]]},"properties":{"ID_SOURCE":"w144655767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":34}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.2514579663,5277674.4677993],[516179.00488251774,5277673.580774148],[516179.978033534,5277674.694877389],[516193.9312403016,5277679.9572476335],[516192.3790509777,5277684.531892838],[516188.176714532,5277696.945643622],[516170.6220638121,5277690.561883406],[516171.0757219008,5277689.4517448405],[516165.9741883057,5277687.659338397],[516164.10884322587,5277683.319704005],[516163.50746410066,5277683.540314017],[516154.85562928923,5277662.177444986],[516152.75048781064,5277663.060722635],[516148.7969385624,5277653.491726405],[516147.96996179456,5277653.822852105],[516146.0307295356,5277649.038459479],[516146.8577068701,5277648.707333505],[516142.82935037836,5277639.026994303],[516139.8521666931,5277640.241278215],[516139.5966335948,5277637.606555163],[516138.15383847186,5277637.947089045],[516136.37229414907,5277633.163136943],[516137.6133862219,5277629.732355494],[516138.3550259983,5277627.678323991],[516141.3563994506,5277628.57576364],[516144.0878994409,5277618.469610744],[516143.26276705286,5277618.133903104],[516144.7797909448,5277612.692257012],[516145.6803283966,5277612.917034127],[516146.9720671959,5277607.474763845],[516162.8810506156,5277611.631084346],[516160.3748029694,5277621.737853756],[516160.8250707077,5277621.850243508],[516159.6087264895,5277627.181580304],[516158.85807524755,5277627.068356894],[516157.4930843324,5277631.843582286],[516161.297059772,5277641.189889149],[516161.8984431744,5277640.969278914],[516163.98754804814,5277645.8652328],[516163.1605693243,5277646.196356344],[516167.26429126924,5277655.76577935],[516170.0462242185,5277654.550967119],[516178.2514579663,5277674.4677993]]]},"properties":{"ID_SOURCE":"w144655768","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":35}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515310.01149942784,5277524.526116017],[515313.92883569765,5277519.868548862],[515314.6783472554,5277520.426219202],[515320.0269271083,5277514.10532482],[515325.42340832297,5277518.120559055],[515320.4511899925,5277524.1090196315],[515320.07658097165,5277523.774614578],[515319.3610512235,5277524.572938031],[515318.79612559377,5277525.216062175],[515323.3671130095,5277529.006843103],[515320.05259966984,5277532.888011906],[515317.43004703464,5277530.658316186],[515310.01149942784,5277524.526116017]]]},"properties":{"ID_SOURCE":"w144655769","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":36}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516094.51824249915,5277348.929423663],[516094.818947963,5277348.819115109],[516096.15046134364,5277356.158023062],[516096.0707531004,5277357.824899764],[516096.29359338345,5277358.714634263],[516089.9070702359,5277359.808379536],[516090.49957264255,5277362.810791678],[516085.6205693687,5277361.908191566],[516084.50666677824,5277357.348382254],[516085.1834829624,5277357.016832648],[516084.9020351287,5277355.593465622],[516084.59097720333,5277354.014421083],[516082.33645745966,5277354.563892196],[516081.66977137973,5277351.227856639],[516082.2708745995,5277351.118377177],[516094.51824249915,5277348.929423663]]]},"properties":{"ID_SOURCE":"w144655771","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":37}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516268.539030966,5277397.758893432],[516268.1551516877,5277400.758596162],[516266.3496731215,5277401.864949915],[516266.1352976189,5277403.331396722],[516265.89038588677,5277404.975581956],[516263.0378716912,5277404.523054035],[516262.88612179225,5277405.078329296],[516259.3583385586,5277404.401637354],[516259.89116931544,5277401.846909344],[516256.2885952063,5277401.058870575],[516257.42873335996,5277396.171901707],[516263.4481363926,5277392.076539335],[516268.539030966,5277397.758893432]]]},"properties":{"ID_SOURCE":"w144655772","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":38}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.5953371082,5277251.742889383],[516153.0656913224,5277251.699754181],[516153.0093060157,5277244.953412459],[516156.4792760813,5277244.851900286],[516156.4657978691,5277244.296163934],[516159.3199100748,5277244.20405855],[516163.0752950382,5277244.092228456],[516163.9792828329,5277243.094479866],[516166.532714327,5277243.101569105],[516167.7315516694,5277244.105156011],[516167.7838154156,5277252.329645755],[516156.59317832877,5277252.520861935],[516156.5953371082,5277251.742889383]]]},"properties":{"ID_SOURCE":"w144655783","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":39}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.4271751386,5277576.404752626],[516080.0740266511,5277575.503608798],[516079.23660642636,5277579.613470017],[516078.6281602426,5277582.390285643],[516072.6989081107,5277581.15137515],[516073.76498867094,5277575.819606069],[516069.56203142204,5277574.918884781],[516071.00850246847,5277567.809927802],[516074.2358209433,5277568.485676594],[516074.5401970465,5277567.041699075],[516081.53540695226,5277568.439151477],[516085.7985672823,5277569.295591787],[516084.4271751386,5277576.404752626]]]},"properties":{"ID_SOURCE":"w144655791","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":40}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516150.5410365178,5277051.78564005],[516151.43518681993,5277054.344334585],[516153.6901375674,5277053.6837513065],[516156.602208162,5277059.804517375],[516150.61948560126,5277061.410560583],[516146.3804561018,5277062.55465787],[516145.6355869384,5277060.329797284],[516141.050589688,5277061.650762758],[516139.26690217917,5277054.86629346],[516142.9497395493,5277053.876244652],[516142.131613156,5277050.984342933],[516148.4449223782,5277049.33475189],[516150.5410365178,5277051.78564005]]]},"properties":{"ID_SOURCE":"w144655793","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":41}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516132.341705101,5277304.467041151],[516132.6137746889,5277314.692656547],[516123.3004511529,5277315.00027791],[516123.23366083886,5277311.999318375],[516120.67995188583,5277312.103387003],[516120.6103907342,5277310.102678031],[516119.18810490787,5277308.431643279],[516119.0526736432,5277303.096558062],[516123.93449123803,5277302.9989354955],[516123.9323367881,5277303.776908114],[516127.6725393756,5277303.709469248],[516129.11455449107,5277303.680121805],[516129.11209147144,5277304.569233364],[516132.341705101,5277304.467041151]]]},"properties":{"ID_SOURCE":"w144655799","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":42}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516205.70167779515,5277387.5366105605],[516197.5249356287,5277386.958157811],[516197.75181328534,5277383.691278313],[516195.7770466653,5277383.563530928],[516196.0742024167,5277379.329930468],[516197.85374354897,5277379.4460208295],[516198.0961671327,5277375.990246944],[516198.27603794757,5277373.423417588],[516205.814579267,5277373.955638927],[516205.09514553635,5277384.200727754],[516211.9954846957,5277384.675610982],[516211.76105822594,5277387.953582932],[516205.70167779515,5277387.5366105605]]]},"properties":{"ID_SOURCE":"w144655805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":43}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516248.9467302094,5277009.815192333],[516248.9720058324,5277016.905979473],[516241.4340371546,5277018.696527446],[516234.8993848151,5277018.900583893],[516234.7669014959,5277012.543020368],[516234.43470014445,5276997.004756301],[516240.96909804473,5276996.900724285],[516240.9634873621,5276998.912338208],[516243.44192193955,5276998.919251451],[516243.50431473186,5277003.476155498],[516241.12364131305,5277003.42505899],[516241.1033682157,5277010.693542545],[516247.81762820465,5277010.72338767],[516247.8128158065,5277009.756458347],[516248.9467302094,5277009.815192333]]]},"properties":{"ID_SOURCE":"w144655806","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":44}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515413.0427589462,5277355.420983596],[515413.7233616705,5277353.644549535],[515419.34964154055,5277355.993381672],[515420.1041682054,5277354.661703085],[515425.20504294336,5277356.89800966],[515423.96619882557,5277359.617651317],[515423.24097564066,5277361.227256396],[515424.59129232256,5277361.786532271],[515421.7189701519,5277368.7807272365],[515414.51650076563,5277366.094300267],[515415.422989259,5277364.096184939],[515408.67169572675,5277361.188680362],[515411.16703762347,5277354.749179942],[515413.0427589462,5277355.420983596]]]},"properties":{"ID_SOURCE":"w144655813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":45}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515989.1042030408,5277530.685988194],[515990.14335412404,5277535.134435161],[515989.0162863597,5277535.353619389],[515989.7144159845,5277538.189602284],[515990.57592695585,5277541.692872983],[515992.83006023866,5277541.2545053465],[515993.6481898836,5277544.146388309],[515985.0071481038,5277545.900893758],[515984.2641114793,5277543.009218194],[515982.8360470495,5277543.449856876],[515980.0137798016,5277531.994707668],[515984.5223577196,5277531.006826105],[515984.67072128016,5277531.674072395],[515989.1042030408,5277530.685988194]]]},"properties":{"ID_SOURCE":"w144655817","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":46}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516266.3809824721,5276960.528931693],[516261.49049478,5276963.627185311],[516259.99492128746,5276961.289074135],[516258.18961898243,5276962.284291081],[516256.0742438654,5276958.666343304],[516253.106705891,5276953.601200986],[516261.4576004406,5276948.512087458],[516263.4761158933,5276951.8519172305],[516262.79893214116,5276952.294584912],[516265.71435483237,5276957.192876997],[516266.5417474844,5276956.7506292565],[516268.18659722904,5276959.422578404],[516266.3809824721,5276960.528931693]]]},"properties":{"ID_SOURCE":"w144655821","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":47}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515647.08596146875,5277008.28904267],[515645.61441705964,5277010.896871539],[515643.08634401346,5277015.391237262],[515641.5866554076,5277014.498090958],[515638.1151630887,5277020.712590056],[515632.34142149385,5277017.251756032],[515633.9266585347,5277014.255240124],[515628.82794830104,5277011.129641193],[515632.1480348989,5277005.359289005],[515636.0480698283,5277007.370274911],[515641.3310206669,5276997.826449339],[515648.90518225415,5277002.070108295],[515645.73618091265,5277007.507437844],[515647.08596146875,5277008.28904267]]]},"properties":{"ID_SOURCE":"w144655822","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":48}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516067.1296796562,5277286.170933741],[516065.64883209596,5277278.49820208],[516069.91674716945,5277277.709773549],[516071.5848367335,5277277.4031863315],[516071.51157690445,5277276.736145383],[516075.34384981333,5277275.968746298],[516075.5660827854,5277277.080757758],[516078.9471392104,5277276.534394836],[516079.0210120282,5277276.9791579945],[516079.9838131099,5277281.8719676435],[516080.132786197,5277282.316938229],[516076.6760188514,5277283.085370977],[516076.82284401567,5277284.308314075],[516067.1296796562,5277286.170933741]]]},"properties":{"ID_SOURCE":"w144655825","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":49}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516041.3026618653,5276934.431305264],[516045.79712012823,5276933.287835193],[516046.4585098333,5276935.84587142],[516052.38097219553,5276934.339580642],[516052.58167205023,5276935.09588405],[516056.4973952104,5276934.106422455],[516058.20638814423,5276940.790632694],[516054.0801918596,5276941.84619669],[516054.2213589316,5276942.4022845235],[516050.34319412743,5276943.391851162],[516043.26330130023,5276945.195032243],[516041.3536526378,5276937.732295571],[516042.0977418902,5276937.5342939375],[516041.3026618653,5276934.431305264]]]},"properties":{"ID_SOURCE":"w144655830","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":50}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515316.0769220422,5277474.084620244],[515316.45796689024,5277471.973967398],[515323.2889551733,5277473.103339666],[515321.76535273914,5277481.323671524],[515315.534571846,5277480.41815937],[515315.0778453392,5277482.750892726],[515311.9994197068,5277482.520516112],[515311.62191384204,5277483.286387574],[515311.39542206196,5277483.741464903],[515310.0445384858,5277483.404493101],[515309.97353229666,5277481.848349844],[515305.2441225225,5277481.169076505],[515306.8436761756,5277472.615520871],[515316.0769220422,5277474.084620244]]]},"properties":{"ID_SOURCE":"w144655836","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":51}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.68615156866,5277274.810168324],[516180.25893852516,5277276.370495998],[516180.3986384853,5277280.149637372],[516169.9590587836,5277280.342914838],[516169.89414389443,5277276.675121233],[516169.3684404414,5277276.673661283],[516169.3070845628,5277274.428466993],[516169.23243690294,5277271.560852938],[516168.6316324289,5277271.559184496],[516168.41774984816,5277267.446418108],[516177.656051563,5277267.138660088],[516177.8028559596,5277268.361605746],[516178.5520090605,5277269.030526126],[516178.68615156866,5277274.810168324]]]},"properties":{"ID_SOURCE":"w144655837","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":52}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515645.5068783812,5277456.177950237],[515643.1627100583,5277462.173199365],[515642.93622135423,5277462.6171499435],[515637.9848229085,5277460.71447221],[515638.9676660522,5277458.272037059],[515637.37740646495,5277457.589812951],[515635.81712607364,5277456.929897748],[515634.833985575,5277459.483472398],[515628.8324011939,5277457.133423255],[515631.70582507225,5277449.80591212],[515631.857215158,5277449.361759486],[515642.5098197522,5277453.613682196],[515642.0559460385,5277454.835000324],[515645.5068783812,5277456.177950237]]]},"properties":{"ID_SOURCE":"w144655841","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":53}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515597.45149697445,5276853.293845046],[515598.4266833395,5276853.74101585],[515603.18366963073,5276844.306888407],[515602.4338002176,5276843.860320519],[515605.22672258905,5276838.6442400655],[515616.7021631411,5276844.565406053],[515613.8332332853,5276850.114696297],[515612.33319949795,5276849.332696734],[515609.7512575988,5276854.29371819],[515607.65249978454,5276858.322462614],[515609.0777239156,5276858.993120791],[515606.20910619997,5276864.431276016],[515594.65799324494,5276858.732207066],[515597.45149697445,5276853.293845046]]]},"properties":{"ID_SOURCE":"w144655845","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":54}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.32411545294,5277141.941713451],[516139.6533855809,5277143.034538842],[516138.88453357044,5277146.755590067],[516123.54220599023,5277143.623399679],[516124.3262844727,5277139.824590821],[516126.8333146802,5277140.331662884],[516127.1454510931,5277138.809912569],[516127.5033262687,5277137.0437814705],[516126.6401116184,5277136.874680963],[516127.86582019785,5277130.898756328],[516131.86655966984,5277131.710045431],[516131.20423999603,5277134.931263782],[516135.58027220157,5277135.821393024],[516134.32411545294,5277141.941713451]]]},"properties":{"ID_SOURCE":"w144655846","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":55}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516231.80397698877,5276889.9698481],[516231.3353763549,5276896.414646592],[516224.72733981424,5276895.951672143],[516217.0665884379,5276895.930332285],[516217.1379796302,5276897.26420793],[516210.452981274,5276897.467873752],[516210.0023489603,5276897.46661929],[516214.1532600912,5276890.254093088],[516216.55787343805,5276889.816230164],[516217.23382279783,5276889.818112627],[516217.3107854044,5276889.151488564],[516217.38620042,5276889.04055886],[516222.6351765831,5276889.377484855],[516231.80397698877,5276889.9698481]]]},"properties":{"ID_SOURCE":"w144655847","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":56}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.20905203413,5277110.16439983],[516080.84581631975,5277105.717806288],[516089.3262004833,5277105.274446098],[516089.26940426446,5277104.085093733],[516092.7922745913,5277103.8947775755],[516092.85658036254,5277105.084150733],[516094.91470166575,5277104.978699579],[516098.54832061316,5277105.4777595475],[516098.25783460046,5277101.887142176],[516099.204375026,5277101.800847369],[516098.51511204813,5277093.041128671],[516108.74796489935,5277091.680182096],[516109.68453665794,5277103.341334046],[516110.635448481,5277115.247033535],[516104.25019278884,5277115.785068708],[516095.98706709786,5277116.429059251],[516097.4226060343,5277129.6253176695],[516099.06332345563,5277144.667064178],[516092.6014631249,5277145.760599012],[516089.86997767916,5277128.637526562],[516089.14997044374,5277117.410420987],[516081.93797739083,5277118.168475768],[516081.20905203413,5277110.16439983]]]},"properties":{"ID_SOURCE":"w144655851","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":57}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515366.0275892094,5277214.115922059],[515362.0392129211,5277214.294335335],[515362.06784593815,5277214.827881489],[515357.7339751384,5277215.016500148],[515357.55008572375,5277210.703794386],[515357.4436775991,5277208.336237925],[515356.6249556223,5277208.378534416],[515356.3413165298,5277202.020595036],[515358.95516886853,5277201.905235702],[515358.77110397303,5277197.659213353],[515364.59217322175,5277197.407835824],[515364.776204554,5277201.66497226],[515365.4747359094,5277201.6334737055],[515366.0275892094,5277214.115922059]]]},"properties":{"ID_SOURCE":"w144655854","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":58}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.2115954797,5277219.56960047],[516167.5592449819,5277219.609468016],[516167.57238274754,5277220.287457196],[516163.9823592816,5277220.344173632],[516163.9577489955,5277218.388045066],[516160.4803762724,5277218.445076399],[516160.3531544093,5277210.16480928],[516163.943184104,5277210.108090592],[516163.96828810486,5277211.8863968495],[516172.372558973,5277211.754138381],[516172.42325569637,5277215.132928703],[516175.3598395263,5277215.09663008],[516175.4227759443,5277219.475712544],[516169.2115954797,5277219.56960047]]]},"properties":{"ID_SOURCE":"w144655856","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":59}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516236.661263867,5276952.666203864],[516239.0633736844,5276953.11746131],[516238.5286529795,5276956.339022793],[516236.6504175085,5276956.556064773],[516229.9688938584,5276955.537180342],[516230.5045392275,5276951.982201438],[516220.9702692169,5276950.510817611],[516221.4289471506,5276947.622461987],[516222.4797942481,5276947.847668966],[516222.96944394126,5276944.625980524],[516223.47442476894,5276941.293195108],[516235.48623812944,5276943.104909428],[516235.40958397626,5276943.660394429],[516237.9622170975,5276944.00093133],[516236.661263867,5276952.666203864]]]},"properties":{"ID_SOURCE":"w144655864","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":60}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515609.49956202,5277189.123615611],[515609.04656886705,5277190.011519047],[515605.37105876487,5277188.334571031],[515603.4199059017,5277187.7736433325],[515601.2428521915,5277187.4343904555],[515599.13911336544,5277187.762173167],[515600.8744908495,5277184.7660500035],[515609.49956202,5277189.123615611]]]},"properties":{"ID_SOURCE":"w144655871","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":61}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515578.8175888156,5277344.5259377975],[515581.3187773088,5277335.974869875],[515584.54509003327,5277337.094902374],[515586.80135375424,5277335.878404876],[515592.5789717589,5277337.7832507305],[515593.54961220775,5277339.897505581],[515596.69754588633,5277342.239872222],[515591.798212372,5277348.895135256],[515588.8755790782,5277346.553374459],[515584.8976815511,5277345.653607153],[515585.0502606915,5277344.764897546],[515583.9472187748,5277344.417411799],[515582.5740561007,5277343.98029151],[515581.6689941957,5277345.422686092],[515578.8175888156,5277344.5259377975]]]},"properties":{"ID_SOURCE":"w144655881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":62}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515692.90410645807,5276733.530571584],[515688.74033727404,5276734.5640653195],[515684.03543669067,5276735.729472168],[515683.6616953341,5276735.061627655],[515683.0672688473,5276735.460129528],[515678.9966540227,5276738.160975935],[515677.5081499401,5276735.87860551],[515674.3591388368,5276731.035553744],[515679.3246135666,5276727.937010667],[515678.9508711648,5276727.269166464],[515686.3200942911,5276724.065962025],[515686.6932373035,5276724.956084394],[515689.85045124375,5276723.9643330285],[515693.7590419862,5276722.863468578],[515695.6908716947,5276730.648450952],[515692.3840443145,5276731.417516674],[515692.90410645807,5276733.530571584]]]},"properties":{"ID_SOURCE":"w144655883","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":63}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516015.7941488426,5277246.6860151645],[516003.9968962106,5277248.987511826],[516003.2565791861,5277245.095584826],[516005.5108281071,5277244.657222044],[516004.02988844115,5277236.984506764],[516004.405698932,5277236.874399979],[516003.2953737564,5277230.980940092],[516013.3607521393,5277230.341775147],[516014.1010643706,5277234.233703354],[516012.369461545,5277235.784897875],[516012.5172184164,5277236.674422424],[516013.77620664367,5277243.123991926],[516015.05383939174,5277242.794086663],[516015.7941488426,5277246.6860151645]]]},"properties":{"ID_SOURCE":"w144655884","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":64}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.58541270765,5277161.273162336],[516079.0401037431,5277161.2827013675],[516079.41407906555,5277161.8394329455],[516080.4685760204,5277160.730947395],[516083.9229603841,5277160.851628244],[516084.52254821075,5277161.297843602],[516087.3758092796,5277161.528005747],[516087.1287018932,5277169.41824667],[516082.62289641064,5277169.294659668],[516081.607516995,5277169.836440049],[516080.96819957945,5277170.17920762],[516074.35984915553,5277169.938680775],[516074.52385988156,5277164.937843958],[516075.5752869257,5277164.940746733],[516075.58541270765,5277161.273162336]]]},"properties":{"ID_SOURCE":"w144655894","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":65}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516192.2792790067,5277463.896781837],[516190.2503946306,5277464.335698803],[516189.2839780975,5277460.787650794],[516187.5740567192,5277454.547951805],[516193.36125485785,5277452.896947807],[516193.7330364563,5277454.231659845],[516198.0167261457,5277453.13217791],[516199.0578966933,5277456.802689149],[516198.07543629454,5277459.0227523185],[516198.81837790867,5277461.914455007],[516200.8472637877,5277461.475541027],[516201.8890495857,5277464.923774884],[516195.72637068876,5277466.573725869],[516194.834468582,5277463.237049875],[516192.2792790067,5277463.896781837]]]},"properties":{"ID_SOURCE":"w144655895","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":66}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516057.9015056732,5277609.562341611],[516056.8424957327,5277612.337916832],[516060.89339591487,5277613.905048701],[516060.62111822865,5277614.60447859],[516057.48228195467,5277622.697915106],[516053.8892277104,5277621.22095996],[516054.2680792136,5277619.999466366],[516051.34248897975,5277618.846659013],[516046.9166300034,5277617.089562502],[516049.9413088783,5277609.5403909385],[516050.5414656345,5277609.7643252155],[516051.6004730229,5277606.9887488615],[516052.72844870394,5277606.436159753],[516057.37951075257,5277608.227223712],[516057.9015056732,5277609.562341611]]]},"properties":{"ID_SOURCE":"w144655897","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":67}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.2708745995,5277351.118377177],[516081.6783667178,5277348.115965935],[516082.88026682404,5277348.008146021],[516082.2886798879,5277344.672317877],[516083.7168006083,5277344.2317036],[516083.19791877683,5277341.762966669],[516082.38250582485,5277337.893049233],[516085.688120879,5277337.457621763],[516085.5406849057,5277336.456956236],[516090.12422489823,5277335.580502803],[516092.1990642971,5277345.699958956],[516093.62657111895,5277345.48162501],[516094.51824249915,5277348.929423663],[516082.2708745995,5277351.118377177]]]},"properties":{"ID_SOURCE":"w144655903","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":68}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516200.34935927804,5277478.478550172],[516199.89846268494,5277478.588435366],[516201.0131788758,5277482.814850956],[516200.4946327024,5277482.94677582],[516194.76055632636,5277484.408982708],[516194.5501278729,5277484.463967294],[516193.9030213526,5277482.217142655],[516193.3600003334,5277480.348483039],[516191.63151304063,5277480.788235035],[516190.5161715172,5277476.78409922],[516191.7189744787,5277476.342884883],[516190.82768976246,5277472.783931504],[516198.26795408694,5277470.804110246],[516199.4577709302,5277475.030734424],[516200.34935927804,5277478.478550172]]]},"properties":{"ID_SOURCE":"w144655904","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":69}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516194.3569009081,5277424.336781339],[516193.51579670847,5277424.3344418565],[516193.8521366492,5277419.511908942],[516193.9849358636,5277417.667357227],[516192.7836661604,5277417.552876261],[516193.0188536511,5277413.997056012],[516194.2204332141,5277414.000398059],[516194.53041134134,5277410.55592574],[516202.11414970027,5277411.021584384],[516201.8026207301,5277415.021751131],[516202.9287920788,5277415.136024958],[516202.53474111954,5277421.803317858],[516201.40826178336,5277421.800183068],[516201.3248129363,5277424.800726158],[516194.3569009081,5277424.336781339]]]},"properties":{"ID_SOURCE":"w144655916","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":70}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516166.3986316561,5277480.718114666],[516164.2427017672,5277472.8212005],[516162.9042055893,5277468.03847176],[516169.5177704028,5277466.278598475],[516170.4850932093,5277469.50434018],[516175.52036496886,5277468.184649612],[516176.7105076544,5277472.300130107],[516175.7333076901,5277472.6308345115],[516176.77294466255,5277476.85703673],[516177.1447284844,5277478.191747758],[516176.8415576576,5277479.191163875],[516173.2340807201,5277480.181399922],[516172.86167867377,5277479.068967095],[516170.48688781296,5277479.673639799],[516166.3986316561,5277480.718114666]]]},"properties":{"ID_SOURCE":"w144655921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":71}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516140.2749729752,5277287.26235906],[516135.99363667367,5277287.472771911],[516135.5698304107,5277277.802435234],[516138.94965997356,5277277.700662905],[516139.0232201327,5277278.256565777],[516145.4824770994,5277278.052194074],[516145.5606594614,5277276.941012921],[516150.44280782243,5277276.732273597],[516150.86566460796,5277286.7360282205],[516145.08232029335,5277286.942268127],[516144.256216331,5277286.939977456],[516144.2580653208,5277286.2731438065],[516140.20202923013,5277286.484178279],[516140.2749729752,5277287.26235906]]]},"properties":{"ID_SOURCE":"w144655930","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":72}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516152.56653700303,5277215.055581303],[516152.5696201661,5277213.94419201],[516148.964449425,5277214.045331614],[516148.96136694873,5277215.156720909],[516149.0281455089,5277218.157680312],[516145.5731799387,5277218.259238604],[516145.2287994679,5277207.033165513],[516148.60867029836,5277206.931398707],[516150.18980704865,5277205.490966976],[516154.92150429566,5277205.392953595],[516156.495241659,5277206.61985784],[516156.77005033125,5277215.8452225095],[516152.6391717469,5277215.944901084],[516152.56653700303,5277215.055581303]]]},"properties":{"ID_SOURCE":"w144655939","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":73}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515235.5982977976,5277693.374493717],[515237.93148186407,5277691.380084179],[515241.9962205031,5277687.723112068],[515244.0921916565,5277690.284815028],[515248.6831834122,5277686.40694603],[515249.057203749,5277686.96362463],[515252.57619440934,5277690.973875428],[515253.10011312034,5277691.642086809],[515249.48739620094,5277694.744536321],[515250.0867011199,5277695.30180512],[515244.8935000842,5277699.733794944],[515243.0964578785,5277697.728573252],[515240.9140464985,5277699.5010958845],[515235.5982977976,5277693.374493717]]]},"properties":{"ID_SOURCE":"w144655958","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":74}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516193.14691185474,5277070.90886953],[516194.6492839223,5277070.80190805],[516194.6508294505,5277070.246213529],[516221.8409587584,5277069.321641786],[516220.9155713463,5277077.987965598],[516213.6324315668,5277077.3008423885],[516213.63274103624,5277077.189703483],[516206.7251148254,5277076.503634559],[516207.38155348157,5277083.5072669685],[516196.04038432037,5277083.697989942],[516196.2774405011,5277079.475338224],[516182.2297748807,5277080.658818405],[516178.35004770063,5277071.423437108],[516193.14691185474,5277070.90886953]]]},"properties":{"ID_SOURCE":"w144655959","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":75}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516054.0636779231,5277203.891454601],[516053.4095210323,5277195.998727122],[516056.7149078286,5277195.674422051],[516057.1670495048,5277195.1199700665],[516056.8767574326,5277191.45155705],[516064.5389593352,5277190.805853505],[516064.90342824464,5277194.807890899],[516067.9081034882,5277194.593902267],[516068.63396850857,5277203.70936687],[516063.22543900105,5277204.139002406],[516063.0053470196,5277202.249019059],[516060.1508788112,5277202.463424512],[516060.14811985055,5277203.463674867],[516054.0636779231,5277203.891454601]]]},"properties":{"ID_SOURCE":"w144655967","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":76}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516040.2437950441,5277504.153101644],[516038.89142670005,5277504.371655525],[516034.2181551213,5277505.158989827],[516031.7537927917,5277505.57453463],[516032.2727424795,5277508.021039802],[516025.58478162147,5277509.558584225],[516024.24923933594,5277503.664497514],[516023.1224700451,5277503.772536164],[516022.2326160123,5277499.657913767],[516025.0881607602,5277498.998934034],[516024.7160375927,5277497.775371731],[516034.85972834256,5277495.802783662],[516035.23062509584,5277497.470902533],[516038.6124683035,5277496.591099361],[516040.2437950441,5277504.153101644]]]},"properties":{"ID_SOURCE":"w144655970","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":77}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516102.67789742484,5277602.795347123],[516104.3263264875,5277604.133584962],[516102.5132570942,5277608.018464618],[516099.96305920766,5277606.900013101],[516098.6415300742,5277609.552600996],[516095.43208959996,5277616.000952253],[516084.7828732552,5277610.747947349],[516087.2764026608,5277605.197844773],[516090.35135587654,5277606.651160558],[516092.31553173397,5277602.433275297],[516090.6658707534,5277601.539596859],[516092.85718088306,5277596.6555004995],[516097.65689473937,5277599.002706776],[516100.3600553897,5277599.121321645],[516102.60833434697,5277600.794637454],[516102.67789742484,5277602.795347123]]]},"properties":{"ID_SOURCE":"w144655981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":78}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515429.61998235213,5277447.9331628075],[515433.2950834824,5277449.721139788],[515433.74095903663,5277451.500557873],[515432.45839748083,5277453.719953244],[515430.654862727,5277454.159731971],[515427.5790767509,5277452.929043482],[515427.12613162736,5277453.816961334],[515425.17593440606,5277452.922676038],[515424.7980878376,5277453.81079304],[515420.10173937015,5277451.986774565],[515417.5960196434,5277451.013222686],[515418.0495521609,5277449.903026147],[515415.1239578007,5277448.672742006],[515417.99505607877,5277442.12309891],[515429.9224372152,5277447.155986072],[515429.61998235213,5277447.9331628075]]]},"properties":{"ID_SOURCE":"w144656001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":79}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.3495066162,5277258.913602749],[516136.2229957934,5277258.9104806455],[516136.29440039303,5277260.244356027],[516137.34611828224,5277260.13613106],[516139.3738373352,5277260.141751396],[516139.4350748664,5277265.143211777],[516128.31956424925,5277265.334690419],[516128.2678607361,5277256.887923119],[516127.291243183,5277256.996357744],[516127.23615180724,5277249.772118858],[516127.987160199,5277249.774199074],[516135.19745672477,5277249.571896211],[516137.3002802979,5277249.577723936],[516137.289191272,5277253.578725633],[516137.3495066162,5277258.913602749]]]},"properties":{"ID_SOURCE":"w144656005","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":80}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515285.4325461329,5277255.42557853],[515283.4728251976,5277255.264838489],[515283.0537452079,5277260.420621023],[515279.0366464212,5277260.110000885],[515276.2359158828,5277259.902600499],[515276.0736556353,5277261.635954269],[515267.6793834165,5277260.858186597],[515267.7566115377,5277260.047069224],[515265.85700138484,5277259.875378759],[515266.27440518007,5277255.353087011],[515268.45934132044,5277255.547753762],[515269.0390057989,5277249.29210829],[515281.3376032748,5277250.435770695],[515281.55398193374,5277248.1135186795],[515286.07397267164,5277248.536600469],[515285.4325461329,5277255.42557853]]]},"properties":{"ID_SOURCE":"w144656007","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":81}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516088.84348569997,5277228.327065843],[516092.37508109584,5277227.669986805],[516093.1996575282,5277228.22796476],[516093.79155776853,5277231.45265445],[516094.24247142096,5277231.342761044],[516096.39121419506,5277241.90698029],[516095.71499850566,5277242.016250697],[516096.38138229557,5277245.463426212],[516089.84453331534,5277246.556756403],[516089.1790671181,5277242.776164838],[516088.42775074067,5277242.885228565],[516087.6359626757,5277238.615273108],[516086.5259676542,5277232.632885999],[516088.9078382132,5277232.217136013],[516088.3159353512,5277228.992446815],[516088.84348569997,5277228.327065843]]]},"properties":{"ID_SOURCE":"w144656013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":82}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516116.84545486193,5277503.586673008],[516117.3695994524,5277504.143823165],[516121.5778324605,5277503.1552161],[516123.06347143743,5277509.049741296],[516123.96525697067,5277508.829959054],[516124.78055591835,5277512.722111268],[516126.2831205517,5277512.503993357],[516126.94791476114,5277516.506868862],[516115.6008242089,5277519.142804317],[516114.78336669115,5277516.028626237],[516115.3850688347,5277515.696872235],[516114.2715275102,5277511.02591702],[516114.9477123553,5277510.916648793],[516114.5772699726,5277509.09293018],[516113.61410636443,5277504.35570748],[516116.84545486193,5277503.586673008]]]},"properties":{"ID_SOURCE":"w144656019","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":83}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515618.92033894255,5277683.509702952],[515622.6012279895,5277683.063906316],[515623.99874712044,5277693.981586855],[515614.98408648,5277695.168824498],[515614.050052401,5277687.831091341],[515608.5661082826,5277688.561022401],[515607.32104812405,5277687.99087131],[515606.2109802843,5277687.487766256],[515606.7777992276,5277686.144493993],[515602.14999556815,5277684.053775014],[515603.49526946107,5277680.856553862],[515601.09499089327,5277679.816520751],[515603.6042396715,5277673.821695722],[515607.72965718346,5277675.633219348],[515607.1245742816,5277677.243124476],[515609.83974649274,5277678.47294208],[515618.1109584885,5277677.294815829],[515618.92033894255,5277683.509702952]]]},"properties":{"ID_SOURCE":"w144656027","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":84}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515569.17255957634,5277412.739949863],[515568.2672143743,5277414.2934856275],[515569.4667131481,5277415.074671526],[515565.1679632412,5277421.84270315],[515562.46916668286,5277420.057252453],[515562.9969366404,5277419.280684839],[515562.13466882624,5277418.767137085],[515561.122441198,5277418.164276842],[515560.6700670709,5277418.829906366],[515555.7224649941,5277415.482492256],[515558.66349065374,5277410.933620585],[515560.537097797,5277412.383444682],[515561.7431332601,5277410.719571657],[515563.46743352566,5277411.835578336],[515564.8242616799,5277409.949829511],[515569.17255957634,5277412.739949863]]]},"properties":{"ID_SOURCE":"w144656029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":85}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515725.2924476429,5276949.817958499],[515717.2706770301,5276952.797072691],[515716.43484427285,5276950.816530089],[515712.16457992914,5276952.405417738],[515706.8493141665,5276954.380478585],[515704.053002176,5276946.915462956],[515709.8339832456,5276944.9194280375],[515708.64740295516,5276942.10439262],[515714.47381319065,5276939.97511721],[515714.52578670887,5276940.1975368615],[515717.08941088105,5276939.259768439],[515718.3436420066,5276942.0527602555],[515722.75658476976,5276940.475376335],[515724.2707685283,5276944.3471264085],[515723.4359652395,5276944.767203042],[515725.2924476429,5276949.817958499]]]},"properties":{"ID_SOURCE":"w144656032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":86}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516301.3006191986,5276774.245242528],[516302.71427278215,5276779.02820802],[516312.5613732854,5276776.166151043],[516314.0479445534,5276781.727301686],[516313.4467781557,5276781.836757268],[516314.41413806204,5276785.062519332],[516308.0476712118,5276786.800694353],[516303.1394001195,5276788.142855546],[516303.287124506,5276789.032386921],[516296.6724398174,5276790.903247102],[516295.4065098815,5276787.009814158],[516295.9328795927,5276786.789007679],[516290.28041295236,5276766.879182455],[516297.4214945277,5276764.787508691],[516300.39840218244,5276774.57613618],[516301.3006191986,5276774.245242528]]]},"properties":{"ID_SOURCE":"w144656065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":87}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516138.8378619791,5277426.40541547],[516138.7643037869,5277425.849512467],[516137.93009356223,5277426.0694797635],[516137.11090311524,5277426.289488812],[516137.1847695046,5277426.734252827],[516134.0284742356,5277427.503484133],[516133.50955981965,5277425.056970122],[516131.87494376063,5277418.717471039],[516138.48824685416,5277417.068701501],[516138.1915488669,5277415.734201262],[516141.799059579,5277414.743943525],[516142.3927620085,5277417.30180542],[516145.17357048136,5277416.531537368],[516146.7327658812,5277422.981970887],[516139.8944794492,5277424.518967539],[516140.1154618154,5277426.075537629],[516138.8378619791,5277426.40541547]]]},"properties":{"ID_SOURCE":"w144656074","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":88}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515519.258504902,5277740.691342357],[515515.2016252979,5277741.347367731],[515515.94397988403,5277744.572400948],[515508.7993493748,5277748.554396449],[515502.4133668919,5277749.648785629],[515501.52495980705,5277744.867407813],[515499.87199452304,5277745.196426004],[515499.05808735214,5277740.637526599],[515502.96477658325,5277739.981090013],[515502.74274866993,5277738.757960784],[515509.9589283442,5277736.109826282],[515521.1530532828,5277734.250283837],[515522.3554554438,5277733.9200702915],[515523.5391871323,5277740.5916156685],[515519.63101450127,5277741.803733585],[515519.258504902,5277740.691342357]]]},"properties":{"ID_SOURCE":"w144656082","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":89}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515692.9644273121,5276844.926021717],[515696.04617182293,5276844.045210128],[515697.3100923855,5276848.82762318],[515699.26404684735,5276848.388331984],[515701.04921043775,5276854.839246366],[515704.7317984119,5276853.960059465],[515706.7383746955,5276861.8563886685],[515698.4701418397,5276864.279165724],[515695.45183065237,5276869.494594511],[515688.9284116415,5276865.475986782],[515692.0975297114,5276860.038681697],[515691.04814408044,5276859.257876189],[515693.612526223,5276855.263758284],[515692.90051757323,5276854.706141059],[515692.0385964234,5276854.036980264],[515689.9577897788,5276845.807037301],[515692.9644273121,5276844.926021717]]]},"properties":{"ID_SOURCE":"w144656084","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":90}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.9255834538,5277024.462972601],[516153.4194475257,5277015.895484251],[516156.7280261037,5277014.459846853],[516156.0560999511,5277013.013165754],[516160.8534656282,5277010.95927904],[516166.3576757717,5277008.596167364],[516166.5069579857,5277008.9300010735],[516168.9127531468,5277008.04756294],[516170.6284158152,5277012.275637735],[516168.29741742864,5277013.269422593],[516169.7896192195,5277016.830038193],[516170.5351021443,5277018.832623935],[516166.6250750652,5277020.488863115],[516165.7296919152,5277018.374721963],[516159.9399117608,5277020.803725537],[516160.8356050827,5277022.806726909],[516156.9255834538,5277024.462972601]]]},"properties":{"ID_SOURCE":"w144656092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":91}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515775.02701906755,5277742.601333672],[515758.94867906056,5277745.558563071],[515752.72014009353,5277716.200788726],[515752.20139301574,5277713.64316888],[515743.67548941646,5277672.942927918],[515758.60608483513,5277669.604673392],[515759.3800489547,5277669.428944749],[515760.3439535424,5277673.988287059],[515760.56562907744,5277675.322565114],[515760.2622389983,5277676.433142059],[515759.8095610045,5277677.2098953985],[515758.98140660604,5277677.985632365],[515757.1782168524,5277678.314170984],[515752.29401511716,5277679.412351527],[515753.92505876726,5277687.196553063],[515762.7914063527,5277685.3311758395],[515775.02701906755,5277742.601333672]]]},"properties":{"ID_SOURCE":"w144656097","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":92}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.11394887563,5277285.339283604],[516126.0862386048,5277285.333667167],[516126.1582607928,5277286.445264595],[516118.2717993521,5277286.756846344],[516118.06003549986,5277281.866109195],[516118.8861401743,5277281.868396147],[516118.7488617629,5277277.200144805],[516122.80459570885,5277277.100234318],[516123.778747621,5277277.880910468],[516126.48267259594,5277277.777259184],[516126.3386280753,5277275.554064361],[516125.9631255433,5277275.553024343],[516125.8917187942,5277274.2191490615],[516132.42638816836,5277273.903831924],[516132.8458887291,5277285.1301134825],[516128.11394887563,5277285.339283604]]]},"properties":{"ID_SOURCE":"w144656100","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":93}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.376446639,5277405.924406966],[516090.4570341592,5277405.377220765],[516090.08614713745,5277403.709098592],[516093.8429330408,5277403.052643134],[516093.39879118296,5277400.717479391],[516097.1558866739,5277399.949887106],[516100.12818727794,5277411.405506433],[516096.22059401905,5277412.283820516],[516095.84909459646,5277410.837975884],[516092.3549747984,5277411.56183992],[516089.5371131152,5277412.154207068],[516089.3881441453,5277411.709236143],[516085.4802456909,5277412.698696395],[516083.1776667349,5277403.467730881],[516084.53036723856,5277403.138048306],[516086.9301528439,5277404.367216453],[516087.376446639,5277405.924406966]]]},"properties":{"ID_SOURCE":"w144656112","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":94}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516286.3405043301,5276886.565651092],[516284.23848192516,5276886.226353232],[516282.55725895334,5276896.557647851],[516269.94483075454,5276894.633019076],[516270.9361073771,5276889.301081318],[516274.01419017056,5276889.754241856],[516274.220484839,5276888.498939343],[516274.3962404093,5276887.421375069],[516272.4484661215,5276885.637695957],[516273.21256615804,5276880.971962237],[516274.71436754765,5276881.087299072],[516274.7149887783,5276880.865021334],[516281.8475349299,5276881.77407792],[516282.00054289727,5276880.774248095],[516285.07831856026,5276881.338553337],[516286.72411393456,5276883.677090761],[516286.3405043301,5276886.565651092]]]},"properties":{"ID_SOURCE":"w144656114","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":95}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516135.6304028675,5277310.14428403],[516136.6854999868,5277308.813530549],[516138.8634022413,5277308.819567029],[516139.79750836815,5277307.788556197],[516140.67134987883,5277306.824062329],[516143.6759703344,5277306.610112884],[516143.8230889617,5277307.721918803],[516147.2029013284,5277307.620151303],[516147.4761775473,5277317.401211712],[516143.9461709187,5277317.502562574],[516143.94278113794,5277318.725090997],[516141.53958273266,5277318.718427993],[516141.5331122937,5277321.052345901],[516135.90031027654,5277321.147872322],[516135.83445057314,5277317.813495753],[516135.6842506497,5277317.813079497],[516135.6304028675,5277310.14428403]]]},"properties":{"ID_SOURCE":"w144656116","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":96}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516150.57161546877,5277311.519387816],[516154.1016258591,5277311.418040961],[516154.03330959525,5277308.972775783],[516154.0373181922,5277307.527969489],[516159.5202420349,5277307.320904766],[516160.4242194862,5277306.323155548],[516163.1278234698,5277306.330660252],[516164.4014398372,5277307.4455940295],[516164.5392978562,5277311.891568865],[516165.89109855675,5277311.895322017],[516165.9547810708,5277316.007671561],[516159.5706653473,5277316.212228907],[516159.6426807153,5277317.323826817],[516154.30996621563,5277317.531308139],[516154.37889895815,5277319.754295461],[516150.69869374204,5277319.855225488],[516150.57161546877,5277311.519387816]]]},"properties":{"ID_SOURCE":"w144656122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":97}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515544.22222130105,5277728.643704623],[515540.4654122775,5277729.411653482],[515540.0216679337,5277726.854253154],[515539.0448439425,5277727.073925354],[515538.89702781854,5277726.18441227],[515536.49281174457,5277726.622554728],[515536.7157228817,5277727.512268161],[515534.7623720204,5277727.840474808],[515534.68816707586,5277727.506857346],[515531.6078034777,5277728.054337397],[515530.12903611,5277719.381486752],[515533.20940414915,5277718.8340059165],[515533.1351989984,5277718.500388481],[515542.7520778514,5277716.747819052],[515543.41695178486,5277720.861767368],[515543.1165728028,5277720.860965376],[515544.22222130105,5277728.643704623]]]},"properties":{"ID_SOURCE":"w144656133","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":98}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.3127553147,5277506.666251003],[516165.4762109027,5277507.3002019245],[516164.92762872216,5277507.432046552],[516165.55907598545,5277509.912218195],[516166.60650095745,5277514.038414613],[516166.26080588653,5277514.126366558],[516167.1150750421,5277517.496275849],[516157.7137295298,5277519.8707972],[516156.85945530084,5277516.500889289],[516157.5658643617,5277516.325025985],[516156.3029947622,5277511.353570573],[516155.36362880113,5277511.584357513],[516153.92991301225,5277505.93447559],[516161.0466783006,5277504.142647077],[516161.24731298647,5277504.910068887],[516164.6516388506,5277504.0526292175],[516165.3127553147,5277506.666251003]]]},"properties":{"ID_SOURCE":"w144656143","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":99}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516253.9239421336,5277467.958448178],[516248.3688592085,5277467.164963371],[516248.36730836,5277467.720658233],[516244.8392513934,5277467.155113909],[516244.99068789167,5277466.7109771],[516245.06795668264,5277465.933213834],[516243.1163374771,5277465.594349124],[516242.9639708947,5277466.371902897],[516239.43560260185,5277465.917500823],[516240.1241955835,5277461.36268824],[516239.89890124416,5277461.362059808],[516240.8180600298,5277454.9185132645],[516240.9682564237,5277454.918932243],[516241.5035549545,5277451.475090616],[516244.05596488353,5277451.815630974],[516256.06671766745,5277453.627391643],[516255.0412563202,5277460.481856456],[516253.9239421336,5277467.958448178]]]},"properties":{"ID_SOURCE":"w144656150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":100}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515505.9839992046,5277339.441362005],[515508.0220510146,5277335.556899038],[515514.24762757524,5277338.46311793],[515513.71867236006,5277339.68424569],[515516.7194007111,5277340.914779233],[515517.24746784323,5277340.027068611],[515523.0981295758,5277342.710018346],[515518.11696831055,5277351.921339024],[515512.56730397214,5277349.016916679],[515513.1716537925,5277347.6848499365],[515511.6789491588,5277347.014034406],[515510.17122426856,5277346.343179248],[515509.56717105344,5277347.564107336],[515503.41670154576,5277344.658093365],[515502.20859786525,5277347.099951002],[515498.9834584972,5277345.5354083],[515502.98385970714,5277337.988556095],[515505.9839992046,5277339.441362005]]]},"properties":{"ID_SOURCE":"w144656158","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":101}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.49175244494,5277034.574205514],[515950.3610539135,5277034.562888953],[515950.36440274725,5277033.340361056],[515947.5852642187,5277033.443888646],[515947.5129000602,5277032.443432855],[515946.4914905963,5277032.440635529],[515945.409998225,5277032.437673853],[515945.4790149383,5277034.660657511],[515940.1466587493,5277034.646057662],[515940.08250788687,5277030.644851682],[515938.5053310297,5277030.640534371],[515938.38098153163,5277021.193316859],[515944.5397959629,5277021.0990382945],[515944.5370570184,5277022.099288375],[515950.169839787,5277022.114715116],[515950.172579699,5277021.114465036],[515954.30359228345,5277021.014642548],[515954.49175244494,5277034.574205514]]]},"properties":{"ID_SOURCE":"w144656168","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":102}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516138.4545173987,5277239.578342115],[516137.6284067186,5277239.5760524],[516137.6231701449,5277241.465414279],[516137.6853336066,5277246.133457685],[516137.2347282904,5277246.132208793],[516137.3002802979,5277249.577723936],[516135.19745672477,5277249.571896211],[516127.987160199,5277249.774199074],[516127.92129483406,5277246.439822984],[516129.1229089474,5277246.443151517],[516128.9924107989,5277239.3298436245],[516129.8936224853,5277239.332340165],[516129.8305290056,5277234.997713704],[516134.4123077626,5277234.788128679],[516134.4852529822,5277235.56630932],[516138.39081419987,5277235.46599341],[516138.4545173987,5277239.578342115]]]},"properties":{"ID_SOURCE":"w144656186","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":103}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516018.51823432016,5277261.097224239],[516017.09809752007,5277261.3600528445],[516017.7198625913,5277264.662614785],[516011.8213751436,5277265.768902591],[516009.2215182346,5277266.261882512],[516008.6588512191,5277263.315131281],[516010.1466388728,5277263.030258686],[516009.2063978158,5277258.104181138],[516006.4036435565,5277258.641060359],[516005.2931719679,5277252.803169348],[516013.0251091437,5277251.346269697],[516013.81728630664,5277255.49396214],[516017.1009322896,5277254.869497532],[516017.66350416053,5277257.84959123],[516019.8050064236,5277257.444265759],[516020.4268009754,5277260.735714073],[516018.51823432016,5277261.097224239]]]},"properties":{"ID_SOURCE":"w144656190","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":104}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.9665685445,5277221.5474064015],[516124.8360023685,5277221.53596576],[516124.6294735413,5277214.755867061],[516126.13888683706,5277212.092692593],[516132.22240209323,5277211.998404965],[516132.225173443,5277210.998154605],[516135.98054840905,5277210.897420887],[516135.98424440186,5277209.563753741],[516137.4160986291,5277207.789485498],[516139.293941214,5277207.683550543],[516139.6420299163,5277217.57595611],[516136.18706419435,5277217.677519973],[516136.25600533735,5277219.9005067125],[516133.1765471786,5277220.003113034],[516129.79699213314,5277219.99374985],[516129.7948369568,5277220.771722366],[516128.9665685445,5277221.5474064015]]]},"properties":{"ID_SOURCE":"w144656192","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":105}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515436.2266388647,5277760.253472323],[515433.45640214015,5277757.134212734],[515434.4349849848,5277756.247688645],[515433.1023431796,5277754.721540186],[515431.515145938,5277752.905753756],[515430.6122464731,5277753.570199317],[515426.4950171752,5277748.669135954],[515426.80334655615,5277745.669178144],[515428.755801531,5277745.674352379],[515431.6155762651,5277743.347996298],[515433.5618445463,5277745.687091743],[515435.59086734476,5277745.136772209],[515437.98652091913,5277747.921619939],[515439.3388095043,5277747.702926571],[515441.0606744832,5277749.708009993],[515441.0559579172,5277751.486234467],[515443.60208971,5277754.160343883],[515436.2266388647,5277760.253472323]]]},"properties":{"ID_SOURCE":"w144656196","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":106}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515325.42340832297,5277518.120559055],[515320.0269271083,5277514.10532482],[515318.00309852924,5277512.655182775],[515319.28472620307,5277510.769179071],[515319.137163223,5277509.76853297],[515320.34340194904,5277507.993470893],[515321.3202542083,5277507.773762013],[515322.219669096,5277508.442967557],[515324.8583199184,5277504.560020995],[515326.05783241626,5277505.341156826],[515328.0176830282,5277502.567822408],[515335.5139721397,5277507.699992205],[515332.1211216859,5277512.803485117],[515331.14690383873,5277512.022941286],[515330.589017191,5277512.843906438],[515330.0914427449,5277513.576118645],[515326.47272325045,5277518.901299633],[515325.42340832297,5277518.120559055]]]},"properties":{"ID_SOURCE":"w144656201","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":107}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515526.1937709942,5277702.58887839],[515524.91685994226,5277702.696612839],[515525.7260100435,5277709.033739964],[515517.68818980735,5277710.0125676645],[515516.2179871776,5277698.116689277],[515517.34500522394,5277697.89741357],[515516.83148523065,5277693.339312665],[515521.33867277583,5277692.7956286855],[515521.1926308963,5277691.239281998],[515528.1037541044,5277690.36859349],[515528.2506834931,5277691.591523294],[515534.335464344,5277690.829777924],[515534.6287272852,5277693.497915906],[515532.7507567678,5277693.715184603],[515533.2648573508,5277698.051008908],[515525.75268583157,5277699.031228098],[515525.9659264632,5277700.7322358955],[515526.1937709942,5277702.58887839]]]},"properties":{"ID_SOURCE":"w144656202","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":108}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515546.9450875324,5277355.776997653],[515547.3241461287,5277354.444332827],[515551.30115276296,5277355.67749135],[515551.9064013773,5277354.012011717],[515556.18350825296,5277355.357114941],[515555.7287543654,5277356.911856471],[515558.5050577358,5277357.808392797],[515556.68990231975,5277362.582551954],[515553.98899724125,5277361.575078143],[515550.65998663387,5277370.790785336],[515548.10868930444,5277370.005993327],[515547.95730359986,5277370.450148075],[515541.8796032261,5277368.433405513],[515543.6275409901,5277363.514580638],[515544.67934463284,5277360.549957322],[515542.2031414152,5277359.765368433],[515544.0185825056,5277354.880065851],[515546.9450875324,5277355.776997653]]]},"properties":{"ID_SOURCE":"w144656210","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":109}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515209.3949390471,5277720.201804266],[515205.664876303,5277710.745178741],[515206.56746622466,5277710.191837404],[515207.6135686033,5277712.195086109],[515211.373538131,5277710.204393273],[515215.96071606537,5277707.771305747],[515217.8285015289,5277711.443800744],[515219.6331025501,5277710.559400019],[515222.9958063709,5277716.90315997],[515216.52864927455,5277720.331585832],[515215.85570141836,5277719.218429058],[515213.2989944555,5277720.545424598],[515213.1496762689,5277720.211615039],[515211.3491447863,5277719.540071409],[515211.05021773087,5277718.983591421],[515209.47090487485,5277719.868583381],[515209.3949390471,5277720.201804266]]]},"properties":{"ID_SOURCE":"w144656214","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":110}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516224.61767882574,5277636.031299579],[516223.62529450294,5277647.20920456],[516213.0989179831,5277646.446356718],[516213.10046555405,5277645.890661699],[516206.79366162664,5277645.428541661],[516206.796136775,5277644.539429627],[516206.9540631841,5277641.761372643],[516207.1104427379,5277639.539010688],[516206.05910134193,5277639.536083963],[516206.4497403312,5277634.091318064],[516207.95165801386,5277634.0954992585],[516208.1052533753,5277632.873388377],[516207.7307021062,5277632.538926024],[516208.4341038876,5277622.649436564],[516225.25282730843,5277623.696544735],[516224.61767882574,5277636.031299579]]]},"properties":{"ID_SOURCE":"w144656217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":111}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516274.8956203666,5277004.3417871725],[516274.4440644441,5277004.673944377],[516268.5757052236,5277008.325157919],[516268.42642883264,5277007.9913215805],[516269.1036065705,5277007.548654529],[516266.48645510257,5277003.429171744],[516265.8092770882,5277003.871839102],[516265.58489640255,5277003.53779304],[516266.2620744381,5277003.095125659],[516264.5415113854,5277000.64524485],[516264.0899557735,5277000.977402858],[516259.7528515358,5276994.185765246],[516259.90337015927,5276994.075045794],[516260.277649462,5276994.520649969],[516265.6963235453,5276990.534752669],[516265.3223548436,5276989.978009261],[516265.54766742594,5276989.978638635],[516274.8956203666,5277004.3417871725]]]},"properties":{"ID_SOURCE":"w144656227","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":112}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.8938932694,5277086.800025603],[515933.016961597,5277087.640198797],[515932.73053885077,5277082.5269869715],[515936.26098775433,5277082.31436887],[515936.0499747865,5277077.09022356],[515932.3735740111,5277075.746486098],[515932.0214737612,5277067.187762826],[515949.97357124067,5277066.34779218],[515950.5396898997,5277079.019273348],[515950.31468523364,5277078.90751725],[515950.17513455235,5277075.017244036],[515946.4947788768,5277075.118303443],[515946.77601557004,5277082.120877348],[515950.4566712742,5277081.908679219],[515950.3840038305,5277081.019362225],[515950.6096173099,5277080.908840515],[515950.8938932694,5277086.800025603]]]},"properties":{"ID_SOURCE":"w144656229","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":113}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515710.18965799885,5277225.070279428],[515702.7624376164,5277222.160610818],[515693.60937956686,5277218.69060106],[515694.29023350484,5277216.85863049],[515694.89538742945,5277215.2487354325],[515691.53709583374,5277207.3487624],[515699.9583389754,5277203.703852039],[515702.421399958,5277209.378620745],[515714.65032140055,5277214.079482191],[515719.2369007355,5277212.091347531],[515721.9988438274,5277218.3226303365],[515721.622737481,5277218.543894271],[515721.62333766406,5277218.321616404],[515713.12730061973,5277221.855153887],[515711.7652825341,5277225.630229692],[515715.96674650337,5277227.19752511],[515713.01680792106,5277234.969345641],[515707.31512695155,5277232.731166514],[515710.18965799885,5277225.070279428]]]},"properties":{"ID_SOURCE":"w144656234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":114}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516248.05024173734,5277527.513009232],[516245.9635613326,5277527.140424544],[516242.3456405074,5277526.49683284],[516244.37419717957,5277526.169073008],[516246.7065547927,5277524.619623329],[516247.9897223786,5277522.289267461],[516248.22245849477,5277519.62256064],[516247.25332631846,5277517.063639535],[516245.2309686051,5277515.16861874],[516243.20519873925,5277514.496127445],[516249.9608652023,5277515.62637803],[516248.70752388594,5277523.413783218],[516248.05024173734,5277527.513009232]]]},"properties":{"ID_SOURCE":"w144656237","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":115}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516036.59115396446,5277139.826799865],[516035.87808544043,5277126.043505859],[516035.80696203496,5277124.598493132],[516036.0322693877,5277124.599113638],[516036.2493123735,5277127.600484858],[516042.4086287873,5277127.284032213],[516042.4107722247,5277126.506059808],[516044.438843984,5277126.400508057],[516044.5118026938,5277127.178687411],[516047.291204752,5277126.964067249],[516047.64833851083,5277133.633437113],[516049.1506915391,5277133.526438125],[516049.3616006159,5277138.750588231],[516049.4354775232,5277139.1953509115],[516043.50148005923,5277139.512416894],[516043.5045423322,5277138.401027721],[516042.7908870101,5277138.465745246],[516042.2274974862,5277138.508648908],[516042.2998439195,5277139.509106081],[516036.59115396446,5277139.826799865]]]},"properties":{"ID_SOURCE":"w144656248","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":116}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515680.4204444778,5277673.5946444925],[515678.3408210902,5277665.031277407],[515696.5265101703,5277660.412409047],[515698.4604130765,5277667.30829243],[515702.7667855298,5277685.546837309],[515705.0962360031,5277684.997421884],[515706.95292626513,5277692.671078931],[515700.866924906,5277693.8772],[515700.2709597759,5277692.097355513],[515692.3069824521,5277693.520700805],[515691.11864116613,5277688.627345464],[515694.19904101215,5277688.079949771],[515692.78990823124,5277681.518901575],[515689.4845188247,5277681.954551849],[515688.44606386346,5277677.172740939],[515691.45197330083,5277676.402863392],[515690.1894309082,5277671.175888934],[515680.4204444778,5277673.5946444925]]]},"properties":{"ID_SOURCE":"w144656250","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":117}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515572.6515221072,5277684.374896657],[515571.23504651745,5277683.31527961],[515569.80355136335,5277682.255622749],[515567.99502424954,5277684.584722239],[515561.9856245938,5277685.235494168],[515558.08958430134,5277681.890886573],[515561.5564430511,5277677.23228057],[515564.63594498776,5277677.018233396],[515564.1936927296,5277673.905136346],[515571.02974781225,5277673.034297995],[515571.2493858917,5277675.14654185],[515575.3063180797,5277674.490555485],[515574.7907599222,5277670.710422638],[515578.99788641214,5277670.05484065],[515580.9131857655,5277683.952442805],[515579.48548426945,5277684.282041364],[515581.185903341,5277694.289175384],[515572.0961274315,5277695.487392331],[515570.7678993164,5277686.703794415],[515572.6515221072,5277684.374896657]]]},"properties":{"ID_SOURCE":"w144656257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":118}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515613.01755993924,5277725.6047469685],[515612.8745240778,5277722.937007612],[515615.0585311691,5277720.608929018],[515617.687145601,5277720.50484043],[515619.4196922748,5277718.508971812],[515621.2925883764,5277720.18109446],[515626.0986527893,5277720.193992729],[515626.3847124101,5277725.52947211],[515627.80763294734,5277726.97810943],[515625.9228084073,5277729.751545616],[515626.89754698216,5277730.309861157],[515627.03252118663,5277735.978354587],[515620.79967329674,5277735.96162687],[515618.6270002159,5277734.066420386],[515613.59536545974,5277734.164063065],[515613.15821110987,5277729.161598536],[515614.4383971142,5277727.831354179],[515614.2941696052,5277725.608170872],[515613.01755993924,5277725.6047469685]]]},"properties":{"ID_SOURCE":"w144656269","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":119}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516237.35952582525,5277025.464689375],[516240.88878142834,5277025.69681147],[516241.11781248194,5277024.363773159],[516244.42144732305,5277024.706407857],[516244.18807486864,5277027.595390582],[516248.24212449364,5277028.16240048],[516248.3954331671,5277027.051430664],[516253.20051985816,5277027.620539795],[516252.50845576596,5277033.397875723],[516247.92806446593,5277033.051673643],[516247.54541370884,5277035.606820449],[516243.0407475327,5277035.038553976],[516243.34798267356,5277032.594336269],[516238.01686368114,5277032.134908057],[516238.165211386,5277032.802160319],[516232.8306840638,5277033.56526472],[516232.30183501967,5277029.296023631],[516231.94926854456,5277026.449862951],[516237.3582861591,5277025.909244958],[516237.35952582525,5277025.464689375]]]},"properties":{"ID_SOURCE":"w144656272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":120}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515616.2202241884,5277259.493089217],[515608.7870426585,5277258.806319163],[515608.12901197444,5277252.13617074],[515610.2330260615,5277251.69725235],[515612.0455773186,5277247.923361011],[515615.3467359047,5277249.154750637],[515616.02323954884,5277248.934285524],[515616.17522970587,5277248.267854732],[515617.22574721056,5277248.604091596],[515617.90463590604,5277247.49451518],[515624.054853638,5277250.511788486],[515622.1725621324,5277252.284973675],[515629.88586625125,5277260.530015223],[515629.35747644666,5277261.5288545145],[515632.27774937724,5277264.759746803],[515623.77169498114,5277272.072138737],[515619.57918343856,5277267.17074141],[515621.53686817846,5277265.286617899],[515618.099766335,5277261.543101845],[515616.2202241884,5277259.493089217]]]},"properties":{"ID_SOURCE":"w144656283","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":121}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516227.3843675237,5276912.741176305],[516229.41158812406,5276912.969105473],[516228.7983569432,5276917.412985957],[516218.1377621716,5276915.82732846],[516218.74912806624,5276912.050280133],[516217.6231691573,5276911.824864683],[516217.3233673991,5276911.601750249],[516217.6324550099,5276908.490698419],[516218.6851666156,5276908.049071428],[516219.210903362,5276908.050535755],[516219.3795091303,5276906.839582242],[516219.51751564274,5276905.828595033],[516219.8930420322,5276905.829641029],[516220.4302334825,5276901.718967113],[516224.03436042625,5276902.062426856],[516225.53182178224,5276903.733695259],[516228.91032154614,5276904.187669083],[516228.4451322194,5276909.409940314],[516227.8442903615,5276909.408265849],[516227.3843675237,5276912.741176305]]]},"properties":{"ID_SOURCE":"w144656291","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":122}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.73038965615,5277372.093967354],[515456.5553011304,5277372.540716212],[515455.72419402056,5277374.427885587],[515458.8745247322,5277375.88106604],[515458.4975533512,5277376.435763878],[515459.7724688625,5277377.105987512],[515462.091098483,5277380.6686165845],[515460.50663866865,5277383.442902658],[515455.8487245471,5277384.097374224],[515452.15886384214,5277382.198204437],[515449.3239512476,5277380.745864549],[515449.77720028313,5277379.746809541],[515447.1522686867,5277378.406167681],[515446.6245105677,5277379.182745716],[515440.1745309393,5277375.942584554],[515443.7990438833,5277368.505834718],[515449.04950616526,5277370.964838619],[515449.9554159532,5277369.189006552],[515453.70536505006,5277371.088334347],[515455.73038965615,5277372.093967354]]]},"properties":{"ID_SOURCE":"w144656293","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":123}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516021.6289038559,5277547.112958199],[516019.60003101407,5277547.563048496],[516019.47395632474,5277546.984774471],[516018.6875299975,5277543.492819946],[516018.1690545898,5277543.602533246],[516017.5162729214,5277540.666645755],[516018.17001506605,5277540.523962617],[516017.8065342464,5277538.889207083],[516016.74564020836,5277534.162845656],[516026.6044768448,5277531.978294093],[516027.8210173096,5277537.449722685],[516026.78403449024,5277537.680261596],[516027.66679793026,5277541.6392697],[516031.20607341995,5277540.848807573],[516031.9626680345,5277544.262883776],[516032.57132130995,5277544.131192073],[516033.2760507516,5277547.2895040335],[516033.0581164208,5277547.344473774],[516029.6315818996,5277548.101903227],[516022.21492126136,5277549.748584908]]]},"properties":{"ID_SOURCE":"w144656303","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":124}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515272.7873100425,5277744.262822696],[515275.7977949595,5277741.714506172],[515278.49273708067,5277744.944632406],[515272.99830608815,5277749.709226222],[515275.0948243672,5277752.048662608],[515269.22405694897,5277757.145691929],[515264.95679764485,5277752.133210117],[515268.56919597636,5277749.141909016],[515267.1461919359,5277747.693359638],[515265.6408068714,5277749.023089463],[515264.3679908642,5277747.574934603],[515263.991061876,5277748.129645261],[515262.41845039336,5277746.458425196],[515259.40768248675,5277749.117887671],[515256.1128502134,5277745.552778789],[515258.9731382231,5277743.00405999],[515257.70031923655,5277741.555906611],[515264.8509048698,5277735.239683743],[515272.7873100425,5277744.262822696]]]},"properties":{"ID_SOURCE":"w144656304","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":125}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515377.4667514132,5277347.324852382],[515378.07165751804,5277345.770493768],[515375.6711124834,5277344.763896226],[515376.80494438275,5277341.988397242],[515375.9099124228,5277339.652099102],[515377.5720850839,5277335.877737989],[515379.07290496276,5277336.326261008],[515381.4171441201,5277330.219768269],[515387.49317690375,5277332.903176741],[515385.29913175345,5277339.010063967],[515387.9246827517,5277340.128399872],[515388.3773368531,5277339.351618081],[515390.708070452,5277338.357521091],[515392.723127219,5277343.141856671],[515390.8438741521,5277343.803727095],[515391.25354331365,5277345.082917006],[515391.66321229463,5277346.362106945],[515388.94053374435,5277353.57899283],[515384.06435351743,5277351.565591293],[515384.66896728287,5277350.122372313],[515377.4667514132,5277347.324852382]]]},"properties":{"ID_SOURCE":"w144656307","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":126}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515370.7651080072,5277638.493327024],[515374.95902595454,5277642.83885312],[515358.84748708835,5277658.355895613],[515354.5787659599,5277653.899043944],[515351.0492725783,5277653.889736094],[515350.98384783976,5277650.221950643],[515349.44860657986,5277648.617489741],[515345.4420030642,5277644.428071492],[515348.15218823036,5277641.879000833],[515350.3989070524,5277644.218859881],[515351.2270114894,5277643.443064945],[515357.1434502778,5277649.571357104],[515359.02582633705,5277647.686946575],[515359.17631091794,5277647.576203801],[515360.0044160587,5277646.800410108],[515360.9777276306,5277647.914376029],[515362.93520117406,5277646.030164907],[515361.88650067354,5277645.027139518],[515364.7474709389,5277642.256194862],[515365.7958781129,5277643.370359771],[515370.7651080072,5277638.493327024]]]},"properties":{"ID_SOURCE":"w144656308","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":127}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515413.3501431656,5277693.175556137],[515414.1161016819,5277687.509454417],[515415.9177972102,5277687.736504678],[515416.2924737284,5277685.20350945],[515416.6060148513,5277683.070455633],[515420.88467655797,5277683.74862651],[515420.96153815155,5277683.081991319],[515422.0876721733,5277683.196114235],[515422.08796659095,5277683.0849752175],[515422.31737417483,5277681.5296257725],[515425.3948069983,5277682.09347808],[515425.39156771835,5277683.316007275],[515426.06713026186,5277683.428937122],[515425.3035154307,5277688.20592511],[515426.9550200032,5277688.432580842],[515426.1154264824,5277693.542786825],[515422.5871347503,5277693.088879475],[515422.35802194884,5277694.533089916],[515418.6047396258,5277693.967449148],[515415.3844257619,5277693.481019908],[515413.3501431656,5277693.175556137]]]},"properties":{"ID_SOURCE":"w144656314","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":128}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516034.895827094,5277728.085155166],[516034.0630514645,5277730.527938439],[516034.66319631384,5277730.751871144],[516033.1515088755,5277734.30418327],[516036.6769744212,5277735.7587120505],[516035.99683732545,5277737.312796623],[516039.22192222404,5277738.7664995445],[516039.90267244924,5277736.990137297],[516043.3527338807,5277738.555602249],[516045.9975844525,5277732.561338906],[516047.4976384686,5277733.232312891],[516044.7007597519,5277739.892995758],[516041.99521342944,5277740.66351874],[516039.36690576904,5277740.656276719],[516036.81552956067,5277739.982408613],[516034.49127301195,5277738.642327998],[516032.5437124377,5277736.858726259],[516030.97407191875,5277734.187046948],[516033.4611210419,5277728.225685426],[516034.895827094,5277728.085155166]]]},"properties":{"ID_SOURCE":"w144656319","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":129}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515987.9943706165,5277032.332163891],[515983.26223118807,5277032.541452105],[515982.7362006742,5277032.651147955],[515982.5182110355,5277029.983195947],[515981.1812132003,5277030.035096193],[515979.8892775928,5277030.08712041],[515980.0327748095,5277032.5325884065],[515980.63360390236,5277032.534237332],[515980.7077924847,5277032.86786015],[515969.0649006732,5277033.502756519],[515968.8484287685,5277030.27911054],[515972.90463644103,5277030.067956391],[515972.7617458975,5277027.4002107885],[515968.7052315831,5277027.722503935],[515968.2011449796,5277019.830200462],[515972.63318378123,5277019.508937022],[515972.77576974116,5277022.287821486],[515982.69099247694,5277021.759329786],[515982.5487162857,5277018.869306172],[515987.20576297585,5277018.659811154],[515987.9943706165,5277032.332163891]]]},"properties":{"ID_SOURCE":"w144656320","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":130}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515309.02240219136,5277726.453376684],[515307.0792920615,5277722.891793777],[515308.0644355672,5277722.36091315],[515307.27225973475,5277720.90289885],[515302.25625422556,5277723.62375087],[515300.4112295389,5277719.884604387],[515300.49275046354,5277717.4397431975],[515297.5924192639,5277712.35303269],[515297.87973640946,5277711.609151082],[515301.23413745535,5277709.650792346],[515302.0640974828,5277711.019993268],[515304.0420725382,5277709.891566822],[515306.06904989225,5277710.119175344],[515309.52809057327,5277708.350034137],[515310.8041192865,5277708.575669529],[515311.706427302,5277708.133483494],[515312.1607968883,5277706.689861271],[515314.49195547454,5277705.473455495],[515315.5236459315,5277707.232178292],[515317.53466325544,5277710.671688829],[515319.47093431733,5277713.9776356425],[515319.57559913717,5277714.1557347365],[515311.0773149059,5277718.912388793],[515313.84295759123,5277723.809814192],[515309.02240219136,5277726.453376684]]]},"properties":{"ID_SOURCE":"w144656325","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":131}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515426.3217819973,5277275.546683132],[515420.6217981646,5277272.641951087],[515418.2229959827,5277270.968502489],[515418.75164294406,5277269.85850516],[515419.0558713482,5277268.414494387],[515418.382614914,5277267.412453975],[515418.4624244467,5277265.634429728],[515419.4390267536,5277265.525876241],[515419.36598642066,5277264.747704736],[515422.8223815355,5277264.090020887],[515425.3124800184,5277259.651028376],[515424.7964913328,5277255.982050518],[515428.78007002664,5277254.7700682],[515429.37616379914,5277256.549883386],[515431.70605383534,5277255.889219679],[515433.26814523526,5277261.561485977],[515435.96764424304,5277263.1245982],[515430.15603025234,5277274.000886957],[515428.58098113944,5277273.2187349945],[515427.8287391271,5277273.683528558],[515427.15171552665,5277274.104065631],[515426.3217819973,5277275.546683132]]]},"properties":{"ID_SOURCE":"w144656326","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":132}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515597.5920996824,5277428.820143227],[515600.29177485185,5277430.272193343],[515599.6880090525,5277431.381973296],[515602.9872788248,5277433.280190336],[515599.5884924138,5277440.495167879],[515595.9882366684,5277438.818425998],[515596.4415064799,5277437.819382271],[515595.08386280667,5277437.204476796],[515593.74123852927,5277436.589611866],[515592.38649063365,5277437.697381222],[515586.3115535527,5277434.680341119],[515587.671061854,5277431.794346792],[515588.3472456991,5277431.685017421],[515589.399814725,5277431.24327662],[515590.15318036353,5277430.35617574],[515590.9101176212,5277428.135407291],[515591.3654707469,5277426.358390387],[515591.8926487384,5277425.804103321],[515593.3210095505,5277425.252229857],[515597.07087608275,5277427.151650339],[515596.9185948977,5277427.929220778],[515597.5920996824,5277428.820143227]]]},"properties":{"ID_SOURCE":"w144656333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":133}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515242.824847244,5277629.376898583],[515240.2672219499,5277631.037299222],[515239.80733673455,5277634.592568065],[515242.81058874057,5277634.822710105],[515241.66291032836,5277642.932908781],[515233.2553860993,5277641.688365925],[515234.1754388354,5277634.4666881915],[515231.3340088555,5277629.791383116],[515231.63991724787,5277627.6805278165],[515226.6108148026,5277626.778254051],[515227.52795454103,5277620.667965538],[515234.8841661606,5277621.909748674],[515234.888819559,5277620.131524531],[515237.2208690213,5277618.581670915],[515238.87007312063,5277619.697385274],[515240.37519431877,5277618.478787746],[515244.0423876056,5277623.267399098],[515246.59477828094,5277623.607502288],[515245.6796562661,5277628.939814799],[515243.80284021597,5277628.712620664],[515242.824847244,5277629.376898583]]]},"properties":{"ID_SOURCE":"w144656334","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":134}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515836.86011699744,5277759.21791266],[515836.78895316884,5277757.772901017],[515883.73470295843,5277753.566346506],[515884.4595666822,5277763.126351784],[515836.86011699744,5277759.21791266]]]},"properties":{"ID_SOURCE":"w144656339","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":135}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515935.4899308781,5277034.744451392],[515931.9594531774,5277034.9570700135],[515930.8328991148,5277034.953987746],[515930.6887731841,5277032.730798796],[515929.02864846593,5277032.848510819],[515927.53381260205,5277032.94444749],[515927.7506112693,5277036.056952997],[515923.61930597486,5277036.267933203],[515923.83337119396,5277040.380688688],[515923.60806059185,5277040.380072531],[515923.39399521385,5277036.267317054],[515921.290790896,5277036.372705663],[515921.21872614295,5277035.261111301],[515921.5191405427,5277035.261932722],[515920.8024423493,5277022.701183606],[515920.5020273034,5277022.700362221],[515920.42874674196,5277022.033323492],[515922.9825788507,5277021.929166802],[515922.76851225155,5277017.816411474],[515922.3926892233,5277017.92652352],[515922.39390484,5277017.48196793],[515934.41264643427,5277016.736866905],[515935.4899308781,5277034.744451392]]]},"properties":{"ID_SOURCE":"w144656340","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":136}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515485.6346127951,5277281.927958094],[515490.00285469217,5277277.271708992],[515492.4001551697,5277279.500881967],[515493.68041154905,5277278.170611842],[515492.93118139444,5277277.501779754],[515500.23663721146,5277269.741442208],[515500.9861634217,5277270.29913628],[515502.191323207,5277268.968668101],[515501.5922939963,5277268.300234821],[515503.8553733686,5277264.527509572],[515507.4536914692,5277266.982166336],[515512.3275317802,5277269.884782441],[515508.1848639779,5277274.430475936],[515506.0873775734,5277272.42437438],[515504.88192164403,5277273.865980708],[515505.5560504019,5277274.534614331],[515498.3256938297,5277282.29514517],[515496.0032014077,5277280.177308563],[515495.3706127169,5277280.831349429],[515494.7229449315,5277281.50757818],[515497.7192699753,5277284.405185957],[515493.2756311355,5277289.172368429],[515485.6346127951,5277281.927958094]]]},"properties":{"ID_SOURCE":"w144656342","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":137}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516217.4435382476,5277378.089078362],[516218.88454479584,5277378.415397853],[516219.8207422585,5277373.9390711505],[516224.00104461913,5277374.928748732],[516223.80296843185,5277375.939569144],[516237.8762601449,5277378.779525294],[516239.52100224927,5277381.451468358],[516240.724448645,5277380.787986245],[516243.04291051585,5277384.239788426],[516243.8702410064,5277383.79753731],[516246.4127565166,5277387.694525275],[516245.5851162719,5277388.247914989],[516247.678895527,5277391.476812514],[516243.0888638251,5277394.687060101],[516240.9941531356,5277391.7915810915],[516238.66205410176,5277393.229893893],[516238.28221956064,5277394.784792054],[516234.0791562505,5277393.8839524975],[516234.38234124327,5277392.8845394645],[516233.0463537855,5277392.602964844],[516231.68032659654,5277392.321306778],[516229.29488630715,5277394.037324171],[516227.20041635516,5277391.052938977],[516223.08020534983,5277390.063426449],[516222.50304256246,5277392.362412588],[516215.74831110146,5277390.843208063],[516217.4912347158,5277382.534804018],[516216.6431717548,5277382.332390167],[516217.4435382476,5277378.089078362]]]},"properties":{"ID_SOURCE":"w144656346","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":138}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.3453489611,5277558.207433205],[516169.7220359426,5277554.968756755],[516168.22287570406,5277553.964334573],[516171.0150444761,5277549.081936276],[516175.97947382217,5277546.206091679],[516176.8015264584,5277547.653193772],[516179.2909125219,5277546.337547164],[516182.66774217144,5277544.55758095],[516181.8463083618,5277542.888200062],[516186.1336385323,5277540.4550415445],[516192.59322483797,5277540.028444707],[516192.738164075,5277541.91822521],[516197.99526838027,5277541.821709526],[516198.05304929445,5277548.045701725],[516189.19036782725,5277548.465609597],[516189.6353867335,5277550.467364341],[516187.00297596614,5277551.904862705],[516185.95563558035,5277550.457132803],[516180.38981170725,5277553.553577168],[516181.28603241045,5277555.334305591],[516178.4283352716,5277556.771181669],[516177.005509148,5277555.322409947],[516175.3453489611,5277558.207433205]]]},"properties":{"ID_SOURCE":"w144656348","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":139}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.91914051014,5277294.885416626],[515334.0719752846,5277293.885561639],[515334.74992650165,5277293.10936911],[515335.57661478786,5277292.889267026],[515337.0029342142,5277293.115303432],[515337.82786595327,5277293.562035372],[515338.12592473463,5277294.4519383265],[515337.89447576576,5277296.785262782],[515341.62572624045,5277297.261880062],[515348.6302900093,5277298.147230766],[515347.94032590353,5277303.480118711],[515343.4357828842,5277302.912547699],[515343.5123474224,5277302.357050846],[515337.50638574705,5277301.563248529],[515337.2746445256,5277304.007711987],[515336.0733353998,5277303.893407893],[515335.53797448927,5277307.559608663],[515331.40864120517,5277307.104174946],[515331.94458487164,5277303.215695901],[515322.634801513,5277302.190930506],[515323.4048152303,5277294.968875102],[515333.61522726994,5277296.218292903],[515333.91914051014,5277294.885416626]]]},"properties":{"ID_SOURCE":"w144656349","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":140}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515391.08405732474,5277508.62461128],[515390.93209953106,5277509.291048152],[515389.58063884836,5277509.176335836],[515388.98367806675,5277507.72994095],[515386.4309508378,5277507.500914474],[515385.37606153614,5277508.831803858],[515381.77226358256,5277508.488862157],[515381.4648266518,5277511.155404243],[515382.8872733335,5277512.826258937],[515380.5539682289,5277514.820610078],[515381.15034311934,5277516.489282088],[515378.74722705164,5277516.482933753],[515375.9621666381,5277518.920652497],[515370.794534052,5277513.572298261],[515373.6552792317,5277510.912497395],[515373.92695408844,5277507.567907928],[515374.2760159811,5277503.356632701],[515382.3096915836,5277504.044691547],[515386.0716175645,5277501.387277854],[515387.7184767545,5277503.392146058],[515389.6745383332,5277502.063639163],[515391.4765860378,5277502.179542682],[515391.3199270288,5277504.624203327],[515391.08405732474,5277508.62461128]]]},"properties":{"ID_SOURCE":"w144656351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":141}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515626.8010959519,5276795.268714641],[515628.30030663934,5276796.361906648],[515633.60959744494,5276788.262962648],[515643.1022921725,5276794.178857164],[515636.0336991033,5276805.740625976],[515630.81520282,5276802.40354023],[515631.81844642316,5276800.794708107],[515631.31618674734,5276800.437712961],[515630.8214376745,5276800.0807380155],[515629.6372821256,5276801.933591994],[515627.4101354732,5276800.616166758],[515624.3171068324,5276805.698063637],[515618.12388734,5276801.735992013],[515615.17425528244,5276806.562657085],[515619.17808832246,5276809.129607033],[515616.38713636214,5276813.601050223],[515607.637524523,5276807.865014088],[515611.9355203942,5276801.563802479],[515613.6151072383,5276802.61301843],[515615.01819918567,5276800.338417572],[515606.4250986299,5276795.047361802],[515612.9102573238,5276785.37336738],[515627.1579746013,5276793.824856742],[515626.8010959519,5276795.268714641]]]},"properties":{"ID_SOURCE":"w144656352","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":142}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.1796532189,5276993.503053456],[516129.8947147614,5276994.935998986],[516132.42639335664,5277002.833934348],[516130.0209095212,5277003.605248649],[516130.31855473685,5277004.606330872],[516122.5386437748,5277006.985403055],[516121.2346629385,5277003.2474972885],[516120.41528773535,5277000.800154457],[516124.0984637147,5276999.698954849],[516123.2797046764,5276997.029333848],[516119.52080775425,5276998.352603845],[516117.9423915008,5276998.792793521],[516116.3790480963,5276993.787177934],[516116.0062957683,5276992.785888583],[516115.9321144009,5276992.452264044],[516123.0055702474,5276990.24905046],[516126.5310345626,5276989.147415691],[516126.30787651247,5276988.368819465],[516129.0888872299,5276987.598543786],[516129.75959161285,5276989.489777253],[516132.6160143817,5276988.608572415],[516134.1796532189,5276993.503053456]]]},"properties":{"ID_SOURCE":"w144656353","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":143}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515675.82265402813,5277241.982032933],[515670.344474007,5277240.41133021],[515670.496171485,5277239.856039769],[515667.9445334747,5277239.182334441],[515667.7171371401,5277239.959700735],[515665.2408988358,5277239.175059745],[515665.92278808984,5277236.9540995415],[515662.8463381999,5277235.945565205],[515664.21071412123,5277231.281366474],[515667.2874653036,5277232.178762584],[515667.8939559897,5277230.068739487],[515672.24652796594,5277231.302990721],[515672.09512924997,5277231.747142175],[515677.4982159386,5277233.31764429],[515677.27081810264,5277234.095010205],[515684.2498248841,5277236.114321027],[515683.3399313523,5277239.33492266],[515684.1651437852,5277239.670564734],[515682.8764533753,5277244.112683287],[515681.6009354095,5277243.664688825],[515681.9043323813,5277242.554108521],[515676.2011509211,5277240.87165453],[515675.82265402813,5277241.982032933]]]},"properties":{"ID_SOURCE":"w144656358","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":144}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515552.4831629832,5277199.940532479],[515551.52518889605,5277201.505043859],[515550.4691975988,5277203.213775265],[515552.4486690658,5277204.419371287],[515549.1900716104,5277209.73426112],[515547.4280390993,5277208.662614468],[515544.41081117117,5277213.5891624475],[515541.4116246919,5277211.75846477],[515542.6336060796,5277209.761211521],[515538.83961801766,5277207.450492786],[515540.8384957868,5277204.199433668],[515541.09345494205,5277204.344595823],[515541.92318967544,5277202.990905906],[515541.51078446966,5277202.745297706],[515543.7737072544,5277199.050385501],[515540.3021151749,5277196.940578057],[515543.71913692745,5277191.359370947],[515546.3434486436,5277192.955675358],[515548.0783521932,5277190.126244892],[515547.06611286884,5277189.512273506],[515549.291345047,5277185.872832704],[515554.9748457146,5277189.333344796],[515551.51257294096,5277194.981108315],[515555.83892374154,5277197.615562716],[515553.88527434465,5277200.800053684],[515552.4831629832,5277199.940532479]]]},"properties":{"ID_SOURCE":"w144656359","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":145}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515709.3384028716,5277123.041705563],[515706.85312623746,5277125.591214642],[515709.0987030072,5277128.375765758],[515705.78910146526,5277130.256213036],[515706.2340196818,5277132.369067976],[515703.3720378833,5277135.362121343],[515698.56459160463,5277135.682577122],[515691.11808304855,5277139.885814894],[515688.2076611539,5277132.987309447],[515684.6817434354,5277131.532994087],[515686.4955775196,5277127.314570774],[515684.176084599,5277124.085270433],[515686.80946093245,5277122.314128786],[515686.58864471834,5277120.646438033],[515688.1163694406,5277119.483586892],[515690.652564997,5277117.5454755565],[515690.50535480934,5277116.43368163],[515695.316711025,5277114.668413257],[515695.7721198396,5277112.891405271],[515696.22483256506,5277112.1146475645],[515699.8204678433,5277115.569672839],[515701.24951428187,5277114.795548097],[515707.2457273999,5277119.257309318],[515706.7915147543,5277120.589760764],[515709.3384028716,5277123.041705563]]]},"properties":{"ID_SOURCE":"w144656366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":146}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515660.8806476308,5277157.0310660135],[515652.3199134522,5277156.674627671],[515652.32400649646,5277155.152024415],[515652.3279800338,5277153.673876734],[515647.89725689613,5277153.550828079],[515648.0546293588,5277150.8838975895],[515643.5493991111,5277150.53837257],[515643.6256955988,5277150.094018656],[515643.8671263287,5277144.093122183],[515648.1476523624,5277144.215764086],[515648.3813221247,5277141.10447979],[515655.214728301,5277141.456267746],[515655.2865435301,5277142.678997805],[515652.58376039116,5277142.338312325],[515652.0386257623,5277149.560929035],[515653.76567568025,5277149.67671156],[515653.760297473,5277151.677212172],[515659.46805634594,5277151.69255989],[515659.62902096665,5277147.691962639],[515660.83065524,5277147.695194482],[515660.9964037121,5277141.91637455],[515667.82980824856,5277142.268177316],[515667.196394552,5277154.38070317],[515661.11342694616,5277154.2531989245],[515660.8806476308,5277157.0310660135]]]},"properties":{"ID_SOURCE":"w144656367","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":147}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515567.8929658564,5277582.335830802],[515568.19097441493,5277583.225746053],[515564.73267172225,5277584.661316554],[515565.8555534387,5277585.997996223],[515565.3286894687,5277586.441146746],[515561.2117509218,5277581.428850409],[515559.6706974791,5277582.013772436],[515558.2800156093,5277582.532412845],[515560.890867761,5277589.09663849],[515561.48748035234,5277590.654190299],[515556.0745983877,5277592.862520319],[515553.5385421018,5277586.409636427],[515553.16276279173,5277586.519772304],[515549.35273044877,5277579.0632289015],[515553.9401538361,5277576.630407656],[515552.29663837864,5277573.402963057],[515555.98439210997,5277570.412041194],[515558.0808622759,5277572.751578931],[515561.541546911,5277570.426892518],[515565.5860707204,5277574.438737222],[515564.98410910304,5277574.881686991],[515565.9529364466,5277577.662772085],[515572.64337070833,5277575.124448966],[515574.4332024872,5277579.797108114],[515567.8929658564,5277582.335830802]]]},"properties":{"ID_SOURCE":"w144656370","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":148}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515254.6414067373,5277619.294130009],[515262.6822197934,5277617.203549011],[515262.9796903574,5277618.315726602],[515268.390104414,5277616.9962363485],[515269.35644257726,5277620.777523047],[515270.85952924757,5277620.336906444],[515272.6431743197,5277627.454530846],[515267.7590233903,5277628.553117697],[515269.170979884,5277634.224949289],[515273.22878020006,5277633.2353354385],[515271.9655615605,5277628.119591904],[515275.94827066053,5277627.129782955],[515277.65768648434,5277633.913794908],[515273.90056084434,5277634.793054738],[515274.6439377792,5277637.684639285],[515270.0601782191,5277638.784012335],[515269.7632930908,5277637.449556319],[515268.2602109133,5277637.890173209],[515268.5573878445,5277639.113490133],[515263.372281591,5277640.433570887],[515261.06878499116,5277631.091790972],[515265.65254886425,5277629.992410844],[515264.90945787024,5277626.989688486],[515257.0191405928,5277628.9695210075],[515254.6414067373,5277619.294130009]]]},"properties":{"ID_SOURCE":"w144656377","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":149}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516231.80397698877,5276889.9698481],[516242.2417791439,5276890.665791004],[516242.24146914703,5276890.776929879],[516246.5218609467,5276891.01115009],[516246.4427244802,5276892.455745882],[516248.1172969469,5276892.560443934],[516250.1973767513,5276892.688502024],[516249.96027492796,5276896.911150409],[516250.10955527506,5276897.244986208],[516253.8642043228,5276897.477744718],[516253.55044361,5276902.255877729],[516257.9801063059,5276902.823942285],[516256.9807764936,5276911.045493086],[516252.85154084064,5276910.478267764],[516253.1606474965,5276907.367217781],[516251.65885248914,5276907.251886483],[516250.3876458167,5276905.247823488],[516250.5456102896,5276902.469770825],[516248.4429713799,5276902.352763619],[516248.6766605924,5276899.352642744],[516241.6931018243,5276898.888601177],[516241.84920236265,5276896.777381557],[516236.5933741214,5276896.207025644],[516236.4357260464,5276898.8739397675],[516231.8586357621,5276897.305223043],[516231.8611141526,5276896.416112059],[516231.3353763549,5276896.414646592],[516231.80397698877,5276889.9698481]]]},"properties":{"ID_SOURCE":"w144656386","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":150}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515554.56964111555,5277312.897419049],[515554.0466131695,5277311.895764079],[515551.86574396386,5277313.001335872],[515552.3884753124,5277314.1141296],[515546.67286334996,5277317.099638215],[515546.1501311826,5277315.986845001],[515541.638199804,5277318.1975943865],[515540.7417468943,5277316.416965626],[515538.4860785819,5277317.41120302],[515535.340777038,5277314.068617454],[515538.8004190649,5277312.188473961],[515537.97847120266,5277310.630323975],[515545.9500547172,5277306.539432528],[515546.47338129755,5277307.429947803],[515551.8135020266,5277304.443436025],[515550.84254361107,5277302.440327245],[515553.62540538533,5277300.891804205],[515551.45878097886,5277296.662706557],[515555.44443717366,5277294.672838188],[515556.93812729785,5277297.788741811],[515558.4416162768,5277297.237060502],[515561.8033028354,5277303.914429143],[515561.19715517526,5277305.9133244855],[515565.2504806841,5277306.702137289],[515563.3551537455,5277313.365455442],[515556.9013048346,5277311.569971686],[515554.56964111555,5277312.897419049]]]},"properties":{"ID_SOURCE":"w144656387","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":151}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516167.2116405101,5277539.513346544],[516166.6170360095,5277537.2888985295],[516162.8594025278,5277538.278723947],[516161.28112897504,5277538.718901922],[516159.7946109948,5277533.157783548],[516161.07249717397,5277532.716771318],[516160.1805856632,5277529.380100304],[516160.93495157274,5277528.159656026],[516164.0164073156,5277527.279091818],[516164.91572294844,5277527.948427788],[516168.5234775609,5277526.847047598],[516169.7136128665,5277530.962527058],[516170.16376398935,5277531.119373095],[516170.6889505605,5277531.298655546],[516172.34201533283,5277530.969827712],[516171.89575407957,5277529.412630304],[516179.0355505901,5277527.431950079],[516180.002239962,5277530.879971681],[516180.8199693788,5277533.88302009],[516178.0392120289,5277534.65327114],[516177.5132230428,5277534.762949385],[516176.6853013857,5277535.427487942],[516173.7537335322,5277536.419601686],[516173.45149248,5277537.085601104],[516173.1501777204,5277537.418183586],[516172.47306863597,5277537.860862007],[516170.74429130077,5277538.411759188],[516167.2116405101,5277539.513346544]]]},"properties":{"ID_SOURCE":"w144656388","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":152}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515651.7159197803,5277744.491292458],[515652.3040334242,5277721.264649615],[515686.6952397068,5277722.168538346],[515686.74107585096,5277733.027023282],[515688.0924790203,5277733.141804745],[515688.0089984718,5277736.253495066],[515692.7396556002,5277736.377385044],[515692.8234382654,5277733.1545557575],[515694.1784366829,5277731.935670344],[515696.73614828655,5277730.275468674],[515699.5924416384,5277729.28291232],[515702.59742639674,5277728.846457592],[515703.42346751515,5277728.848685739],[515728.5029777077,5277729.694369358],[515728.171972082,5277741.029738302],[515722.99105256057,5277740.793463578],[515722.4200673815,5277757.57403694],[515688.78052685334,5277756.483024002],[515688.042462482,5277751.702022083],[515684.5884217345,5277751.581575225],[515683.8979008817,5277757.025566746],[515680.4438632196,5277756.905122341],[515680.445659356,5277756.238288167],[515668.35637554235,5277755.872318404],[515661.59848676214,5277755.631854135],[515651.3865583158,5277755.270970555],[515651.7159197803,5277744.491292458]]]},"properties":{"ID_SOURCE":"w144656396","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":153}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515283.1610959424,5277654.377958975],[515283.31858125527,5277651.599877908],[515286.17192343145,5277651.718509051],[515283.1610959424,5277654.377958975]]]},"properties":{"ID_SOURCE":"w144656437","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":154}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516288.7234334682,5276918.047091509],[516286.74857284623,5276917.897085946],[516286.67905098264,5276918.585957919],[516284.1560785376,5276918.3788503595],[516283.97007653594,5276920.4344155025],[516274.3283532512,5276919.773964228],[516275.06217317283,5276909.817894094],[516277.5777323127,5276909.991635045],[516277.7027782694,5276908.247090627],[516283.7780159062,5276908.541925723],[516283.76693128824,5276909.82000178],[516286.8008095026,5276909.961854252],[516286.82573460776,5276909.106147936],[516293.0210771149,5276909.423556559],[516293.1221967748,5276908.1790743545],[516295.9684369304,5276908.275950691],[516297.1896042267,5276909.368537772],[516297.07808047754,5276911.646590428],[516296.0176352641,5276912.165979456],[516295.57916268066,5276918.5552878],[516288.7234334682,5276918.047091509]]]},"properties":{"ID_SOURCE":"w144656449","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":155}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516028.2097197617,5277614.481813237],[516028.7579649299,5277617.195134832],[516023.80637906847,5277618.181762628],[516019.8540925494,5277618.982206594],[516020.04671223677,5277619.938539282],[516016.8909042239,5277620.574467248],[516015.09797708126,5277611.700575431],[516027.1576430682,5277609.288686176],[516028.2097197617,5277614.481813237]]]},"properties":{"ID_SOURCE":"w144656464","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":156}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515286.17192343145,5277651.718509051],[515288.6497873565,5277651.836155523],[515289.77301101456,5277653.061642958],[515289.76892457996,5277654.617589156],[515290.89535847056,5277654.620547655],[515293.3793521711,5277652.404276846],[515296.898625521,5277656.303415227],[515293.0597008944,5277659.738662715],[515292.3832572754,5277659.959165367],[515291.7833688662,5277659.624170272],[515290.12747260067,5277661.064638152],[515290.50178253814,5277661.51018038],[515290.19935724215,5277662.287364554],[515286.51092323597,5277665.61187183],[515283.0667441336,5277661.712936814],[515285.55102363916,5277659.385523637],[515285.70413281216,5277658.274527836],[515284.12741813896,5277658.159248382],[515283.0041942859,5277656.933762028],[515283.1610959424,5277654.377958975],[515286.17192343145,5277651.718509051]]]},"properties":{"ID_SOURCE":"w144656473","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":157}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515476.1476164972,5277658.333119553],[515476.22093935875,5277659.000153267],[515472.7656583024,5277659.324388287],[515472.6923350502,5277658.65735462],[515471.7308166991,5277658.765939014],[515470.8143557152,5277658.874643304],[515470.9610026269,5277660.208710589],[515470.4341525955,5277660.651869723],[515469.7577022655,5277660.872351779],[515469.1569381282,5277660.870755425],[515468.4813737733,5277660.757820587],[515468.18128699367,5277660.645883455],[515468.1073726474,5277660.201127874],[515465.7037253273,5277660.417021543],[515465.63099177217,5277659.527709938],[515463.077153208,5277659.743205703],[515464.0294826167,5277668.748058949],[515457.34392502374,5277669.50828267],[515455.5850082217,5277653.166062593],[515464.7493304471,5277652.190141222],[515464.6765966351,5277651.300829643],[515467.90659504064,5277650.975991238],[515467.8341569812,5277649.97554061],[515469.1119644075,5277649.5343765905],[515471.21582438913,5277649.095408025],[515473.39389418665,5277648.990056855],[515475.1955994242,5277649.217125424],[515475.2680362302,5277650.217576149],[515482.40448795306,5277649.347432215],[515483.0652744578,5277655.01731927],[515480.43604211527,5277655.343746715],[515480.72992272273,5277657.7896037465],[515476.1476164972,5277658.333119553]]]},"properties":{"ID_SOURCE":"w144656479","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":158}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.3798087214,5277720.109215278],[516047.08015691256,5277721.228056728],[516047.38237408164,5277720.562050611],[516080.53619276365,5277734.43487802],[516076.07584214327,5277745.203126536],[516045.9975844525,5277732.561338906],[516043.3527338807,5277738.555602249],[516039.90267244924,5277736.990137297],[516039.22192222404,5277738.7664995445],[516035.99683732545,5277737.312796623],[516036.6769744212,5277735.7587120505],[516033.1515088755,5277734.30418327],[516034.66319631384,5277730.751871144],[516034.0630514645,5277730.527938439],[516034.895827094,5277728.085155166],[516033.4611210419,5277728.225685426],[516016.49274146045,5277729.812732791],[516016.928937774,5277735.037506419],[516020.6848899919,5277734.603281961],[516022.13478228764,5277753.50104924],[516009.06500547816,5277754.687631545],[516007.463048383,5277736.45628874],[516011.894544337,5277736.1350560505],[516011.38538866874,5277730.132103115],[516000.94478999544,5277730.992516042],[515999.6999478663,5277719.430549254],[516035.9051207132,5277716.084830089],[516036.80656472547,5277715.97617337],[516036.8074831926,5277715.642756318],[516044.6084623813,5277718.887306964],[516044.3813402239,5277719.553520185],[516044.3798087214,5277720.109215278]]]},"properties":{"ID_SOURCE":"w144656482","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":159}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515592.2078632314,5276915.451335704],[515582.075807497,5276912.756862035],[515583.74477732065,5276906.5375063745],[515583.1445301552,5276906.3136206735],[515583.4476279855,5276905.314174712],[515583.9730674129,5276905.426720564],[515584.73155626934,5276902.6502586035],[515585.7821380708,5276902.986489468],[515587.75540365523,5276895.323133714],[515592.48376998736,5276896.558329331],[515594.75984953565,5276888.006669425],[515592.5081728242,5276887.444941329],[515592.7355725118,5276886.667572518],[515590.258876102,5276885.994103083],[515590.9419673042,5276883.328579798],[515590.11610380514,5276883.215229006],[515590.4957973517,5276881.660290138],[515616.464143802,5276888.509394339],[515614.8699413478,5276894.840080808],[515604.6630523624,5276892.0342277065],[515605.04215357086,5276890.701567515],[515596.33587414306,5276888.455449052],[515596.1081763767,5276889.343956598],[515595.04598456976,5276893.34214012],[515598.723768471,5276894.241108275],[515597.3578797232,5276899.461014327],[515600.0598855875,5276900.135090427],[515597.70720914635,5276909.242241661],[515593.05395945086,5276908.007242864],[515593.81304756127,5276905.008504305],[515590.6607091391,5276904.222085682],[515588.9914337471,5276910.552578238],[515593.26945394475,5276911.6754293],[515592.2078632314,5276915.451335704]]]},"properties":{"ID_SOURCE":"w144656493","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":160}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516247.9897223786,5277522.289267461],[516246.7065547927,5277524.619623329],[516244.37419717957,5277526.169073008],[516242.3456405074,5277526.49683284],[516216.75593892095,5277522.491147223],[516221.55654241017,5277494.875156063],[516244.0753034128,5277498.716697125],[516242.9296146259,5277505.604170952],[516242.2422646323,5277509.714427591],[516230.1571456758,5277507.680207715],[516229.4688755027,5277512.1238828],[516243.20519873925,5277514.496127445],[516245.2309686051,5277515.16861874],[516247.25332631846,5277517.063639535],[516248.22245849477,5277519.62256064],[516247.9897223786,5277522.289267461]]]},"properties":{"ID_SOURCE":"w144656494","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":161}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515420.9839575108,5277314.542588297],[515425.2785871019,5277314.965181608],[515424.961902949,5277318.276306687],[515414.30787027447,5277317.247833362],[515414.52400547033,5277315.036724889],[515412.37667569745,5277314.830988753],[515412.17591433186,5277316.908770315],[515405.3134842538,5277316.2459985195],[515405.7767584802,5277311.457101882],[515408.9001252602,5277311.765444346],[515409.0004613024,5277310.743224356],[515409.1239450753,5277309.487672199],[515407.26193444495,5277309.304921025],[515407.67876841495,5277305.03825842],[515413.69278631674,5277305.620989028],[515413.5382905279,5277307.243220105],[515417.11217133194,5277307.586101546],[515416.81875716825,5277310.619439296],[515421.32364058425,5277311.053700374],[515420.9839575108,5277314.542588297]]]},"properties":{"ID_SOURCE":"w144656502","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":162}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515905.4739434209,5277547.683582485],[515912.7498458417,5277550.815379787],[515910.25585285417,5277556.58783429],[515908.4556536792,5277555.804936183],[515906.26387619233,5277560.911379302],[515907.9886735836,5277561.8052105345],[515907.15714271815,5277563.803455281],[515901.2311750935,5277561.34219067],[515902.138104676,5277559.233011218],[515892.2371535151,5277554.871522815],[515892.76647247205,5277553.539289909],[515889.7662359058,5277552.197422735],[515889.16151728283,5277553.640589946],[515878.6603774615,5277549.055207129],[515877.7537579503,5277551.053251196],[515856.9010234225,5277542.105232877],[515861.737514855,5277531.004426482],[515866.1631009099,5277532.905862387],[515866.9943191126,5277531.018750889],[515869.46949740185,5277532.136895346],[515869.6947889685,5277532.137509452],[515874.1203715921,5277534.038951415],[515874.2702628877,5277534.150499926],[515884.2463598204,5277538.5121624125],[515891.67247916036,5277541.64434306],[515891.143766111,5277542.754298066],[515894.2938979001,5277544.207714948],[515895.04972316226,5277542.431541376],[515895.499698625,5277542.655049555],[515894.7441766773,5277544.32008408],[515897.8946102151,5277545.662363928],[515898.34792377,5277544.663343443],[515898.49811782746,5277544.663753591],[515905.4739434209,5277547.683582485]]]},"properties":{"ID_SOURCE":"w144656512","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":163}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516287.93228224094,5277149.860202771],[516293.7955356759,5277147.987230883],[516295.6746448076,5277147.436790657],[516295.9722540399,5277148.437881659],[516303.9402396403,5277145.903972187],[516313.48662430514,5277142.929936474],[516314.2410718799,5277141.709512615],[516320.9921737129,5277144.618066646],[516320.0105495,5277146.504691626],[516324.79714656295,5277153.631056283],[516314.71602842933,5277159.826629046],[516312.16505112295,5277158.930363561],[516312.3161892348,5277158.59736761],[516308.8655431093,5277157.14288424],[516289.7734567484,5277162.868708632],[516289.5506382623,5277161.978966955],[516286.39386832976,5277162.859254633],[516286.61668726325,5277163.748996193],[516280.45304428705,5277165.621135345],[516279.5592787875,5277162.951281457],[516267.90915904514,5277166.25291395],[516267.5358229853,5277165.473892379],[516264.67977646017,5277166.24389221],[516264.90228811867,5277167.244771853],[516258.738966273,5277169.005795054],[516255.24020477594,5277157.882047774],[516263.95949052146,5277155.2390414085],[516263.66218658234,5277154.126813125],[516273.2836390038,5277151.152921317],[516273.6560433653,5277152.265359987],[516277.2643618143,5277151.052908332],[516277.56259540806,5277151.831720558],[516278.2332323158,5277153.722971769],[516286.3517179542,5277151.078319251],[516286.12827676005,5277150.410855556],[516287.93228224094,5277149.860202771]]]},"properties":{"ID_SOURCE":"w144656521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":164}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515705.7547289102,5277588.440926021],[515715.88060008624,5277592.969413985],[515720.41411359323,5277582.7123355055],[515710.340945572,5277578.128412116],[515719.9063916702,5277556.593110199],[515766.83028705,5277577.658740361],[515757.5587498353,5277598.761316808],[515766.9866494443,5277603.110181196],[515776.60404972924,5277581.8640749715],[515794.38025198533,5277589.903226518],[515783.42495001934,5277614.335389388],[515792.23264033865,5277614.759377895],[515797.54884318175,5277620.530843854],[515801.7570021332,5277611.217633296],[515810.7346041822,5277615.443092873],[515807.4556067303,5277622.7360750865],[515838.6570897413,5277636.957863981],[515827.27912924514,5277662.133433619],[515804.1779215048,5277651.679100901],[515809.216649427,5277640.7010527225],[515800.46310603,5277636.942990498],[515803.37975589413,5277630.338087557],[515796.1342349734,5277627.095368954],[515783.2900028168,5277655.801291575],[515774.97949981806,5277652.055582676],[515767.284048397,5277648.5782870315],[515777.23435828264,5277626.388393852],[515769.90594146925,5277623.245509195],[515759.4352975672,5277646.245326822],[515742.5063904654,5277638.730928898],[515753.81653220736,5277613.521670637],[515746.3911229423,5277610.134045734],[515735.5562436513,5277634.555510006],[515693.5151634517,5277615.837224672],[515705.7547289102,5277588.440926021]]]},"properties":{"ID_SOURCE":"w144656525","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":165}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516262.89422053733,5277375.292878489],[516257.0398946462,5277374.053990829],[516258.94375639915,5277364.612422286],[516264.79840187903,5277365.7401728695],[516262.89422053733,5277375.292878489]]]},"properties":{"ID_SOURCE":"w144656528","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":166}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516039.8650475697,5277429.010427161],[516045.094140762,5277428.213514946],[516045.72139032243,5277432.238504809],[516040.4847601839,5277433.0465096645],[516039.8650475697,5277429.010427161]]]},"properties":{"ID_SOURCE":"w144656530","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":167}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516205.83041860035,5277424.924405527],[516205.9107762201,5277423.035252151],[516208.4638194388,5277423.1534989225],[516208.38346099324,5277425.042652267],[516205.83041860035,5277424.924405527]]]},"properties":{"ID_SOURCE":"w144656534","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":168}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.8594025278,5277538.278723947],[516166.6170360095,5277537.2888985295],[516167.2116405101,5277539.513346544],[516163.5291054475,5277540.503380073],[516162.8594025278,5277538.278723947]]]},"properties":{"ID_SOURCE":"w144656543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":169}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516227.55823645106,5277219.554098709],[516236.948059921,5277218.802297506],[516237.16716500977,5277221.025704397],[516227.7022438918,5277221.777295927],[516227.55823645106,5277219.554098709]]]},"properties":{"ID_SOURCE":"w144656550","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":170}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516265.5637593341,5277037.991060116],[516264.95951584505,5277039.211909662],[516263.7745248485,5277038.619558995],[516262.4845127639,5277037.982459349],[516263.01396267413,5277036.65026089],[516265.5637593341,5277037.991060116]]]},"properties":{"ID_SOURCE":"w144656558","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":171}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515696.04617182293,5276844.045210128],[515692.9644273121,5276844.926021717],[515692.5176845239,5276843.48000202],[515695.5997292874,5276842.488051323],[515696.04617182293,5276844.045210128]]]},"properties":{"ID_SOURCE":"w144656563","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":172}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516245.2418158519,5277234.051583808],[516254.481416276,5277233.299391841],[516254.62541305786,5277235.522589795],[516245.2356141068,5277236.274362451],[516245.2418158519,5277234.051583808]]]},"properties":{"ID_SOURCE":"w144656564","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":173}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516202.221580835,5277221.284004248],[516200.8694498378,5277221.391381637],[516200.5811051034,5277217.056127522],[516201.85813583666,5277216.948541083],[516202.221580835,5277221.284004248]]]},"properties":{"ID_SOURCE":"w144656565","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":174}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516158.2751439952,5277052.3627957795],[516154.9924875843,5277044.462764699],[516165.66952486604,5277040.046806854],[516168.8767573024,5277048.057774276],[516163.7338509585,5277050.144037084],[516158.2751439952,5277052.3627957795]]]},"properties":{"ID_SOURCE":"w144656566","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":175}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516230.3121659417,5277020.999451379],[516230.9027731165,5277024.668709667],[516226.61969163595,5277025.434750716],[516225.9542877595,5277021.654144689],[516230.3121659417,5277020.999451379]]]},"properties":{"ID_SOURCE":"w144656571","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":176}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515669.08387875365,5277206.510316856],[515672.1788902061,5277200.62824063],[515681.6907340474,5277210.323008058],[515677.09758299397,5277214.7562288],[515669.08387875365,5277206.510316856]]]},"properties":{"ID_SOURCE":"w144656575","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":177}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516219.08622691775,5277233.222915592],[516216.9079867685,5277233.327988102],[516215.96169723343,5277222.544792619],[516218.2150425907,5277222.439928934],[516219.08622691775,5277233.222915592]]]},"properties":{"ID_SOURCE":"w144656576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":178}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515675.82265402813,5277241.982032933],[515676.2011509211,5277240.87165453],[515681.9043323813,5277242.554108521],[515681.6009354095,5277243.664688825],[515675.82265402813,5277241.982032933]]]},"properties":{"ID_SOURCE":"w144656581","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":179}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.54155870253,5277508.975105312],[515394.0146221846,5277507.965520721],[515394.9263717792,5277503.966900048],[515398.52870204416,5277504.865544819],[515397.54155870253,5277508.975105312]]]},"properties":{"ID_SOURCE":"w144656582","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":180}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.73038965615,5277372.093967354],[515453.70536505006,5277371.088334347],[515454.1586155783,5277370.089279692],[515456.33383896295,5277371.095311585],[515455.73038965615,5277372.093967354]]]},"properties":{"ID_SOURCE":"w144656583","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":181}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516012.369461545,5277235.784897875],[516014.1010643706,5277234.233703354],[516014.4710672654,5277236.235236968],[516013.58432514523,5277236.432849687],[516012.5172184164,5277236.674422424],[516012.369461545,5277235.784897875]]]},"properties":{"ID_SOURCE":"w144656584","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":182}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516145.60772419523,5277449.541268563],[516144.10575893853,5277449.537103563],[516144.49758404866,5277443.647779363],[516146.0743409501,5277443.763291696],[516145.60772419523,5277449.541268563]]]},"properties":{"ID_SOURCE":"w144656587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":183}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.1533859891,5277389.3252927],[516071.6731872376,5277381.430280264],[516074.45308275585,5277380.993395338],[516075.8584856816,5277388.7770621665],[516073.1533859891,5277389.3252927]]]},"properties":{"ID_SOURCE":"w144656615","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":184}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.0579534657,5277234.617541364],[516200.4039995264,5277226.724796532],[516202.582551088,5277226.508578912],[516203.3112938563,5277234.512671925],[516201.0579534657,5277234.617541364]]]},"properties":{"ID_SOURCE":"w144656617","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":185}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.1347253229,5277671.750368096],[516111.8102093609,5277667.726288635],[516114.1596132814,5277662.698155534],[516116.1161859826,5277658.513598855],[516124.5158077386,5277662.537892384],[516120.1347253229,5277671.750368096]]]},"properties":{"ID_SOURCE":"w144656621","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":186}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516188.55985533894,5277262.056535942],[516185.55551908887,5277262.159323327],[516185.48999583506,5277258.713807508],[516188.4192331317,5277258.610811278],[516188.55985533894,5277262.056535942]]]},"properties":{"ID_SOURCE":"w144656623","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":187}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515707.31512695155,5277232.731166514],[515699.8125141909,5277229.932437947],[515702.7624376164,5277222.160610818],[515710.18965799885,5277225.070279428],[515707.31512695155,5277232.731166514]]]},"properties":{"ID_SOURCE":"w144656629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":188}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9361213361,5277408.11476621],[516156.32086752437,5277404.781639295],[516166.6078656609,5277405.365893529],[516166.4481013852,5277408.810784322],[516155.9361213361,5277408.11476621]]]},"properties":{"ID_SOURCE":"w144656630","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":189}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516270.69036727457,5277031.003577895],[516273.85372899106,5277027.789364911],[516274.6035235473,5277028.2360195555],[516272.715370906,5277032.009494548],[516270.69036727457,5277031.003577895]]]},"properties":{"ID_SOURCE":"w144656635","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":190}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.34611828224,5277260.13613106],[516136.29440039303,5277260.244356027],[516136.2229957934,5277258.9104806455],[516137.3495066162,5277258.913602749],[516137.347658433,5277259.580436371],[516137.34611828224,5277260.13613106]]]},"properties":{"ID_SOURCE":"w144656668","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":191}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515668.35637554235,5277755.872318404],[515680.445659356,5277756.238288167],[515680.4438632196,5277756.905122341],[515668.27948650264,5277756.538950462],[515668.35637554235,5277755.872318404]]]},"properties":{"ID_SOURCE":"w144656672","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":192}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516273.80861436826,5276802.064418937],[516270.8903249574,5276798.166373856],[516275.55625707057,5276794.845221147],[516278.47423437383,5276798.854407403],[516273.80861436826,5276802.064418937]]]},"properties":{"ID_SOURCE":"w144656673","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":193}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515618.7087602603,5277451.660407042],[515613.8503536864,5277448.6799436],[515609.4117774775,5277445.967345288],[515613.4852662354,5277439.1987418085],[515622.9318560856,5277445.114490976],[515618.7087602603,5277451.660407042]]]},"properties":{"ID_SOURCE":"w144656674","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":194}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.90756106406,5276917.560347263],[516168.91893925157,5276913.856648932],[516174.3681700469,5276912.393623892],[516175.35675777984,5276916.108437033],[516169.90756106406,5276917.560347263]]]},"properties":{"ID_SOURCE":"w144656683","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":195}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516152.56653700303,5277215.055581303],[516150.92166466155,5277215.106588299],[516148.96136694873,5277215.156720909],[516148.964449425,5277214.045331614],[516152.5696201661,5277213.94419201],[516152.56653700303,5277215.055581303]]]},"properties":{"ID_SOURCE":"w144656689","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":196}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516171.73739171476,5277289.016758203],[516171.7021567149,5277288.183111839],[516171.666613014,5277287.460604421],[516175.3468391322,5277287.359687601],[516175.34251651354,5277288.915632791],[516171.73739171476,5277289.016758203]]]},"properties":{"ID_SOURCE":"w144656691","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":197}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.0922110434,5277160.964582702],[515678.60143281147,5277158.301292876],[515681.30091459793,5277159.8645186275],[515679.7916919888,5277162.52780776],[515677.0922110434,5277160.964582702]]]},"properties":{"ID_SOURCE":"w144656694","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":198}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516242.9639708947,5277466.371902897],[516243.1163374771,5277465.594349124],[516245.06795668264,5277465.933213834],[516244.99068789167,5277466.7109771],[516242.9639708947,5277466.371902897]]]},"properties":{"ID_SOURCE":"w144656696","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":199}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516245.21105702827,5277218.158507204],[516253.24875224684,5277217.514099691],[516253.39306017815,5277219.626158632],[516245.4301589913,5277220.381914404],[516245.21105702827,5277218.158507204]]]},"properties":{"ID_SOURCE":"w144656699","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":200}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516192.2792790067,5277463.896781837],[516194.834468582,5277463.237049875],[516195.72637068876,5277466.573725869],[516193.24628050835,5277467.233666315],[516192.2792790067,5277463.896781837]]]},"properties":{"ID_SOURCE":"w144656701","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":201}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515752.72014009353,5277716.200788726],[515750.6913774061,5277716.639858771],[515750.1729301626,5277713.9711000845],[515752.20139301574,5277713.64316888],[515752.72014009353,5277716.200788726]]]},"properties":{"ID_SOURCE":"w144656702","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":202}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516055.3983923528,5277291.806701792],[516054.95453271613,5277289.360402503],[516058.41098688316,5277288.703095809],[516058.85484512144,5277291.149395361],[516055.3983923528,5277291.806701792]]]},"properties":{"ID_SOURCE":"w144656709","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":203}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516200.34935927804,5277478.478550172],[516199.4577709302,5277475.030734424],[516201.5620595149,5277474.480890671],[516202.52905389847,5277477.817776764],[516200.34935927804,5277478.478550172]]]},"properties":{"ID_SOURCE":"w144656710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":204}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.0392120289,5277534.65327114],[516180.8199693788,5277533.88302009],[516181.48935706494,5277536.218817265],[516178.9320390405,5277537.656527983],[516178.0392120289,5277534.65327114]]]},"properties":{"ID_SOURCE":"w144656715","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":205}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516080.2476007529,5276968.791986335],[516073.5583950943,5276970.551753559],[516072.740835792,5276967.437584296],[516079.43004476844,5276965.677816137],[516080.2476007529,5276968.791986335]]]},"properties":{"ID_SOURCE":"w144656716","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":206}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516198.07543629454,5277459.0227523185],[516200.0295342217,5277458.472490146],[516200.8472637877,5277461.475541027],[516198.81837790867,5277461.914455007],[516198.07543629454,5277459.0227523185]]]},"properties":{"ID_SOURCE":"w144656717","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":207}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515450.97195147746,5277750.178866365],[515457.0675789984,5277745.304896238],[515458.5644505246,5277747.198247654],[515452.46852871065,5277752.183355256],[515450.97195147746,5277750.178866365]]]},"properties":{"ID_SOURCE":"w144656721","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":208}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516122.16542945703,5276965.462562196],[516111.8684242388,5276968.212555264],[516109.26467246335,5276959.203032738],[516113.9170602047,5276957.982254326],[516119.7119015696,5276956.453450891],[516122.16542945703,5276965.462562196]]]},"properties":{"ID_SOURCE":"w144656725","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":209}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.42212171823,5277056.419905494],[516211.35962335014,5277057.400496291],[516210.7686979398,5277053.842378719],[516218.1316140433,5277052.862623926],[516218.42212171823,5277056.419905494]]]},"properties":{"ID_SOURCE":"w144656727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":210}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.8139863442,5277369.083275847],[515495.38515551906,5277371.310252163],[515492.819657478,5277373.037204971],[515489.29117620137,5277375.4062074805],[515487.6449065924,5277373.179033028],[515493.8139863442,5277369.083275847]]]},"properties":{"ID_SOURCE":"w144656728","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":211}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515421.55584393104,5277713.869290363],[515410.2548447406,5277727.7318401765],[515401.26347993646,5277720.15053954],[515412.1884091032,5277706.5092564495],[515421.55584393104,5277713.869290363]]]},"properties":{"ID_SOURCE":"w144656729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":212}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516060.14811985055,5277203.463674867],[516060.1508788112,5277202.463424512],[516063.0053470196,5277202.249019059],[516063.0779956124,5277203.138337671],[516061.28251939773,5277203.33343623],[516060.14811985055,5277203.463674867]]]},"properties":{"ID_SOURCE":"w144656731","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":213}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516206.9540631841,5277641.761372643],[516206.796136775,5277644.539429627],[516205.6700099057,5277644.425154909],[516205.9030315669,5277641.647306936],[516206.9540631841,5277641.761372643]]]},"properties":{"ID_SOURCE":"w144656745","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":214}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516198.0961671327,5277375.990246944],[516197.85374354897,5277379.4460208295],[516196.0742024167,5277379.329930468],[516196.1615108039,5277377.640848109],[516196.2790444238,5277375.885165948],[516198.0961671327,5277375.990246944]]]},"properties":{"ID_SOURCE":"w144656750","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":215}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516115.02794932824,5277074.915455718],[516112.56984478486,5277067.573429348],[516120.8398110334,5277064.484406346],[516123.5986267878,5277071.716129139],[516119.8921962164,5277073.095113974],[516115.02794932824,5277074.915455718]]]},"properties":{"ID_SOURCE":"w144656755","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":216}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515420.6217981646,5277272.641951087],[515426.3217819973,5277275.546683132],[515424.5859324348,5277278.7651363835],[515418.81114474114,5277275.7490681885],[515420.6217981646,5277272.641951087]]]},"properties":{"ID_SOURCE":"w144656756","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":217}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516184.16210360033,5277115.006377013],[516183.86972478736,5277112.1159303365],[516185.0716755736,5277112.00813144],[516185.2179265107,5277113.431127026],[516185.36405379814,5277114.898578179],[516184.16210360033,5277115.006377013]]]},"properties":{"ID_SOURCE":"w144656757","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":218}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515654.06666222855,5277065.65589352],[515658.3466480199,5277066.000820594],[515657.4041681019,5277081.335566581],[515653.0455053021,5277082.324105205],[515654.06666222855,5277065.65589352]]]},"properties":{"ID_SOURCE":"w144656759","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":219}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515606.0010994042,5277205.451778047],[515607.9653545673,5277201.122593612],[515610.89073546015,5277202.464112923],[515608.85137718293,5277206.793095051],[515606.0010994042,5277205.451778047]]]},"properties":{"ID_SOURCE":"w144656761","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":220}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515724.6652056351,5277204.326223015],[515726.55564886157,5277199.552319853],[515729.63180691627,5277200.672026708],[515727.6659599146,5277205.55686495],[515724.6652056351,5277204.326223015]]]},"properties":{"ID_SOURCE":"w144656766","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":221}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516154.03330959525,5277308.972775783],[516154.1016258591,5277311.418040961],[516150.57161546877,5277311.519387816],[516150.5029894372,5277309.185261626],[516152.4258904713,5277309.068342061],[516154.03330959525,5277308.972775783]]]},"properties":{"ID_SOURCE":"w144656768","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":222}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.4739445069,5277160.16337086],[516159.7024049836,5277160.505749337],[516159.23359514034,5277167.061695064],[516155.9300363666,5277166.719108451],[516156.4739445069,5277160.16337086]]]},"properties":{"ID_SOURCE":"w144656771","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":223}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515410.2548447406,5277727.7318401765],[515421.55584393104,5277713.869290363],[515424.4032638055,5277716.2107698135],[515418.2029460424,5277723.751851971],[515413.1025565631,5277729.962175126],[515410.2548447406,5277727.7318401765]]]},"properties":{"ID_SOURCE":"w144656772","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":224}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.8026481104,5277493.194674936],[516178.43595841335,5277499.9787434535],[516177.00817732915,5277500.3081955565],[516176.33998791483,5277497.538957024],[516175.374865461,5277493.524127441],[516176.8026481104,5277493.194674936]]]},"properties":{"ID_SOURCE":"w144656781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":225}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516190.5417107792,5276900.413251257],[516180.2436314287,5276903.496540096],[516178.3854517855,5276896.489574071],[516188.4579172133,5276893.516794438],[516189.34351463977,5276896.453345428],[516190.5417107792,5276900.413251257]]]},"properties":{"ID_SOURCE":"w144656784","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":226}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516143.09355324064,5277029.092478339],[516140.01183764497,5277029.973053526],[516139.3408333073,5277028.192957636],[516142.2732666249,5277026.978548995],[516143.09355324064,5277029.092478339]]]},"properties":{"ID_SOURCE":"w144656785","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":227}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515388.85539747885,5277755.1267650705],[515391.86592790904,5277752.578508425],[515397.93063707656,5277759.374074712],[515396.3500425687,5277760.736913904],[515394.84471935075,5277762.03326869],[515388.85539747885,5277755.1267650705]]]},"properties":{"ID_SOURCE":"w144656790","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":228}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516229.0100771546,5277237.562791944],[516228.79096962366,5277235.339385309],[516235.6267127137,5277234.80274335],[516235.77071665035,5277237.025940829],[516229.0100771546,5277237.562791944]]]},"properties":{"ID_SOURCE":"w144656792","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":229}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.9210161022,5277008.025637972],[516122.725049703,5277007.474934059],[516124.3647188268,5277012.036203874],[516122.41017095867,5277012.697630278],[516120.9210161022,5277008.025637972]]]},"properties":{"ID_SOURCE":"w144656795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":230}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516278.3875563938,5277394.007666649],[516278.99549544073,5277391.45315038],[516281.3213894004,5277392.237632896],[516280.6386612165,5277394.680799966],[516278.3875563938,5277394.007666649]]]},"properties":{"ID_SOURCE":"w144656801","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":231}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515536.7157228817,5277727.512268161],[515536.49281174457,5277726.622554728],[515538.89702781854,5277726.18441227],[515539.0448439425,5277727.073925354],[515537.8802833684,5277727.29309664],[515536.7157228817,5277727.512268161]]]},"properties":{"ID_SOURCE":"w144656803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":232}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516027.03892089875,5277335.962205159],[516027.9281855627,5277340.299105084],[516017.1828180758,5277342.492330433],[516016.2938514905,5277338.044293198],[516027.03892089875,5277335.962205159]]]},"properties":{"ID_SOURCE":"w144656807","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":233}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516079.9838131099,5277281.8719676435],[516079.0210120282,5277276.9791579945],[516082.96596723807,5277276.200961122],[516083.86111334787,5277281.115812503],[516079.9838131099,5277281.8719676435]]]},"properties":{"ID_SOURCE":"w144656808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":234}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515975.6390140786,5277525.269856193],[515970.6795447856,5277526.367647569],[515970.3132044765,5277523.032447991],[515975.04738456296,5277521.934038116],[515975.6390140786,5277525.269856193]]]},"properties":{"ID_SOURCE":"w144656810","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":235}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515409.718441617,5277476.443371884],[515415.604527458,5277477.059108801],[515422.857040184,5277477.811838961],[515422.01006135845,5277485.700518481],[515408.9462840622,5277484.443390998],[515409.718441617,5277476.443371884]]]},"properties":{"ID_SOURCE":"w144656815","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":236}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.1062026985,5277317.016680703],[516173.3170494638,5277315.13899942],[516174.883960576,5277318.810965766],[516170.59801601997,5277320.688437339],[516169.1062026985,5277317.016680703]]]},"properties":{"ID_SOURCE":"w144656818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":237}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516267.90915904514,5277166.25291395],[516264.90228811867,5277167.244771853],[516264.67977646017,5277166.24389221],[516267.5358229853,5277165.473892379],[516267.90915904514,5277166.25291395]]]},"properties":{"ID_SOURCE":"w144656822","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":238}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515264.771619884,5277679.558442187],[515258.3841525328,5277681.208794095],[515256.7489501323,5277674.758401167],[515263.13642407325,5277673.108047467],[515264.771619884,5277679.558442187]]]},"properties":{"ID_SOURCE":"w144656824","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":239}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.32569932606,5277450.038484958],[516081.2025772328,5277438.804736106],[516088.4926500459,5277436.824359802],[516089.84534360515,5277441.92941556],[516091.4655626259,5277448.057697434],[516084.32569932606,5277450.038484958]]]},"properties":{"ID_SOURCE":"w144656833","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":240}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516153.1521906211,5277166.377982125],[516153.69547899725,5277160.044522125],[516156.4739445069,5277160.16337086],[516155.9300363666,5277166.719108451],[516153.1521906211,5277166.377982125]]]},"properties":{"ID_SOURCE":"w144656836","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":241}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516158.4002941879,5277548.491211817],[516159.60801564367,5277546.2717670305],[516163.3659519705,5277545.1708005285],[516160.79969569447,5277549.831549852],[516158.4002941879,5277548.491211817]]]},"properties":{"ID_SOURCE":"w144656837","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":242}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515211.373538131,5277710.204393273],[515207.6135686033,5277712.195086109],[515206.56746622466,5277710.191837404],[515210.3274366807,5277708.201143899],[515211.373538131,5277710.204393273]]]},"properties":{"ID_SOURCE":"w144656844","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":243}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516018.51823432016,5277261.097224239],[516018.72570320225,5277262.1202810025],[516019.16277342994,5277264.310937165],[516017.7198625913,5277264.662614785],[516017.09809752007,5277261.3600528445],[516018.51823432016,5277261.097224239]]]},"properties":{"ID_SOURCE":"w144656846","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":244}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515334.8984151101,5277211.066423092],[515340.69474327174,5277211.648504385],[515340.4325469638,5277214.248482745],[515334.6361920967,5277213.677515597],[515334.8984151101,5277211.066423092]]]},"properties":{"ID_SOURCE":"w144656848","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":245}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515340.69474327174,5277211.648504385],[515334.8984151101,5277211.066423092],[515335.4658278063,5277203.788266746],[515341.2775348417,5277204.237021434],[515340.69474327174,5277211.648504385]]]},"properties":{"ID_SOURCE":"w144656850","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":246}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516080.79214503214,5276934.78473223],[516073.45638471626,5276936.764993649],[516066.9624170493,5276938.525307456],[516064.88125088613,5276930.628644822],[516078.63589121884,5276926.88785728],[516080.79214503214,5276934.78473223]]]},"properties":{"ID_SOURCE":"w144656855","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":247}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515377.4667514132,5277347.324852382],[515374.990813858,5277346.429195726],[515375.6711124834,5277344.763896226],[515378.07165751804,5277345.770493768],[515377.4667514132,5277347.324852382]]]},"properties":{"ID_SOURCE":"w144656858","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":248}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515358.2451798635,5277602.006436774],[515354.7048094554,5277606.109269943],[515352.3072988757,5277603.991291347],[515355.92276516516,5277599.888654811],[515358.2451798635,5277602.006436774]]]},"properties":{"ID_SOURCE":"w144656859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":249}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516289.7734567484,5277162.868708632],[516286.61668726325,5277163.748996193],[516286.39386832976,5277162.859254633],[516289.5506382623,5277161.978966955],[516289.7734567484,5277162.868708632]]]},"properties":{"ID_SOURCE":"w144656867","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":250}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515873.0424989721,5277700.756869482],[515872.38633978384,5277693.530990695],[515878.8466409956,5277692.7706290325],[515879.35169276665,5277700.329515943],[515873.0424989721,5277700.756869482]]]},"properties":{"ID_SOURCE":"w144656869","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":251}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516119.57489226875,5277195.848108742],[516119.1022699037,5277190.234241546],[516118.6296465832,5277184.620374436],[516126.51686197636,5277184.08651506],[516127.3869910128,5277195.314042651],[516119.57489226875,5277195.848108742]]]},"properties":{"ID_SOURCE":"w144656870","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":252}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515635.9798770052,5277228.538131948],[515635.7560659738,5277227.9818322295],[515640.94252054597,5277226.328666191],[515641.166331147,5277226.884966107],[515635.9798770052,5277228.538131948]]]},"properties":{"ID_SOURCE":"w144656873","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":253}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.5280390105,5277486.706177973],[516195.7411812089,5277488.246034894],[516194.76055632636,5277484.408982708],[516200.4946327024,5277482.94677582],[516201.5280390105,5277486.706177973]]]},"properties":{"ID_SOURCE":"w144656877","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":254}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515703.83087862644,5276909.527471614],[515702.0268550217,5276910.078305198],[515701.73033005575,5276908.632689671],[515703.4589491285,5276908.192792335],[515703.83087862644,5276909.527471614]]]},"properties":{"ID_SOURCE":"w144656880","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":255}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515326.47272325045,5277518.901299633],[515330.0914427449,5277513.576118645],[515331.06595313427,5277514.245523308],[515327.3721358226,5277519.5705059925],[515326.47272325045,5277518.901299633]]]},"properties":{"ID_SOURCE":"w144656886","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":256}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515415.3844257619,5277693.481019908],[515418.6047396258,5277693.967449148],[515418.299355393,5277695.8560169395],[515415.0717390412,5277695.291770668],[515415.3844257619,5277693.481019908]]]},"properties":{"ID_SOURCE":"w144656889","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":257}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515628.6153281381,5277062.36447394],[515627.95669966633,5277055.916603156],[515654.3257352266,5277053.097802781],[515655.0597369426,5277059.4347396],[515628.6153281381,5277062.36447394]]]},"properties":{"ID_SOURCE":"w144656891","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":258}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515249.057203749,5277686.96362463],[515252.5948300221,5277683.860978131],[515256.1138201469,5277687.871231049],[515252.57619440934,5277690.973875428],[515249.057203749,5277686.96362463]]]},"properties":{"ID_SOURCE":"w144656892","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":259}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515240.2672219499,5277631.037299222],[515242.824847244,5277629.376898583],[515244.02201672527,5277631.04712978],[515241.38871401723,5277632.929611316],[515240.2672219499,5277631.037299222]]]},"properties":{"ID_SOURCE":"w144656896","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":260}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.0420315912,5277045.629822663],[516171.9099098308,5277037.619060442],[516183.940073611,5277032.762335213],[516187.0712546447,5277041.106520573],[516180.5529222829,5277043.555706339],[516175.0420315912,5277045.629822663]]]},"properties":{"ID_SOURCE":"w144656902","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":261}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.53789942345,5277290.211744121],[516081.0201781151,5277287.320679627],[516084.4015361494,5277286.663180934],[516084.9189488103,5277289.665384672],[516081.53789942345,5277290.211744121]]]},"properties":{"ID_SOURCE":"w144656906","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":262}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.89142670005,5277504.371655525],[516040.2437950441,5277504.153101644],[516040.91109906643,5277507.266855284],[516039.48332772,5277507.596341097],[516038.89142670005,5277504.371655525]]]},"properties":{"ID_SOURCE":"w144656908","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":263}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516126.1582607928,5277286.445264595],[516126.0862386048,5277285.333667167],[516128.11394887563,5277285.339283604],[516128.1111781663,5277286.339534082],[516127.0220381361,5277286.40320113],[516126.1582607928,5277286.445264595]]]},"properties":{"ID_SOURCE":"w144656910","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":264}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515507.7762362284,5277371.45438292],[515504.77996129077,5277368.556769463],[515509.5999344231,5277363.457178659],[515512.6716050524,5277366.243855704],[515507.7762362284,5277371.45438292]]]},"properties":{"ID_SOURCE":"w144656913","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":265}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.4220629415,5277211.723757573],[516199.2435058973,5277211.939975632],[516198.5898559019,5277203.936092368],[516200.76810667804,5277203.831012989],[516201.4220629415,5277211.723757573]]]},"properties":{"ID_SOURCE":"w144656915","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":266}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515679.0248110042,5277168.416148415],[515675.50824788556,5277166.2839112645],[515677.613136913,5277162.744220973],[515681.06243892707,5277164.754024528],[515679.0248110042,5277168.416148415]]]},"properties":{"ID_SOURCE":"w144656919","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":267}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516029.78717286524,5277608.873594352],[516031.25491963245,5277615.834990004],[516031.60331127886,5277617.491933038],[516031.8925134156,5277618.826407556],[516029.2629267525,5277619.263726226],[516028.7579649299,5277617.195134832],[516028.2097197617,5277614.481813237],[516027.1576430682,5277609.288686176],[516029.78717286524,5277608.873594352]]]},"properties":{"ID_SOURCE":"w144656921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":268}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.6231701449,5277241.465414279],[516137.6284067186,5277239.5760524],[516138.4545173987,5277239.578342115],[516138.4893878465,5277240.5453549195],[516138.52468955383,5277241.356773221],[516137.6231701449,5277241.465414279]]]},"properties":{"ID_SOURCE":"w144656926","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":269}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515651.3865583158,5277755.270970555],[515661.59848676214,5277755.631854135],[515661.52159849455,5277756.298486281],[515651.3844667065,5277756.048943755],[515651.3865583158,5277755.270970555]]]},"properties":{"ID_SOURCE":"w144656927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":270}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515591.37307701947,5276918.6721511865],[515581.3164290339,5276915.866741029],[515582.075807497,5276912.756862035],[515592.2078632314,5276915.451335704],[515591.37307701947,5276918.6721511865]]]},"properties":{"ID_SOURCE":"w144656938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":271}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.4396625941,5277202.757671189],[516216.6182236637,5277202.541458809],[516217.2718490575,5277210.545344134],[516215.01849911816,5277210.650208191],[516214.4396625941,5277202.757671189]]]},"properties":{"ID_SOURCE":"w144656942","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":272}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515717.2706770301,5276952.797072691],[515725.2924476429,5276949.817958499],[515725.8890531379,5276951.386639428],[515717.9126771475,5276954.243621663],[515717.2706770301,5276952.797072691]]]},"properties":{"ID_SOURCE":"w144656943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":273}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515983.29154900875,5277569.0132679045],[515980.1783648021,5277554.111984753],[515987.91822974005,5277552.354997333],[515989.91422285483,5277561.140525507],[515991.3314768188,5277567.368248702],[515983.29154900875,5277569.0132679045]]]},"properties":{"ID_SOURCE":"w144656944","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":274}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.26492978295,5277216.010020634],[515397.6166295872,5277225.013267567],[515388.2873647149,5277225.633214128],[515383.1194674257,5277225.975205271],[515382.61754279776,5277216.971562419],[515397.26492978295,5277216.010020634]]]},"properties":{"ID_SOURCE":"w144656949","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":275}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515345.0001949744,5277327.678601569],[515344.6930588767,5277330.234005865],[515343.4917553043,5277330.119700224],[515343.7234981804,5277327.67523691],[515345.0001949744,5277327.678601569]]]},"properties":{"ID_SOURCE":"w144656950","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":276}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515216.8103350177,5277325.230507308],[515212.64510746114,5277309.771202513],[515224.3697223375,5277306.356517298],[515226.69194700744,5277314.353535431],[515228.76109304396,5277321.483002875],[515216.8103350177,5277325.230507308]]]},"properties":{"ID_SOURCE":"w144656951","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sustenance","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":277}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516086.14205041673,5277010.0411100555],[516083.7614413669,5277001.810193082],[516087.3170555945,5277000.664162003],[516093.00753108464,5276998.834966499],[516095.61374744656,5277006.955371151],[516086.14205041673,5277010.0411100555]]]},"properties":{"ID_SOURCE":"w144656978","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":278}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516085.40056052845,5276925.01716448],[516096.8248196143,5276922.047961001],[516098.902873031,5276931.056023843],[516093.7091586118,5276932.47536966],[516087.6285332721,5276934.136777116],[516085.40056052845,5276925.01716448]]]},"properties":{"ID_SOURCE":"w144656991","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":279}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515702.0268550217,5276910.078305198],[515701.349409775,5276910.632176937],[515700.1459286503,5276911.295770124],[515698.9424478006,5276911.95936356],[515698.04058637196,5276912.179211601],[515697.66925493436,5276910.62225493],[515696.69228815037,5276910.841900713],[515692.2580864517,5276911.94134644],[515693.0749584345,5276915.38887817],[515697.50915767037,5276914.289433063],[515698.1788121405,5276916.625171787],[515696.9765309793,5276916.844210107],[515697.79399867874,5276920.069464769],[515699.8233340462,5276919.519237352],[515700.86401724967,5276923.523072128],[515693.5764326702,5276924.392544492],[515689.51956361765,5276924.826171091],[515687.73650523246,5276917.59728734],[515689.61533080396,5276917.157790573],[515689.22146590124,5276915.600773726],[515688.7978581596,5276913.932537084],[515684.8896956971,5276914.922266028],[515683.92350645305,5276911.140914236],[515683.6230856792,5276911.140105087],[515683.10213854734,5276909.360467031],[515683.4043554061,5276908.69444287],[515682.9579145836,5276907.137284876],[515683.7164504838,5276904.360835692],[515686.4974416249,5276903.590348782],[515686.86877650884,5276905.147304716],[515691.22757756745,5276904.158791383],[515690.93134908564,5276902.602037551],[515694.76441553136,5276901.612110232],[515695.13574833795,5276903.169066691],[515698.36737342674,5276902.399800066],[515697.69861616485,5276899.73064474],[515700.40420638944,5276899.071100884],[515704.61610070505,5276896.859664905],[515707.5885377351,5276908.648489063],[515703.83087862644,5276909.527471614],[515703.4589491285,5276908.192792335],[515701.73033005575,5276908.632689671],[515702.0268550217,5276910.078305198]]]},"properties":{"ID_SOURCE":"w144656992","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":280}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.699084173,5277598.649586543],[516203.551262005,5277596.229013786],[516203.8480973142,5277594.807249794],[516203.18774398684,5277594.627588104],[516203.4558089512,5277592.750070615],[516204.12398146384,5277592.818614241],[516204.3688991925,5277591.163312079],[516203.78361097525,5277590.994973247],[516204.036316729,5277589.239666884],[516204.6966706438,5277589.419328669],[516204.8587041242,5277587.863821705],[516207.6965775715,5277588.149571145],[516208.7668960116,5277581.339677839],[516211.4467911512,5277581.725015128],[516212.01735018933,5277579.092589374],[516210.83144293685,5277578.867007411],[516211.37320121145,5277575.789941993],[516212.4167659108,5277575.892873835],[516212.9275271574,5277573.160255796],[516216.8251812537,5277570.425957035],[516226.11837440165,5277571.807756881],[516225.39330957155,5277575.9845946375],[516226.8873298916,5277576.133240444],[516226.6424051558,5277577.788541633],[516227.24302315526,5277577.845785632],[516226.946181296,5277579.267548406],[516226.3377440205,5277579.321422501],[516226.17573555297,5277580.865814958],[516226.7763532389,5277580.92305891],[516226.45636315225,5277582.567036911],[516225.9461402705,5277582.410019055],[516225.73218391265,5277583.731987038],[516227.6535089845,5277584.148559639],[516227.02634873264,5277588.225644301],[516226.53687199875,5277591.402879947],[516229.72695235605,5277591.956357481],[516228.9922399852,5277596.900033059],[516230.6285661239,5277597.182444382],[516229.56821307994,5277603.103242854],[516221.48412119836,5277601.724806008],[516222.45407188125,5277595.903780086],[516219.2639620566,5277595.36142043],[516218.699084173,5277598.649586543]]]},"properties":{"ID_SOURCE":"w144656996","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":281}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515599.13911336544,5277187.762173167],[515601.2428521915,5277187.4343904555],[515603.4199059017,5277187.7736433325],[515605.37105876487,5277188.334571031],[515609.04656886705,5277190.011519047],[515609.49956202,5277189.123615611],[515609.801756168,5277188.457587389],[515613.62627600826,5277190.579496705],[515613.02188712044,5277191.911552777],[515616.7721962397,5277193.699846003],[515612.9229444016,5277200.802465889],[515611.9478174612,5277200.355292281],[515610.89073546015,5277202.464112923],[515607.9653545673,5277201.122593612],[515606.0010994042,5277205.451778047],[515604.201048699,5277204.557835849],[515604.80543427286,5277203.225778843],[515603.455693478,5277202.444183488],[515605.79634882766,5277197.782587856],[515605.07623828854,5277197.4583526235],[515604.29610603687,5277197.111728673],[515603.0143174581,5277198.997669058],[515601.7393791256,5277198.327414294],[515601.211584179,5277199.103978179],[515596.48644282453,5277196.75738502],[515597.1659289502,5277195.425528411],[515597.8412472183,5277195.649616916],[515598.74693162873,5277193.984947264],[515593.57236625947,5277191.192593606],[515596.131773806,5277188.976654041],[515599.13911336544,5277187.762173167]]]},"properties":{"ID_SOURCE":"w144657001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":282}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515746.43986055435,5277000.632609263],[515746.4582743069,5277002.155273064],[515749.4671800388,5277003.185895923],[515751.67094437784,5277002.0026620645],[515758.25233387324,5277003.954300183],[515757.09205486666,5277008.085557518],[515756.0638525606,5277007.816039931],[515755.2066677793,5277010.958974372],[515755.8220386712,5277011.138462976],[515754.5869596307,5277015.158378731],[515748.4255321196,5277013.441273859],[515747.5144345591,5277011.5272067785],[515746.0553752248,5277012.279011091],[515745.10020346957,5277012.776556925],[515745.7345894159,5277014.256430491],[515739.8682864277,5277017.2746844115],[515739.2479888331,5277016.139382667],[515738.9311708494,5277016.649768986],[515736.607156988,5277015.087531826],[515734.87256053515,5277017.750197304],[515733.7481053548,5277016.969180883],[515731.03325814754,5277021.074015131],[515728.6344403663,5277019.400439346],[515734.7121626036,5277010.403429061],[515733.1275869896,5277007.576198813],[515739.4460221784,5277004.003461682],[515741.20970425516,5277004.475015995],[515743.05260660785,5277003.424171018],[515743.1984893305,5277002.246484525],[515746.43986055435,5277000.632609263]]]},"properties":{"ID_SOURCE":"w144657008","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":283}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515526.61548757093,5277234.691571468],[515527.0681683187,5277233.914800531],[515528.1946837094,5277233.917804766],[515529.3209026787,5277234.0319481585],[515529.76943381276,5277234.811122571],[515529.9175608069,5277235.589495764],[515529.53968437563,5277236.477605728],[515530.3646095295,5277236.924364918],[515528.2528898228,5277240.252924579],[515529.30222808843,5277241.033701321],[515526.88832863804,5277245.028293928],[515525.6887889894,5277244.247117103],[515523.9546530818,5277246.798707066],[515522.08009443537,5277245.682312082],[515521.52177038067,5277246.647739329],[515520.7974543655,5277247.901687449],[515522.67171624163,5277249.129220968],[515521.2385788222,5277251.459334755],[515520.18894512486,5277250.789698396],[515518.60531133076,5277253.230551403],[515515.0812017091,5277251.109504756],[515514.25183536997,5277252.3298318405],[515512.5978414033,5277252.992263302],[515511.096714037,5277252.65484489],[515509.8983580761,5277251.429115541],[515510.0521123448,5277250.095848353],[515510.73098038044,5277248.986259479],[515511.5573856083,5277248.877321309],[515512.15996884386,5277248.212088297],[515511.1857304468,5277247.43151471],[515511.78920205333,5277246.43286484],[515510.5145598111,5277245.651491063],[515511.79749252764,5277243.320974505],[515510.7487444801,5277242.317923037],[515510.676604231,5277241.206333573],[515510.90545987873,5277239.873266494],[515511.5077478787,5277239.319172361],[515512.5600495702,5277238.98855668],[515516.61461288226,5277239.332779668],[515517.2934834113,5277238.223191575],[515516.47211157077,5277236.442766968],[515517.15305573377,5277234.555206291],[515518.4312541031,5277234.0029142415],[515519.556584531,5277234.450472558],[515522.27148012305,5277230.234399948],[515526.39522274403,5277232.8016087115],[515525.64095247147,5277234.022134418],[515526.61548757093,5277234.691571468]]]},"properties":{"ID_SOURCE":"w144657022","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":284}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515283.0537452079,5277260.420621023],[515283.4728251976,5277255.264838489],[515285.4325461329,5277255.42557853],[515288.87896977656,5277255.7013626145],[515288.45237495855,5277260.857125053],[515283.0537452079,5277260.420621023]]]},"properties":{"ID_SOURCE":"w144657044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":285}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516283.3405240204,5276992.473442348],[516284.16791303473,5276992.031197094],[516284.21580388106,5276991.019959225],[516284.2479901286,5276990.253184904],[516283.8724691714,5276990.252134745],[516283.9584514333,5276986.362483672],[516291.5433579086,5276986.605979458],[516291.766183017,5276987.495720955],[516294.92242661346,5276986.837713982],[516294.6992909543,5276986.059111257],[516296.87855826895,5276985.620651008],[516297.3232736911,5276987.733551083],[516301.6070147099,5276986.745284223],[516302.57901358546,5276988.303962097],[516303.8392926251,5276994.197897947],[516293.76911794767,5276996.392505978],[516293.6223305817,5276995.169557879],[516286.1876436001,5276994.926479473],[516286.0997948655,5276999.48296391],[516280.456424407,5277003.245934548],[516276.41758273804,5276997.23309663],[516283.3405240204,5276992.473442348]]]},"properties":{"ID_SOURCE":"w144657048","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":286}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515674.27185167844,5277176.405412347],[515667.4483563139,5277172.38601733],[515672.20160862996,5277164.285608966],[515675.50824788556,5277166.2839112645],[515679.0248110042,5277168.416148415],[515674.27185167844,5277176.405412347]]]},"properties":{"ID_SOURCE":"w144657052","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":287}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516195.7894600067,5277011.901007267],[516203.89975437475,5277012.256990142],[516203.5832566728,5277018.0353766475],[516203.5050601455,5277019.146556597],[516195.16946389485,5277018.789947586],[516195.7894600067,5277011.901007267]]]},"properties":{"ID_SOURCE":"w144657056","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":288}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516153.6901375674,5277053.6837513065],[516151.43518681993,5277054.344334585],[516150.5410365178,5277051.78564005],[516151.66974540404,5277051.010792526],[516152.04402925837,5277051.456389772],[516153.6901375674,5277053.6837513065]]]},"properties":{"ID_SOURCE":"w144657058","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":289}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.7220359426,5277554.968756755],[516175.3453489611,5277558.207433205],[516172.1302307424,5277563.955545414],[516166.52218778746,5277560.628002547],[516169.7220359426,5277554.968756755]]]},"properties":{"ID_SOURCE":"w144657061","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":290}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516144.62837362266,5276990.19782182],[516148.3103280957,5276989.541193078],[516148.82681077166,5276992.8768177815],[516142.1388439816,5276994.191950709],[516141.6226656873,5276990.745187712],[516144.62837362266,5276990.19782182]]]},"properties":{"ID_SOURCE":"w144657063","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":291}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515943.91698706447,5277522.782276181],[515929.6363354237,5277524.443624138],[515925.2116761932,5277524.9538765075],[515924.5516083049,5277519.17280054],[515928.14992719545,5277518.760312667],[515943.256937478,5277517.001198069],[515943.91698706447,5277522.782276181]]]},"properties":{"ID_SOURCE":"w144657064","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":292}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516230.4282191401,5277545.135091832],[516230.6696218743,5277539.356492635],[516238.47879102314,5277539.711688226],[516238.1673133604,5277546.379210505],[516238.0794369603,5277548.268342879],[516230.34537626826,5277547.913357144],[516230.4282191401,5277545.135091832]]]},"properties":{"ID_SOURCE":"w144657068","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":293}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516266.6339667567,5277380.749177109],[516273.8397577512,5277382.102991664],[516274.29004191514,5277382.215390109],[516272.99347616336,5277389.324714977],[516265.3383415093,5277387.525086767],[516266.6339667567,5277380.749177109]]]},"properties":{"ID_SOURCE":"w144657069","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":294}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516172.40766282106,5276993.609101196],[516166.47042412247,5276995.037431046],[516165.5024011093,5276992.033970382],[516164.5386964057,5276987.474565439],[516170.9268764152,5276985.936346146],[516172.40766282106,5276993.609101196]]]},"properties":{"ID_SOURCE":"w144657073","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":295}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516212.3293766663,5277086.744094369],[516208.2747457679,5277086.399387147],[516208.5832012584,5277083.510611823],[516208.8922757992,5277080.3995587155],[516212.94691084273,5277080.744266353],[516212.3293766663,5277086.744094369]]]},"properties":{"ID_SOURCE":"w144657076","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":296}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515664.21071412123,5277231.281366474],[515664.70365512796,5277229.504456795],[515665.04489915195,5277228.282837731],[515668.1216517962,5277229.180234272],[515667.8939559897,5277230.068739487],[515667.2874653036,5277232.178762584],[515664.21071412123,5277231.281366474]]]},"properties":{"ID_SOURCE":"w144657079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":297}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515658.5530349462,5277463.992808077],[515658.1715665703,5277466.214577757],[515657.7909951666,5277468.102930531],[515651.8612402751,5277466.975588302],[515652.6983740826,5277462.865666991],[515658.5530349462,5277463.992808077]]]},"properties":{"ID_SOURCE":"w144657081","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":298}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.0420445465,5277581.302130545],[516085.9768740229,5277586.300480282],[516080.566549475,5277587.508072126],[516078.6281602426,5277582.390285643],[516079.23660642636,5277579.613470017],[516087.0420445465,5277581.302130545]]]},"properties":{"ID_SOURCE":"w144657089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":299}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.370649024,5276947.047104922],[516212.84101381036,5276956.934283065],[516204.05717542785,5276955.687295845],[516203.76696273533,5276952.018876707],[516203.9354190712,5276945.462100635],[516214.370649024,5276947.047104922]]]},"properties":{"ID_SOURCE":"w144657094","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":300}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516089.9070702359,5277359.808379536],[516096.29359338345,5277358.714634263],[516096.3686928165,5277358.714841885],[516097.0362914039,5277361.717462318],[516090.49957264255,5277362.810791678],[516089.9070702359,5277359.808379536]]]},"properties":{"ID_SOURCE":"w144657101","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":301}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516286.82573460776,5276909.106147936],[516286.8008095026,5276909.961854252],[516283.76693128824,5276909.82000178],[516283.7780159062,5276908.541925723],[516285.33257014997,5276908.59072901],[516286.90214541747,5276908.639574728],[516286.82573460776,5276909.106147936]]]},"properties":{"ID_SOURCE":"w144657103","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":302}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515680.4204444778,5277673.5946444925],[515680.7172336729,5277674.929121735],[515670.34779421473,5277677.235137045],[515667.9713649955,5277667.337296953],[515678.3408210902,5277665.031277407],[515680.4204444778,5277673.5946444925]]]},"properties":{"ID_SOURCE":"w144657105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":303}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516228.0297733412,5277058.447189608],[516223.0738838287,5277058.099960479],[516223.76684493787,5277051.989204195],[516227.2976335904,5277051.665623597],[516228.4241845499,5277051.66876323],[516228.0297733412,5277058.447189608]]]},"properties":{"ID_SOURCE":"w144657113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":304}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.4982159386,5277233.31764429],[515672.09512924997,5277231.747142175],[515672.24652796594,5277231.302990721],[515672.6259223258,5277229.859195294],[515678.0287113681,5277231.54083683],[515677.4982159386,5277233.31764429]]]},"properties":{"ID_SOURCE":"w144657118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":305}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516033.88091895904,5277551.258861849],[516031.2056926401,5277551.89610575],[516030.46931420936,5277552.04967387],[516029.6315818996,5277548.101903227],[516033.0581164208,5277547.344473774],[516033.88091895904,5277551.258861849]]]},"properties":{"ID_SOURCE":"w144657120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":306}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515342.840311375,5277491.826309444],[515352.8110131357,5277498.409839686],[515351.0738046111,5277502.184010683],[515348.8135527506,5277504.956545423],[515338.6926625497,5277498.3726262385],[515342.840311375,5277491.826309444]]]},"properties":{"ID_SOURCE":"w144657123","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":307}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.9665685445,5277221.5474064015],[516129.7948369568,5277220.771722366],[516129.79699213314,5277219.99374985],[516133.1765471786,5277220.003113034],[516133.2476450748,5277221.448127226],[516131.2122484743,5277221.498057716],[516128.9665685445,5277221.5474064015]]]},"properties":{"ID_SOURCE":"w144657124","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":308}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.2115954797,5277219.56960047],[516169.23790148745,5277220.914464951],[516168.32911509136,5277220.934169258],[516167.58555136836,5277220.954332486],[516167.57238274754,5277220.287457196],[516167.5592449819,5277219.609468016],[516169.2115954797,5277219.56960047]]]},"properties":{"ID_SOURCE":"w144657126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":309}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516229.78623630805,5277559.914902383],[516229.95254099194,5277554.136093679],[516229.9550196054,5277553.246981773],[516237.83957705577,5277553.491246925],[516237.5205910549,5277560.158748432],[516229.78623630805,5277559.914902383]]]},"properties":{"ID_SOURCE":"w144657130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":310}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515443.60208971,5277754.160343883],[515444.50499057706,5277753.495900327],[515447.12532948924,5277756.503627616],[515438.84697896766,5277763.261195913],[515436.2266388647,5277760.253472323],[515443.60208971,5277754.160343883]]]},"properties":{"ID_SOURCE":"w144657131","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":311}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516148.3103280957,5276989.541193078],[516144.62837362266,5276990.19782182],[516142.8591488171,5276978.189824463],[516151.57556838123,5276976.658038935],[516152.5885285189,5276982.417887461],[516153.6458091775,5276988.444594565],[516148.3103280957,5276989.541193078]]]},"properties":{"ID_SOURCE":"w144657132","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":312}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515613.15821110987,5277729.161598536],[515612.3640260484,5277728.481515704],[515611.210220932,5277727.489277104],[515613.01755993924,5277725.6047469685],[515614.2941696052,5277725.608170872],[515614.4383971142,5277727.831354179],[515613.15821110987,5277729.161598536]]]},"properties":{"ID_SOURCE":"w144657143","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":313}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515958.86318089085,5277576.948321517],[515958.10764515656,5277578.61334794],[515961.70832037943,5277580.06803655],[515959.89442498726,5277584.286377262],[515953.5188346576,5277581.490407072],[515953.2166211579,5277582.156417908],[515953.0664280636,5277582.1560063455],[515953.36864154786,5277581.489995503],[515952.09352273465,5277580.930802339],[515951.2619793799,5277582.929040874],[515942.33583904663,5277579.125836827],[515944.5273371282,5277574.13054608],[515935.30140052666,5277570.104252256],[515934.861467137,5277566.213154206],[515933.98099017976,5277558.653236264],[515933.17378283956,5277551.760358018],[515931.07046033116,5277551.976881745],[515931.07137269457,5277551.643464772],[515933.0995983805,5277551.426735524],[515932.2188126082,5277543.977957021],[515931.33802450966,5277536.52917875],[515930.0607650239,5277536.747963394],[515930.05985272257,5277537.081380355],[515929.7594642124,5277537.080558434],[515929.76068059163,5277536.636002482],[515929.0094051806,5277536.745086741],[515928.93491620757,5277536.522603296],[515929.68588755105,5277536.52465802],[515929.5399505457,5277534.96830124],[515929.84033916384,5277534.969123147],[515929.8397309714,5277535.191401124],[515930.96649236523,5277535.083344428],[515930.6004340153,5277531.637008369],[515938.2630864694,5277530.657722386],[515938.11654308863,5277529.323643373],[515944.65243691317,5277528.452421103],[515945.5322961044,5277536.234618294],[515947.00014332955,5277548.686298849],[515945.19720707496,5277548.903640285],[515945.5644732139,5277551.905421418],[515947.3674085554,5277551.688080092],[515947.4415921958,5277552.021702771],[515948.7625866074,5277563.250443766],[515948.9878769772,5277563.251060942],[515950.5655185629,5277563.033103435],[515950.41745641665,5277562.254718999],[515950.64274682524,5277562.255336242],[515950.7901999459,5277563.2559986655],[515948.98726805,5277563.473338929],[515949.0602335781,5277564.2515176],[515956.26099531417,5277567.383163734],[515961.96164366795,5277569.843866764],[515958.86318089085,5277576.948321517]]]},"properties":{"ID_SOURCE":"w144657147","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":314}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.8638352594,5277353.726982747],[516037.5679393721,5277355.062787],[516037.1832078955,5277352.961185077],[516035.28173944255,5277342.575490858],[516043.27641408925,5277341.11935535],[516044.0606489141,5277345.411512517],[516045.01510005124,5277350.615485243],[516044.31630685105,5277350.746927312],[516044.8638352594,5277353.726982747]]]},"properties":{"ID_SOURCE":"w144657149","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":315}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515610.9932120228,5277108.2179026585],[515605.7464519374,5277104.313948216],[515616.9775914281,5277089.117919431],[515615.5676254782,5277082.779174452],[515621.13001641014,5277081.015859031],[515622.0735373736,5277084.852710391],[515623.21023721836,5277089.468058244],[515617.3128670431,5277098.521238367],[515610.9932120228,5277108.2179026585]]]},"properties":{"ID_SOURCE":"w144657150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":316}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516273.8397577512,5277382.102991664],[516266.6339667567,5277380.749177109],[516261.9803025882,5277379.847058549],[516262.89422053733,5277375.292878489],[516264.79840187903,5277365.7401728695],[516276.80746198725,5277368.218809418],[516275.07251864433,5277376.327166594],[516273.8397577512,5277382.102991664]]]},"properties":{"ID_SOURCE":"w144657151","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":317}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515305.61087335896,5277598.75590897],[515307.959315171,5277590.982299484],[515320.04077155865,5277594.459412032],[515318.0926645799,5277601.344951896],[515317.08452708455,5277604.898772195],[515307.1651031153,5277607.428897583],[515309.5129590734,5277599.877566627],[515305.61087335896,5277598.75590897]]]},"properties":{"ID_SOURCE":"w144657155","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":318}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516057.48228195467,5277622.697915106],[516060.62111822865,5277614.60447859],[516068.9405058595,5277617.806034932],[516066.14958554803,5277625.000194404],[516062.698818698,5277623.668108265],[516060.40330277407,5277622.783770423],[516060.05534701806,5277623.694157287],[516057.48228195467,5277622.697915106]]]},"properties":{"ID_SOURCE":"w144657160","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":319}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9300363666,5277166.719108451],[516159.23359514034,5277167.061695064],[516159.07321293285,5277170.728862618],[516151.56549331703,5277169.818913578],[516151.950559973,5277166.3746486725],[516153.1521906211,5277166.377982125],[516155.9300363666,5277166.719108451]]]},"properties":{"ID_SOURCE":"w144657163","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":320}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.6565832165,5277633.823662392],[516050.12545618636,5277632.635758645],[516052.8109780422,5277633.698991601],[516049.70299767074,5277641.5035539195],[516041.6989747825,5277638.3251217725],[516044.338074014,5277631.708459409],[516046.8960568544,5277632.726882201],[516049.6565832165,5277633.823662392]]]},"properties":{"ID_SOURCE":"w144657167","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":321}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515670.344474007,5277240.41133021],[515669.9656790949,5277241.632847933],[515667.489441804,5277240.848205979],[515667.7171371401,5277239.959700735],[515667.9445334747,5277239.182334441],[515670.496171485,5277239.856039769],[515670.344474007,5277240.41133021]]]},"properties":{"ID_SOURCE":"w144657170","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":322}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516097.66337777965,5277678.13430061],[516093.3595953195,5277686.569031135],[516084.13639569137,5277681.653388009],[516084.99708781333,5277679.9886681],[516085.5708828344,5277678.878854898],[516083.0213269445,5277677.538132592],[516086.94071768015,5277672.325388286],[516097.66337777965,5277678.13430061]]]},"properties":{"ID_SOURCE":"w144657175","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":323}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515571.1596780821,5277540.222586509],[515573.6864954961,5277541.707504383],[515581.95670208655,5277546.586441878],[515577.4309586085,5277554.020696657],[515564.23440559034,5277546.316756746],[515562.67578806286,5277539.421923407],[515570.41613819206,5277537.442103247],[515571.1596780821,5277540.222586509]]]},"properties":{"ID_SOURCE":"w144657185","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":324}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9361213361,5277408.11476621],[516166.4481013852,5277408.810784322],[516166.37176820065,5277409.255131651],[516166.0571777767,5277414.366689885],[516165.8238583064,5277417.255677397],[516160.665627863,5277416.863481915],[516155.0869057627,5277416.447896257],[516155.9361213361,5277408.11476621]]]},"properties":{"ID_SOURCE":"w144657186","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":325}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516019.6855395455,5277584.717330156],[516021.16130368935,5277591.500921227],[516007.7785928481,5277594.387086292],[516006.0209611546,5277586.324615594],[516010.9727849318,5277585.260175372],[516015.87955262756,5277584.195615401],[516016.1538936512,5277585.474478239],[516019.6855395455,5277584.717330156]]]},"properties":{"ID_SOURCE":"w144657189","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":326}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516016.15834508365,5277551.09893994],[516015.4913387771,5277547.874049953],[516019.47395632474,5277546.984774471],[516019.60003101407,5277547.563048496],[516021.6289038559,5277547.112958199],[516022.21492126136,5277549.748584908]]]},"properties":{"ID_SOURCE":"w144657200","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":327}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515596.1081763767,5276889.343956598],[515602.4876747374,5276891.028141497],[515600.6820021225,5276897.80282389],[515600.0598855875,5276900.135090427],[515597.3578797232,5276899.461014327],[515598.723768471,5276894.241108275],[515595.04598456976,5276893.34214012],[515596.1081763767,5276889.343956598]]]},"properties":{"ID_SOURCE":"w144657203","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":328}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515327.4251495757,5277727.624311448],[515324.2644454532,5277730.172205936],[515320.27565630386,5277733.495901435],[515315.1855984231,5277727.258679862],[515323.31337340845,5277720.611680005],[515325.70587226,5277724.61901057],[515327.4251495757,5277727.624311448]]]},"properties":{"ID_SOURCE":"w144657204","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":329}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516257.2063854118,5276884.03916631],[516257.6675686259,5276880.261702833],[516255.8659647755,5276879.923253988],[516256.71074277686,5276873.2572281975],[516263.01744877803,5276874.052816441],[516261.7111671887,5276884.60744334],[516257.2063854118,5276884.03916631]]]},"properties":{"ID_SOURCE":"w144657206","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":330}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515575.5972695869,5277116.569730071],[515585.86757578986,5277123.599013977],[515581.0487223889,5277130.988022146],[515575.1590292169,5277140.019037627],[515569.011640958,5277135.890427592],[515576.55219608516,5277124.574343932],[515572.3544848534,5277121.562343677],[515575.5972695869,5277116.569730071]]]},"properties":{"ID_SOURCE":"w144657207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":331}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515556.067935968,5277454.826892765],[515553.2937569035,5277453.152384525],[515553.89780852257,5277451.931460771],[515545.6503588179,5277446.908143696],[515550.7036135402,5277438.808435609],[515556.82875767566,5277442.714690805],[515561.7243611771,5277445.839687591],[515556.067935968,5277454.826892765]]]},"properties":{"ID_SOURCE":"w144657213","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":332}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.55907598545,5277509.912218195],[516164.92762872216,5277507.432046552],[516165.4762109027,5277507.3002019245],[516165.3127553147,5277506.666251003],[516165.86887819064,5277506.523313366],[516166.29984560946,5277508.180493626],[516166.678861768,5277509.615249985],[516165.55907598545,5277509.912218195]]]},"properties":{"ID_SOURCE":"w144657223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":333}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516226.3285654805,5276968.1969663035],[516226.6289833758,5276968.197803458],[516223.879393422,5276984.638824925],[516212.6944283651,5276982.607156626],[516216.13181311614,5276961.9002791755],[516217.04842006817,5276956.390300449],[516228.0841540754,5276958.088141642],[516226.3285654805,5276968.1969663035]]]},"properties":{"ID_SOURCE":"w144657224","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":334}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516060.76736155193,5277645.979661349],[516052.6581554361,5277642.823151848],[516055.4488361189,5277635.70678307],[516058.20191119943,5277636.7813188145],[516060.70744496846,5277637.755147095],[516061.0326566263,5277636.922495405],[516063.8832626905,5277638.03064487],[516060.76736155193,5277645.979661349]]]},"properties":{"ID_SOURCE":"w144657227","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":335}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516124.10345347755,5277486.046676311],[516126.3289892113,5277495.94428529],[516118.73950969864,5277497.590365662],[516116.4089479117,5277487.648012955],[516115.3253179447,5277483.0215965],[516123.66671731765,5277481.044174476],[516124.8547392054,5277485.937617216],[516124.10345347755,5277486.046676311]]]},"properties":{"ID_SOURCE":"w144657228","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":336}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.8026481104,5277493.194674936],[516183.4161886898,5277491.434817425],[516186.16328793304,5277502.778717596],[516178.04749944474,5277504.64553718],[516177.00817732915,5277500.3081955565],[516178.43595841335,5277499.9787434535],[516176.8026481104,5277493.194674936]]]},"properties":{"ID_SOURCE":"w144657231","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":337}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.83825201914,5277526.159113887],[516127.9020138977,5277524.511580002],[516130.79200897797,5277538.523206161],[516122.450689329,5277540.500617976],[516121.7098744832,5277536.830951838],[516122.83756264707,5277536.389515314],[516122.1118900469,5277532.675435146],[516120.83825201914,5277526.159113887]]]},"properties":{"ID_SOURCE":"w144657234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":338}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516001.5355586594,5277622.610556863],[515999.93452944007,5277614.948621506],[516012.07712427917,5277612.414675152],[516013.91535798693,5277621.199778778],[516010.45895324677,5277621.912681276],[516010.22167175735,5277620.811744292],[516006.4646997488,5277621.590506493],[516001.5355586594,5277622.610556863]]]},"properties":{"ID_SOURCE":"w144657235","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":339}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516141.7306868707,5277114.332894997],[516138.12822696875,5277113.4337912295],[516139.19229342684,5277108.880010101],[516139.2680121876,5277108.657940447],[516143.0957828228,5277109.557669549],[516142.03171342827,5277114.111449977],[516141.7306868707,5277114.332894997]]]},"properties":{"ID_SOURCE":"w144657238","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":340}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515552.3884753124,5277314.1141296],[515551.86574396386,5277313.001335872],[515554.0466131695,5277311.895764079],[515554.56964111555,5277312.897419049],[515555.0917781156,5277314.232490924],[515554.04640373454,5277314.785396897],[515552.98600955814,5277315.338262937],[515552.3884753124,5277314.1141296]]]},"properties":{"ID_SOURCE":"w144657243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":341}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515248.3901008867,5277282.190918067],[515257.849838266,5277283.32709717],[515256.6237695255,5277292.659620261],[515251.16526149237,5277292.156304916],[515244.0849358153,5277291.515380592],[515244.4744046987,5277286.181694107],[515247.9278562943,5277286.6352959825],[515248.3901008867,5277282.190918067]]]},"properties":{"ID_SOURCE":"w144657264","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":342}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.7955356759,5277147.987230883],[516293.4979260474,5277146.986139997],[516303.3444011681,5277144.124067225],[516303.9402396403,5277145.903972187],[516295.9722540399,5277148.437881659],[516295.6746448076,5277147.436790657],[516293.7955356759,5277147.987230883]]]},"properties":{"ID_SOURCE":"w144657266","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":343}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515525.17337444925,5277719.145989136],[515525.7637585937,5277723.037457113],[515525.91098400066,5277724.149247901],[515519.3008725149,5277724.798461665],[515517.94857552066,5277725.0171364695],[515517.0607697375,5277720.0134784],[515525.17337444925,5277719.145989136]]]},"properties":{"ID_SOURCE":"w144657272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":344}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516021.16130368935,5277591.500921227],[516019.6855395455,5277584.717330156],[516023.48036068305,5277583.838654721],[516023.25034499046,5277582.826649139],[516027.6011577597,5277581.849480791],[516034.00339381193,5277580.411177852],[516035.78406860825,5277588.273668863],[516021.16130368935,5277591.500921227]]]},"properties":{"ID_SOURCE":"w144657273","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":345}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516116.72826137656,5277573.048747366],[516112.2249218914,5277572.147163719],[516114.50643133174,5277561.81747294],[516123.5804343323,5277563.720859461],[516130.56791153323,5277565.1961472845],[516128.6661685627,5277573.970926204],[516116.957551112,5277571.604564145],[516116.72826137656,5277573.048747366]]]},"properties":{"ID_SOURCE":"w144657276","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":346}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515540.5474416603,5277389.21298388],[515544.3006124925,5277389.889841553],[515542.3195563083,5277400.553969624],[515536.20923614537,5277399.515175536],[515529.70857739996,5277398.408662846],[515531.30759351683,5277390.18858613],[515540.09032139217,5277391.656838424],[515540.5474416603,5277389.21298388]]]},"properties":{"ID_SOURCE":"w144657278","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":347}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.81823763635,5277635.9268748155],[516075.62994743645,5277634.7288736915],[516075.99304692354,5277633.774073613],[516072.39966666535,5277632.4193598945],[516067.800980992,5277630.706226195],[516070.4184742186,5277623.767210379],[516081.79884251195,5277628.033064159],[516078.81823763635,5277635.9268748155]]]},"properties":{"ID_SOURCE":"w144657280","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":348}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516085.00773505867,5277175.969633571],[516086.55069759086,5277188.343752934],[516088.24066259316,5277201.8741328325],[516080.8779574081,5277202.85405162],[516077.3482731307,5277175.6150599085],[516077.64868030726,5277175.6158894],[516084.8612157215,5277174.635551557],[516085.00773505867,5277175.969633571]]]},"properties":{"ID_SOURCE":"w144657284","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":349}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516249.4081167436,5277040.946726895],[516245.1281453751,5277040.601365351],[516245.2885847299,5277036.934200788],[516250.4698017895,5277037.282077574],[516250.30904901214,5277041.060380902],[516250.2339454788,5277041.060171304],[516249.4081167436,5277040.946726895]]]},"properties":{"ID_SOURCE":"w144657290","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":350}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.0887155148,5276953.136847694],[516136.90735800785,5276952.344452024],[516141.0338394421,5276951.188921693],[516143.4362424298,5276959.664429573],[516133.1613478102,5276962.558928029],[516130.92265275226,5276954.628462628],[516134.2448956067,5276953.692979116],[516134.0887155148,5276953.136847694]]]},"properties":{"ID_SOURCE":"w144657295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":351}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.01941954694,5276959.711964022],[516044.84410765534,5276962.97063042],[516045.74310305837,5276966.518465023],[516036.82195597974,5276968.761139317],[516033.8946669797,5276957.194546287],[516044.71729476715,5276954.479205668],[516045.92091289314,5276959.228188685],[516044.01941954694,5276959.711964022]]]},"properties":{"ID_SOURCE":"w144657299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":352}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.49284776073,5277268.667075628],[516088.462198203,5277268.469702426],[516087.5435717973,5277263.899318891],[516086.52112327924,5277258.850747619],[516094.8619730124,5277257.184473338],[516097.60312106623,5277270.7844473645],[516088.3004502265,5277272.6481115315],[516087.49284776073,5277268.667075628]]]},"properties":{"ID_SOURCE":"w144657303","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":353}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.9371355099,5276914.734737209],[516156.5507515723,5276913.233278757],[516153.5970214851,5276913.980834343],[516149.4407465462,5276915.036247463],[516147.2787318509,5276906.539176392],[516158.13915270596,5276903.790808926],[516160.6800251445,5276913.789321885],[516156.9371355099,5276914.734737209]]]},"properties":{"ID_SOURCE":"w144657304","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":354}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516277.56259540806,5277151.831720558],[516287.48508918105,5277148.6364141805],[516287.93228224094,5277149.860202771],[516286.12827676005,5277150.410855556],[516286.3517179542,5277151.078319251],[516278.2332323158,5277153.722971769],[516277.56259540806,5277151.831720558]]]},"properties":{"ID_SOURCE":"w144657310","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":355}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516093.6991157111,5277639.813431562],[516089.2357067145,5277638.067312861],[516086.25011716696,5277636.892094065],[516085.8720277282,5277637.835738113],[516081.7461778321,5277636.223925707],[516085.156921554,5277627.57555397],[516096.73926245724,5277632.119844744],[516093.6991157111,5277639.813431562]]]},"properties":{"ID_SOURCE":"w144657313","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":356}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516108.10674440395,5276970.53608259],[516095.02843438333,5276974.1675299965],[516093.4597656727,5276968.361700074],[516092.3520119575,5276964.268696326],[516100.5445506709,5276962.068548221],[516100.69353056286,5276962.513519095],[516105.5039100617,5276961.193145069],[516108.10674440395,5276970.53608259]]]},"properties":{"ID_SOURCE":"w144657314","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":357}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.0386219565,5277282.105446985],[516083.86111334787,5277281.115812503],[516082.96596723807,5277276.200961122],[516082.7070756541,5277274.766542731],[516085.33682184695,5277274.329248075],[516086.7437724364,5277281.557221485],[516084.0386219565,5277282.105446985]]]},"properties":{"ID_SOURCE":"w144657315","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":358}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515303.9926307106,5277557.296521115],[515309.4910669474,5277551.087150599],[515315.93419913366,5277556.883365067],[515311.67895036296,5277561.540042307],[515307.1224448198,5277566.529349877],[515298.13186409924,5277558.503655296],[515301.295278247,5277554.95549616],[515303.9926307106,5277557.296521115]]]},"properties":{"ID_SOURCE":"w144657318","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":359}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.35004770063,5277071.423437108],[516175.8870814024,5277065.859606319],[516194.83998338575,5277056.243129572],[516197.5251539558,5277062.918984103],[516190.9831361814,5277065.790423388],[516193.14691185474,5277070.90886953],[516178.35004770063,5277071.423437108]]]},"properties":{"ID_SOURCE":"w144657324","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":360}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.21965592814,5277379.686690198],[516087.0443977925,5277379.327733036],[516095.188127671,5277378.272184073],[516096.4420763797,5277386.49999652],[516079.16315057606,5277388.675047906],[516078.2126437001,5277379.336679158],[516083.9226365227,5277378.463331798],[516084.21965592814,5277379.686690198]]]},"properties":{"ID_SOURCE":"w144657326","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":361}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.6084623813,5277718.887306964],[516047.53378905164,5277720.117908537],[516047.38237408164,5277720.562050611],[516047.08015691256,5277721.228056728],[516044.3798087214,5277720.109215278],[516044.3813402239,5277719.553520185],[516044.6084623813,5277718.887306964]]]},"properties":{"ID_SOURCE":"w144657327","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":362}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515348.15218823036,5277641.879000833],[515351.0131534606,5277639.108049451],[515359.17631091794,5277647.576203801],[515359.02582633705,5277647.686946575],[515357.1434502778,5277649.571357104],[515351.2270114894,5277643.443064945],[515350.3989070524,5277644.218859881],[515348.15218823036,5277641.879000833]]]},"properties":{"ID_SOURCE":"w144657335","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":363}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516257.46405438555,5277033.856268749],[516258.83205666963,5277028.080820717],[516261.0978928849,5277023.530417668],[516265.5224952644,5277025.876710613],[516264.56324525503,5277027.818976979],[516263.19086509733,5277027.092735322],[516259.2187793678,5277034.8280841615],[516257.46405438555,5277033.856268749]]]},"properties":{"ID_SOURCE":"w144657336","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":364}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516061.1647525513,5276973.75172193],[516063.31935658585,5276982.248740983],[516051.2190800884,5276985.293944096],[516047.34097494173,5276986.2723988425],[516045.9442363721,5276980.744904985],[516049.78473152814,5276979.788573582],[516049.0269074015,5276976.796826019],[516056.03153674374,5276975.037900401],[516061.1647525513,5276973.75172193]]]},"properties":{"ID_SOURCE":"w144657342","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":365}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.5615497224,5277509.884127351],[516005.2189062668,5277503.834429826],[516015.95676782413,5277501.530022887],[516017.7439008943,5277509.792628291],[516013.160203342,5277510.7802775875],[516010.8833746483,5277511.274144894],[516011.3432021378,5277513.375952137],[516007.50340080215,5277514.2100559985],[516006.5615497224,5277509.884127351]]]},"properties":{"ID_SOURCE":"w144657344","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":366}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.93797739083,5277118.168475768],[516072.2491367959,5277118.364003364],[516071.7982148362,5277118.473898473],[516070.99079871445,5277111.692144576],[516070.9172298338,5277111.136242729],[516078.57984590024,5277110.379418583],[516081.20905203413,5277110.16439983],[516081.93797739083,5277118.168475768]]]},"properties":{"ID_SOURCE":"w144657348","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":367}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.39526110794,5276984.073272857],[516182.7989065447,5276983.968812689],[516183.5502581214,5276983.859761103],[516187.23407484434,5276982.536323628],[516190.1089047931,5276991.246558391],[516192.670946905,5276999.000123051],[516185.6803982525,5277001.092342822],[516185.6052942043,5277001.09213406],[516180.39526110794,5276984.073272857]]]},"properties":{"ID_SOURCE":"w144657350","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":368}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516185.6052942043,5277001.09213406],[516185.6803982525,5277001.092342822],[516192.670946905,5276999.000123051],[516193.7215691806,5277002.003818054],[516194.38474051055,5277003.89503817],[516197.91772071,5277002.793467471],[516200.151670837,5277009.690346877],[516189.4779506159,5277012.883713639],[516185.6052942043,5277001.09213406]]]},"properties":{"ID_SOURCE":"w144657351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":369}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.5797057388,5277438.290978917],[516180.40879798395,5277438.635038684],[516180.080721269,5277443.1908598365],[516184.1279660123,5277443.402160543],[516183.68133857107,5277450.080422728],[516178.68026297,5277452.60051147],[516179.0617667791,5277445.032949308],[516166.0492643009,5277444.263280488],[516166.28320010717,5277441.152014925],[516166.5971722562,5277436.262734422],[516172.078184894,5277436.700287779],[516176.6582009275,5277437.0686589265],[516176.5797057388,5277438.290978917]]]},"properties":{"ID_SOURCE":"w144657353","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":370}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516251.4116039241,5277507.0726592615],[516242.9296146259,5277505.604170952],[516244.0753034128,5277498.716697125],[516221.55654241017,5277494.875156063],[516222.32052556163,5277490.209411471],[516244.8396142516,5277493.939816441],[516253.3967177758,5277495.408517118],[516251.4116039241,5277507.0726592615]]]},"properties":{"ID_SOURCE":"w144657354","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":371}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516133.0615219184,5277153.096648013],[516139.51660459203,5277154.448214282],[516137.458970502,5277165.223069216],[516127.76866666833,5277165.974198872],[516127.3365249237,5277159.304615529],[516130.64162897086,5277159.091491303],[516131.1381951454,5277158.77056164],[516131.8454165192,5277158.316847918],[516133.0615219184,5277153.096648013]]]},"properties":{"ID_SOURCE":"w144657356","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":372}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516210.0661024705,5277710.787897046],[516205.6101373067,5277709.097279139],[516199.18878511665,5277706.645444307],[516202.2154720982,5277698.429516367],[516202.82025372726,5277696.986381201],[516206.3463188539,5277698.218734656],[516205.8163221318,5277699.773217517],[516213.093112243,5277702.460835662],[516210.0661024705,5277710.787897046]]]},"properties":{"ID_SOURCE":"w144657362","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":373}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516197.5249356287,5277386.958157811],[516205.70167779515,5277387.5366105605],[516204.6273561497,5277401.170476432],[516196.5559260859,5277400.536748135],[516196.92954098183,5277395.814345097],[516197.0228443113,5277394.669864507],[516195.371006989,5277394.543015617],[516195.97835849755,5277386.787145672],[516197.5249356287,5277386.958157811]]]},"properties":{"ID_SOURCE":"w144657363","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":374}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515994.69644033414,5277586.282378052],[515996.84089383064,5277595.690700143],[515985.47918134695,5277598.260164385],[515985.6127068571,5277598.860686131],[515981.7653644185,5277599.728128029],[515979.6283672664,5277590.330945997],[515984.2496972699,5277589.287803921],[515984.108692258,5277588.676147696],[515989.31614319864,5277587.501251082],[515994.69644033414,5277586.282378052]]]},"properties":{"ID_SOURCE":"w144657369","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":375}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515312.94039489893,5277695.8002123125],[515317.30204927333,5277693.477751026],[515322.4216787123,5277688.48993296],[515327.8138990923,5277694.06111716],[515322.6945623935,5277698.937791507],[515313.5201064819,5277703.803802133],[515310.9782774751,5277699.462664669],[515313.9867557431,5277697.6923411405],[515312.94039489893,5277695.8002123125]]]},"properties":{"ID_SOURCE":"w144657370","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":376}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.84410286864,5277659.810257634],[516218.46958754316,5277664.854964358],[516218.0112294253,5277670.343997053],[516217.9257451072,5277671.377359714],[516217.0960054506,5277686.178879306],[516208.76164364786,5277685.722223161],[516208.9673502468,5277681.966268205],[516209.0454161384,5277680.899542787],[516200.77158635226,5277680.276356854],[516202.4089959843,5277658.575297255],[516218.84410286864,5277659.810257634]]]},"properties":{"ID_SOURCE":"w144657371","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":377}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516105.75873514026,5277531.541002567],[516109.5788763714,5277532.385120594],[516107.62477127893,5277541.093077032],[516103.84218403965,5277540.249064127],[516103.659645411,5277541.082107995],[516097.9407511309,5277539.79929799],[516091.80155627115,5277538.426420022],[516093.54272420175,5277530.673672374],[516105.35580081923,5277533.318125284],[516105.75873514026,5277531.541002567]]]},"properties":{"ID_SOURCE":"w144657372","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":378}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515523.87151266227,5277503.309036056],[515525.3312632169,5277490.976413535],[515527.8085984042,5277491.316439593],[515529.11846082914,5277478.872278669],[515537.97793280234,5277479.673894692],[515536.96844238235,5277492.118855312],[515533.88973338465,5277491.999500326],[515532.5801600066,5277504.332521465],[515523.87151266227,5277503.309036056]]]},"properties":{"ID_SOURCE":"w144657373","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":379}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.887558486,5277648.383150499],[516071.6145827259,5277647.498870381],[516070.70607113425,5277650.1637188615],[516063.95482059004,5277647.477729682],[516066.75329855183,5277640.261361859],[516069.94134208973,5277641.548269339],[516073.12938422646,5277642.835178568],[516073.50762470264,5277641.835964191],[516076.035559735,5277642.854316886],[516073.887558486,5277648.383150499]]]},"properties":{"ID_SOURCE":"w144657374","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":380}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516070.39086106594,5277519.506850777],[516062.823957601,5277521.1530661825],[516062.11142453796,5277518.105869013],[516064.01261477254,5277517.666555166],[516061.5557432346,5277507.20151883],[516069.5813729373,5277505.334288208],[516070.9174212043,5277511.02833527],[516072.023334123,5277515.754830873],[516069.64121251955,5277516.303954465],[516070.39086106594,5277519.506850777]]]},"properties":{"ID_SOURCE":"w144657377","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":381}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516011.8213751436,5277265.768902591],[516017.7198625913,5277264.662614785],[516019.16277342994,5277264.310937165],[516021.2517335508,5277263.894353698],[516022.00733143603,5277267.686299421],[516020.66980674036,5277267.949354481],[516020.99581513845,5277269.561778348],[516021.7292186753,5277273.23140924],[516013.63639787404,5277274.842900371],[516011.8213751436,5277265.768902591]]]},"properties":{"ID_SOURCE":"w144657379","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":382}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.5583950943,5276970.551753559],[516080.2476007529,5276968.791986335],[516080.3978096773,5276968.792401142],[516082.70118426386,5276977.801081057],[516071.3524527262,5276980.659380636],[516069.0490617711,5276971.650705207],[516070.9504920008,5276971.189165816],[516073.5583950943,5276970.551753559]]]},"properties":{"ID_SOURCE":"w144657380","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":383}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515703.26028482756,5277037.558866836],[515703.7647286887,5277045.451146785],[515694.90132190683,5277045.871808396],[515694.8971280017,5277047.4277530555],[515687.23627808003,5277047.5182486875],[515686.083424534,5277029.399370274],[515693.8206001054,5277028.864519885],[515694.18790248496,5277034.700344578],[515694.39686607756,5277037.979529236],[515703.26028482756,5277037.558866836]]]},"properties":{"ID_SOURCE":"w144657384","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":384}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516103.22315733286,5277568.565783017],[516106.75085861055,5277569.242380712],[516104.6977298883,5277578.461307881],[516101.6206136159,5277577.785957567],[516101.1660381534,5277579.22951832],[516091.0341422176,5277576.978709084],[516092.78624841926,5277567.981224814],[516099.3155152209,5277569.499664497],[516102.9178519749,5277570.343176028],[516103.22315733286,5277568.565783017]]]},"properties":{"ID_SOURCE":"w144657386","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":385}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516029.6315818996,5277548.101903227],[516030.46931420936,5277552.04967387],[516031.2056926401,5277551.89610575],[516033.6818225421,5277563.561493087],[516024.6949543646,5277565.459468975],[516023.3233748507,5277559.020697523],[516022.226194657,5277553.838561729],[516023.0227113472,5277553.662930115],[516022.21492126136,5277549.748584908]]]},"properties":{"ID_SOURCE":"w144657389","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":386}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515575.4552921903,5277281.945264476],[515570.7275330893,5277280.598942306],[515573.6832041825,5277270.604270704],[515587.6423860084,5277274.198096886],[515587.1873200043,5277275.863974735],[515592.44048487267,5277277.32285702],[515590.1669372609,5277284.985411155],[515580.7338694221,5277282.326148705],[515575.833470058,5277280.946018476],[515575.4552921903,5277281.945264476]]]},"properties":{"ID_SOURCE":"w144657390","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":387}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516285.3579529346,5276727.633094783],[516277.2454025219,5276727.943832573],[516276.0557957256,5276723.606058853],[516281.464166542,5276723.398897957],[516281.19791547913,5276711.172785467],[516290.2868908193,5276710.864784404],[516290.47739338496,5276723.312964923],[516285.2946558181,5276723.409608722],[516285.3579529346,5276727.633094783]]]},"properties":{"ID_SOURCE":"w144657391","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":388}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515576.0059897577,5277721.72684873],[515577.00749839214,5277712.282643861],[515582.1124612994,5277712.852004653],[515582.34429038427,5277710.407549179],[515586.39822375646,5277710.862960774],[515586.1663929844,5277713.30741609],[515591.27135413676,5277713.876784915],[515590.5773447557,5277720.654455274],[515587.6043068689,5277720.37975849],[515585.54718670296,5277720.196427099],[515584.8552673856,5277726.196125021],[515584.70507802896,5277726.195722953],[515576.5218397279,5277725.395842978],[515576.2968530279,5277725.284101177],[515576.60645027034,5277721.839595148],[515576.0059897577,5277721.72684873]]]},"properties":{"ID_SOURCE":"w144657393","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":389}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515972.57998281036,5277504.30049284],[515980.99578967394,5277502.545350512],[515982.3001776031,5277508.8616728615],[515983.2933030767,5277513.665639487],[515982.6171210967,5277513.774922997],[515983.28323430446,5277517.333225945],[515974.04076723143,5277519.308376332],[515973.1490514825,5277515.860595313],[515974.95230400574,5277515.532123531],[515972.57998281036,5277504.30049284]]]},"properties":{"ID_SOURCE":"w144657394","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":390}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516126.9268584407,5277117.40378799],[516121.22460366646,5277115.38748169],[516122.96704215364,5277109.946457778],[516127.73175440426,5277097.956558712],[516129.9072725448,5277098.851702941],[516130.7284769736,5277100.632214066],[516130.27385795786,5277102.075771565],[516132.1495790688,5277102.747806617],[516126.9268584407,5277117.40378799]]]},"properties":{"ID_SOURCE":"w144657395","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":391}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.9210161022,5277008.025637972],[516122.41017095867,5277012.697630278],[516123.15474748035,5277015.033626585],[516123.5271893885,5277016.146055334],[516117.3634438643,5277018.018366922],[516116.24826778163,5277013.903109678],[516113.5420676454,5277014.784738216],[516112.351784306,5277010.669273914],[516116.31317543914,5277009.446585527],[516120.9210161022,5277008.025637972]]]},"properties":{"ID_SOURCE":"w144657399","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":392}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515423.5559713232,5277610.847999653],[515427.54667037004,5277606.857541218],[515434.36215775885,5277613.766272735],[515430.22038287466,5277618.089745484],[515428.42161162506,5277616.751300801],[515426.3887164529,5277618.746429904],[515420.9895158602,5277618.654327906],[515410.54403630766,5277618.482187105],[515410.48953347025,5277610.702257896],[515423.5559713232,5277610.847999653]]]},"properties":{"ID_SOURCE":"w144657400","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":393}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516145.08232029335,5277286.942268127],[516145.1531061054,5277288.498421568],[516143.4782144458,5277288.549347324],[516141.77328268206,5277288.600190285],[516141.77698009333,5277287.266522977],[516140.2749729752,5277287.26235906],[516140.20202923013,5277286.484178279],[516144.2580653208,5277286.2731438065],[516144.256216331,5277286.939977456],[516145.08232029335,5277286.942268127]]]},"properties":{"ID_SOURCE":"w144657403","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":394}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516161.23569817,5277473.924250991],[516162.87180902384,5277479.708064099],[516159.9405240626,5277480.589045794],[516160.0888688722,5277481.256296542],[516155.2937091608,5277482.654464564],[516150.6188316019,5277484.008514258],[516148.61122783466,5277476.77885639],[516158.1560653705,5277474.13798281],[516158.30441055546,5277474.805233507],[516161.23569817,5277473.924250991]]]},"properties":{"ID_SOURCE":"w144657404","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":395}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516045.094140762,5277428.213514946],[516039.8650475697,5277429.010427161],[516036.85231099534,5277429.468915111],[516035.8783975654,5277423.153491337],[516038.53805141273,5277422.738486132],[516037.6379209029,5277416.901166561],[516045.41397291934,5277415.7111676615],[516046.09275129164,5277420.114174843],[516046.5207268533,5277422.871621686],[516048.71455578547,5277422.533135145],[516049.4817946947,5277427.536541614],[516045.094140762,5277428.213514946]]]},"properties":{"ID_SOURCE":"w144657405","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":396}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516289.70991732954,5277695.561763285],[516295.2893525559,5277687.575306427],[516296.743337118,5277688.601863344],[516297.98749028414,5277689.472237353],[516298.59011856664,5277688.807085178],[516303.61215830856,5277692.155343784],[516302.93443466397,5277692.820285147],[516304.463293803,5277693.92485161],[516306.00710912223,5277695.051688348],[516300.27716504363,5277703.148853536],[516289.70991732954,5277695.561763285]]]},"properties":{"ID_SOURCE":"w144657406","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":397}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516237.83957705577,5277553.491246925],[516229.9550196054,5277553.246981773],[516229.95254099194,5277554.136093679],[516216.0614688514,5277553.430546425],[516216.4620285263,5277544.429334327],[516230.4282191401,5277545.135091832],[516230.34537626826,5277547.913357144],[516238.0794369603,5277548.268342879],[516237.83957705577,5277553.491246925]]]},"properties":{"ID_SOURCE":"w144657408","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":398}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.6309589086,5277593.514593866],[516155.80212057603,5277591.71740194],[516156.7125306886,5277588.385732905],[516155.81198985165,5277588.160954099],[516157.26018157526,5277583.174793791],[516158.0107626526,5277580.609546383],[516155.8345041208,5277580.04780754],[516156.9720565068,5277576.049929835],[516166.80292549374,5277578.522297708],[516162.6309589086,5277593.514593866]]]},"properties":{"ID_SOURCE":"w144657410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":399}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515647.92432361736,5276760.583179381],[515648.61595091695,5276763.1412500115],[515642.9262233877,5276764.659690517],[515642.14542053675,5276761.745734128],[515638.9886232961,5276762.59303084],[515632.66001017403,5276764.287589081],[515630.07953757735,5276754.689310174],[515647.69741936366,5276749.990960438],[515650.3670976161,5276759.922905923],[515647.92432361736,5276760.583179381]]]},"properties":{"ID_SOURCE":"w144657412","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":400}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516123.65741489455,5277728.441455647],[516133.2197012088,5277730.190615588],[516142.19655198354,5277731.827028053],[516141.12766279094,5277738.159037182],[516135.57313118764,5277737.254520086],[516134.8095564974,5277741.809138619],[516127.00342382636,5277740.453830167],[516127.6922058994,5277735.787863574],[516122.28785917064,5277734.883775242],[516123.65741489455,5277728.441455647]]]},"properties":{"ID_SOURCE":"w144657413","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":401}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516076.035559735,5277642.854316886],[516079.3813009007,5277644.141665025],[516078.97286778886,5277645.196365568],[516081.68093804934,5277646.248560209],[516085.0791816055,5277647.558284646],[516082.37898406293,5277654.530407654],[516075.6274984031,5277651.933316101],[516076.5956281672,5277649.435342785],[516073.887558486,5277648.383150499],[516076.035559735,5277642.854316886]]]},"properties":{"ID_SOURCE":"w144657416","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":402}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.1160755713,5277454.36608489],[516150.7787136416,5277453.445504772],[516151.013565883,5277450.000821658],[516145.60772419523,5277449.541268563],[516146.0743409501,5277443.763291696],[516151.6306929544,5277444.112122906],[516151.55251142586,5277445.22330427],[516156.8609447722,5277445.604794666],[516162.89019779966,5277446.03274688],[516162.1160755713,5277454.36608489]]]},"properties":{"ID_SOURCE":"w144657417","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":403}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516166.37176820065,5277409.255131651],[516166.4481013852,5277408.810784322],[516166.6078656609,5277405.365893529],[516166.83964291203,5277403.0326009095],[516169.9183876459,5277403.152290507],[516170.0722893955,5277401.819040107],[516180.1336860333,5277402.513831474],[516179.58668321517,5277410.180958997],[516173.459765769,5277409.752718396],[516166.37176820065,5277409.255131651]]]},"properties":{"ID_SOURCE":"w144657420","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":404}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515558.0227604912,5277032.3899894105],[515551.92808703677,5277036.597016765],[515547.9648097364,5277030.140330465],[515545.7832431371,5277031.468182081],[515540.62274524156,5277023.34120929],[515554.6166827361,5277014.153979855],[515559.92707992735,5277022.39250524],[515554.20821006043,5277026.489394742],[515558.0227604912,5277032.3899894105]]]},"properties":{"ID_SOURCE":"w144657424","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":405}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515475.1105126824,5277285.678727925],[515475.54929879797,5277290.125483515],[515479.8311978025,5277289.69230719],[515480.9384946133,5277296.919334015],[515476.8070966702,5277297.241769823],[515476.95522908797,5277298.020141734],[515471.49447013886,5277298.372389692],[515465.46283235995,5277298.767582253],[515463.99388877687,5277286.31603048],[515475.1105126824,5277285.678727925]]]},"properties":{"ID_SOURCE":"w144657426","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":406}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516068.3669847598,5277382.087993583],[516071.6731872376,5277381.430280264],[516073.1533859891,5277389.3252927],[516069.8465743051,5277390.205283096],[516069.5495524381,5277388.981925413],[516059.48137593386,5277390.732382385],[516058.00177208777,5277382.615095531],[516063.4863385109,5277381.785562342],[516068.14444785827,5277381.087121169],[516068.3669847598,5277382.087993583]]]},"properties":{"ID_SOURCE":"w144657427","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":407}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515404.00435233396,5277507.325104728],[515405.064833612,5277503.882577962],[515409.19225678925,5277505.004898298],[515409.6782138976,5277505.828618777],[515410.16411203536,5277506.674567098],[515414.2170232746,5277507.574414253],[515412.245658813,5277514.682140304],[515401.13947545347,5277511.540836537],[515402.5035785229,5277506.876575065],[515404.00435233396,5277507.325104728]]]},"properties":{"ID_SOURCE":"w144657433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":408}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516119.2136318894,5276916.686275185],[516121.07994034054,5276923.493193213],[516117.8554728058,5276924.373385038],[516118.2643974507,5276925.874903292],[516113.27361087804,5276927.239223544],[516108.448211344,5276928.548435707],[516106.5001042403,5276921.441218219],[516116.436561845,5276918.734673451],[516116.1094213557,5276917.53345896],[516119.2136318894,5276916.686275185]]]},"properties":{"ID_SOURCE":"w144657434","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":409}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516045.06175173784,5277390.914905928],[516045.8035530233,5277394.251144433],[516037.83846971305,5277395.896295409],[516036.8728977292,5277392.003742542],[516038.15049921,5277391.673842341],[516035.1799029934,5277379.551421552],[516042.99450324936,5277378.016992024],[516044.3975537138,5277383.944609791],[516045.96385882853,5277390.583972647],[516045.06175173784,5277390.914905928]]]},"properties":{"ID_SOURCE":"w144657437","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":410}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515470.47023429483,5277562.293251602],[515478.5901429691,5277558.758361258],[515477.91899899486,5277556.978340434],[515482.8813029018,5277554.768739566],[515487.4350128689,5277565.005711558],[515468.5644663853,5277572.957606792],[515465.7573066833,5277566.7485490665],[515464.08494079666,5277563.054265952],[515469.4984056995,5277560.623572531],[515470.47023429483,5277562.293251602]]]},"properties":{"ID_SOURCE":"w144657442","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":411}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.67171933234,5277424.159929094],[516218.125821154,5277424.325145562],[516218.3004805906,5277420.935867353],[516228.9480418336,5277421.476780397],[516228.81321796763,5277424.043734627],[516230.1347983169,5277424.102988505],[516229.9995402369,5277426.825537269],[516229.8564626063,5277429.659204078],[516228.6700608574,5277429.600327052],[516228.52682903863,5277432.489563391],[516225.82365525194,5277432.348661423],[516224.87819817103,5277450.928606414],[516213.33714504715,5277450.340756323],[516214.67171933234,5277424.159929094]]]},"properties":{"ID_SOURCE":"w144657443","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":412}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516212.681300561,5276933.372212806],[516210.42908106255,5276933.032523321],[516210.965335261,5276929.2552650105],[516211.49076067784,5276929.367867523],[516212.02763473114,5276925.368331573],[516212.7783755499,5276925.481561508],[516213.07738117245,5276923.292941148],[516213.6218601879,5276919.260084629],[516214.44770687114,5276919.3735238975],[516218.8022550988,5276919.941349558],[516218.4962628845,5276921.941012605],[516222.1751728599,5276922.395819299],[516220.4137021659,5276934.616283893],[516212.681300561,5276933.372212806]]]},"properties":{"ID_SOURCE":"w144657444","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":413}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515721.6881510569,5276804.88207746],[515718.15814248234,5276804.872548203],[515718.0118291286,5276803.42733755],[515707.59388639306,5276803.643734341],[515698.78334513615,5276803.820027019],[515698.8860164776,5276793.595454303],[515718.1890409808,5276793.425245549],[515718.3458541417,5276790.980596095],[515721.9512779375,5276790.879189366],[515721.6881510569,5276804.88207746]]]},"properties":{"ID_SOURCE":"w144657447","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":414}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515735.9810970465,5277024.421575613],[515731.03325814754,5277021.074015131],[515733.7481053548,5277016.969180883],[515734.87256053515,5277017.750197304],[515736.607156988,5277015.087531826],[515738.9311708494,5277016.649768986],[515738.40304086974,5277017.537459188],[515739.90241354273,5277018.541769364],[515735.9810970465,5277024.421575613]]]},"properties":{"ID_SOURCE":"w144657454","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":415}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516290.28627453407,5277677.447575455],[516297.9004604502,5277666.910598038],[516306.06905623997,5277672.935025347],[516305.11167181097,5277674.2437944515],[516303.9582928909,5277675.818750531],[516304.5574993673,5277676.376128077],[516301.24054513033,5277680.923574451],[516300.6410276217,5277680.477336252],[516299.5553302305,5277682.01914075],[516298.5299585269,5277683.472202432],[516290.28627453407,5277677.447575455]]]},"properties":{"ID_SOURCE":"w144657458","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":416}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516037.5679393721,5277355.062787],[516044.8638352594,5277353.726982747],[516045.6555158316,5277358.041388707],[516046.291753133,5277361.532931876],[516045.20977053564,5277361.730001644],[516046.31218049553,5277367.745703038],[516038.3926714872,5277369.190927335],[516036.5652693519,5277359.183311737],[516038.2708835178,5277358.876818416],[516038.16724443773,5277358.331947912],[516037.5679393721,5277355.062787]]]},"properties":{"ID_SOURCE":"w144657459","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":417}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.30590462167,5277629.6802070895],[516038.8806753985,5277628.214744574],[516041.5962397034,5277629.278055096],[516039.29718661215,5277635.1287905555],[516036.7841692012,5277634.143836916],[516035.86150953645,5277636.497460165],[516029.027560553,5277633.833511882],[516031.674524206,5277627.08349773],[516035.14025399653,5277628.437834642],[516038.30590462167,5277629.6802070895]]]},"properties":{"ID_SOURCE":"w144657461","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":418}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.002239962,5277530.879971681],[516179.0355505901,5277527.431950079],[516178.2172016493,5277524.65117992],[516180.9225575962,5277523.991859221],[516180.55108652724,5277522.546008864],[516182.5052541702,5277521.962399111],[516185.3613317898,5277521.114561681],[516184.9147642735,5277519.668502276],[516188.97342113574,5277518.457248401],[516191.42598016775,5277527.688675614],[516180.002239962,5277530.879971681]]]},"properties":{"ID_SOURCE":"w144657462","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":419}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515627.06882067147,5277078.920139982],[515631.87959157676,5277077.37709709],[515633.0704983868,5277081.381323954],[515638.55749452295,5277079.728962444],[515639.0793351165,5277081.175180267],[515646.06899086636,5277079.304582513],[515647.18388858467,5277083.642027225],[515629.4491469981,5277087.484286578],[515629.1499285814,5277087.038924571],[515628.19854438916,5277083.3354185745],[515627.06882067147,5277078.920139982]]]},"properties":{"ID_SOURCE":"w144657464","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":420}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516228.79096962366,5277235.339385309],[516227.7022438918,5277221.777295927],[516237.16716500977,5277221.025704397],[516245.4301589913,5277220.381914404],[516253.39306017815,5277219.626158632],[516254.481416276,5277233.299391841],[516245.2418158519,5277234.051583808],[516235.7018137492,5277234.8029527655],[516235.6267127137,5277234.80274335],[516228.79096962366,5277235.339385309]]]},"properties":{"ID_SOURCE":"w144657465","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":421}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516043.81688143814,5277243.095551745],[516044.26105568156,5277245.4307110505],[516039.377048389,5277246.30637307],[516039.37490527617,5277247.084345623],[516035.2572655818,5277247.839868523],[516029.75709815894,5277248.836095457],[516028.423945816,5277242.052898851],[516038.79277329653,5277240.303215515],[516038.57022570586,5277239.302344481],[516042.9585416305,5277238.436429921],[516043.81688143814,5277243.095551745]]]},"properties":{"ID_SOURCE":"w144657468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":422}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515762.7914063527,5277685.3311758395],[515753.92505876726,5277687.196553063],[515752.29401511716,5277679.412351527],[515757.1782168524,5277678.314170984],[515758.98140660604,5277677.985632365],[515759.8095610045,5277677.2098953985],[515760.2622389983,5277676.433142059],[515760.56562907744,5277675.322565114],[515760.3439535424,5277673.988287059],[515761.61213653267,5277679.882131309],[515762.7914063527,5277685.3311758395]]]},"properties":{"ID_SOURCE":"w144657470","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":423}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.74888712296,5277490.72241816],[516082.99382368725,5277491.767809149],[516079.87524255004,5277492.49271793],[516080.0459720422,5277493.215598346],[516073.9215821059,5277494.621276141],[516071.5770005232,5277495.170502612],[516071.67349233973,5277495.581986335],[516066.9542917665,5277496.6803591335],[516064.675780391,5277486.893766995],[516080.9825276334,5277483.126688943],[516082.74888712296,5277490.72241816]]]},"properties":{"ID_SOURCE":"w144657473","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":424}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516139.3408333073,5277028.192957636],[516137.40168954316,5277023.297434192],[516140.3338168459,5277022.194163475],[516140.1842254181,5277021.971469328],[516144.58303487924,5277020.094288114],[516150.03453375556,5277017.775470805],[516153.09220932535,5277025.563734778],[516143.392119245,5277029.760144589],[516143.09355324064,5277029.092478339],[516142.2732666249,5277026.978548995],[516139.3408333073,5277028.192957636]]]},"properties":{"ID_SOURCE":"w144657477","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":425}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516171.73739171476,5277289.016758203],[516175.34251651354,5277288.915632791],[516175.3468391322,5277287.359687601],[516175.282854021,5277283.358477065],[516183.3195243309,5277283.047390005],[516183.44871906046,5277290.605255529],[516183.9747301828,5277290.49557781],[516184.1141183934,5277294.385858308],[516171.79674880014,5277294.6850528745],[516171.73739171476,5277289.016758203]]]},"properties":{"ID_SOURCE":"w144657479","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":426}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515500.7059071132,5277618.143621341],[515493.1900328087,5277617.65682777],[515493.86478316924,5277609.612102519],[515492.83614297217,5277609.5426811585],[515492.93909173144,5277607.542438877],[515490.22155677754,5277604.35660961],[515493.45820799173,5277601.542271668],[515493.53720848245,5277600.075436683],[515497.5090632379,5277600.363857773],[515500.1281252728,5277598.225832278],[515502.261534359,5277600.798841868],[515510.9109691221,5277601.4442627495],[515510.08253772114,5277610.78891219],[515503.91823772306,5277610.361275659],[515501.3504221984,5277610.176614252],[515500.7059071132,5277618.143621341]]]},"properties":{"ID_SOURCE":"w144657480","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":427}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.5615497224,5277509.884127351],[516003.4430796446,5277510.575735355],[516003.59889022575,5277511.265230545],[515999.4810142678,5277512.176373204],[515994.08568932407,5277513.37297277],[515992.3127496184,5277505.399377266],[516001.8034030528,5277503.302684119],[516001.9962435066,5277504.18121873],[516005.14475585317,5277503.489692532],[516005.2189062668,5277503.834429826],[516006.5615497224,5277509.884127351]]]},"properties":{"ID_SOURCE":"w144657484","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":428}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516106.05421734543,5277033.768918788],[516114.6243350464,5277030.791856876],[516115.6746532896,5277033.917790655],[516117.603871029,5277039.691283426],[516103.921808234,5277044.432436848],[516101.0158208869,5277036.088919441],[516100.1964419297,5277033.6415793365],[516104.4816519425,5277032.097473051],[516105.3010293226,5277034.544813752],[516106.27829855744,5277034.214097598],[516106.05421734543,5277033.768918788]]]},"properties":{"ID_SOURCE":"w144657490","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":429}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515737.29513414897,5277088.441604085],[515736.6056915453,5277093.441028306],[515738.3982466129,5277097.11348406],[515742.8350208177,5277095.013823231],[515746.27171769814,5277101.691499513],[515736.94636254176,5277106.334157112],[515730.7470692046,5277093.647477127],[515718.28149764176,5277093.058114821],[515718.2964984021,5277087.50116924],[515737.29513414897,5277088.441604085]]]},"properties":{"ID_SOURCE":"w144657494","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":430}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516062.823957601,5277521.1530661825],[516070.39086106594,5277519.506850777],[516070.58620623185,5277519.474048043],[516071.401999474,5277523.199484296],[516072.46151587076,5277522.969015523],[516073.410672154,5277527.350545265],[516074.70100873813,5277533.2778608855],[516067.2994583324,5277534.880071042],[516065.0302207692,5277524.460006655],[516063.6100232948,5277524.76727948],[516062.823957601,5277521.1530661825]]]},"properties":{"ID_SOURCE":"w144657496","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":431}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516188.31239175476,5276945.863205743],[516177.79062348994,5276948.390178158],[516177.93928907113,5276948.946289892],[516175.76001723716,5276949.38479464],[516174.4118368551,5276948.047372796],[516173.9957573647,5276946.4235768765],[516173.5946368554,5276944.822050489],[516176.7511986143,5276944.052840608],[516176.00910415454,5276940.827726629],[516186.605990128,5276938.300959762],[516188.31239175476,5276945.863205743]]]},"properties":{"ID_SOURCE":"w144657497","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":432}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515902.0431481502,5277758.95104196],[515897.60079320014,5277708.2591367345],[515924.7179630576,5277705.44361506],[515928.35107595415,5277749.909495653],[515930.3786242667,5277749.915043593],[515930.96113101294,5277756.585029104],[515924.7267843539,5277757.123671068],[515913.3103258427,5277757.870431655],[515904.2214890774,5277758.734712999],[515902.0431481502,5277758.95104196]]]},"properties":{"ID_SOURCE":"w144657498","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sports_centre","MAIN_USE":"entertainment, arts and culture","ZINDEX":0,"ID_BUILD":433}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516280.28023707855,5276690.164815276],[516280.50897903804,5276688.9429180045],[516277.65704666945,5276688.156967725],[516276.081019326,5276687.7080038525],[516277.8280767308,5276680.71108563],[516282.1812439819,5276681.83465225],[516282.78863507265,5276679.5024167355],[516280.76226725127,5276678.941052753],[516281.9770493581,5276674.276581523],[516286.3302206447,5276675.400151223],[516286.0260579071,5276676.732977031],[516290.90436232364,5276678.08029819],[516289.1591536518,5276684.410379488],[516287.9583560215,5276684.073601694],[516287.1234631607,5276687.183178349],[516288.84970599983,5276687.632565377],[516287.6352319241,5276692.185896443],[516280.28023707855,5276690.164815276]]]},"properties":{"ID_SOURCE":"w144825729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":434}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516263.8402797597,5276552.527940518],[516262.1233051666,5276548.744396724],[516266.9368569086,5276546.423906742],[516268.7289389447,5276550.207661764],[516263.8402797597,5276552.527940518]]]},"properties":{"ID_SOURCE":"w144825737","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":435}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516255.09996866266,5276589.2907728255],[516251.739586676,5276582.279594161],[516269.5653657445,5276573.438191846],[516273.07563990896,5276580.560939308],[516255.09996866266,5276589.2907728255]]]},"properties":{"ID_SOURCE":"w144825739","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":436}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516277.65704666945,5276688.156967725],[516280.50897903804,5276688.9429180045],[516280.28023707855,5276690.164815276],[516277.35319720855,5276689.378655171],[516277.65704666945,5276688.156967725]]]},"properties":{"ID_SOURCE":"w144825746","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":437}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516265.37226707506,5276568.758612488],[516260.9665557636,5276559.521715651],[516266.5315063541,5276557.092183758],[516270.8627220911,5276566.106597309],[516265.37226707506,5276568.758612488]]]},"properties":{"ID_SOURCE":"w144825751","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":438}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516278.6380902928,5276579.020529477],[516274.67995970574,5276570.896269914],[516284.0820224576,5276566.143545705],[516288.18974067183,5276574.490509394],[516278.6380902928,5276579.020529477]]]},"properties":{"ID_SOURCE":"w144825754","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":439}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.6889797832,5277001.9258882925],[517287.5374518078,5277002.369997866],[517286.7870710367,5277002.1454904],[517286.25540374493,5277004.144429533],[517286.0667738064,5277006.966822038],[517278.06771096477,5277004.57580222],[517279.5314994479,5276999.767789896],[517278.06081118784,5276999.307752384],[517280.4332389615,5276992.012903715],[517284.13985655876,5276993.213101335],[517287.71141711925,5276994.36844441],[517286.79927895305,5276998.033351805],[517288.7500062348,5276998.7059825165],[517287.6889797832,5277001.9258882925]]]},"properties":{"ID_SOURCE":"w145186970","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":440}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516330.7886838716,5277628.1260326],[516330.3390121601,5277627.802465595],[516331.95990465087,5277625.550873055],[516333.7165013254,5277623.110723913],[516334.18119242054,5277623.434333318],[516334.6561683752,5277622.768826732],[516336.2921455148,5277620.49504975],[516344.6186873479,5277626.442175873],[516336.9363725135,5277637.123382875],[516328.6098694225,5277631.165153721],[516330.1855468719,5277628.969003804],[516330.7886838716,5277628.1260326]]]},"properties":{"ID_SOURCE":"w145186981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":441}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516672.83317734336,5277412.350546547],[516675.5210738218,5277415.203425156],[516679.12236980675,5277419.036952515],[516673.6999877244,5277424.356135022],[516672.11260749,5277422.706719115],[516671.2290532606,5277421.792842112],[516669.4973297549,5277423.34384193],[516666.4278308387,5277420.000858243],[516669.9670142267,5277416.676794419],[516668.8514800228,5277415.473289927],[516667.9026907887,5277416.359692582],[516661.491336291,5277420.864734146],[516658.5633742118,5277417.9222632265],[516669.6939851967,5277407.11798386],[516673.66180995,5277411.463800586],[516672.83317734336,5277412.350546547]]]},"properties":{"ID_SOURCE":"w145186993","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":442}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.3796900457,5277728.830584184],[517311.90204910317,5277724.518489275],[517316.7988500157,5277721.799009392],[517313.8442660352,5277727.9696049625],[517309.44614451984,5277742.293585212],[517306.60709022195,5277737.394984774],[517308.6382788488,5277736.178483625],[517307.00206635264,5277733.361777297],[517304.3796900457,5277728.830584184]]]},"properties":{"ID_SOURCE":"w145187029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":443}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.4561747102,5277703.161060319],[516753.48089594423,5277702.546064392],[516754.8650858159,5277743.449543388],[516755.70224287675,5277765.679940613],[516748.7926168969,5277765.99347698],[516745.78852923255,5277766.09597478],[516738.2784703456,5277766.296656543],[516735.4561747102,5277703.161060319]]]},"properties":{"ID_SOURCE":"w145187102","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":444}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.0984979578,5277566.460217418],[516925.9216607178,5277566.120468529],[516925.30990097043,5277569.897447385],[516915.25178224006,5277568.201116336],[516915.8635356275,5277564.4241364505],[516918.7906961145,5277564.988341859],[516920.77551430813,5277553.880118093],[516927.98191224196,5277554.901326522],[516927.2254301976,5277559.378065829],[516926.8357473536,5277561.677529218],[516928.8620693617,5277562.127980689],[516928.0984979578,5277566.460217418]]]},"properties":{"ID_SOURCE":"w145187104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":445}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.34558343835,5277575.960932379],[516641.8035238041,5277574.74827703],[516642.10518124327,5277574.304579744],[516646.91581707017,5277572.762374642],[516649.59641336685,5277580.772112681],[516648.4690111296,5277581.102308287],[516649.51051025564,5277584.550623546],[516643.0461715013,5277586.643798259],[516641.92989007797,5277583.084130496],[516640.95268183044,5277583.414756892],[516640.05135146884,5277580.844849008],[516638.34558343835,5277575.960932379]]]},"properties":{"ID_SOURCE":"w145187117","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":446}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.05033588957,5276938.546326868],[517314.8163055045,5276944.0025977595],[517314.5197704403,5276947.74712909],[517310.6076708747,5276947.446534297],[517310.45151430485,5276949.44658745],[517306.79470578395,5276949.168982108],[517307.5290330635,5276939.635365302],[517314.92524399684,5276940.201938709],[517315.05033588957,5276938.546326868]]]},"properties":{"ID_SOURCE":"w145187124","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":447}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517156.9042417747,5277469.993699263],[517156.8245585772,5277471.549423459],[517156.744220399,5277473.327425594],[517156.3487527432,5277480.105795993],[517145.8370106008,5277479.407989953],[517147.88972210133,5277445.405217769],[517158.3267546434,5277445.991667045],[517157.93095602404,5277452.88117602],[517157.84996223677,5277454.881456011],[517157.770606143,5277456.326041198],[517156.9042417747,5277469.993699263]]]},"properties":{"ID_SOURCE":"w145187136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":448}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.5003958358,5277294.491182594],[516728.9178889209,5277294.558686094],[516722.43631982314,5277294.684548592],[516722.31580476125,5277284.348196051],[516717.28407721274,5277284.333746759],[516716.85984550166,5277248.990056638],[516766.8783030348,5277248.689320033],[516766.99874024745,5277259.025673103],[516727.11960911634,5277259.133248656],[516727.42263271747,5277284.36286545],[516732.3044788287,5277284.265752921],[516732.5003958358,5277294.491182594]]]},"properties":{"ID_SOURCE":"w145187161","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"commercial","ZINDEX":0,"ID_BUILD":449}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.48292923224,5277484.422114126],[517291.48651434557,5277478.2827887675],[517293.8611103043,5277480.312588816],[517303.0599121508,5277488.15305862],[517302.31393371354,5277488.995505221],[517296.23591071385,5277494.912318488],[517295.29441597423,5277495.843097101],[517294.56421851023,5277496.429969697],[517288.35462592414,5277491.021239656],[517289.47675103764,5277489.957628401],[517284.2927868124,5277485.6300061485],[517285.48292923224,5277484.422114126]]]},"properties":{"ID_SOURCE":"w145187164","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":450}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.3024682542,5276824.27447078],[516695.381643689,5276829.597937315],[516682.26670030336,5276819.557771975],[516680.38139974576,5276822.219725746],[516673.261250669,5276816.975765768],[516677.03089546587,5276811.985270848],[516679.7289994605,5276813.993514264],[516683.5740766842,5276808.892099859],[516693.2424304957,5276816.032752685],[516691.4328673132,5276818.4726404715],[516699.3024682542,5276824.27447078]]]},"properties":{"ID_SOURCE":"w145187172","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":451}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.85723972163,5276716.977010619],[516642.28887064813,5276713.860615435],[516652.8185774599,5276708.778288568],[516653.640314,5276710.33659491],[516658.3787825228,5276708.016213043],[516662.1131871834,5276715.362120029],[516657.29897959245,5276717.904561709],[516657.89634428,5276719.1288076565],[516647.5165491829,5276724.322693653],[516645.94818407035,5276721.20629744],[516643.85723972163,5276716.977010619]]]},"properties":{"ID_SOURCE":"w145187180","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":452}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.62934312975,5277219.43275449],[516834.5092550071,5277234.991986873],[516827.59899467975,5277235.305430955],[516827.52806925675,5277233.860407859],[516823.6975937808,5277233.960478545],[516823.6282730069,5277231.959760872],[516821.67532357527,5277232.065258162],[516821.5339323855,5277218.616927508],[516830.0510579963,5277218.41926043],[516830.12294676265,5277219.530866748],[516834.62934312975,5277219.43275449]]]},"properties":{"ID_SOURCE":"w145187183","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":453}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516511.71387437213,5277423.338786094],[516513.06249720504,5277424.454009542],[516514.0962242091,5277430.68077356],[516507.84161912283,5277438.220546468],[516501.45636344835,5277438.869284558],[516494.1885050841,5277432.958277578],[516493.6810769003,5277426.510728412],[516499.4841391451,5277419.303080373],[516502.5641294026,5277418.978390061],[516502.3441886207,5277417.088389127],[516511.71387437213,5277423.338786094]]]},"properties":{"ID_SOURCE":"w145187184","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":454}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516789.5719723143,5277764.999544698],[516783.9318201318,5277765.183332813],[516780.559705637,5277765.30697962],[516771.47202559526,5277765.725351171],[516770.84472763987,5277741.050477284],[516770.7030375476,5277735.49307223],[516769.85225010896,5277702.37092103],[516787.4257668431,5277701.9770103],[516788.4225539184,5277731.309713717],[516788.67202937545,5277738.545643171],[516789.5719723143,5277764.999544698]]]},"properties":{"ID_SOURCE":"w145187188","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":455}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516486.4120931778,5276917.025252349],[516482.1405374171,5276913.678967251],[516481.0849755873,5276915.120796526],[516469.61777482805,5276906.641730167],[516475.04673659644,5276899.099583818],[516480.6683158125,5276903.116522843],[516484.26613502606,5276905.682921138],[516485.3216993393,5276904.241092456],[516486.60352413316,5276902.466485273],[516493.5738392193,5276907.598653238],[516492.14148816187,5276909.483972347],[516486.4120931778,5276917.025252349]]]},"properties":{"ID_SOURCE":"w145187193","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":456}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516602.98359054496,5276735.309531168],[516598.33136110107,5276733.740312728],[516602.2689535313,5276722.526423215],[516603.46972537215,5276722.863265902],[516605.3626282671,5276717.53395553],[516612.79068314796,5276720.222494993],[516610.7481930945,5276725.329096829],[516612.3986584222,5276726.000643323],[516608.3108338152,5276737.214097677],[516604.10893533163,5276735.757298706],[516602.98359054496,5276735.309531168]]]},"properties":{"ID_SOURCE":"w145187203","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":457}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.8622035109,5276783.904895468],[516605.2897054012,5276785.251195936],[516601.57683498634,5276796.688004494],[516600.07596830616,5276796.239166856],[516598.2582018918,5276801.56869361],[516590.52950115094,5276798.990455044],[516592.1970477931,5276793.6604979085],[516590.920866562,5276793.434582343],[516594.6343514586,5276781.775489396],[516599.36165027454,5276783.344919181],[516600.8622035109,5276783.904895468]]]},"properties":{"ID_SOURCE":"w145187212","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":458}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516307.29133105144,5277745.957354433],[516317.34121448436,5277750.542250463],[516313.33567409293,5277759.6444960125],[516307.6356703226,5277757.072308405],[516307.9376042036,5277756.517454735],[516306.745192401,5277755.947301072],[516305.3878218845,5277755.287773708],[516304.1791536382,5277757.840606078],[516299.07865402004,5277755.714665504],[516304.5960240911,5277743.0601677755],[516307.9712284038,5277744.514440392],[516307.29133105144,5277745.957354433]]]},"properties":{"ID_SOURCE":"w145187232","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":459}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.3371534928,5276919.560307952],[516624.40317528124,5276883.075380361],[516638.49253936036,5276893.785039421],[516626.5076162986,5276908.865816557],[516611.3566121012,5276928.04975752],[516607.88783486903,5276932.930013501],[516598.5800765409,5276925.790528468],[516600.6765194449,5276922.806844729],[516596.3371534928,5276919.560307952]]]},"properties":{"ID_SOURCE":"w145187236","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":460}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516700.891425809,5277108.241203948],[516699.69265163667,5277107.237507335],[516706.17699315684,5277098.364922624],[516714.1209826992,5277104.278130832],[516707.7120570621,5277113.039783386],[516705.16398848617,5277111.143095542],[516695.5893053282,5277123.8967133965],[516688.0198812254,5277118.318023207],[516694.5780207481,5277109.890196368],[516697.8755260868,5277112.344727777],[516700.891425809,5277108.241203948]]]},"properties":{"ID_SOURCE":"w145187240","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":461}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.52625149005,5277568.869760477],[516722.4112926098,5277564.865521336],[516725.1170121146,5277564.09531439],[516730.3782596405,5277562.554472655],[516731.493532905,5277566.447574334],[516733.67325597495,5277565.786999629],[516734.9658513901,5277570.691984811],[516736.5703999422,5277576.798178102],[516727.85152576084,5277579.440477498],[516726.73689124855,5277575.325098463],[516724.0311767337,5277576.095304655],[516722.0230397785,5277569.310002259],[516723.52625149005,5277568.869760477]]]},"properties":{"ID_SOURCE":"w145187241","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":462}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517251.8789001233,5277529.178523568],[517250.40296971163,5277520.394094248],[517253.7089013956,5277519.848190881],[517254.99688770203,5277518.56278464],[517255.8178870447,5277517.742782339],[517255.8966079466,5277516.520476235],[517258.0806930462,5277514.415291103],[517259.5072153171,5277514.5306598665],[517265.57132269675,5277520.883617448],[517257.8896467253,5277528.196078461],[517251.8789001233,5277529.178523568]]]},"properties":{"ID_SOURCE":"w145187252","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":463}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517309.62978846015,5276910.056181681],[517309.46618688415,5276912.033984643],[517310.56996948126,5276912.126177688],[517311.83143998473,5276912.22995373],[517311.4652291749,5276916.6744589275],[517309.21260259574,5276916.489938749],[517309.10355709295,5276917.80106482],[517303.4044296798,5276917.32845354],[517302.87459352607,5276923.761876356],[517297.98640831996,5276923.358363981],[517299.16259186494,5276909.19152757],[517309.62978846015,5276910.056181681]]]},"properties":{"ID_SOURCE":"w145187281","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":464}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516993.8670442567,5277623.666608716],[516995.5936043393,5277623.893928715],[516994.75489496783,5277628.225937992],[516993.1486194794,5277627.954513358],[516986.34819817904,5277626.812154189],[516985.1471485237,5277626.641940065],[516985.7605627765,5277622.309272119],[516984.1094221482,5277621.971035126],[516984.79825645493,5277617.5274472],[516986.3743021891,5277617.865465274],[516986.7412491544,5277615.643737176],[516987.5211745065,5277610.866995577],[516995.7027677333,5277612.224553794],[516993.8670442567,5277623.666608716]]]},"properties":{"ID_SOURCE":"w145187300","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":465}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516402.1214377822,5276738.1856527],[516402.1211247505,5276738.296791544],[516402.3439427876,5276739.186536939],[516402.1186204888,5276739.185902292],[516398.9625434446,5276739.7327123955],[516398.2969042765,5276736.063227035],[516405.3604507781,5276734.860584811],[516405.1382592083,5276733.748561618],[516406.3406054837,5276733.529669425],[516406.930819309,5276737.310082936],[516402.1214377822,5276738.1856527]]]},"properties":{"ID_SOURCE":"w145187304","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":466}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.6458155916,5277641.393473947],[516977.10709684034,5277641.133364733],[516978.3374018695,5277633.8461725125],[516979.20058346575,5277633.993171848],[516979.43740014924,5277632.615727272],[516980.08702851506,5277628.738838088],[516985.8591528902,5277629.700365744],[516986.34819817904,5277626.812154189],[516993.1486194794,5277627.954513358],[516992.65953846497,5277630.853838252],[516988.91406676633,5277630.220523439],[516987.3323073508,5277639.562776856],[516989.0136432965,5277639.845532945],[516988.4711225814,5277643.04478013],[516984.86827546917,5277642.4341120515],[516978.6458155916,5277641.393473947]]]},"properties":{"ID_SOURCE":"w145187330","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":467}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.4317805809,5277534.486231401],[516928.6447349652,5277533.564389298],[516934.574504515,5277534.581893772],[516934.26991324406,5277536.025826734],[516936.6717294624,5277536.477373073],[516940.0494850133,5277537.042899927],[516939.2855787751,5277541.486274026],[516941.9123602305,5277542.0496170195],[516940.919928101,5277547.60372514],[516926.7715713428,5277545.006354521],[516928.4317805809,5277534.486231401]]]},"properties":{"ID_SOURCE":"w145187349","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":468}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516877.16630695213,5277652.33464859],[516877.1321743449,5277651.156466349],[516890.4854123403,5277650.772860854],[516890.7514897828,5277660.009361429],[516885.0436784216,5277660.181741812],[516882.3024968005,5277660.240476007],[516882.32828078093,5277661.707597917],[516877.506856582,5277661.793644234],[516877.43927059,5277661.793448297],[516877.3847037183,5277659.892797222],[516877.16630695213,5277652.33464859]]]},"properties":{"ID_SOURCE":"w145187397","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":469}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.5877038311,5277719.516605635],[516890.20248194574,5277712.054602645],[516897.05095634086,5277706.9620386325],[516899.519088835,5277710.414541127],[516899.06690623134,5277710.968928235],[516899.8372865862,5277712.038108039],[516904.52688990993,5277718.542296503],[516896.4749710554,5277724.298198485],[516894.3807040095,5277721.40248187],[516896.1868494475,5277720.074044255],[516895.81363335025,5277719.294981444],[516895.5877038311,5277719.516605635]]]},"properties":{"ID_SOURCE":"w145187416","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":470}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516877.619403831,5277700.681834897],[516872.3846537707,5277693.109145124],[516877.5014339794,5277689.567498823],[516878.2343379997,5277690.614339058],[516879.22153415444,5277692.017564485],[516882.4570718625,5277689.804147659],[516886.1970022162,5277694.927431733],[516882.05839106743,5277697.805067265],[516883.8526149468,5277700.588769129],[516878.05869660847,5277704.573006443],[516876.03918611666,5277701.7886532815],[516877.619403831,5277700.681834897]]]},"properties":{"ID_SOURCE":"w145187428","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":471}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517207.7036440277,5276798.19193115],[517203.64821073227,5276798.0688090185],[517203.73316754587,5276794.73486552],[517201.47996530414,5276794.72820933],[517201.52605433844,5276791.83871027],[517201.57083022455,5276789.393766605],[517207.80535229156,5276789.189906592],[517207.81126374763,5276787.189407384],[517213.218956137,5276787.205389569],[517213.21304282424,5276789.205888775],[517217.49380256166,5276789.329683743],[517217.54294991225,5276798.10987461],[517207.7036440277,5276798.19193115]]]},"properties":{"ID_SOURCE":"w145187447","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":472}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.71210992924,5277468.034676799],[516650.53042772604,5277466.878626851],[516653.49940768705,5277465.975771606],[516654.4368686881,5277469.045913848],[516655.61692512844,5277468.693642001],[516656.89665564155,5277472.876162621],[516658.68231191824,5277478.716115374],[516650.7149415581,5277481.138401034],[516648.93672429596,5277475.320699991],[516645.7948656823,5277476.278633209],[516644.6268217521,5277472.429853976],[516647.7611406639,5277471.483012552],[516646.71210992924,5277468.034676799]]]},"properties":{"ID_SOURCE":"w145187460","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":473}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.18131284905,5276702.787586663],[516462.89748382807,5276706.793468139],[516459.965136244,5276707.89657639],[516461.6065129049,5276711.791106389],[516462.65110985993,5276714.2391333245],[516459.64334418956,5276715.453168253],[516458.82249895146,5276713.561472878],[516455.6641727858,5276714.897338029],[516451.75389163365,5276716.542271734],[516448.09935343114,5276707.418490987],[516458.1003182923,5276703.334577051],[516458.32375737146,5276704.002046886],[516461.18131284905,5276702.787586663]]]},"properties":{"ID_SOURCE":"w145187465","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":474}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.4906596337,5277381.661283954],[516722.0815115916,5277365.924180469],[516730.84290632885,5277374.729400322],[516729.71322415315,5277375.8375528585],[516737.80093683547,5277383.8628686145],[516759.580003863,5277383.814380327],[516760.02699482534,5277411.156076679],[516751.99078616477,5277411.355228471],[516752.04605860956,5277418.246059989],[516716.9736962433,5277418.589811573],[516716.8994462845,5277392.138308451],[516706.4906596337,5277381.661283954]]]},"properties":{"ID_SOURCE":"w145187549","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"religious","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":475}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.7329473166,5277622.768422309],[517211.34021711303,5277620.904596138],[517208.5040160922,5277620.073776252],[517210.24995346216,5277613.743959535],[517207.849175283,5277612.958883182],[517213.01124905574,5277594.191490311],[517216.0124770137,5277595.089484276],[517214.79647451866,5277599.97604665],[517215.9222625426,5277600.201655569],[517214.0995756904,5277607.086943368],[517221.45276308176,5277609.220349403],[517218.492125547,5277619.992168546],[517217.7329473166,5277622.768422309]]]},"properties":{"ID_SOURCE":"w145187558","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":476}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.03348842403,5277696.075369012],[516935.5804930976,5277705.073477707],[516931.75258799986,5277704.395503589],[516925.14713606174,5277703.376036361],[516925.3002341316,5277702.37622194],[516923.19854264986,5277702.036692204],[516920.94666085835,5277701.69672669],[516922.2465365359,5277693.698428924],[516931.17897912563,5277695.058079784],[516931.86517889344,5277691.503597244],[516937.7200150067,5277692.4097481435],[516937.03348842403,5277696.075369012]]]},"properties":{"ID_SOURCE":"w145187568","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":477}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.90204910317,5277724.518489275],[517304.3796900457,5277728.830584184],[517302.7358648309,5277726.047198477],[517302.20954107994,5277726.267914158],[517299.639559031,5277721.792448984],[517296.4569652325,5277716.24822097],[517304.5059900112,5277711.604261359],[517307.9421830263,5277717.727175663],[517313.2077458966,5277714.742053153],[517315.598220388,5277718.972482403],[517315.2971799676,5277719.193866984],[517316.7988500157,5277721.799009392],[517311.90204910317,5277724.518489275]]]},"properties":{"ID_SOURCE":"w145187585","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":478}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.35914887313,5276741.246617147],[516580.81327421847,5276740.025372973],[516575.636239569,5276738.121259195],[516578.4370466805,5276730.460589839],[516583.6891947832,5276732.364919957],[516584.1433215047,5276731.1436760565],[516595.3232601017,5276735.065416505],[516593.73333519144,5276739.506475578],[516593.27952377335,5276740.616579907],[516591.61386124283,5276745.279703264],[516580.35914887313,5276741.246617147]]]},"properties":{"ID_SOURCE":"w145187602","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":479}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517059.2697021393,5277651.531735],[517055.6725980245,5277648.964976726],[517057.482059207,5277646.525199196],[517066.22900415305,5277634.325439504],[517066.3795217693,5277634.214740798],[517069.0806935165,5277635.00063951],[517071.5569027744,5277635.6747398535],[517069.294250316,5277639.00230385],[517069.06928862847,5277638.890504318],[517067.27448098647,5277641.452575157],[517061.15100272134,5277650.2035686225],[517060.55186556483,5277649.646113066],[517059.2697021393,5277651.531735]]]},"properties":{"ID_SOURCE":"w145187644","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":480}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.88409707794,5277528.341236534],[516707.2041310714,5277525.589477363],[516708.1708273605,5277528.926448391],[516706.1412879632,5277529.587463612],[516709.1148754966,5277540.154287198],[516701.7473878009,5277542.911644338],[516701.30031240615,5277541.687822939],[516697.91743695736,5277542.900658352],[516695.9063893696,5277537.11561624],[516699.89068266295,5277535.682224969],[516699.44408449216,5277534.29169526],[516697.5833892732,5277528.451513977],[516697.88409707794,5277528.341236534]]]},"properties":{"ID_SOURCE":"w145187649","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":481}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517115.4146423225,5277584.123435694],[517118.82352909073,5277586.856387018],[517122.08254654467,5277589.477759652],[517117.03212948743,5277595.909025439],[517116.9570330825,5277595.908804645],[517114.4697036637,5277599.013410622],[517110.5738386812,5277595.890040683],[517106.6698053367,5277595.545148044],[517106.8973805652,5277594.767837124],[517109.460130801,5277591.552309646],[517110.2140351195,5277590.554265791],[517114.96242935996,5277584.677805995],[517115.4146423225,5277584.123435694]]]},"properties":{"ID_SOURCE":"w145187658","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":482}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.05540182214,5276777.645329541],[516732.7726602163,5276778.9588397015],[516736.0619056781,5276784.347456651],[516734.5492021255,5276790.633620187],[516734.0635045787,5276792.377118799],[516728.66476546397,5276791.861478313],[516724.52158524067,5276790.904889599],[516724.60419006593,5276796.139809872],[516720.70942967443,5276800.218568791],[516712.75032706227,5276794.194173432],[516711.5733839638,5276793.412817381],[516707.7431779562,5276790.7011305],[516707.2964099772,5276786.732159095],[516716.8432515716,5276773.411671532],[516721.8008033214,5276775.870979917],[516723.04091894196,5276780.8091466],[516732.05540182214,5276777.645329541]]]},"properties":{"ID_SOURCE":"w145187707","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":483}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.5778148249,5277548.014509103],[517004.28006595455,5277555.234813913],[517003.59250817285,5277559.233843223],[516999.1637396638,5277558.554070539],[516998.88926965685,5277559.964746228],[516998.7063438094,5277560.886673532],[516991.12512961787,5277559.6420036815],[516992.95794731803,5277549.200199831],[516996.1854961921,5277549.765320916],[516996.4133828429,5277548.876866782],[517001.81777090003,5277549.781766217],[517003.1009115384,5277547.562714979],[517005.5778148249,5277548.014509103]]]},"properties":{"ID_SOURCE":"w145187719","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":484}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.5925347735,5277543.471027715],[516959.6599360129,5277549.103105004],[516956.31222811784,5277548.537654227],[516956.0837002059,5277549.648387875],[516946.4010402149,5277547.953096724],[516947.84891300794,5277540.733216484],[516952.3601782414,5277541.457646194],[516954.1541574852,5277541.751834],[516954.3059699483,5277541.196576493],[516957.6089477164,5277541.650755876],[516957.456163811,5277542.539430237],[516960.75881680375,5277543.104750395],[516960.5925347735,5277543.471027715]]]},"properties":{"ID_SOURCE":"w145187740","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":485}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.97609346453,5277659.9838217385],[516946.89873322344,5277660.761576137],[516952.00264252105,5277661.665555317],[516949.48080676084,5277676.662104977],[516942.61284830334,5277675.51959992],[516943.7214301801,5277668.754403742],[516933.9638695935,5277667.058913934],[516934.19335870224,5277665.614762234],[516933.0300573019,5277665.377984652],[516932.01688217,5277665.163871926],[516932.17095209827,5277663.830640742],[516932.0961798183,5277663.719283325],[516933.0905242043,5277657.49833876],[516946.97609346453,5277659.9838217385]]]},"properties":{"ID_SOURCE":"w145187764","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":486}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.1343817542,5277421.340842922],[517135.71803767246,5277421.807717853],[517135.3183392449,5277430.0308955265],[517127.6599224143,5277429.4526612],[517127.82156289543,5277425.56323955],[517124.1725226558,5277425.296883971],[517116.7092569357,5277424.752580056],[517116.47285203566,5277428.530642252],[517108.9646286327,5277427.952874093],[517109.5886061647,5277420.063773668],[517117.02206777025,5277420.530182852],[517117.2594535602,5277416.418703861],[517128.2963496943,5277417.340282379],[517128.1343817542,5277421.340842922]]]},"properties":{"ID_SOURCE":"w145187767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":487}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517124.2617765489,5277257.064674367],[517112.61886980006,5277257.808422535],[517112.4758544168,5277255.362924677],[517109.997201513,5277255.466780202],[517110.14021793316,5277257.912277998],[517096.8450982403,5277258.651202644],[517096.48950106674,5277251.8706254605],[517101.29693422513,5277251.551323867],[517100.7317069629,5277239.4354163455],[517116.50553117605,5277238.592646667],[517116.79221282015,5277243.261364618],[517123.55227918754,5277242.947822004],[517124.2617765489,5277257.064674367]]]},"properties":{"ID_SOURCE":"w145187781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":488}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.23697561247,5276740.822978762],[516465.51369377115,5276743.121328302],[516461.1364121532,5276745.242836127],[516456.80531157396,5276736.339416384],[516459.5129500697,5276735.013391974],[516458.9158595555,5276733.678027597],[516459.5962249122,5276732.123994357],[516463.3569426061,5276730.245249658],[516465.0847304908,5276730.138994809],[516465.9058855694,5276731.919552285],[516468.91458700236,5276730.372104051],[516473.9926607102,5276740.722462406],[516470.9088558418,5276742.2696956005],[516470.23697561247,5276740.822978762]]]},"properties":{"ID_SOURCE":"w145187789","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":489}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.10214697296,5277681.304354864],[516643.481530267,5277681.280673179],[516647.93477623194,5277681.260064229],[516647.9125246606,5277678.537072685],[516651.8551563403,5277678.503892577],[516651.8778193306,5277681.082403437],[516652.4260149573,5277681.083971483],[516652.47726729186,5277689.41961181],[516640.7921389734,5277689.497338863],[516640.8030916615,5277690.919961096],[516636.8154113937,5277690.953019907],[516636.76242159604,5277683.217530382],[516640.11173388234,5277683.204874806],[516640.10214697296,5277681.304354864]]]},"properties":{"ID_SOURCE":"w145187791","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":490}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517234.2284779952,5276794.158198632],[517232.1258178817,5276794.040836303],[517232.1419329395,5276788.595032898],[517239.5027304551,5276788.50567957],[517239.5758631555,5276789.17273499],[517240.6051226448,5276789.07575631],[517241.75461889023,5276788.9569058465],[517241.8353197866,5276787.067767872],[517246.8687947999,5276786.6381140435],[517246.8572742143,5276790.5279736],[517249.6365549129,5276790.42506583],[517249.4600045133,5276799.315728514],[517234.0637921805,5276799.047863295],[517234.2284779952,5276794.158198632]]]},"properties":{"ID_SOURCE":"w145187800","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":491}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.7653300292,5277733.002798851],[516910.4854041112,5277735.452873979],[516917.1539669957,5277740.584686433],[516913.1967803077,5277745.641170239],[516912.5560880488,5277746.461744539],[516912.7056312011,5277746.6844588965],[516911.8009462688,5277747.904370168],[516912.5502762583,5277748.462246816],[516909.3089487531,5277752.67614936],[516902.94044801407,5277747.656356936],[516906.4077026603,5277743.220827099],[516905.5191556299,5277738.883788619],[516903.7990804912,5277736.433714949],[516908.7653300292,5277733.002798851]]]},"properties":{"ID_SOURCE":"w145187803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":492}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516873.8372935645,5277660.88277361],[516869.98453712725,5277660.993861846],[516870.0113869932,5277662.094224999],[516862.7865518973,5277662.295573371],[516862.66436745063,5277652.626045327],[516864.1662807544,5277652.630395827],[516864.1743293473,5277649.8519208515],[516868.45510632545,5277649.753182902],[516868.52182932897,5277652.643014465],[516877.16630695213,5277652.33464859],[516877.3847037183,5277659.892797222],[516873.75726547,5277659.993422184],[516873.8372935645,5277660.88277361]]]},"properties":{"ID_SOURCE":"w145187818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":493}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516955.9225024057,5277579.211138613],[516956.3041356864,5277577.100591484],[516960.28199132887,5277577.8901579445],[516960.2043045393,5277578.779051055],[516969.21168778185,5277580.250117379],[516967.4556380356,5277590.136453017],[516961.8263166652,5277589.119789977],[516962.0541965757,5277588.231334459],[516960.3128643641,5277587.915069507],[516958.3013140374,5277587.5535619855],[516958.07343467354,5277588.442017645],[516954.47042117105,5277587.875824116],[516954.62320348853,5277586.987149617],[516955.9225024057,5277579.211138613]]]},"properties":{"ID_SOURCE":"w145187825","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":494}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.4972665067,5276874.56480383],[516540.9965390561,5276875.569320281],[516542.3531770989,5276873.906077604],[516544.45203177375,5276875.356857317],[516535.85747739294,5276886.779840862],[516534.7327878621,5276886.109808618],[516531.5660498919,5276890.435268358],[516525.04511912697,5276885.748889301],[516528.212170208,5276881.312287183],[516526.86279276194,5276880.419339203],[516534.17580726,5276870.659800036],[516538.1485204895,5276873.4495755145],[516539.4972665067,5276874.56480383]]]},"properties":{"ID_SOURCE":"w145187830","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":495}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.15112898295,5277367.709474002],[516409.786602794,5277368.314238415],[516408.3562318499,5277372.211215417],[516405.1677697445,5277371.0463761855],[516404.19144243735,5277373.722095363],[516407.39489179256,5277374.89809029],[516404.8747347205,5277381.7594308695],[516391.6032443325,5277376.909696852],[516394.1385328247,5277370.003937322],[516397.22198388237,5277371.124018818],[516399.6210069843,5277364.606867353],[516401.369037654,5277365.245288383],[516408.15112898295,5277367.709474002]]]},"properties":{"ID_SOURCE":"w145187883","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":496}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516405.1382592083,5276733.748561618],[516405.3604507781,5276734.860584811],[516398.2969042765,5276736.063227035],[516395.66689108283,5276736.500380592],[516394.3286281126,5276728.972453596],[516393.6705893663,5276725.26964833],[516392.46824187733,5276725.488543134],[516391.8758275644,5276722.486103073],[516407.2062421934,5276719.528503046],[516407.94541965413,5276723.753895165],[516405.9913687977,5276724.192948696],[516403.5115648963,5276724.630521909],[516404.0285523397,5276727.7438904485],[516405.1382592083,5276733.748561618]]]},"properties":{"ID_SOURCE":"w145187916","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":497}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516547.5573908152,5276808.059443543],[516547.4709149679,5276812.060228897],[516535.6791948666,5276812.026733296],[516535.8056782892,5276801.868919246],[516535.8745374341,5276796.134303717],[516528.28686780564,5276796.77960112],[516528.30043199076,5276792.00063047],[516528.3016937751,5276791.5560750635],[516536.1162684936,5276790.355723232],[516544.68191441224,5276789.1575157065],[516544.6623373781,5276796.048124525],[516545.71351545386,5276796.162250893],[516545.67972708936,5276808.054108223],[516547.5573908152,5276808.059443543]]]},"properties":{"ID_SOURCE":"w145187977","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":498}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.17849962576,5276744.5809412645],[517315.11826195085,5276743.940676773],[517315.77109560464,5276751.722405279],[517310.36204855953,5276752.150883292],[517310.50730758865,5276753.81841238],[517310.02503531,5276754.350449935],[517309.6030471379,5276754.815982827],[517307.27406147437,5276755.031340167],[517307.41932130925,5276756.698869182],[517302.16049399704,5276757.1278012525],[517301.79783582035,5276752.792270804],[517301.3653528603,5276746.678295877],[517306.3237600596,5276746.248470228],[517306.17849962576,5276744.5809412645]]]},"properties":{"ID_SOURCE":"w145188003","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":499}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.2399259516,5276800.444250611],[517255.2698941102,5276790.3306156695],[517259.30352453387,5276790.209201502],[517261.95505818166,5276790.128148954],[517261.9530814962,5276790.794982025],[517268.56280893914,5276790.703439104],[517268.61056096165,5276799.928185993],[517268.0097075507,5276799.926404229],[517268.06965419673,5276805.039013891],[517268.21920827933,5276805.2617370235],[517268.27882507624,5276810.485485576],[517262.9452723123,5276810.803091404],[517262.60005008144,5276800.577204211],[517255.2399259516,5276800.444250611]]]},"properties":{"ID_SOURCE":"w145188029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":500}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.83694601967,5277139.803944831],[516854.6640777052,5277121.687650621],[516872.6145445282,5277121.406219108],[516872.2399312669,5277095.176132022],[516878.47346829664,5277095.194197938],[516878.5434165683,5277096.972638071],[516883.95114279765,5277096.877176277],[516884.6470821183,5277167.675274046],[516879.3896254569,5277167.771170475],[516879.38479268097,5277169.438254193],[516872.9263514969,5277169.308395293],[516872.63683038944,5277139.633217625],[516854.83694601967,5277139.803944831]]]},"properties":{"ID_SOURCE":"w145188032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":501}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.48947549495,5277062.531856577],[516775.45106287685,5277062.332508772],[516775.46226953634,5277058.442647391],[516826.459355175,5277057.922953933],[516826.43012927455,5277068.036593511],[516820.75964470464,5277068.086893868],[516803.28258398356,5277068.225370425],[516788.058684424,5277068.348167268],[516775.28324600385,5277068.444715386],[516768.87486112147,5277076.972908747],[516756.57076597057,5277093.363953082],[516744.40246796684,5277109.566476286],[516739.4718386662,5277116.1317769615],[516743.81883980124,5277119.256190739],[516736.95805708395,5277128.438843448],[516724.6388838715,5277144.91882407],[516719.61773721594,5277151.639477415],[516711.5239328026,5277145.614691085],[516735.8752202032,5277113.231802851],[516731.60363232973,5277109.9964719545],[516767.48947549495,5277062.531856577]]]},"properties":{"ID_SOURCE":"w145188046","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":502}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.57093036914,5276889.982401481],[517183.9269711364,5276889.034094829],[517184.15261489275,5276914.37464255],[517184.2126331328,5276919.487252095],[517184.26674760407,5276926.600361319],[517149.4920011933,5276926.875717678],[517138.5264697755,5276926.91011727],[517138.28983414196,5276905.23715386],[517138.30488071236,5276900.12476605],[517128.39031673543,5276900.317874013],[517123.2828242758,5276900.413992616],[517123.21915728773,5276896.523911494],[517123.16300680576,5276890.077636533],[517123.3132178237,5276890.078078239],[517128.57093036914,5276889.982401481]]]},"properties":{"ID_SOURCE":"w145188106","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sports_centre","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":503}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516827.33421649766,5277612.73572542],[516826.1320352137,5277612.954530595],[516824.2132581399,5277601.279293686],[516835.33362079,5277599.199782094],[516837.25237630494,5277610.875022681],[516836.5007714528,5277611.095128855],[516839.74778171047,5277630.887426479],[516836.0661519817,5277631.543617885],[516836.28822569567,5277632.6556593655],[516830.8036529557,5277633.528920185],[516827.5546864202,5277614.403461488],[516829.65802138014,5277614.1872615935],[516829.3630984211,5277612.297030374],[516827.33421649766,5277612.73572542]]]},"properties":{"ID_SOURCE":"w145188122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":504}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.72895723255,5276715.323646533],[516569.525652173,5276715.875921313],[516569.1460026441,5276717.319657694],[516569.444219957,5276718.098484374],[516570.715042307,5276720.213755426],[516561.46225800854,5276725.299861716],[516557.7252051941,5276718.843130154],[516560.0570203859,5276717.627223544],[516558.11464802007,5276713.954089038],[516558.7243586477,5276710.843910079],[516562.4024283819,5276711.632347832],[516564.74961674353,5276710.294233105],[516570.9035240367,5276706.7663834905],[516574.4906709164,5276713.111557022],[516570.72895723255,5276715.323646533]]]},"properties":{"ID_SOURCE":"w145188139","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":505}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516997.49163191876,5277591.113188429],[516996.5758734129,5277596.111811912],[516995.9637463243,5277599.999922608],[516992.28597157064,5277599.3223474175],[516992.4403813149,5277597.8779789405],[516986.43584915064,5277596.771284946],[516982.6079433212,5277596.071049868],[516984.059416076,5277587.62864915],[516987.887716454,5277588.195518379],[516988.5749358692,5277584.307626048],[516993.8290990919,5277585.212079923],[516993.1418762664,5277589.099971644],[516994.5680606954,5277589.326414524],[516994.41462348675,5277590.437365964],[516997.49163191876,5277591.113188429]]]},"properties":{"ID_SOURCE":"w145188145","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":506}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.6955466802,5276837.921808367],[516572.1194009371,5276839.0372578995],[516564.9571276676,5276848.574898744],[516563.6828542232,5276847.682155937],[516560.4412840836,5276851.896247316],[516554.070545071,5276847.210263271],[516557.38785127277,5276842.774104209],[516556.0387852694,5276841.770010673],[516563.1259459164,5276832.2321453495],[516564.2500103918,5276833.124460725],[516564.551699864,5276832.68075986],[516567.3243065448,5276834.911442556],[516567.09803936305,5276835.244218099],[516570.6955466802,5276837.921808367]]]},"properties":{"ID_SOURCE":"w145188153","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":507}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516958.67057598336,5277718.588628605],[516965.1892505046,5277723.608919481],[516965.6391712428,5277723.83251056],[516963.1516531098,5277727.048320497],[516961.35326579155,5277725.709401108],[516959.3185853092,5277728.148552366],[516962.3152489076,5277730.602361972],[516958.0940842911,5277736.035922126],[516954.7225959859,5277733.358743104],[516955.5515501466,5277732.360897808],[516949.7825299313,5277727.787360062],[516952.62405362626,5277724.205813469],[516955.58618564456,5277720.469023607],[516956.48505716736,5277721.249621338],[516958.67057598336,5277718.588628605]]]},"properties":{"ID_SOURCE":"w145188205","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":508}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516923.64545945486,5277625.795992669],[516922.7291235034,5277631.016905863],[516919.05103710754,5277630.450515872],[516918.8979383239,5277631.450330345],[516916.54070086643,5277631.176744498],[516914.91914514505,5277630.994209004],[516914.76572417584,5277632.105162582],[516907.40955056425,5277630.972394982],[516908.71006819734,5277622.751817107],[516916.06625196786,5277623.884586307],[516916.2212880591,5277622.217937814],[516920.4247292758,5277622.896992782],[516920.5027324701,5277621.896960099],[516924.1808241398,5277622.463350991],[516923.64545945486,5277625.795992669]]]},"properties":{"ID_SOURCE":"w145188229","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":509}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.1363247266,5277713.717687192],[517099.34014271223,5277713.220828837],[517050.15624407347,5277711.965173119],[517050.41082420206,5277701.963322308],[517050.4111497062,5277701.852183302],[517052.06324049906,5277701.857022186],[517059.64718777017,5277702.1015210925],[517059.9239310311,5277684.542218567],[517060.1912305765,5277670.205947542],[517067.3997415991,5277670.449356128],[517066.70579506457,5277702.233349805],[517119.9439235375,5277703.834485862],[517119.6892239893,5277713.836333949],[517117.1363247266,5277713.717687192]]]},"properties":{"ID_SOURCE":"w145188259","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":510}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.05670342164,5277664.695618526],[516965.50915371784,5277665.372518244],[516965.6635552003,5277663.928148929],[516969.6413501846,5277664.717722038],[516968.19024058187,5277673.048988273],[516963.83697403234,5277672.258322017],[516963.6822493633,5277673.8138304],[516957.0770918005,5277672.683188062],[516956.77217816864,5277674.238259162],[516953.2443131042,5277673.672284919],[516954.8485052449,5277664.341201402],[516958.3012803103,5277664.906957847],[516958.4537375451,5277664.129422348],[516962.05670342164,5277664.695618526]]]},"properties":{"ID_SOURCE":"w145188295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":511}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516625.7584061779,5276742.487452376],[516622.90686306066,5276741.590193945],[516626.2382430323,5276732.263965566],[516634.2671295302,5276734.954248081],[516638.4291607794,5276724.074442976],[516642.4808440291,5276725.530837391],[516643.90661815676,5276725.979471208],[516648.78384675964,5276727.660509067],[516644.5457382067,5276738.8735087225],[516643.1199672946,5276738.424874732],[516640.8502291558,5276744.197655296],[516633.49637277395,5276741.842710898],[516628.6939418057,5276740.273039097],[516627.6341870867,5276743.15964652],[516625.7584061779,5276742.487452376]]]},"properties":{"ID_SOURCE":"w145188309","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":512}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516453.75711796194,5277336.596770183],[516452.7833339574,5277335.704899679],[516447.0566027245,5277342.468249727],[516444.73447769013,5277340.350033675],[516447.9744388278,5277336.580431264],[516448.87375167,5277337.249810899],[516450.7575250848,5277335.032336447],[516441.61983560777,5277326.337618328],[516444.3315919081,5277323.455641031],[516445.6045231288,5277324.792914377],[516444.3231167041,5277326.456392571],[516448.8174909188,5277330.581261884],[516449.79692841467,5277329.472630669],[516455.64026522654,5277334.601575206],[516453.75711796194,5277336.596770183]]]},"properties":{"ID_SOURCE":"w145188351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":513}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.1892505046,5277723.608919481],[516958.67057598336,5277718.588628605],[516961.7607969574,5277714.707733076],[516962.43535545823,5277715.154258311],[516962.8045832305,5277714.721888326],[516963.1888947999,5277714.267334325],[516962.5904026168,5277713.487610783],[516962.8182779332,5277712.599155137],[516965.45599186135,5277709.383782802],[516968.6025284803,5277711.949172253],[516968.97832694615,5277711.839127677],[516970.02965561027,5277711.842192211],[516972.5022791541,5277713.738779651],[516969.6383068635,5277717.286909154],[516969.9377142911,5277717.621201781],[516965.1892505046,5277723.608919481]]]},"properties":{"ID_SOURCE":"w145188378","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":514}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.37579862226,5277694.830044276],[516967.9856296497,5277691.7199030975],[516966.2594125654,5277691.381452209],[516967.174482881,5277686.605101316],[516977.8328196694,5277688.414413903],[516976.9928360175,5277693.190982147],[516976.3169797087,5277693.189011264],[516975.40222694504,5277697.854221778],[516976.3030438789,5277697.967988506],[516975.6922367977,5277701.411545875],[516966.5355005388,5277699.717753064],[516967.1459784526,5277696.38533376],[516967.9717006663,5277696.498880333],[516968.35171129694,5277694.944028638],[516967.37579862226,5277694.830044276]]]},"properties":{"ID_SOURCE":"w145188381","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":515}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.80858518643,5277046.442881533],[517271.2760843469,5277040.753907011],[517271.7434525099,5277035.10938813],[517270.3168129223,5277034.9940167405],[517270.7045278237,5277030.88299171],[517279.93997391773,5277031.688370583],[517279.62735617586,5277035.799617895],[517279.31803690153,5277038.79947637],[517283.14733065217,5277039.144260674],[517284.2699257272,5277040.481271233],[517284.0366975123,5277043.1479357565],[517282.6818649668,5277044.144173147],[517282.44764801516,5277047.1442544125],[517278.54358578834,5277046.688108803],[517278.54259641527,5277047.021525471],[517270.80858518643,5277046.442881533]]]},"properties":{"ID_SOURCE":"w145188393","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":516}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516871.4412696711,5277681.770137322],[516869.42174802703,5277678.985786581],[516868.8951146401,5277679.317680394],[516866.4263067398,5277676.087469133],[516866.9587362622,5277673.755073042],[516868.4635423684,5277672.759173638],[516870.33996131684,5277673.098030715],[516871.16311201523,5277674.100675564],[516874.022535185,5277672.108443988],[516877.029643056,5277676.1626544995],[516878.06189918553,5277677.566010314],[516879.79231454077,5277676.459627976],[516882.1856972888,5277679.800766159],[516874.4272953609,5277685.324155751],[516872.8619965258,5277686.464360217],[516870.0866559222,5277682.76647119],[516871.4412696711,5277681.770137322]]]},"properties":{"ID_SOURCE":"w145188454","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":517}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.9637463243,5277599.999922608],[516996.5758734129,5277596.111811912],[516999.5036593795,5277596.453780004],[516999.7331673989,5277595.009631],[517001.6249154156,5277595.248549079],[517003.33649682405,5277595.464713582],[517003.259128265,5277596.242467171],[517009.4888820757,5277597.3720645355],[517008.95346632734,5277600.7046983605],[517011.20505752636,5277601.155836771],[517010.8227563519,5277603.488658403],[517009.6911163255,5277605.26359097],[516998.5820588627,5277603.45290502],[516998.58303237654,5277603.119488053],[516995.50570597994,5277602.554803972],[516995.9637463243,5277599.999922608]]]},"properties":{"ID_SOURCE":"w145188528","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":518}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.2109570713,5277654.066055053],[516591.19005096174,5277653.06858613],[516592.60197590454,5277653.0281541515],[516630.6184425372,5277652.069686682],[516631.7817175886,5277691.749958427],[516631.78140007734,5277691.8610974355],[516636.88818801247,5277691.764549268],[516636.9582013982,5277693.542988009],[516636.730057553,5277694.5425952785],[516636.9378743218,5277700.655884599],[516607.04782964656,5277701.348521583],[516606.70088745654,5277691.344939653],[516600.5427676032,5277691.438516309],[516600.2065883574,5277677.656208735],[516590.8190381317,5277677.851728],[516590.37452725664,5277659.912480195],[516590.2109570713,5277654.066055053]]]},"properties":{"ID_SOURCE":"w145188561","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":519}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516409.21823611634,5277364.800617691],[516402.4361731445,5277362.325316955],[516397.59689464764,5277360.6668162085],[516399.9966111006,5277353.905159304],[516403.1551690893,5277355.025455432],[516404.28310713946,5277351.850034057],[516407.77179010306,5277353.082402661],[516406.65899554605,5277356.21341011],[516409.6825286059,5277357.277759395],[516410.8180737259,5277354.06901875],[516414.44180773676,5277355.346227962],[516413.2759704373,5277358.643794391],[516416.216985676,5277359.674572512],[516413.83990780637,5277366.391830765],[516409.21823611634,5277364.800617691]]]},"properties":{"ID_SOURCE":"w145188577","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":520}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516848.00444674515,5277736.049694267],[516846.5012685139,5277736.489903943],[516850.29988845676,5277747.281472434],[516835.04061067157,5277752.460902346],[516831.46660684276,5277741.892273156],[516832.9697825263,5277741.452059602],[516834.2476748636,5277741.011194976],[516829.2597152525,5277725.992881152],[516830.83831089886,5277725.441745124],[516825.7004602165,5277710.311861548],[516840.4341748207,5277705.130886619],[516845.49657557777,5277720.371704866],[516844.5193785727,5277720.702297138],[516843.16638621705,5277721.142942239],[516848.00444674515,5277736.049694267]]]},"properties":{"ID_SOURCE":"w145188588","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":521}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.0499646221,5277678.207883762],[516830.51626467647,5277680.984839135],[516827.66457084083,5277680.309755951],[516825.5583689384,5277681.526207569],[516817.0369943937,5277667.831374149],[516822.378407008,5277664.512608362],[516820.73433366796,5277661.729359648],[516833.7506081673,5277653.209207735],[516835.6947388279,5277656.104467761],[516841.1866857043,5277652.675014577],[516847.6907401177,5277662.807566996],[516837.9857368136,5277668.892185558],[516837.6869621954,5277668.335621765],[516834.9484737393,5277670.061484996],[516833.3233914962,5277671.101501229],[516835.86442255834,5277675.332166578],[516831.0499646221,5277678.207883762]]]},"properties":{"ID_SOURCE":"w145188600","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":522}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516939.0644310766,5277746.538815998],[516938.01537223294,5277745.757783936],[516941.2570478387,5277741.432758347],[516941.9328985368,5277741.434725172],[516943.3802446092,5277739.538444194],[516945.40051018423,5277736.888079506],[516947.42806386383,5277736.893981657],[516950.5752406107,5277739.237083467],[516951.70262974134,5277738.906946316],[516954.92457452347,5277741.361408169],[516954.3215526176,5277742.137631635],[516954.5439230534,5277743.138538867],[516953.11130182334,5277745.134885939],[516952.2101681287,5277745.13226179],[516946.631824146,5277752.451257628],[516945.50799649995,5277751.558866588],[516939.0644310766,5277746.538815998]]]},"properties":{"ID_SOURCE":"w145188618","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":523}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.33538717363,5277708.705396627],[516691.80972261843,5277708.703889413],[516621.9641330177,5277711.060264398],[516692.33538717363,5277708.705396627]]]},"properties":{"ID_SOURCE":"w145188679","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":524}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517219.0371513902,5277410.317162406],[517218.9342310174,5277412.10621082],[517220.10557473905,5277412.176359121],[517219.87611908943,5277416.12114785],[517218.8324111271,5277416.06249106],[517218.68980508397,5277418.573831654],[517219.73351259617,5277418.632488418],[517219.3365878607,5277425.877637757],[517209.75551752787,5277425.338065353],[517209.77936118236,5277424.893576126],[517207.2414550536,5277424.74159292],[517207.3076623564,5277404.881083989],[517214.05819655885,5277405.190002758],[517213.7864128027,5277408.212205139],[517219.14030190953,5277408.450316724],[517219.0371513902,5277410.317162406]]]},"properties":{"ID_SOURCE":"w145188727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":525}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.2153020375,5277404.542959224],[516550.9508709273,5277408.312946484],[516549.13445043814,5277410.608378198],[516554.16974379745,5277414.612613812],[516546.0299286935,5277424.847684519],[516540.96466237365,5277420.821142737],[516533.2017288296,5277430.579400671],[516522.90637465386,5277422.381394295],[516526.9310272069,5277417.324839927],[516517.227596908,5277409.595311597],[516518.9083226804,5277407.477308763],[516525.254292268,5277399.515475745],[516539.978078251,5277411.226970153],[516543.88969452656,5277406.314588174],[516544.45167250664,5277406.760744507],[516546.2153020375,5277404.542959224]]]},"properties":{"ID_SOURCE":"w145188743","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":526}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.5868382216,5277646.165097523],[517274.81245528755,5277646.054627018],[517275.0344447083,5277647.166685456],[517279.2427754291,5277646.178914755],[517278.9460208584,5277644.955494274],[517283.90564170876,5277643.858816841],[517284.9444437023,5277648.085219987],[517287.0487744178,5277647.5357683385],[517288.01313783537,5277651.539671084],[517281.2499068198,5277653.075550765],[517281.6955321353,5277654.7439732],[517276.9612078748,5277655.841321086],[517277.1835263261,5277656.842240632],[517262.75462083094,5277660.35591679],[517260.1582374233,5277649.567641122],[517271.29530289,5277646.944425419],[517274.5868382216,5277646.165097523]]]},"properties":{"ID_SOURCE":"w145188778","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":527}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516362.61505892815,5277355.411511538],[516366.1282913485,5277345.240977658],[516373.3234684572,5277347.706283608],[516372.1498617685,5277351.103862117],[516374.7158279684,5277351.977968823],[516376.94191687094,5277345.527005837],[516383.93450789765,5277347.9250711985],[516382.8365887652,5277351.111694891],[516386.07028233184,5277352.221079161],[516383.6700497407,5277359.171677972],[516376.9850986102,5277356.8745039925],[516374.9635013968,5277362.7147731045],[516378.1896800402,5277363.824131906],[516375.7289132313,5277370.941273513],[516365.81028494955,5277367.53473373],[516369.2174704218,5277357.68620895],[516362.61505892815,5277355.411511538]]]},"properties":{"ID_SOURCE":"w145188813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":528}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.13847808616,5277355.523905617],[517271.29204674996,5277351.856743772],[517271.4452858984,5277348.300720894],[517271.60735394096,5277344.300164555],[517271.7444855199,5277341.110855676],[517281.62648394454,5277341.518054594],[517281.33530989557,5277348.530119327],[517281.18987155164,5277351.986139201],[517280.3810186101,5277371.477681031],[517280.2436189879,5277374.7559010275],[517279.9445092034,5277381.91242453],[517270.06257925916,5277381.50522827],[517270.20040158555,5277378.082527382],[517270.36213844694,5277374.193109771],[517270.51570622885,5277370.525947801],[517270.66143457225,5277366.969902524],[517271.13847808616,5277355.523905617]]]},"properties":{"ID_SOURCE":"w145188820","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":529}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.1620274906,5277685.061987704],[516895.6854363829,5277685.841486308],[516896.9646360091,5277684.956079427],[516896.5166450305,5277684.065659657],[516895.39473172487,5277682.50644441],[516897.12547151605,5277681.288928206],[516897.655654794,5277679.7345079025],[516897.5064319092,5277679.4006549595],[516898.78595583065,5277678.404109481],[516899.3109779304,5277678.627913388],[516902.77181681397,5277676.415161833],[516907.555971114,5277683.986570197],[516898.526796483,5277690.073051005],[516899.1249770279,5277690.96390691],[516896.26587697165,5277692.844987214],[516892.1524129128,5277687.053773144],[516895.1620274906,5277685.061987704]]]},"properties":{"ID_SOURCE":"w145188830","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":530}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.0889506391,5277366.935837414],[516880.09571722883,5277364.601919487],[516880.1105392766,5277359.489527866],[516880.11795029487,5277356.933332071],[516880.12632796523,5277354.043719446],[516890.33953986864,5277354.184478796],[516890.2428387671,5277361.630570413],[516890.23413364263,5277364.63132202],[516890.17964593443,5277383.413804617],[516890.24539505504,5277386.637052092],[516890.22411568573,5277393.972222997],[516879.9349079211,5277394.1646628035],[516880.02225127263,5277389.941600303],[516879.9532743659,5277387.829742462],[516880.0438399816,5277382.495290483],[516880.0509288059,5277380.050233547],[516880.0889506391,5277366.935837414]]]},"properties":{"ID_SOURCE":"w145188835","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":531}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.31746463437,5277336.162821931],[516408.7096911235,5277329.401147668],[516415.1619462045,5277331.664359864],[516416.2369179886,5277328.633273317],[516413.145843993,5277327.546502382],[516415.5002499085,5277320.884750173],[516425.3511825764,5277324.346753034],[516423.08009754674,5277330.753114761],[516429.58485274285,5277333.038719037],[516426.0115477931,5277343.16458963],[516419.14666889113,5277340.755719862],[516420.33519965626,5277337.40264875],[516417.244131083,5277336.315875615],[516414.9048431967,5277342.944327934],[516408.26507061074,5277340.602789574],[516409.44605383376,5277337.260808985],[516406.31746463437,5277336.162821931]]]},"properties":{"ID_SOURCE":"w145188855","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":532}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.144209608,5276841.39678773],[517273.15442927065,5276837.951483285],[517274.2092127419,5276836.843213836],[517276.91270622035,5276836.962374037],[517279.8418479806,5276836.971065251],[517280.5952186289,5276836.195322039],[517280.62325231615,5276826.748519654],[517286.40643979126,5276826.765684308],[517286.41171848326,5276824.987462699],[517290.99320606195,5276825.00106475],[517290.9562454019,5276837.44861611],[517290.1300772767,5276837.446163015],[517290.1181976181,5276841.447161718],[517280.8050360573,5276841.419516767],[517280.8020677417,5276842.4197664475],[517274.1927284101,5276842.400156487],[517273.144209608,5276841.39678773]]]},"properties":{"ID_SOURCE":"w145188869","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":533}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.8764923033,5277366.849394003],[516926.8839238723,5277364.293198188],[516926.8227182182,5277359.514005099],[516926.90524922754,5277356.95802765],[516926.83984303824,5277353.623640914],[516936.82840301836,5277353.541548926],[516936.8818413143,5277360.98807683],[516936.9485348491,5277363.877907936],[516936.96737907326,5277383.216303652],[516937.03374891245,5277386.2172738165],[516937.0875096107,5277393.552663154],[516927.0239192523,5277393.6345362],[516927.03587458644,5277389.52239494],[516926.9682071859,5277386.965980701],[516926.98177803215,5277382.298144723],[516926.98888656835,5277379.8530878],[516926.8764923033,5277366.849394003]]]},"properties":{"ID_SOURCE":"w145188872","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":534}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.02329491527,5277504.507054715],[517083.2798929511,5277505.008558837],[517082.89560025197,5277508.008209299],[517083.56821691594,5277509.121582219],[517084.54774607724,5277508.013057268],[517088.5269369256,5277508.358155303],[517087.67900890036,5277515.802041853],[517081.9732341194,5277515.22959836],[517081.66404012986,5277518.22946929],[517080.838294735,5277518.115906679],[517076.03303860826,5277517.76839092],[517076.41732716816,5277514.768739971],[517075.9684049297,5277514.200609616],[517075.36987440306,5277513.431988637],[517075.98695277696,5277507.876802087],[517075.7619861289,5277507.765002331],[517076.14787244523,5277504.220770451],[517079.02329491527,5277504.507054715]]]},"properties":{"ID_SOURCE":"w145188877","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":535}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.4040490381,5276883.363994468],[516792.03402991,5276885.2234578645],[516787.8915592876,5276863.205835831],[516802.0194750921,5276860.468088358],[516800.76255556993,5276853.573795089],[516815.5664549729,5276850.838030716],[516822.372823819,5276886.644701787],[516836.95133298147,5276883.908340903],[516840.9440351841,5276905.703286859],[516819.07651597523,5276909.752257393],[516817.5952746755,5276902.523892488],[516810.5312018422,5276903.948312465],[516813.933738213,5276922.073923062],[516792.06758168124,5276925.678439445],[516786.7423590104,5276897.10015836],[516804.62738872546,5276893.706410887],[516802.4040490381,5276883.363994468]]]},"properties":{"ID_SOURCE":"w145188885","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":536}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516370.0771560082,5277329.714731166],[516373.4158427563,5277320.199436164],[516380.2207784801,5277322.574741124],[516379.16087562736,5277325.594762613],[516382.05691618525,5277326.603168822],[516384.2448785208,5277320.363267187],[516391.18486437754,5277322.783420957],[516390.02651260246,5277326.092126891],[516393.1251016095,5277327.178906679],[516390.6418653146,5277334.262636532],[516384.519698758,5277332.122634228],[516383.5808931751,5277334.809576257],[516386.3568939202,5277335.773190932],[516383.9266770532,5277342.701477144],[516373.8130586107,5277339.1832355745],[516376.36439356755,5277331.91075244],[516370.0771560082,5277329.714731166]]]},"properties":{"ID_SOURCE":"w145188894","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":537}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516401.38484419003,5277319.6446600985],[516402.67900986684,5277316.1140593765],[516399.85813021037,5277315.083626674],[516397.4060474373,5277321.767337949],[516390.4138683871,5277319.213662041],[516391.5188382173,5277316.1937694745],[516388.09775098553,5277314.950487091],[516390.6709246227,5277307.933693421],[516397.16795751476,5277310.308151327],[516399.32486898307,5277304.43492938],[516396.1663766372,5277303.281293798],[516398.67141139833,5277296.464363517],[516408.67209461826,5277300.104583252],[516405.56909277895,5277308.575807812],[516411.9611041931,5277310.905530412],[516407.8818909898,5277322.008016147],[516401.38484419003,5277319.6446600985]]]},"properties":{"ID_SOURCE":"w145188899","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":538}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.85030389344,5277569.32212131],[517072.81944111356,5277563.659758698],[517084.14797225,5277567.471748846],[517085.2081332098,5277564.474081602],[517089.10925253783,5277565.819210616],[517088.5332321838,5277567.61798686],[517087.97236201336,5277569.372351652],[517088.94307386456,5277571.264579885],[517087.5808944502,5277574.817059737],[517085.85073539446,5277575.81224132],[517084.7141749103,5277579.2542440565],[517080.66287033935,5277577.908677289],[517077.661939015,5277576.899614208],[517078.1925058802,5277575.234071478],[517075.7169235587,5277574.337690468],[517075.338506446,5277575.336840029],[517069.56192837266,5277573.319381472],[517070.85030389344,5277569.32212131]]]},"properties":{"ID_SOURCE":"w145188910","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":539}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516358.12578905904,5277614.065788613],[516352.2451891659,5277622.273618955],[516350.61140412133,5277621.090947521],[516349.32237369654,5277620.153752434],[516348.86992466653,5277620.819321091],[516346.39674759546,5277619.034138379],[516344.29842550633,5277617.472288849],[516344.75087426865,5277616.806719844],[516343.9788819684,5277616.271081122],[516341.6778610536,5277614.686435526],[516342.80960691144,5277612.800234585],[516340.4863049994,5277611.126615036],[516340.86334566853,5277610.571973957],[516339.7240358584,5277609.801911086],[516337.8651120663,5277608.56304146],[516339.90050820773,5277605.79025701],[516343.59520065715,5277600.465914144],[516349.216188906,5277604.4827320585],[516347.6332377387,5277606.589944489],[516358.12578905904,5277614.065788613]]]},"properties":{"ID_SOURCE":"w145188917","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":540}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.46642968385,5277757.674354193],[516946.5382887264,5277758.785962964],[516943.8999604956,5277762.223622077],[516942.77289977437,5277762.442621722],[516940.67478856276,5277760.880556398],[516939.9963529006,5277761.767701854],[516933.7774305352,5277756.970590608],[516937.3958620989,5277752.202098938],[516936.57144056796,5277751.644000612],[516937.70206006913,5277750.202470591],[516936.8028672059,5277749.533014733],[516939.0644310766,5277746.538815998],[516945.50799649995,5277751.558866588],[516943.397590337,5277754.220082914],[516944.8962425249,5277755.335844466],[516944.2935468775,5277756.000929966],[516946.46642968385,5277757.674354193]]]},"properties":{"ID_SOURCE":"w145188928","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":541}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516400.0986294759,5277589.621962877],[516406.72058606293,5277584.861606069],[516405.7484026481,5277583.414048042],[516415.4552857648,5277576.550737562],[516416.4277813236,5277577.887158203],[516419.5884216035,5277575.562134052],[516418.61592637515,5277574.225712885],[516425.6137128068,5277569.355297548],[516426.5862072565,5277570.6917198775],[516431.4775309224,5277567.1490469845],[516438.1350964211,5277576.392450535],[516423.6119742665,5277586.79861062],[516422.78936138185,5277585.573751422],[516418.27448105946,5277588.784073582],[516419.0970944333,5277590.008932152],[516406.75621862523,5277598.865330816],[516400.0986294759,5277589.621962877]]]},"properties":{"ID_SOURCE":"w145188981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":542}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.03348842403,5277696.075369012],[516940.03567571886,5277696.6398038585],[516940.8024738499,5277691.196177771],[516941.47833037964,5277691.198144529],[516941.47897722747,5277690.975866522],[516941.70555645705,5277690.531966102],[516944.40736549074,5277691.095529053],[516945.3046255846,5277692.431820037],[516944.92203304125,5277694.875785262],[516949.7255322396,5277695.778888264],[516948.2744585387,5277704.1101597855],[516943.09452056215,5277703.539382193],[516942.71387033,5277705.316513552],[516940.8072338254,5277705.044229089],[516938.8105478268,5277704.74945525],[516938.582675882,5277705.63791182],[516935.5804930976,5277705.073477707],[516937.03348842403,5277696.075369012]]]},"properties":{"ID_SOURCE":"w145188982","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":543}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.1181147049,5277759.327010929],[517167.092535075,5277758.654197459],[517167.01678529487,5277758.876254041],[517162.0651482056,5277757.305694606],[517163.4286420653,5277753.3086751],[517164.3291192068,5277753.533609975],[517165.6171933521,5277749.647508605],[517168.7682092028,5277750.65706048],[517169.7460754725,5277750.1042445665],[517172.29666297283,5277751.000887533],[517172.6695122547,5277751.891107217],[517175.67033692263,5277752.900219805],[517174.4583347202,5277756.453123481],[517175.50867172406,5277756.789642187],[517173.0836870042,5277764.228866963],[517168.0569618326,5277762.658080879],[517169.1181147049,5277759.327010929]]]},"properties":{"ID_SOURCE":"w145188994","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":544}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516941.1996849695,5277580.501956726],[516940.587916735,5277584.278934081],[516939.6722061077,5277589.277566345],[516936.1442878838,5277588.7116026655],[516936.297390696,5277587.711788704],[516931.1930908875,5277586.918962545],[516931.1921212368,5277587.252379509],[516925.2624048342,5277586.234878269],[516926.02435606753,5277582.458335978],[516927.1504815117,5277582.572750026],[516927.8357220519,5277579.351684574],[516929.11527304683,5277578.355145856],[516932.1854320788,5277578.808633946],[516933.6942276035,5277579.035302146],[516933.92113379197,5277578.4802625105],[516937.74912155635,5277579.158237722],[516937.7465348289,5277580.0473496085],[516941.1996849695,5277580.501956726]]]},"properties":{"ID_SOURCE":"w145188999","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":545}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.6495362397,5277562.560218813],[516387.2715074102,5277557.79984005],[516386.2239049032,5277556.463212975],[516395.8560255289,5277549.488519702],[516396.82853013993,5277550.824936991],[516399.98886406934,5277548.611041273],[516399.01667286106,5277547.163484472],[516405.9396912329,5277542.181695143],[516406.91219477187,5277543.518114106],[516411.7284319721,5277539.975213113],[516418.4608436905,5277549.329944306],[516404.163293536,5277559.625648906],[516403.2655758199,5277558.40058094],[516401.1208691803,5277559.972724736],[516398.7503723408,5277561.722057115],[516399.6480904838,5277562.947124393],[516387.3071874416,5277571.803563972],[516380.6495362397,5277562.560218813]]]},"properties":{"ID_SOURCE":"w145189004","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":546}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516903.7990804912,5277736.433714949],[516903.34754487756,5277736.765823713],[516900.72988199384,5277733.090605378],[516901.5578589016,5277732.426169455],[516900.1365456525,5277730.532664044],[516897.6535829606,5277732.1925557265],[516895.1106865611,5277728.628696935],[516897.5188779142,5277726.8574471995],[516901.5072867363,5277723.979386517],[516902.18023535877,5277724.9815998245],[516905.64201616007,5277722.4354328485],[516908.4843193616,5277726.333585671],[516908.03278270026,5277726.665694075],[516908.4739369951,5277727.322701064],[516908.93004556664,5277728.001979521],[516912.0908029147,5277725.6772219315],[516914.40905204933,5277729.01815556],[516908.7653300292,5277733.002798851],[516903.7990804912,5277736.433714949]]]},"properties":{"ID_SOURCE":"w145189018","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":547}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.5778148249,5277548.014509103],[517006.0358636851,5277545.459628727],[517010.53973843827,5277546.139626025],[517010.15645994083,5277548.805864445],[517011.5826536155,5277549.032311458],[517013.0839441851,5277549.258978269],[517013.5429706036,5277546.3706815345],[517017.8212278435,5277547.161165077],[517017.7451562189,5277547.494362503],[517022.473669218,5277548.397305539],[517020.8696631114,5277557.6172300745],[517016.0657356278,5277556.825207799],[517015.7608004138,5277558.380275576],[517011.8573861284,5277557.81316865],[517011.47605623014,5277559.812573146],[517008.0228990698,5277559.357924374],[517008.55831789284,5277556.025290671],[517004.28006595455,5277555.234813913],[517005.5778148249,5277548.014509103]]]},"properties":{"ID_SOURCE":"w145189023","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":548}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516334.63203091803,5277601.930032975],[516334.1419404796,5277602.628839102],[516329.39775931725,5277599.259106312],[516329.8425734384,5277598.637970702],[516328.50102958543,5277597.678405035],[516326.8446727321,5277596.5067910515],[516328.04341177567,5277594.8319409285],[516325.8024551673,5277593.247470185],[516326.30759583274,5277592.53759159],[516324.8236160729,5277591.488715459],[516323.18975448795,5277590.328279604],[516329.040306552,5277582.120336096],[516334.4290535147,5277585.947550317],[516332.77038266434,5277588.276834013],[516343.44293664687,5277595.853182065],[516337.60745948023,5277604.038925645],[516335.6962778373,5277602.688770217],[516334.63203091803,5277601.930032975]]]},"properties":{"ID_SOURCE":"w145189043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":549}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517067.92396812694,5277594.0977481045],[517069.1362640134,5277590.433684245],[517070.186637036,5277590.770183769],[517070.5426536883,5277589.726512203],[517070.94411942456,5277588.5496059945],[517067.49293869536,5277587.428087966],[517067.8716795147,5277586.317798899],[517068.4718000554,5277586.54183818],[517069.2286306216,5277584.543538169],[517068.478316798,5277584.319058472],[517068.70556150493,5277583.652885069],[517072.1570701564,5277584.663264822],[517075.5334810852,5277585.673426364],[517075.3055837368,5277586.561877474],[517079.8825590357,5277587.908982731],[517079.1234429444,5277590.685254276],[517081.9745000754,5277591.582738476],[517080.00308074243,5277598.023071151],[517077.1523524805,5277597.014448917],[517067.92396812694,5277594.0977481045]]]},"properties":{"ID_SOURCE":"w145189136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":550}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516912.08241886954,5277539.851229287],[516912.8015367986,5277535.307695702],[516917.0351123955,5277535.975721347],[516917.19585213054,5277534.931473199],[516919.8831039704,5277535.361614037],[516920.12787234504,5277533.828594543],[516923.49070847174,5277534.360726437],[516923.26115250104,5277535.827106064],[516923.6214574017,5277535.8837233735],[516924.0493174426,5277535.951651073],[516924.3858512356,5277533.852084931],[516928.4317805809,5277534.486231401],[516926.7715713428,5277545.006354521],[516926.2973100067,5277547.9835255025],[516922.3264545504,5277547.360712663],[516922.8696257767,5277543.9280680055],[516915.7986464642,5277542.818347526],[516915.98220555723,5277541.674139716],[516911.8987636358,5277541.02877891],[516912.08241886954,5277539.851229287]]]},"properties":{"ID_SOURCE":"w145189185","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":551}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.6458155916,5277641.393473947],[516984.86827546917,5277642.4341120515],[516983.7276573377,5277649.8660465935],[516984.1015146937,5277650.422836978],[516981.239773725,5277653.192987525],[516980.7895239275,5277653.080534275],[516980.4888171114,5277653.190797125],[516979.5857242881,5277653.855002759],[516978.98301425105,5277654.520084596],[516978.6042947417,5277655.630379512],[516971.2481628835,5277654.49753111],[516971.86091602384,5277650.3871395355],[516973.2922706468,5277648.8353532925],[516973.81664452143,5277649.281441906],[516975.92561154,5277647.131476307],[516976.75412777846,5277646.289228723],[516977.0603445473,5277644.289602736],[516978.1864570705,5277644.404026702],[516978.6458155916,5277641.393473947]]]},"properties":{"ID_SOURCE":"w145189223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":552}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.6578204403,5277499.911898796],[517297.4280634623,5277498.083348838],[517298.4148809704,5277497.063793268],[517296.23591071385,5277494.912318488],[517302.31393371354,5277488.995505221],[517311.6742571232,5277498.070122355],[517315.4708012051,5277501.749030971],[517308.7738060638,5277508.730933917],[517299.87721848197,5277500.291196898],[517298.26560495683,5277501.8090255745],[517297.77661186364,5277502.096536571],[517297.39331681986,5277502.195423728],[517297.0926291696,5277502.294556337],[517296.5673090447,5277502.170741696],[517296.27512170037,5277501.936479748],[517296.05766876735,5277501.824693781],[517295.76581155317,5277501.479292895],[517295.699214186,5277501.145675202],[517295.5650619542,5277500.800742826],[517295.58206246246,5277500.133953638],[517295.6578204403,5277499.911898796]]]},"properties":{"ID_SOURCE":"w145189270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":553}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517120.59046737954,5276896.516182256],[517080.4828658835,5276896.842958794],[517080.42737080413,5276966.9720270615],[517078.7750714521,5276966.967180639],[517079.01942161424,5276986.0839489475],[517080.44640273205,5276986.088134537],[517080.4108682793,5276998.202272637],[517036.9993901123,5276998.519654616],[517036.9694852065,5276983.071130301],[517047.2594259894,5276982.878966366],[517047.0439286759,5276953.870839767],[517053.7285710279,5276953.779273304],[517053.36370453535,5276873.2018342605],[517053.73923315806,5276873.202934026],[517053.6635564068,5276847.751695435],[517122.83851840446,5276847.176711629],[517122.9916130201,5276871.739061793],[517122.9896521962,5276872.405894954],[517120.4357303834,5276872.5095255235],[517120.59046737954,5276896.516182256]]]},"properties":{"ID_SOURCE":"w145189278","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sports_centre","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":554}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.82668075233,5277277.433854216],[516438.5385004917,5277276.582730831],[516438.99277484557,5277275.283677481],[516437.70996790734,5277274.779926541],[516438.30023900885,5277273.192293544],[516436.8823133031,5277272.665933349],[516438.39552622783,5277268.7025137395],[516439.21977109084,5277266.704324083],[516440.6376352805,5277267.252912626],[516441.0612429026,5277266.176052497],[516448.3900979841,5277269.19752716],[516448.0120205106,5277270.107805649],[516449.4899321151,5277270.66767997],[516449.8078351132,5277269.790573517],[516454.71372871933,5277271.816066783],[516451.309991981,5277280.375328969],[516441.2728178358,5277276.357057706],[516440.82668075233,5277277.433854216]]]},"properties":{"ID_SOURCE":"w145189283","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":555}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516441.62654433947,5277249.49556174],[516439.99129136093,5277248.801877418],[516440.14274831844,5277248.357745792],[516440.59335351846,5277248.359018125],[516441.7280263315,5277245.472586873],[516441.5030374549,5277245.360811725],[516441.73053704354,5277244.583475414],[516442.70904594735,5277243.808259925],[516443.76453930954,5277242.366423109],[516444.58077735023,5277240.546035365],[516444.97619922645,5277238.813371022],[516444.97965212836,5277237.590842786],[516445.36017967365,5277235.813680485],[516436.4115763398,5277231.909632834],[516440.8512661284,5277220.852641843],[516451.08003140445,5277226.205130645],[516441.62654433947,5277249.49556174]]]},"properties":{"ID_SOURCE":"w145189332","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":556}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.23641539493,5277253.03281632],[517197.2702346011,5277253.72337894],[517196.1764799303,5277268.057195216],[517197.75326501735,5277268.172992268],[517196.5771895951,5277284.951643457],[517192.90536986856,5277284.740747991],[517188.5427572352,5277284.483359518],[517188.9353208161,5277278.705243644],[517176.696562517,5277277.780006001],[517177.56135875126,5277264.668049475],[517175.0167872704,5277261.659765773],[517167.1866512891,5277268.305067391],[517157.606848385,5277257.051700389],[517158.6612069827,5277256.054548442],[517155.294114926,5277251.821310773],[517162.29585587484,5277245.951530687],[517167.01082967204,5277251.522425037],[517172.5823874076,5277246.759839586],[517175.2020675897,5277249.768343674],[517181.9378602126,5277257.679149429],[517188.920263162,5277258.366597944],[517189.23641539493,5277253.03281632]]]},"properties":{"ID_SOURCE":"w145189333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":557}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.7594032795,5277296.394970356],[517217.98472040374,5277293.850532834],[517213.6825244292,5277293.4821642395],[517214.4213446814,5277284.904348016],[517219.1890380524,5277285.318549726],[517219.3133730201,5277283.9074406605],[517223.11253437784,5277284.229869372],[517223.57143602887,5277283.964491091],[517228.151246953,5277284.422600316],[517229.20133742085,5277284.870267189],[517229.87526788085,5277285.5391009],[517230.62100957497,5277287.31954626],[517230.9158197054,5277289.209797109],[517230.8811748668,5277290.765653258],[517230.8301943517,5277292.76602069],[517230.3795924405,5277292.764687191],[517230.29034958704,5277297.54343907],[517229.2396037445,5277297.318049855],[517226.2283593381,5277299.754217869],[517226.6779742258,5277300.088967852],[517225.695752753,5277302.086580155],[517217.7594032795,5277296.394970356]]]},"properties":{"ID_SOURCE":"w145189359","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":558}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517016.56061005587,5277747.209383724],[517004.69536233466,5277747.285853292],[517004.8095162566,5277759.622722713],[516980.0615773244,5277722.429739675],[516984.56758767436,5277722.331744316],[516984.65208571777,5277719.108932115],[517004.6273055175,5277719.167244568],[517004.76710682083,5277722.724131582],[517015.3548190538,5277722.977347649],[517015.4019776696,5277732.535522075],[517013.8246654388,5277732.6420520535],[517013.81816925673,5277734.864832293],[517016.6720892632,5277734.762033749],[517016.7111238208,5277747.098683715],[517016.56061005587,5277747.209383724]]]},"properties":{"ID_SOURCE":"w145189376","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":559}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.2790926324,5277685.815230502],[516582.0858203597,5277685.606639914],[516582.35676045436,5277695.943423312],[516584.15935940144,5277695.8374182],[516584.2357209159,5277695.393076088],[516586.48857406055,5277695.399494275],[516586.48730747297,5277695.844050312],[516588.51487514947,5277695.8498274265],[516588.9201583838,5277711.743989875],[516580.5085806403,5277712.053446559],[516580.51965934894,5277708.163581137],[516540.11542392644,5277709.160045342],[516539.90655860474,5277703.380176671],[516533.7481372826,5277703.584962961],[516533.5348464844,5277699.361040726],[516531.95753478317,5277699.467701257],[516531.92014696833,5277696.766895353],[516531.8316461473,5277690.909570997],[516535.5113090399,5277690.920021358],[516535.6567642161,5277692.587533091],[516539.63712236384,5277692.487700255],[516539.6532257304,5277686.819610804],[516577.2790926324,5277685.815230502]]]},"properties":{"ID_SOURCE":"w145189416","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":560}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516333.3883249916,5277638.36930806],[516325.75820822135,5277649.195158117],[516327.1072813214,5277650.143630417],[516315.79785859416,5277666.193864366],[516307.8757399079,5277660.648015373],[516309.18760192604,5277658.795654373],[516309.91141506465,5277657.764081277],[516309.139425044,5277657.228447133],[516310.91123975726,5277654.710535805],[516312.53978257073,5277652.403389333],[516313.1618619184,5277652.838577965],[516313.83289152867,5277651.884655364],[516315.28049026534,5277649.83262433],[516316.5169810083,5277648.080079652],[516317.27850037796,5277646.993043217],[516316.7688462541,5277646.635967162],[516318.5858806843,5277644.062614978],[516317.7989327794,5277643.504709801],[516319.1711588006,5277641.552494373],[516319.8949446807,5277640.532036437],[516319.2578765008,5277640.085691095],[516321.0070473826,5277637.612175338],[516322.5601914649,5277635.415960185],[516323.2122479184,5277635.873461891],[516323.96619820676,5277634.80863309],[516325.3987232152,5277632.778790298],[516326.9201778972,5277633.84999977],[516333.3883249916,5277638.36930806]]]},"properties":{"ID_SOURCE":"w145189595","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":561}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.58886161743,5276972.936181041],[516763.70010450686,5276970.052623844],[516770.2952138868,5276974.961765516],[516767.2785567515,5276979.28753058],[516765.6297810486,5276978.060245302],[516764.0465101014,5276980.167343184],[516769.8180212679,5276984.184994962],[516764.6904513707,5276991.283177581],[516762.6667973817,5276989.832534201],[516751.8866086535,5277003.8051264],[516743.94219970243,5276998.003006726],[516748.2397562281,5276992.236096184],[516736.02396819403,5276983.087509472],[516744.99557678454,5276971.22134339],[516751.06592892745,5276975.795534796],[516752.64919633395,5276973.688433408],[516751.07520069514,5276972.572507228],[516752.50794030837,5276970.576112582],[516749.7348297379,5276968.567618678],[516753.95762871735,5276962.689357642],[516756.2059683506,5276964.362924028],[516761.15199108707,5276968.155912032],[516759.11553336866,5276971.150825185],[516761.58886161743,5276972.936181041]]]},"properties":{"ID_SOURCE":"w145189638","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":562}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516447.0566027245,5277342.468249727],[516452.7833339574,5277335.704899679],[516453.75711796194,5277336.596770183],[516462.146919403,5277344.177994639],[516464.17492372997,5277344.072589212],[516473.43450475385,5277336.207852183],[516475.9790896761,5277339.326967772],[516478.3122129461,5277337.555333121],[516481.37997557025,5277341.565050529],[516479.34725152777,5277343.3375342],[516481.74194555666,5277346.345088284],[516471.68383059866,5277355.085557763],[516470.52443740034,5277356.093650406],[516472.0983821414,5277357.20950154],[516470.7399893129,5277359.53959525],[516468.8650184182,5277358.645172666],[516467.9031552571,5277380.092441645],[516463.24732108,5277379.968134832],[516463.16656520084,5277381.968423678],[516459.56243467226,5277381.735953896],[516459.56714756397,5277380.068869564],[516454.9867264995,5277379.833642707],[516455.64531727234,5277359.385773249],[516455.0539449206,5277356.049906682],[516444.2688125425,5277345.683430558],[516447.0566027245,5277342.468249727]]]},"properties":{"ID_SOURCE":"w145189710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":563}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516304.0295693628,5277650.367918061],[516303.2983401657,5277651.366129144],[516301.9187989332,5277653.251643898],[516293.44947718084,5277647.337520978],[516297.45261590055,5277641.79173235],[516301.0637077897,5277636.800548096],[516298.06609640905,5277634.569358014],[516301.9866426774,5277629.02334133],[516298.46428917575,5277626.457262128],[516305.852956257,5277616.030804065],[516314.17243065056,5277621.83338478],[516313.011685107,5277623.352748422],[516312.1373637594,5277624.49503926],[516312.811670782,5277625.052628013],[516311.002516301,5277627.492636169],[516309.3438665631,5277629.821926643],[516308.6692484293,5277629.375477287],[516307.9830422544,5277630.38492788],[516306.63325277856,5277632.370550713],[516307.23277481477,5277632.816789485],[516310.08019186463,5277635.04756351],[516308.6101559802,5277637.066190983],[516307.81859861553,5277638.153144391],[516308.4181199629,5277638.5993832955],[516306.9850730943,5277640.81816657],[516309.5330372773,5277642.714681975],[516307.9124072773,5277644.877369587],[516307.120944487,5277645.930981402],[516307.7204650817,5277646.377220238],[516306.21294725273,5277648.373515364],[516304.5543053211,5277650.702807262],[516304.0295693628,5277650.367918061]]]},"properties":{"ID_SOURCE":"w145189739","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":564}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.3140977976,5276961.228161117],[517130.61801633553,5276985.568680108],[517126.3370725091,5276985.556087499],[517126.4036778747,5276988.445919285],[517124.1505506617,5276988.439292832],[517124.14728228,5276989.550681637],[517121.96893292584,5276989.655415776],[517121.8977502444,5276988.32152837],[517119.6442962355,5276988.42604254],[517119.5773607645,5276985.647349724],[517090.7360138311,5276986.007186325],[517090.0102483007,5276926.211826279],[517119.00308159564,5276925.519010389],[517118.8597328353,5276923.184652535],[517121.2634222308,5276923.080579662],[517121.2673435472,5276921.746913234],[517123.22007616225,5276921.752655089],[517123.44179646653,5276922.975845209],[517125.6949490088,5276922.982471326],[517125.68710434303,5276925.649804194],[517129.8185359902,5276925.439676599],[517130.03077337827,5276929.885894214],[517130.85725529277,5276929.777185755],[517130.8718722981,5276950.3380980315],[517130.87154533603,5276950.449236907],[517130.27070749016,5276950.4474693155],[517130.3140977976,5276961.228161117]]]},"properties":{"ID_SOURCE":"w145189790","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sports_centre","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":565}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.41620173404,5276741.749701179],[516962.13872820156,5276741.968259627],[516961.1037331321,5276736.297116176],[516958.77443005494,5276736.623751711],[516957.07349501934,5276727.505336597],[516956.69763339974,5276727.6153819235],[516956.62479109847,5276726.83719137],[516963.83933035535,5276725.413386002],[516963.76648897864,5276724.635195359],[516966.44190751,5276724.098404613],[516972.93512751756,5276722.77253478],[516972.93609929364,5276722.439118271],[516973.5372845604,5276722.329730738],[516973.98307139333,5276723.998126787],[516981.12218677386,5276722.685262729],[516981.2707816801,5276723.241394937],[516980.81981166796,5276723.351219693],[516982.37146806915,5276732.135787196],[516979.81619136373,5276732.684034902],[516980.7757373626,5276738.466101517],[516979.34804752364,5276738.684218175],[516979.9391853681,5276742.020135298],[516980.2402631564,5276741.7987336265],[516980.3134261683,5276742.465785663],[516963.9312697305,5276745.418814404],[516963.7072426237,5276744.97360267],[516964.0831032598,5276744.863557793],[516963.41620173404,5276741.749701179]]]},"properties":{"ID_SOURCE":"w145189808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":566}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516301.6070147099,5276986.745284223],[516302.2081597542,5276986.63582743],[516302.57901358546,5276988.303962097],[516301.6070147099,5276986.745284223]]]},"properties":{"ID_SOURCE":"w145189958","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":567}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.64388857683,5276718.981942136],[516760.13853585406,5276720.089007037],[516759.7693945277,5276717.865149487],[516761.64388857683,5276718.981942136]]]},"properties":{"ID_SOURCE":"w145189998","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":568}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5779305658,5276731.431489265],[516757.3624104408,5276729.52789732],[516761.4435464667,5276736.3969657635],[516754.5779305658,5276731.431489265]]]},"properties":{"ID_SOURCE":"w145190019","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":569}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516793.9254580695,5276724.187377017],[516798.41332186875,5276730.646427358],[516800.14432254544,5276729.428883522],[516801.8644214753,5276731.99006071],[516800.2839568692,5276733.096898561],[516801.85512230464,5276735.213087047],[516803.4359073318,5276733.995110778],[516805.15632417996,5276736.445150125],[516803.57586014376,5276737.551987089],[516808.1388102413,5276744.011261837],[516798.6557232758,5276750.763424112],[516784.5171428325,5276731.050917582],[516793.9254580695,5276724.187377017]]]},"properties":{"ID_SOURCE":"w145190034","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":570}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.2726181079,5277265.696563462],[517262.355956397,5277262.918312935],[517257.0247945844,5277262.569089835],[517258.279443417,5277244.679284375],[517261.583225784,5277244.911357797],[517263.235116873,5277245.027395216],[517270.14374361694,5277245.270162741],[517269.51557601604,5277254.492911465],[517266.43710182846,5277254.261501652],[517265.8112479452,5277262.7062784005],[517268.8900473161,5277262.826548969],[517268.7339126267,5277264.826604177],[517269.93519385776,5277264.94130708],[517270.09132895863,5277262.941251907],[517280.75397970644,5277263.528587994],[517286.01003864233,5277263.87760986],[517285.776157809,5277266.766553084],[517285.07220705395,5277276.211355396],[517268.0270227895,5277275.271658813],[517267.5510398677,5277283.828020051],[517256.738553625,5277283.12912393],[517255.913766281,5277282.682119813],[517256.53828632,5277274.681897492],[517256.914447888,5277274.460732563],[517261.6454533882,5277274.585896507],[517261.95376355667,5277271.91945282],[517263.91132188187,5277270.258158212],[517264.8876298101,5277270.261053119],[517265.0450812759,5277267.816442085],[517263.9936722968,5277267.813324472],[517262.2726181079,5277265.696563462]]]},"properties":{"ID_SOURCE":"w145190049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":571}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9986896651,5277759.062553216],[516854.78013486054,5277756.0744980145],[516864.9842706023,5277759.104829133],[516864.9986896651,5277759.062553216]]]},"properties":{"ID_SOURCE":"w145190059","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":572}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516888.17325328063,5277764.39563172],[516880.52041002514,5277762.039496896],[516872.94233278395,5277759.794728824],[516865.5144383675,5277757.550405747],[516864.9986896651,5277759.062553216],[516887.7939132827,5277765.728210717],[516888.17325328063,5277764.39563172]]]},"properties":{"ID_SOURCE":"w145190059","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":573}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517186.2258854489,5277178.893624008],[517234.4441925489,5277178.035888094],[517234.6372591148,5277188.928168516],[517188.52352867165,5277189.236415377],[517188.5874752901,5277193.015360204],[517186.7099351956,5277193.009817885],[517186.69714110426,5277197.344235613],[517165.7428262586,5277197.615841176],[517165.4752548,5277211.952097367],[517147.4502740579,5277212.121265344],[517147.49347842217,5277197.450928148],[517111.9681610564,5277198.124393182],[517111.870871093,5277180.119447396],[517172.3284495001,5277180.075158951],[517172.41043462907,5277177.7414632635],[517177.0670741144,5277177.6440589465],[517177.1477496941,5277175.754918984],[517177.82399401115,5277175.645774121],[517177.8295680063,5277173.756412608],[517178.28017911623,5277173.7577420175],[517178.28181857034,5277173.202047457],[517160.25769993436,5277173.037759332],[517160.1904591557,5277170.370204097],[517178.59009551594,5277170.535599857],[517180.23872996576,5277171.763002777],[517180.68638980517,5277172.764582583],[517180.81494952773,5277180.100194041],[517186.29770679196,5277180.005234814],[517186.2258854489,5277178.893624008]]]},"properties":{"ID_SOURCE":"w145190068","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":574}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.1226506469,5277462.932587453],[517212.0429526103,5277464.488310913],[517211.96358317725,5277465.932895417],[517211.32468638226,5277478.8232391905],[517211.2453172923,5277480.267823732],[517211.16463403765,5277482.156964149],[517210.448343014,5277495.825059108],[517210.44341494224,5277497.492143637],[517210.3640462866,5277498.936728234],[517210.0429581845,5277505.937595346],[517206.81409122015,5277505.816911633],[517206.6451734596,5277512.15138907],[517199.66209208244,5277511.797335189],[517199.57977127424,5277514.242170705],[517192.371399626,5277513.887459998],[517190.6444860907,5277513.771220715],[517189.4432547655,5277513.656533999],[517176.3776068881,5277513.173412442],[517174.8759852735,5277513.057842513],[517173.22416864726,5277512.941829938],[517159.3327732746,5277512.345171038],[517157.68095615954,5277512.229162872],[517155.9540414963,5277512.112933884],[517142.51322756166,5277511.517642912],[517140.9365073986,5277511.40186062],[517139.2092650018,5277511.396775568],[517132.301276555,5277511.043023572],[517132.7822777858,5277500.708425224],[517200.0608917429,5277503.907577576],[517202.00771851867,5277455.011757679],[517212.44505747635,5277455.487165074],[517212.1226506469,5277462.932587453]]]},"properties":{"ID_SOURCE":"w145190089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":575}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516320.3624122452,5277181.736991974],[516337.640174227,5277180.229489022],[516338.1456157959,5277187.454994096],[516333.80522496096,5277197.978869468],[516327.3325301822,5277213.653655223],[516326.3577713073,5277213.095222908],[516324.921186466,5277216.536528752],[516325.8965681484,5277216.87268297],[516324.686222976,5277219.98120384],[516323.9317832165,5277221.201626477],[516322.2007166439,5277222.530451162],[516319.64540693077,5277223.190127254],[516319.64852199686,5277222.078737961],[516317.5450654054,5277222.295122262],[516317.69215311296,5277223.406932498],[516305.1327140403,5277224.271980349],[516300.7158627278,5277224.581918653],[516299.7778160578,5277210.909097223],[516313.2237593404,5277209.946495565],[516320.4082313081,5277192.184261242],[516320.93363089365,5277192.29687374],[516320.3624122452,5277181.736991974]]]},"properties":{"ID_SOURCE":"w145190156","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"office","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":576}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516318.8217665332,5277517.0415244],[516324.4646708209,5277486.493884801],[516328.222677359,5277485.393024655],[516329.13725469244,5277480.616576208],[516325.3795565425,5277481.60629679],[516329.4981194943,5277459.056458083],[516330.3999207117,5277458.836707798],[516330.7053011557,5277457.059326853],[516334.35335733026,5277457.680829803],[516343.8534089882,5277454.984564574],[516341.3364873339,5277468.758840528],[516357.77452290576,5277471.80577792],[516358.4610219769,5277468.0289518805],[516368.90621013613,5277465.724372649],[516371.7279666076,5277450.395007664],[516403.44291629846,5277442.148787809],[516399.78153101064,5277462.254786154],[516372.87671841105,5277469.180872575],[516366.01479880454,5277505.837731028],[516357.98342112434,5277504.370341682],[516357.1439211793,5277509.146996813],[516348.43729239405,5277507.455443793],[516353.6232178265,5277479.240485745],[516348.4377187148,5277480.55960062],[516347.36949723266,5277486.558153064],[516340.83910874324,5277485.428421869],[516335.12039639783,5277516.198112997],[516330.6170458309,5277515.296360527],[516330.8463908267,5277513.852185733],[516327.3934670511,5277513.286801911],[516326.47764940636,5277518.507806783],[516318.8217665332,5277517.0415244]]]},"properties":{"ID_SOURCE":"w145190178","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":577}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.1634093542,5277439.419560811],[516889.49146025075,5277439.42631384],[516896.926525983,5277439.3367472375],[516899.25457692164,5277439.343504171],[516903.7604819661,5277439.356584752],[516906.46402499074,5277439.364434772],[516913.5235990838,5277439.2737990115],[516915.7765516471,5277439.280344388],[516920.582850444,5277439.294310768],[516923.211618148,5277439.190811352],[516927.71752335207,5277439.203910471],[516927.687794895,5277449.428694992],[516920.02744650736,5277449.517567532],[516916.7231218867,5277449.507965519],[516902.82961615315,5277449.578752904],[516899.45019330614,5277449.568942667],[516885.3313932951,5277449.639117862],[516882.4776584962,5277449.630842111],[516867.8331710782,5277449.69953541],[516864.9794363306,5277449.691268235],[516851.0108340392,5277449.761961734],[516847.6314113713,5277449.752181575],[516842.07381703454,5277449.847241882],[516841.95287682064,5277439.73316175],[516845.8583157437,5277439.633320658],[516848.6369569862,5277439.64136112],[516853.2179601155,5277439.654619911],[516855.62110929744,5277439.661576785],[516863.13127239235,5277439.572184445],[516865.60952003195,5277439.579362958],[516870.1154248294,5277439.592417498],[516872.5188961354,5277439.488242384],[516879.95363918797,5277439.50979307],[516882.2816900427,5277439.516543216],[516887.1634093542,5277439.419560811]]]},"properties":{"ID_SOURCE":"w145190219","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":578}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517181.2682065722,5277349.723240912],[517186.194340247,5277354.961355654],[517171.2982251527,5277368.9654891705],[517176.5312746844,5277374.53792086],[517170.95842567255,5277379.778400677],[517171.9241568236,5277380.814850117],[517166.3965084833,5277386.011011646],[517165.31845619733,5277384.863092049],[517154.8505983449,5277394.701464104],[517170.69202094624,5277411.54140355],[517178.4864205678,5277404.218047201],[517171.06732818746,5277396.327455447],[517179.41151303233,5277388.48336426],[517184.4349159704,5277393.832904927],[517187.10086849966,5277391.317898036],[517196.9829537712,5277401.838686808],[517186.09333816473,5277412.075861067],[517188.5339133395,5277414.672625969],[517172.0046012072,5277429.927817931],[517162.64109318296,5277419.275231817],[517157.47514183476,5277424.072364405],[517148.33296599856,5277414.754132873],[517143.9095206131,5277409.684239653],[517152.51724892104,5277401.58526428],[517150.09163928125,5277398.999672716],[517147.034144556,5277401.869191059],[517136.9647780414,5277391.15899845],[517152.79460356926,5277376.26840877],[517151.4245436832,5277374.819553751],[517162.4873871238,5277364.4161159685],[517152.08108336484,5277353.349257147],[517158.97185187566,5277346.867876385],[517151.61254278995,5277339.0441708],[517162.3064163992,5277328.995293679],[517172.4357608718,5277339.76127559],[517176.3970221267,5277336.038659468],[517185.523142656,5277345.7347617885],[517181.2682065722,5277349.723240912]]]},"properties":{"ID_SOURCE":"w145190274","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":579}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516443.47414930066,5277680.212181112],[516435.27213275054,5277686.079434457],[516431.8312414235,5277681.290705956],[516430.1756949387,5277682.50857219],[516424.1168078146,5277674.044843834],[516419.82790790155,5277677.033522651],[516417.35947769624,5277673.581224422],[516419.6167275573,5277672.031631912],[516418.56978008675,5277670.4727207],[516420.52633623086,5277669.033420414],[516413.94394555496,5277659.790247196],[516415.5994950442,5277658.572376382],[516412.3081357935,5277654.006361203],[516410.72768132424,5277655.224444637],[516404.5936415918,5277646.760525409],[516400.30441869923,5277649.860357503],[516397.8359653085,5277646.408067756],[516400.0935334975,5277644.747328726],[516398.97148007987,5277643.188209583],[516401.0782320413,5277641.74932588],[516397.63728619914,5277636.960618047],[516407.4948892439,5277629.875438979],[516410.93583124236,5277634.664152593],[516412.0647759747,5277633.778216014],[516418.49763468385,5277642.7986850785],[516419.77645712753,5277642.02431256],[516422.91825297306,5277646.36763018],[516420.5852696671,5277648.139287559],[516423.8766258055,5277652.705307381],[516426.2096083012,5277650.933651307],[516429.4261764775,5277655.38832341],[516427.0180991756,5277657.159766312],[516430.45932253497,5277661.837352738],[516431.58795133594,5277661.062558923],[516438.09584484587,5277670.083262122],[516439.14937764587,5277669.30825772],[516442.3659256914,5277673.76293715],[516440.0332611894,5277675.423447795],[516443.47414930066,5277680.212181112]]]},"properties":{"ID_SOURCE":"w145190323","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":580}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.19147495995,5277352.895527593],[517027.4013554672,5277352.805468743],[517029.8793151325,5277352.923856033],[517034.38561246666,5277352.8258986],[517036.78879766964,5277352.832930165],[517044.0737781615,5277352.743111713],[517046.7022620247,5277352.750806912],[517051.2082343623,5277352.764001443],[517053.536320069,5277352.770819984],[517059.3193102025,5277352.676621441],[517059.3657534159,5277362.457068709],[517051.8480091094,5277362.535072265],[517048.96412656474,5277362.548854823],[517034.6723831602,5277362.618162578],[517031.51794779825,5277362.6978461435],[517017.26378738397,5277362.756192575],[517014.03438288905,5277362.791210532],[516999.88507022307,5277362.949931807],[516996.73089517374,5277362.94072306],[516982.87476300425,5277363.000315639],[516979.81064246653,5277363.013606716],[516974.05022653175,5277363.096835992],[516974.1201417214,5277364.8752781],[516960.00178196275,5277364.722994808],[516960.10893209843,5277353.720457817],[516973.9275684661,5277353.649587641],[516974.0793875728,5277353.094330793],[516978.209861847,5277353.106374126],[516980.68814640853,5277353.113601533],[516984.81862068037,5277353.125649555],[516987.2218057092,5277353.132660661],[516994.65698379517,5277353.043218608],[516996.83487026795,5277353.049576061],[517001.5664654159,5277352.952250944],[517004.1198496046,5277352.959707623],[517011.4045044902,5277352.9809872415],[517013.883113911,5277352.877089831],[517017.7131902626,5277352.888283371],[517020.19147495995,5277352.895527593]]]},"properties":{"ID_SOURCE":"w145190333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":581}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516420.7201475874,5277264.818314036],[516417.619397477,5277272.478217547],[516419.65975057654,5277273.3286337815],[516417.49683280004,5277278.657246012],[516415.8314823375,5277277.985711515],[516415.5293883536,5277278.585014826],[516404.7419016761,5277274.309069746],[516404.34070626716,5277275.430451566],[516393.5982659595,5277271.15465414],[516399.2184626191,5277256.8890145365],[516397.6206945171,5277256.217675666],[516404.7612473116,5277238.121999974],[516411.00929057784,5277222.279955848],[516412.8734921347,5277221.685055502],[516414.4065907564,5277221.322615926],[516415.7580366111,5277221.459793756],[516421.7975405092,5277223.655164754],[516421.04000906897,5277225.964736366],[516431.29479506833,5277230.083611849],[516429.82673187496,5277234.013818549],[516434.8529810822,5277235.9840644915],[516436.4115763398,5277231.909632834],[516445.36017967365,5277235.813680485],[516444.97965212836,5277237.590842786],[516444.97619922645,5277238.813371022],[516444.58077735023,5277240.546035365],[516443.76453930954,5277242.366423109],[516442.70904594735,5277243.808259925],[516441.73053704354,5277244.583475414],[516441.5030374549,5277245.360811725],[516441.7280263315,5277245.472586873],[516440.59335351846,5277248.359018125],[516440.14274831844,5277248.357745792],[516439.99129136093,5277248.801877418],[516441.62654433947,5277249.49556174],[516437.5125999896,5277259.564327746],[516436.3721357244,5277259.183232787],[516434.0888168294,5277264.58929683],[516430.2178254396,5277263.089098466],[516422.5439289058,5277259.911077829],[516420.7201475874,5277264.818314036]]]},"properties":{"ID_SOURCE":"w145190350","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":582}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516691.90699353215,5277046.088285671],[516694.530198495,5277047.985182768],[516699.43232252443,5277040.886291875],[516708.6512433471,5277047.469987041],[516702.01631650777,5277056.453276476],[516694.82169012644,5277051.097933157],[516690.5248668164,5277056.642605639],[516683.4056520246,5277051.176352828],[516682.2749614192,5277052.617930817],[516664.36437144934,5277038.896448787],[516661.19761899003,5277043.221839101],[516663.89562061947,5277045.230076156],[516652.2100818469,5277060.756218734],[516683.8886061441,5277084.452996053],[516674.1716129067,5277097.072873033],[516642.78659241204,5277073.17693519],[516641.5047569993,5277074.951508493],[516634.16020948975,5277069.484671863],[516637.70371408906,5277064.715784116],[516639.05271414976,5277065.719897077],[516642.0679608506,5277061.838620922],[516640.7940636925,5277060.834721905],[516640.944905521,5277060.61287338],[516656.62711359304,5277039.430009732],[516657.75112358294,5277040.322343574],[516660.6165065932,5277036.3295085225],[516661.31628971524,5277027.996025618],[516663.1229134512,5277026.556377872],[516663.3526773136,5277025.001078162],[516661.70103074657,5277024.774072264],[516658.94158742164,5277017.986649149],[516663.08820092794,5277012.441523862],[516670.2965860143,5277013.017855205],[516673.43153764127,5277019.806358938],[516669.50832169724,5277026.01895529],[516667.4060531834,5277025.790657762],[516666.4192070112,5277029.455446574],[516686.2796465517,5277044.18278014],[516687.3349177382,5277042.8521266],[516691.90699353215,5277046.088285671]]]},"properties":{"ID_SOURCE":"w145190370","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":583}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516346.8888312345,5276828.498085541],[516352.24103867414,5276821.511309287],[516356.97032328806,5276825.058835111],[516361.909462539,5276828.762550093],[516356.4067255067,5276835.860034492],[516346.8888312345,5276828.498085541]]]},"properties":{"ID_SOURCE":"w145190378","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":584}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516618.8209548177,5277523.113718153],[516610.2528835621,5277525.53434428],[516606.6089385187,5277512.9651423665],[516615.2521241754,5277510.544725205],[516617.17779905867,5277517.329754023],[516618.8209548177,5277523.113718153]]]},"properties":{"ID_SOURCE":"w145190389","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":585}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.8759852735,5277513.057842513],[517174.7956420472,5277514.835844527],[517173.2185955487,5277514.831192461],[517173.22416864726,5277512.941829938],[517174.8759852735,5277513.057842513]]]},"properties":{"ID_SOURCE":"w145190401","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":586}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.3818001258,5277731.788476628],[516479.75379266666,5277730.3277233085],[516480.2093945172,5277728.550774533],[516486.06300228473,5277729.901027242],[516485.3818001258,5277731.788476628]]]},"properties":{"ID_SOURCE":"w145190408","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":587}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4484362991,5277181.676966661],[517299.7490755641,5277189.565821217],[517300.0943450314,5277189.633531014],[517299.5797532132,5277196.000318094],[517296.9428957671,5277196.259219994],[517297.42886373884,5277189.41444611],[517292.3904339627,5277189.099402634],[517292.9399113352,5277181.098962209],[517296.4388940522,5277181.364976911],[517300.4484362991,5277181.676966661]]]},"properties":{"ID_SOURCE":"w145190437","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":588}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.46576563176,5277209.910836336],[517264.7052401728,5277205.132530943],[517265.90686337196,5277205.136094061],[517265.7424892333,5277209.914622106],[517264.46576563176,5277209.910836336]]]},"properties":{"ID_SOURCE":"w145190447","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":589}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516992.63426737295,5277222.670234612],[516992.51826865505,5277185.2157612005],[517002.28148941917,5277185.244262217],[517002.4725265502,5277222.698955282],[516992.63426737295,5277222.670234612]]]},"properties":{"ID_SOURCE":"w145190463","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":590}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516629.23975760984,5277477.4649767],[516622.0991093596,5277479.6673831],[516620.6560753391,5277474.806450761],[516619.1237461048,5277469.656300257],[516626.26440545963,5277467.4538902175],[516629.23975760984,5277477.4649767]]]},"properties":{"ID_SOURCE":"w145190481","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":591}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516901.208342332,5277102.595373595],[516900.5866690614,5277058.026495267],[516914.5565352133,5277057.844779611],[516914.877367686,5277102.523925881],[516901.208342332,5277102.595373595]]]},"properties":{"ID_SOURCE":"w145190510","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":592}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.0429526103,5277464.488310913],[517212.1226506469,5277462.932587453],[517214.1502999668,5277462.938582265],[517214.14537088695,5277464.6056667045],[517212.0429526103,5277464.488310913]]]},"properties":{"ID_SOURCE":"w145190613","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":593}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0115500395,5277533.590402691],[516851.673640301,5277532.118547681],[516853.27288078936,5277524.454523206],[516857.17626798415,5277525.043751482],[516862.20559892064,5277525.814067214],[516861.0115500395,5277533.590402691]]]},"properties":{"ID_SOURCE":"w145190629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":594}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.73395074013,5277727.848398711],[516973.05702592764,5277729.522270609],[516971.77004822786,5277733.074997124],[516968.77274197317,5277730.843460649],[516970.73395074013,5277727.848398711]]]},"properties":{"ID_SOURCE":"w145190647","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":595}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517314.82518301846,5277044.573085632],[517314.58334849006,5277050.129360099],[517311.50476784824,5277049.897926793],[517311.82170297136,5277044.341875497],[517314.82518301846,5277044.573085632]]]},"properties":{"ID_SOURCE":"w145190653","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":596}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.26461351285,5276718.442357971],[516845.684908661,5276720.780401437],[516841.0953047239,5276723.545620855],[516839.6746870405,5276721.318717339],[516844.26461351285,5276718.442357971]]]},"properties":{"ID_SOURCE":"w145190655","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":597}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517018.16384554276,5277378.562916823],[517022.29430182267,5277378.574991476],[517022.28195431526,5277382.798271581],[517018.1511761756,5277382.89733588],[517018.16384554276,5277378.562916823]]]},"properties":{"ID_SOURCE":"w145190678","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":598}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.0106342476,5277534.219685274],[516617.5052416035,5277539.425297828],[516618.9850171936,5277544.564184555],[516611.84413785976,5277546.877742546],[516608.4942576857,5277536.5321757225],[516616.0106342476,5277534.219685274]]]},"properties":{"ID_SOURCE":"w145190707","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":599}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.8448474734,5277632.399719374],[517022.66427858826,5277637.309812786],[517019.6933497084,5277641.457760568],[517016.7827615365,5277645.516974282],[517009.96365989564,5277640.495748689],[517015.8448474734,5277632.399719374]]]},"properties":{"ID_SOURCE":"w145190724","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":600}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.93783734017,5277695.217502345],[517216.4459444905,5277702.451974304],[517207.2715389248,5277706.759308901],[517203.76309461193,5277699.635981445],[517206.29744458065,5277698.4098176425],[517212.93783734017,5277695.217502345]]]},"properties":{"ID_SOURCE":"w145190727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":601}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.7424892333,5277209.914622106],[517265.90686337196,5277205.136094061],[517278.3723848355,5277205.617631697],[517278.2080004745,5277210.396159421],[517265.7424892333,5277209.914622106]]]},"properties":{"ID_SOURCE":"w145190733","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":602}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516836.0540565685,5277376.032946171],[516833.5006826781,5277376.025563175],[516833.428475406,5277375.025095483],[516836.05727035756,5277374.921556659],[516836.0540565685,5277376.032946171]]]},"properties":{"ID_SOURCE":"w145190740","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":603}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516422.7646277575,5277700.825743677],[516419.9166590381,5277698.817192152],[516424.4408620277,5277692.272700586],[516426.535058931,5277695.279386437],[516422.7646277575,5277700.825743677]]]},"properties":{"ID_SOURCE":"w145190766","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":604}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517122.26779535745,5277552.024143449],[517116.68970720674,5277559.12069711],[517113.10830887256,5277556.309442194],[517109.7217018871,5277553.654357894],[517115.29945996386,5277546.6689366065],[517122.26779535745,5277552.024143449]]]},"properties":{"ID_SOURCE":"w145190767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":605}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.7179976846,5276895.870610231],[517308.3593162381,5276895.293033727],[517308.62584056234,5276891.537299209],[517308.90784881404,5276887.626014968],[517316.2668703974,5276888.092453275],[517315.7179976846,5276895.870610231]]]},"properties":{"ID_SOURCE":"w145190779","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":606}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516948.84189372056,5277457.603451896],[516948.84545266366,5277456.380923289],[516951.2482714518,5277456.499058619],[516951.3204573603,5277457.499527947],[516948.84189372056,5277457.603451896]]]},"properties":{"ID_SOURCE":"w145190785","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":607}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.4298729909,5276750.02741027],[517231.7043217779,5276758.808267498],[517227.2947068521,5276759.073070358],[517222.8400280257,5276759.337743273],[517222.49045859673,5276750.556664362],[517231.4298729909,5276750.02741027]]]},"properties":{"ID_SOURCE":"w145190793","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":608}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.4553018264,5277091.79751278],[517310.987502738,5277097.57539574],[517308.0591527476,5277097.344410737],[517308.4518460283,5277091.566304306],[517311.4553018264,5277091.79751278]]]},"properties":{"ID_SOURCE":"w145190808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":609}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.0659374689,5277257.856784983],[517127.640003721,5277257.519170532],[517128.17126713664,5277255.631355234],[517129.59687434736,5277256.080108739],[517129.0659374689,5277257.856784983]]]},"properties":{"ID_SOURCE":"w145190813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":610}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517140.8565017328,5277513.068724097],[517140.9365073986,5277511.40186062],[517142.51322756166,5277511.517642912],[517142.4335486875,5277513.073367397],[517140.8565017328,5277513.068724097]]]},"properties":{"ID_SOURCE":"w145190815","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":611}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516925.14713606174,5277703.376036361],[516924.06625252153,5277703.206184102],[516923.0454449336,5277703.03650668],[516923.19854264986,5277702.036692204],[516925.3002341316,5277702.37622194],[516925.14713606174,5277703.376036361]]]},"properties":{"ID_SOURCE":"w145190848","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":612}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.0509288059,5277380.050233547],[516880.0438399816,5277382.495290483],[516878.9176749282,5277382.380885675],[516878.9244410807,5277380.046967691],[516880.0509288059,5277380.050233547]]]},"properties":{"ID_SOURCE":"w145190852","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":613}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516863.13127239235,5277439.572184445],[516863.13416951295,5277438.571933787],[516865.5376411,5277438.46775579],[516865.60952003195,5277439.579362958],[516863.13127239235,5277439.572184445]]]},"properties":{"ID_SOURCE":"w145190874","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":614}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516718.78593390365,5277493.61443614],[516716.15049374313,5277496.051946235],[516713.75438721577,5277493.599989468],[516716.540022955,5277491.162909546],[516718.78593390365,5277493.61443614]]]},"properties":{"ID_SOURCE":"w145190882","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":615}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517233.60896351124,5277206.485227453],[517233.7476530158,5277210.3755341545],[517230.442863348,5277210.476893346],[517230.45470338804,5277206.475892296],[517233.60896351124,5277206.485227453]]]},"properties":{"ID_SOURCE":"w145190916","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":616}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517025.97977320506,5277479.389665226],[517031.08480516926,5277479.960296223],[517030.8526842027,5277482.293555501],[517025.8224271267,5277481.834283281],[517025.97977320506,5277479.389665226]]]},"properties":{"ID_SOURCE":"w145190921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":617}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.3391604726,5277314.684484141],[517307.10389394726,5277299.96071835],[517314.6890948839,5277315.109413202],[517306.3391604726,5277314.684484141]]]},"properties":{"ID_SOURCE":"w145190973","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":618}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.35030776873,5277112.201523419],[517278.02691785205,5277104.379283665],[517286.18112982565,5277105.059211006],[517285.63198538224,5277112.948512207],[517281.412239578,5277112.591453128],[517277.35030776873,5277112.201523419]]]},"properties":{"ID_SOURCE":"w145190986","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":619}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516394.79148749856,5277607.500535068],[516393.5123479044,5277608.386052038],[516386.9292195001,5277599.365188496],[516388.20836005546,5277598.47967009],[516392.11336896615,5277603.825377896],[516394.79148749856,5277607.500535068]]]},"properties":{"ID_SOURCE":"w145191014","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":620}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516915.7765516471,5277439.280344388],[516913.5235990838,5277439.2737990115],[516913.5261819978,5277438.384687319],[516915.8545562424,5277438.280311927],[516915.7765516471,5277439.280344388]]]},"properties":{"ID_SOURCE":"w145191031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":621}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517011.4045044902,5277352.9809872415],[517011.33265217824,5277351.869378363],[517013.8863616223,5277351.765700377],[517013.883113911,5277352.877089831],[517011.4045044902,5277352.9809872415]]]},"properties":{"ID_SOURCE":"w145191034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":622}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.20811512624,5277481.529333127],[516685.24751527474,5277482.959933018],[516684.4294013271,5277480.179091366],[516689.3149054349,5277478.748275497],[516690.20811512624,5277481.529333127]]]},"properties":{"ID_SOURCE":"w145191043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":623}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.84472763987,5277741.050477284],[516767.0371152942,5277741.15064943],[516766.9029310304,5277735.593266106],[516770.7030375476,5277735.49307223],[516770.84472763987,5277741.050477284]]]},"properties":{"ID_SOURCE":"w145191044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":624}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517158.7767792895,5277471.666316657],[517158.6967680624,5277473.333179801],[517156.744220399,5277473.327425594],[517156.8245585772,5277471.549423459],[517158.7767792895,5277471.666316657]]]},"properties":{"ID_SOURCE":"w145191073","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":625}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.66143457225,5277366.969902524],[517270.51570622885,5277370.525947801],[517269.5479140003,5277370.1896573445],[517269.63059537666,5277367.633684351],[517270.66143457225,5277366.969902524]]]},"properties":{"ID_SOURCE":"w145191079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":626}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.82854175055,5277467.339041585],[516970.97521519114,5277467.325985126],[516970.97812470875,5277468.904180333],[516969.4010659045,5277468.8995835055],[516967.83148451126,5277468.906122892],[516967.82854175055,5277467.339041585]]]},"properties":{"ID_SOURCE":"w145191129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":627}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.3452677645,5277447.654483011],[517007.057509314,5277447.6594844265],[517007.0675618172,5277449.359954421],[517007.08564357925,5277450.882624021],[517005.41095211543,5277450.877732269],[517005.3452677645,5277447.654483011]]]},"properties":{"ID_SOURCE":"w145191165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":628}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516371.80360164377,5277610.436620839],[516374.06117622077,5277608.7758717965],[516375.18324299017,5277610.3349860255],[516372.85057251866,5277611.995523439],[516371.80360164377,5277610.436620839]]]},"properties":{"ID_SOURCE":"w145191171","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":629}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517205.3749447519,5276722.054280499],[517196.0596234794,5276722.693604554],[517195.6532961381,5276717.85782333],[517195.2613333141,5276713.244364193],[517204.7268851979,5276712.605482631],[517205.3749447519,5276722.054280499]]]},"properties":{"ID_SOURCE":"w145191217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":630}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517100.9222737141,5277506.949731851],[517104.00029381167,5277507.292193523],[517102.4872425896,5277511.066506285],[517100.5353605073,5277510.838492954],[517100.9222737141,5277506.949731851]]]},"properties":{"ID_SOURCE":"w145191221","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":631}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517014.03438288905,5277362.791210532],[517017.26378738397,5277362.756192575],[517017.2744219667,5277364.25661226],[517015.6221704345,5277364.274011273],[517014.04501830135,5277364.291630214],[517014.03438288905,5277362.791210532]]]},"properties":{"ID_SOURCE":"w145191233","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":632}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.23712110886,5277672.133240861],[516418.56978008675,5277670.4727207],[516419.6167275573,5277672.031631912],[516417.35947769624,5277673.581224422],[516416.23712110886,5277672.133240861]]]},"properties":{"ID_SOURCE":"w145191243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":633}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516727.40424774674,5277630.563550835],[516717.63220049336,5277633.869678852],[516715.3994268008,5277626.8614531765],[516719.203082209,5277625.549810476],[516724.94619638997,5277623.554674202],[516727.40424774674,5277630.563550835]]]},"properties":{"ID_SOURCE":"w145191246","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":634}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516769.79010329506,5276798.281389898],[516768.8588430596,5276790.432240269],[516772.65308006713,5276789.976380402],[516773.58430325694,5276797.836644533],[516769.79010329506,5276798.281389898]]]},"properties":{"ID_SOURCE":"w145191253","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":635}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.1585517689,5276759.144462703],[517269.5847204794,5276750.0292960545],[517279.5763024947,5276749.2809565775],[517280.15044802596,5276758.284985399],[517275.3197683455,5276758.704098205],[517270.1585517689,5276759.144462703]]]},"properties":{"ID_SOURCE":"w145191271","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":636}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516929.9574657032,5277495.336076017],[516939.63989459997,5277497.142478429],[516938.03309629334,5277507.362675515],[516932.34370870737,5277506.312524842],[516928.20048880635,5277505.555838996],[516929.9574657032,5277495.336076017]]]},"properties":{"ID_SOURCE":"w145191275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":637}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.4446186602,5277443.402256795],[516995.4368323774,5277446.069591873],[516994.53565237287,5277446.066961285],[516994.54343824537,5277443.399626207],[516995.4446186602,5277443.402256795]]]},"properties":{"ID_SOURCE":"w145191295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":638}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.31998225074,5277461.814912916],[516673.63855175534,5277456.29755929],[516671.82315051625,5277450.357491051],[516678.287332333,5277448.375487325],[516681.78415258904,5277459.8329130635],[516675.31998225074,5277461.814912916]]]},"properties":{"ID_SOURCE":"w145191313","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":639}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.99414098973,5277549.55871708],[516894.5766799195,5277550.358695305],[516893.5665570814,5277562.025455497],[516885.833839535,5277561.225042914],[516886.5068783071,5277554.436346082],[516886.99414098973,5277549.55871708]]]},"properties":{"ID_SOURCE":"w145191340","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":640}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.29204674996,5277351.856743772],[517271.13847808616,5277355.523905617],[517270.19321324804,5277355.187681899],[517270.35132427927,5277352.520792794],[517271.29204674996,5277351.856743772]]]},"properties":{"ID_SOURCE":"w145191349","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":641}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.0324733625,5277723.497699123],[517117.0416231547,5277720.385806872],[517119.5194246969,5277720.504232767],[517119.5106004061,5277723.504986005],[517117.0324733625,5277723.497699123]]]},"properties":{"ID_SOURCE":"w145191358","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":642}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.78879766964,5277352.832930165],[517034.38561246666,5277352.8258986],[517034.4636384781,5277351.825867813],[517036.7917245447,5277351.832679657],[517036.78879766964,5277352.832930165]]]},"properties":{"ID_SOURCE":"w145191360","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":643}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516865.5144383675,5277757.550405747],[516866.045572383,5277755.662565364],[516873.5485633215,5277757.907106766],[516872.94233278395,5277759.794728824],[516865.5144383675,5277757.550405747]]]},"properties":{"ID_SOURCE":"w145191367","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":644}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.39031673543,5276900.317874013],[517138.30488071236,5276900.12476605],[517138.28983414196,5276905.23715386],[517128.45071109047,5276905.319343881],[517128.39031673543,5276900.317874013]]]},"properties":{"ID_SOURCE":"w145191396","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":645}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.3191740858,5277725.000644323],[516716.18302616134,5277720.110096499],[516725.9463068041,5277719.804719271],[516726.1578605842,5277724.5843440825],[516716.3191740858,5277725.000644323]]]},"properties":{"ID_SOURCE":"w145191447","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":646}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516906.46402499074,5277439.364434772],[516903.7604819661,5277439.356584752],[516903.8384844967,5277438.356552138],[516906.4669295557,5277438.36418412],[516906.46402499074,5277439.364434772]]]},"properties":{"ID_SOURCE":"w145191454","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":647}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.0565711807,5277476.6694372315],[516537.46505127376,5277478.981805867],[516534.19167527265,5277468.080801773],[516541.85799032904,5277465.879781216],[516543.50193050754,5277471.419217676],[516545.0565711807,5277476.6694372315]]]},"properties":{"ID_SOURCE":"w145191455","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":648}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.73893089656,5277279.250055908],[516999.63229087356,5277266.902103999],[516999.52639650047,5277254.298532797],[517015.9815680288,5277254.146547635],[517016.1940319211,5277279.098071513],[516999.73893089656,5277279.250055908]]]},"properties":{"ID_SOURCE":"w145191464","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":649}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.05033588957,5276938.546326868],[517314.92524399684,5276940.201938709],[517307.5290330635,5276939.635365302],[517307.63129409263,5276938.079711321],[517312.3395449973,5276938.371557059],[517315.05033588957,5276938.546326868]]]},"properties":{"ID_SOURCE":"w145191477","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":650}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.974226132,5277393.921846064],[516795.96685196826,5277396.478042028],[516794.7652684957,5277396.4745758],[516794.8474205373,5277394.029735422],[516795.974226132,5277393.921846064]]]},"properties":{"ID_SOURCE":"w145191489","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":651}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.3974209982,5277433.8440869665],[516995.39028361184,5277436.289144086],[516994.4133548185,5277436.508572219],[516994.3460421182,5277433.841017974],[516995.3974209982,5277433.8440869665]]]},"properties":{"ID_SOURCE":"w145191499","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":652}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516468.8549585564,5277760.415796282],[516460.22508897324,5277758.279730824],[516460.6049599237,5277756.724846171],[516469.2345172658,5277758.972051203],[516468.8549585564,5277760.415796282]]]},"properties":{"ID_SOURCE":"w145191539","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":653}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.9293477012,5277159.036834298],[517273.4549965727,5277167.037498978],[517265.57094048505,5277166.458415906],[517265.83792060724,5277162.535969562],[517266.1203828683,5277158.45797332],[517273.9293477012,5277159.036834298]]]},"properties":{"ID_SOURCE":"w145191542","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":654}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.5462931591,5276973.368531876],[517214.55089302716,5276971.812587597],[517224.8405324925,5276971.731876294],[517224.7608254351,5276973.287598402],[517214.5462931591,5276973.368531876]]]},"properties":{"ID_SOURCE":"w145191552","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":655}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517057.79924817296,5277666.420179994],[517054.95180558256,5277664.300178453],[517058.6467919812,5277659.08742647],[517061.49423579976,5277661.207429799],[517057.79924817296,5277666.420179994]]]},"properties":{"ID_SOURCE":"w145191576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":656}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.67212820065,5277405.603726367],[516838.6089222773,5277401.4913678],[516842.73968349275,5277401.392176154],[516842.80288650095,5277405.504534772],[516838.67212820065,5277405.603726367]]]},"properties":{"ID_SOURCE":"w145191583","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":657}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517191.3120201554,5277720.048955483],[517196.4623736981,5277730.622464829],[517193.1084577247,5277732.201860305],[517189.1680179011,5277734.04626182],[517184.09274898574,5277723.472980556],[517191.3120201554,5277720.048955483]]]},"properties":{"ID_SOURCE":"w145191637","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":658}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516806.1594873648,5277429.738280173],[516807.6615543852,5277429.709274267],[516807.70902195,5277431.476535503],[516807.7501988431,5277432.821447018],[516806.22560307465,5277432.850387863],[516806.1594873648,5277429.738280173]]]},"properties":{"ID_SOURCE":"w145191654","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":659}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.77521221543,5277492.635284065],[517000.7804345693,5277493.541936076],[517000.396832754,5277496.319313886],[516994.2417422262,5277495.301084872],[516994.77521221543,5277492.635284065]]]},"properties":{"ID_SOURCE":"w145191722","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":660}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.62110929744,5277439.661576785],[516853.2179601155,5277439.654619911],[516853.2208555329,5277438.654369252],[516855.6991035534,5277438.661543543],[516855.62110929744,5277439.661576785]]]},"properties":{"ID_SOURCE":"w145191729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":661}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.96737907326,5277383.216303652],[516938.63467703963,5277383.187812136],[516938.6531973874,5277384.56600068],[516938.67116804793,5277386.133125449],[516937.03374891245,5277386.2172738165],[516936.96737907326,5277383.216303652]]]},"properties":{"ID_SOURCE":"w145191733","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":662}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.31951109186,5277430.761141661],[517006.919272133,5277430.71024452],[517006.92997404066,5277432.188436553],[517006.9485429015,5277433.544397668],[517005.3113956983,5277433.539615642],[517005.31951109186,5277430.761141661]]]},"properties":{"ID_SOURCE":"w145191746","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":663}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516850.29988845676,5277747.281472434],[516846.5012685139,5277736.489903943],[516848.00444674515,5277736.049694267],[516851.57745913876,5277746.951750624],[516850.29988845676,5277747.281472434]]]},"properties":{"ID_SOURCE":"w145191751","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":664}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.8176487976,5277392.060872907],[516805.82695209485,5277388.837843242],[516807.253834348,5277388.841962121],[516807.2868922422,5277390.398015872],[516807.3199501165,5277391.954069626],[516805.8176487976,5277392.060872907]]]},"properties":{"ID_SOURCE":"w145191757","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":665}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.77296408534,5277529.776161401],[517273.4036985379,5277526.063744083],[517274.20493145246,5277526.844101012],[517270.5666872441,5277530.556495558],[517269.77296408534,5277529.776161401]]]},"properties":{"ID_SOURCE":"w145191761","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":666}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517233.7476530158,5277210.3755341545],[517233.60896351124,5277206.485227453],[517237.7398712711,5277206.386315729],[517237.8782289877,5277210.387761455],[517233.7476530158,5277210.3755341545]]]},"properties":{"ID_SOURCE":"w145191766","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":667}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.20493145246,5277526.844101012],[517273.4036985379,5277526.063744083],[517277.50896920095,5277521.87483547],[517278.31020214973,5277522.655192957],[517274.20493145246,5277526.844101012]]]},"properties":{"ID_SOURCE":"w145191792","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":668}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516400.0986294759,5277589.621962877],[516399.12613216473,5277588.285544943],[516405.7484026481,5277583.414048042],[516406.72058606293,5277584.861606069],[516400.0986294759,5277589.621962877]]]},"properties":{"ID_SOURCE":"w145191807","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":669}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516899.25457692164,5277439.343504171],[516896.926525983,5277439.3367472375],[516896.9294289083,5277438.336496585],[516899.2574802487,5277438.343253518],[516899.25457692164,5277439.343504171]]]},"properties":{"ID_SOURCE":"w145191819","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":670}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.6723831602,5277362.618162578],[517034.71272784384,5277364.229809143],[517032.9026699652,5277364.280083515],[517031.55829335295,5277364.309492686],[517031.51794779825,5277362.6978461435],[517034.6723831602,5277362.618162578]]]},"properties":{"ID_SOURCE":"w145191821","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":671}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516897.84165613924,5277538.031640144],[516888.60825376125,5277536.782308954],[516889.75695813773,5277529.11698727],[516894.41869187774,5277529.752896576],[516898.84017796227,5277530.365884282],[516897.84165613924,5277538.031640144]]]},"properties":{"ID_SOURCE":"w145191879","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":672}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.6669629954,5277382.285020421],[516534.994793036,5277383.61678965],[516532.0399584471,5277382.174694634],[516532.6971396212,5277380.831768522],[516535.6669629954,5277382.285020421]]]},"properties":{"ID_SOURCE":"w145191888","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":673}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516987.2218057092,5277353.132660661],[516984.81862068037,5277353.125649555],[516984.8218628438,5277352.014260099],[516987.2250483323,5277352.021271207],[516987.2218057092,5277353.132660661]]]},"properties":{"ID_SOURCE":"w145191911","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":674}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.43382727704,5276740.591171092],[517206.74879171007,5276740.062988126],[517207.689720467,5276752.068867661],[517198.299339623,5276752.70796611],[517197.85953269934,5276746.493951999],[517197.43382727704,5276740.591171092]]]},"properties":{"ID_SOURCE":"w145191920","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":675}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.2354639504,5277557.601636666],[517123.65769944526,5277564.587044739],[517119.9714010272,5277561.697679048],[517116.68970720674,5277559.12069711],[517122.26779535745,5277552.024143449],[517129.2354639504,5277557.601636666]]]},"properties":{"ID_SOURCE":"w145191926","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":676}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.60735394096,5277344.300164555],[517271.4452858984,5277348.300720894],[517270.44092921994,5277347.630902098],[517270.52361122385,5277345.074929208],[517271.60735394096,5277344.300164555]]]},"properties":{"ID_SOURCE":"w145191933","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":677}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.6829457644,5277492.492982495],[516630.31606717216,5277495.028151935],[516628.7678435705,5277490.189144916],[516626.9665065862,5277484.571436347],[516634.5583729217,5277482.148045356],[516637.6829457644,5277492.492982495]]]},"properties":{"ID_SOURCE":"w145191934","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":678}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.4280634623,5277498.083348838],[517295.29441597423,5277495.843097101],[517296.23591071385,5277494.912318488],[517298.4148809704,5277497.063793268],[517297.4280634623,5277498.083348838]]]},"properties":{"ID_SOURCE":"w145191959","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":679}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516576.9895429067,5277444.640849535],[516568.28531162103,5277447.372341576],[516565.0381557465,5277448.385588623],[516562.4324792833,5277440.376105241],[516574.45929597487,5277436.52043564],[516576.9895429067,5277444.640849535]]]},"properties":{"ID_SOURCE":"w145191961","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":680}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.54510487174,5277656.156891116],[516693.0805084563,5277658.361149367],[516690.4012829767,5277649.906834097],[516697.09085614,5277647.814358017],[516697.54206799716,5277647.59337231],[516697.0959562,5277646.036134021],[516705.0631210898,5277643.613911688],[516707.07284616766,5277649.84351404],[516711.35744819226,5277648.410992578],[516713.81295254716,5277656.308975743],[516708.100582519,5277658.070817321],[516707.20709018264,5277655.400895095],[516703.89975763485,5277656.4805758055],[516700.81790440803,5277657.494221265],[516700.22160303086,5277655.936551855],[516699.54510487174,5277656.156891116]]]},"properties":{"ID_SOURCE":"w145191969","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":681}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.72377498174,5277079.233365161],[517272.0722881948,5277078.6994201355],[517272.5192663631,5277072.332431341],[517272.92658383504,5277066.676620162],[517280.6605679747,5277067.255266996],[517279.72377498174,5277079.233365161]]]},"properties":{"ID_SOURCE":"w145191989","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":682}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.35901714297,5276875.997521685],[517285.98229690804,5276868.441862869],[517293.49122594425,5276869.019857076],[517293.01814786537,5276876.575961199],[517290.7053876651,5276876.402383685],[517285.35901714297,5276875.997521685]]]},"properties":{"ID_SOURCE":"w145191998","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":683}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.32741632016,5277427.492046618],[517284.42730399955,5277427.670926597],[517284.25020927715,5277431.671438535],[517280.1503244122,5277431.492558669],[517280.32741632016,5277427.492046618]]]},"properties":{"ID_SOURCE":"w145192006","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":684}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517196.70900861727,5276731.697846235],[517206.0243155693,5276731.05852325],[517206.74879171007,5276740.062988126],[517197.43382727704,5276740.591171092],[517197.08588179055,5276736.333489014],[517196.70900861727,5276731.697846235]]]},"properties":{"ID_SOURCE":"w145192013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":685}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516712.5186112724,5276877.5483384],[516683.66502451553,5276855.793343286],[516687.8875189022,5276850.026174205],[516716.6663320628,5276871.669835541],[516712.5186112724,5276877.5483384]]]},"properties":{"ID_SOURCE":"w145192029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":686}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516973.0238327579,5277457.562759047],[516973.10249498,5277456.340449379],[516975.8060301961,5277456.348331619],[516975.8024655923,5277457.570860223],[516973.0238327579,5277457.562759047]]]},"properties":{"ID_SOURCE":"w145192035","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":687}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.5024547672,5277704.316216019],[517252.94707128993,5277700.892934707],[517257.79760968074,5277711.243330016],[517253.81181454594,5277713.176465435],[517250.502863885,5277714.778189201],[517245.5024547672,5277704.316216019]]]},"properties":{"ID_SOURCE":"w145192044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":688}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517261.583225784,5277244.911357797],[517261.9007632028,5277239.133024376],[517263.5523264002,5277239.360200797],[517263.235116873,5277245.027395216],[517261.583225784,5277244.911357797]]]},"properties":{"ID_SOURCE":"w145192057","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":689}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516934.574504515,5277534.581893772],[516935.63279296184,5277534.785024017],[516936.9763213092,5277535.033440231],[516936.6717294624,5277536.477373073],[516934.26991324406,5277536.025826734],[516934.574504515,5277534.581893772]]]},"properties":{"ID_SOURCE":"w145192059","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":690}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516717.58055825427,5277756.456867363],[516716.81164672377,5277736.560611246],[516726.57521914743,5277736.144096114],[516727.3437780423,5277756.151492604],[516717.58055825427,5277756.456867363]]]},"properties":{"ID_SOURCE":"w145192065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":691}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.191248049,5277076.775009245],[517304.5639998645,5277085.664335236],[517300.41917325003,5277085.363055088],[517296.45452739584,5277085.084541092],[517297.0820933982,5277076.0840753745],[517305.191248049,5277076.775009245]]]},"properties":{"ID_SOURCE":"w145192076","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":692}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.2436189879,5277374.7559010275],[517280.3810186101,5277371.477681031],[517281.58247553324,5277371.5257030465],[517281.5173159088,5277373.237064488],[517281.4525851618,5277374.803945305],[517280.2436189879,5277374.7559010275]]]},"properties":{"ID_SOURCE":"w145192079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":693}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.40730385546,5277387.529332524],[517278.21605394554,5277387.36426527],[517278.35931298824,5277384.641762191],[517281.55056438525,5277384.806829521],[517281.40730385546,5277387.529332524]]]},"properties":{"ID_SOURCE":"w145192115","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":694}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.6137128068,5277569.355297548],[516430.5050369934,5277565.812623849],[516431.4775309224,5277567.1490469845],[516426.5862072565,5277570.6917198775],[516425.6137128068,5277569.355297548]]]},"properties":{"ID_SOURCE":"w145192138","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":695}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516979.81064246653,5277363.013606716],[516982.87476300425,5277363.000315639],[516982.87809101795,5277364.434029969],[516981.06065345614,5277364.43984297],[516979.81400364713,5277364.436207148],[516979.81064246653,5277363.013606716]]]},"properties":{"ID_SOURCE":"w145192141","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":696}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.99707138195,5276898.963820276],[517261.6354913696,5276897.932837287],[517262.18330325803,5276890.488091973],[517267.1316687075,5276890.869524592],[517272.62066125765,5276891.297020945],[517271.99707138195,5276898.963820276]]]},"properties":{"ID_SOURCE":"w145192146","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":697}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517251.0864914057,5276909.460119416],[517239.5229131353,5276908.536754676],[517240.0720120268,5276900.647451771],[517245.10278861073,5276901.09579361],[517251.710381995,5276901.682178925],[517251.0864914057,5276909.460119416]]]},"properties":{"ID_SOURCE":"w145192191","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":698}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.68095615954,5277512.229162872],[517157.6009457078,5277513.896026138],[517156.02389896667,5277513.89137873],[517155.9540414963,5277512.112933884],[517157.68095615954,5277512.229162872]]]},"properties":{"ID_SOURCE":"w145192209","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":699}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.54614990245,5277497.498359916],[517212.54187838384,5277498.943166512],[517210.3640462866,5277498.936728234],[517210.44341494224,5277497.492143637],[517212.54614990245,5277497.498359916]]]},"properties":{"ID_SOURCE":"w145192223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":700}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516768.6121288577,5277689.697396852],[516787.16256215837,5277689.084019258],[516787.37214412185,5277694.530480225],[516768.7469531611,5277695.032501799],[516768.6121288577,5277689.697396852]]]},"properties":{"ID_SOURCE":"w145192224","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":701}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.595538003,5276978.559527645],[517274.69175917015,5276977.992245901],[517275.3031453089,5276974.4375843415],[517278.90683858574,5276974.892836148],[517278.595538003,5276978.559527645]]]},"properties":{"ID_SOURCE":"w145192248","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":702}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.5994352537,5277418.446147886],[517298.94089809473,5277418.6005570935],[517298.89240460447,5277419.756268336],[517297.0752476116,5277419.673071488],[517295.55094242626,5277419.601859155],[517295.5994352537,5277418.446147886]]]},"properties":{"ID_SOURCE":"w145192258","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":703}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517143.1776200995,5277005.277395519],[517129.3574988846,5277005.570143742],[517129.2246184744,5276999.679341074],[517143.194961859,5276999.387034734],[517143.1776200995,5277005.277395519]]]},"properties":{"ID_SOURCE":"w145192270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":704}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.2030243897,5277480.112764153],[517019.3692082457,5277480.037176532],[517019.5714345031,5277487.928701877],[517007.40494247084,5277488.115428002],[517007.3311656428,5277485.092206738],[517007.2030243897,5277480.112764153]]]},"properties":{"ID_SOURCE":"w145192305","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":705}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.1771697487,5276758.005086063],[517293.3993935506,5276758.313201207],[517288.1859300722,5276758.642254762],[517287.6859145225,5276749.971864595],[517297.6774991334,5276749.223556169],[517298.1771697487,5276758.005086063]]]},"properties":{"ID_SOURCE":"w145192306","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":706}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.09274898574,5277723.472980556],[517179.01746149885,5277712.899703942],[517182.4994724769,5277711.1761964625],[517186.1619758629,5277709.364311913],[517191.3120201554,5277720.048955483],[517184.09274898574,5277723.472980556]]]},"properties":{"ID_SOURCE":"w145192351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":707}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.23861044773,5277386.06499503],[516849.4678718758,5277386.074339614],[516849.45682396967,5277387.296846362],[516847.5943666079,5277387.2914567115],[516846.23507312965,5277387.287523511],[516846.23861044773,5277386.06499503]]]},"properties":{"ID_SOURCE":"w145192373","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":708}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.49146025075,5277439.42631384],[516887.1634093542,5277439.419560811],[516887.2417313942,5277438.308389019],[516889.49468430673,5277438.314924223],[516889.49146025075,5277439.42631384]]]},"properties":{"ID_SOURCE":"w145192377","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":709}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517159.8025160894,5277454.887210569],[517159.64773373905,5277456.442713353],[517157.770606143,5277456.326041198],[517157.84996223677,5277454.881456011],[517159.8025160894,5277454.887210569]]]},"properties":{"ID_SOURCE":"w145192384","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":710}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.9371193109,5277494.340426582],[516856.236948171,5277486.3421167955],[516864.26822874526,5277487.810193664],[516862.8932914649,5277495.808284189],[516858.87017944705,5277495.063109648],[516854.9371193109,5277494.340426582]]]},"properties":{"ID_SOURCE":"w145192409","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":711}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516901.7323471347,5277491.253031263],[516910.8149779941,5277492.72422469],[516909.05835676484,5277502.83285435],[516904.5846374266,5277502.097453449],[516900.12593650084,5277501.362099592],[516901.7323471347,5277491.253031263]]]},"properties":{"ID_SOURCE":"w145192435","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":712}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.6009457078,5277513.896026138],[517157.68095615954,5277512.229162872],[517159.3327732746,5277512.345171038],[517159.25276235037,5277514.012034282],[517157.6009457078,5277513.896026138]]]},"properties":{"ID_SOURCE":"w145192458","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":713}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.87796341465,5277114.336385445],[517304.4268021832,5277106.558224784],[517312.3860385634,5277107.137583522],[517311.9122918224,5277114.915966759],[517307.82753545506,5277114.625973797],[517303.87796341465,5277114.336385445]]]},"properties":{"ID_SOURCE":"w145192460","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":714}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.05670342164,5277664.695618526],[516962.33847502904,5277663.351646177],[516963.99727661174,5277663.634329423],[516965.6635552003,5277663.928148929],[516965.50915371784,5277665.372518244],[516962.05670342164,5277664.695618526]]]},"properties":{"ID_SOURCE":"w145192468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":715}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517057.62509040267,5277443.917521117],[517057.09154310665,5277449.161761955],[517056.46540434274,5277455.250394983],[517049.858714042,5277454.564204169],[517050.8678651311,5277443.342028119],[517057.62509040267,5277443.917521117]]]},"properties":{"ID_SOURCE":"w145192512","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":716}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516621.84219457384,5277622.259128125],[516614.1751026575,5277624.793460479],[516610.9010029355,5277614.22582721],[516618.6432034671,5277611.691704921],[516620.22039375396,5277616.897554667],[516621.84219457384,5277622.259128125]]]},"properties":{"ID_SOURCE":"w145192520","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":717}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.1000503148,5277253.841394322],[517310.4481626265,5277253.725343035],[517310.5404454466,5277247.946342236],[517312.2677661277,5277247.951477924],[517312.1000503148,5277253.841394322]]]},"properties":{"ID_SOURCE":"w145192522","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":718}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516811.2414656909,5277386.297257548],[516814.6209251395,5277386.307016496],[516814.6167525194,5277387.751822888],[516812.8143745928,5277387.746617872],[516811.27484344743,5277387.742172364],[516811.2414656909,5277386.297257548]]]},"properties":{"ID_SOURCE":"w145192527","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":719}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.1620274906,5277685.061987704],[516895.7866405045,5277684.60812668],[516896.5166450305,5277684.065659657],[516896.9646360091,5277684.956079427],[516895.6854363829,5277685.841486308],[516895.1620274906,5277685.061987704]]]},"properties":{"ID_SOURCE":"w145192545","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":720}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516662.2216301324,5277656.383368361],[516657.89217968995,5277657.749113633],[516653.50259124883,5277659.136918071],[516650.6724816548,5277650.904469583],[516659.5423589825,5277647.929067426],[516662.2216301324,5277656.383368361]]]},"properties":{"ID_SOURCE":"w145192563","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":721}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.4547944704,5276863.292256154],[517270.0756900237,5276863.059953915],[517270.39160542196,5276857.837318638],[517273.845489136,5276858.180982703],[517273.4547944704,5276863.292256154]]]},"properties":{"ID_SOURCE":"w145192570","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":722}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516367.2544956785,5277572.413993694],[516368.5339515824,5277571.417332008],[516372.17681498255,5277576.528895267],[516374.9669471687,5277580.437751765],[516373.7629012694,5277581.323484268],[516367.2544956785,5277572.413993694]]]},"properties":{"ID_SOURCE":"w145192579","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":723}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.2721196279,5277588.827695341],[516852.48615224054,5277588.69111603],[516852.66787347646,5277577.799930052],[516861.4541791842,5277577.825370609],[516861.36327809363,5277583.282077357],[516861.2721196279,5277588.827695341]]]},"properties":{"ID_SOURCE":"w145192615","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":724}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.7022620247,5277352.750806912],[517044.0737781615,5277352.743111713],[517044.0016067355,5277351.742641364],[517046.7802901549,5277351.750776289],[517046.7022620247,5277352.750806912]]]},"properties":{"ID_SOURCE":"w145192617","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":725}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.25609902584,5277426.3755049],[516796.3241438367,5277428.820778686],[516795.19766558864,5277428.817529005],[516795.2047188851,5277426.372471872],[516796.25609902584,5277426.3755049]]]},"properties":{"ID_SOURCE":"w145192637","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":726}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.32386682415,5277128.705717237],[517269.9654762633,5277128.128188331],[517270.0448639914,5277126.6836053375],[517277.4783588285,5277127.26135719],[517277.32386682415,5277128.705717237]]]},"properties":{"ID_SOURCE":"w145192649","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":727}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.347729882,5277480.385179253],[517213.34247241204,5277482.163402708],[517211.16463403765,5277482.156964149],[517211.2453172923,5277480.267823732],[517213.347729882,5277480.385179253]]]},"properties":{"ID_SOURCE":"w145192668","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":728}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516431.58795133594,5277661.062558923],[516432.7165804381,5277660.287765321],[516436.4491008889,5277665.521877046],[516439.14937764587,5277669.30825772],[516438.09584484587,5277670.083262122],[516431.58795133594,5277661.062558923]]]},"properties":{"ID_SOURCE":"w145192681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":729}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516806.46728671837,5277453.189685249],[516807.9241924952,5277453.193891044],[516807.9352977703,5277454.549829779],[516807.9537203476,5277455.972473572],[516806.45926616655,5277455.968159376],[516806.46728671837,5277453.189685249]]]},"properties":{"ID_SOURCE":"w145192683","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":730}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.6170990961,5277368.443056712],[517317.446498333,5277372.7770065],[517316.17996469175,5277371.884120074],[517316.2633276153,5277369.105869796],[517317.6170990961,5277368.443056712]]]},"properties":{"ID_SOURCE":"w145192688","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":731}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516626.6777309937,5277638.2770823445],[516619.2362626741,5277640.700912472],[516616.1104699618,5277630.800538699],[516623.62704554916,5277628.376919018],[516625.18214230577,5277633.427111338],[516626.6777309937,5277638.2770823445]]]},"properties":{"ID_SOURCE":"w145192697","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":732}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8020198006,5277219.555926856],[517293.881742491,5277218.000205054],[517299.6638810031,5277218.239661671],[517299.7346895066,5277219.6846907595],[517293.8020198006,5277219.555926856]]]},"properties":{"ID_SOURCE":"w145192700","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":733}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516342.43353261234,5276703.231110933],[516352.27079436195,5276703.925563935],[516351.8845719828,5276710.403924825],[516351.24571054423,5276721.260481283],[516341.2582626374,5276720.565608401],[516342.43353261234,5276703.231110933]]]},"properties":{"ID_SOURCE":"w145192756","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":734}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.8480091094,5277362.535072265],[517051.8587975305,5277363.979922563],[517050.34926715796,5277363.986615726],[517048.967405761,5277363.993683123],[517048.96412656474,5277362.548854823],[517051.8480091094,5277362.535072265]]]},"properties":{"ID_SOURCE":"w145192763","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":735}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.2082343623,5277352.764001443],[517051.21148919757,5277351.652611997],[517053.5395753484,5277351.659430536],[517053.536320069,5277352.770819984],[517051.2082343623,5277352.764001443]]]},"properties":{"ID_SOURCE":"w145192765","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":736}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.4618089982,5277646.782776263],[517305.22921247734,5277645.144702261],[517306.2633734079,5277650.927055184],[517296.495649118,5277652.6762664355],[517295.4618089982,5277646.782776263]]]},"properties":{"ID_SOURCE":"w145192834","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":737}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.06596263323,5277090.871572535],[517298.6729484465,5277096.760818468],[517295.66949473927,5277096.529616578],[517296.06250590045,5277090.640370454],[517299.06596263323,5277090.871572535]]]},"properties":{"ID_SOURCE":"w145192859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":738}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517016.56061005587,5277747.209383724],[517016.52455025684,5277759.5458144285],[517004.8095162566,5277759.622722713],[517004.69536233466,5277747.285853292],[517016.56061005587,5277747.209383724]]]},"properties":{"ID_SOURCE":"w145192865","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":739}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.2996409306,5277685.360176225],[516680.00299573055,5277688.331443378],[516677.3228103001,5277680.21055076],[516681.9825725892,5277678.879108422],[516687.69456377736,5277677.239494134],[516690.2996409306,5277685.360176225]]]},"properties":{"ID_SOURCE":"w145192904","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":740}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517061.15100272134,5277650.2035686225],[517059.8917261743,5277651.967003548],[517059.2697021393,5277651.531735],[517060.55186556483,5277649.646113066],[517061.15100272134,5277650.2035686225]]]},"properties":{"ID_SOURCE":"w145192914","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":741}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516968.2215784252,5277378.861711008],[516972.65275519347,5277378.763486972],[516972.715866828,5277382.875847075],[516968.3597923356,5277382.974289922],[516968.2215784252,5277378.861711008]]]},"properties":{"ID_SOURCE":"w145192923","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":742}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.32492412464,5277375.777422989],[517317.14615270286,5277380.33362839],[517315.8570909086,5277379.440675011],[517316.0162139205,5277376.440370154],[517317.32492412464,5277375.777422989]]]},"properties":{"ID_SOURCE":"w145192925","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":743}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517071.5730002417,5277476.522398783],[517079.45600202936,5277477.323498359],[517078.5245070938,5277487.656778725],[517070.5664213776,5277486.85546017],[517071.06977555685,5277481.66670164],[517071.5730002417,5277476.522398783]]]},"properties":{"ID_SOURCE":"w145192940","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":744}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517091.01270973834,5276917.323582347],[517090.8872902729,5276908.87658753],[517099.22495381127,5276908.567645259],[517099.27492967667,5276917.125558605],[517091.01270973834,5276917.323582347]]]},"properties":{"ID_SOURCE":"w145192947","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":745}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517144.9357714689,5277581.431799837],[517149.6845356586,5277575.444229363],[517156.87776726385,5277580.911280667],[517152.1290000574,5277586.898845336],[517148.32260813384,5277583.997993632],[517144.9357714689,5277581.431799837]]]},"properties":{"ID_SOURCE":"w145192976","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":746}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516409.2481489033,5277700.565349721],[516404.66072601895,5277697.573871941],[516397.62970564474,5277692.975100043],[516402.53155599337,5277685.653676086],[516413.99981734535,5277693.2435119795],[516409.2481489033,5277700.565349721]]]},"properties":{"ID_SOURCE":"w145192977","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":747}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.1758507032,5277452.777546677],[516548.26122708694,5277458.896166238],[516545.70567892515,5277459.666882147],[516543.845279003,5277453.6600426575],[516546.1758507032,5277452.777546677]]]},"properties":{"ID_SOURCE":"w145192998","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":748}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.4837950692,5277611.783490525],[516805.998560198,5277615.563733747],[516801.41609185946,5277616.106206741],[516800.90100307687,5277612.437102922],[516805.4837950692,5277611.783490525]]]},"properties":{"ID_SOURCE":"w145193018","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":749}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.15112898295,5277367.709474002],[516401.369037654,5277365.245288383],[516402.4361731445,5277362.325316955],[516409.21823611634,5277364.800617691],[516408.15112898295,5277367.709474002]]]},"properties":{"ID_SOURCE":"w145193040","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":750}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.10660908604,5277692.732281565],[517309.8518900829,5277691.703868796],[517312.1311076846,5277690.421422356],[517312.3192092181,5277690.2997277435],[517317.75807069783,5277699.75168905],[517313.3956155238,5277702.072653294],[517308.10660908604,5277692.732281565]]]},"properties":{"ID_SOURCE":"w145193044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":751}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516885.0436784216,5277660.181741812],[516885.0694294753,5277661.659977639],[516883.6275304654,5277661.678023769],[516882.32828078093,5277661.707597917],[516882.3024968005,5277660.240476007],[516885.0436784216,5277660.181741812]]]},"properties":{"ID_SOURCE":"w145193063","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":752}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516788.05271396635,5277257.9638281735],[516777.9738085334,5277258.068143868],[516777.7532127348,5277235.583916151],[516777.18348930473,5277177.8784670485],[516787.2700436941,5277177.774171325],[516787.35099374165,5277186.165462753],[516787.5484688195,5277206.237887937],[516787.7514012587,5277227.0216245465],[516787.83177254617,5277235.612966701],[516787.9368003534,5277246.071529592],[516788.05271396635,5277257.9638281735]]]},"properties":{"ID_SOURCE":"w145193092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":753}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.7043217779,5276758.808267498],[517231.4298729909,5276750.02741027],[517241.27057699655,5276749.500838274],[517241.92087610444,5276758.171669039],[517236.51961474045,5276758.511326784],[517231.7043217779,5276758.808267498]]]},"properties":{"ID_SOURCE":"w145193111","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":754}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.35901714297,5276875.997521685],[517279.82498059236,5276875.558765757],[517278.07541346893,5276875.420206478],[517278.47336643265,5276867.863878351],[517285.98229690804,5276868.441862869],[517285.35901714297,5276875.997521685]]]},"properties":{"ID_SOURCE":"w145193113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":755}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.21977109084,5277266.704324083],[516439.6584927597,5277265.594164585],[516441.0612429026,5277266.176052497],[516440.6376352805,5277267.252912626],[516439.21977109084,5277266.704324083]]]},"properties":{"ID_SOURCE":"w145193126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":756}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516879.9532743659,5277387.829742462],[516880.02225127263,5277389.941600303],[516879.04596357205,5277389.938769882],[516878.9769863098,5277387.826912053],[516879.9532743659,5277387.829742462]]]},"properties":{"ID_SOURCE":"w145193132","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":757}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.4268021832,5277106.558224784],[517303.87796341465,5277114.336385445],[517299.6355237762,5277114.034815645],[517295.76853083796,5277113.756592133],[517296.3924615466,5277105.978653837],[517304.4268021832,5277106.558224784]]]},"properties":{"ID_SOURCE":"w145193143","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":758}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517227.78967767867,5277726.3806281],[517223.1423133286,5277728.567448667],[517218.6153011818,5277730.687944911],[517215.2570749015,5277723.565054411],[517224.5062260521,5277719.369093528],[517227.78967767867,5277726.3806281]]]},"properties":{"ID_SOURCE":"w145193146","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":759}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.5443799553,5277456.606386101],[516796.5373260273,5277459.051443348],[516795.4859517873,5277459.0484102545],[516795.4930052726,5277456.603353008],[516796.5443799553,5277456.606386101]]]},"properties":{"ID_SOURCE":"w145193156","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":760}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.50476784824,5277049.897926793],[517308.6514973401,5277049.667164855],[517308.89332622127,5277044.110890161],[517311.82170297136,5277044.341875497],[517311.50476784824,5277049.897926793]]]},"properties":{"ID_SOURCE":"w145193194","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":761}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.11795029487,5277356.933332071],[516880.1105392766,5277359.489527866],[516879.0594692188,5277359.3753407765],[516879.0665575779,5277356.930283929],[516880.11795029487,5277356.933332071]]]},"properties":{"ID_SOURCE":"w145193199","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":762}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516840.4341748207,5277705.130886619],[516842.0878721754,5277704.579970871],[516847.30045869836,5277719.821225193],[516845.49657557777,5277720.371704866],[516840.4341748207,5277705.130886619]]]},"properties":{"ID_SOURCE":"w145193204","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":763}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517001.5664654159,5277352.952250944],[517001.5697107769,5277351.840861489],[517004.123095452,5277351.848318167],[517004.1198496046,5277352.959707623],[517001.5664654159,5277352.952250944]]]},"properties":{"ID_SOURCE":"w145193214","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":764}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.209861847,5277353.106374126],[516978.21277865703,5277352.106123617],[516980.69106364576,5277352.113351024],[516980.68814640853,5277353.113601533],[516978.209861847,5277353.106374126]]]},"properties":{"ID_SOURCE":"w145193216","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":765}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516809.91824026156,5277376.401987762],[516809.8463498221,5277375.290381423],[516812.4000449375,5277375.186615093],[516812.39683566446,5277376.298004606],[516809.91824026156,5277376.401987762]]]},"properties":{"ID_SOURCE":"w145193241","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":766}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516968.6302513869,5277290.173272554],[516984.6272729903,5277289.997636142],[516984.9298265802,5277315.004992329],[516968.78299752634,5277315.069051062],[516968.7005074962,5277302.143242369],[516968.6302513869,5277290.173272554]]]},"properties":{"ID_SOURCE":"w145193254","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":767}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.7347461199,5277470.424234589],[516426.87250563543,5277469.221830922],[516426.4153325825,5277471.554478014],[516419.7347461199,5277470.424234589]]]},"properties":{"ID_SOURCE":"w145193270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":768}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516931.7946060732,5277457.553849934],[516931.797515006,5277456.553599253],[516934.35085368535,5277456.561025444],[516934.3479443126,5277457.561276126],[516931.7946060732,5277457.553849934]]]},"properties":{"ID_SOURCE":"w145193275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":769}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.06596263323,5277090.871572535],[517302.0694191344,5277091.102776167],[517301.601299077,5277096.991798746],[517298.6729484465,5277096.760818468],[517299.06596263323,5277090.871572535]]]},"properties":{"ID_SOURCE":"w145193280","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":770}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516828.8152973029,5277386.125747588],[516831.9694595723,5277386.1348653985],[516831.9579976486,5277387.501852809],[516830.2832559472,5277387.508125371],[516828.8413214142,5277387.51507133],[516828.8152973029,5277386.125747588]]]},"properties":{"ID_SOURCE":"w145193299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":771}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.6822493633,5277673.8138304],[516963.83697403234,5277672.258322017],[516968.19024058187,5277673.048988273],[516967.9607433107,5277674.493138673],[516963.6822493633,5277673.8138304]]]},"properties":{"ID_SOURCE":"w145193306","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":772}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.2017568973,5277676.955858511],[517206.0397218357,5277666.189578084],[517213.23936025234,5277669.433920221],[517208.40138461447,5277680.200194749],[517204.69656965573,5277678.533259213],[517201.2017568973,5277676.955858511]]]},"properties":{"ID_SOURCE":"w145193308","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":773}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4892138693,5276965.732311008],[517293.13127948245,5276964.932475722],[517293.2103447798,5276963.599032274],[517300.6443760135,5276964.065674174],[517300.4892138693,5276965.732311008]]]},"properties":{"ID_SOURCE":"w145193312","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":774}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.3846537707,5277693.109145124],[516869.3927637942,5277688.988297],[516872.8619965258,5277686.464360217],[516874.4272953609,5277685.324155751],[516877.5014339794,5277689.567498823],[516872.3846537707,5277693.109145124]]]},"properties":{"ID_SOURCE":"w145193335","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":775}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.7619861289,5277507.765002331],[517075.0113366788,5277507.651660814],[517075.38961499673,5277504.140748549],[517076.14787244523,5277504.220770451],[517075.7619861289,5277507.765002331]]]},"properties":{"ID_SOURCE":"w145193375","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":776}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516920.582850444,5277439.294310768],[516920.66085586656,5277438.294278372],[516923.06432872283,5277438.1901241215],[516923.211618148,5277439.190811352],[516920.582850444,5277439.294310768]]]},"properties":{"ID_SOURCE":"w145193416","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":777}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517199.3375860384,5276808.058659322],[517199.2680597711,5276806.169077075],[517201.4464792831,5276806.064371714],[517201.59143971396,5276807.843037003],[517199.3375860384,5276808.058659322]]]},"properties":{"ID_SOURCE":"w145193435","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":778}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.131278305,5277619.7510204],[517283.32172828494,5277620.473233405],[517279.0162811825,5277621.282889032],[517277.68796992145,5277613.388009041],[517285.8023176909,5277612.078416526],[517287.131278305,5277619.7510204]]]},"properties":{"ID_SOURCE":"w145193446","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":779}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516316.9995908827,5276800.518185244],[516323.9293406349,5276793.424664123],[516329.5851264182,5276798.708544369],[516334.1921529313,5276803.01145873],[516327.33750844595,5276810.10517833],[516316.9995908827,5276800.518185244]]]},"properties":{"ID_SOURCE":"w145193455","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":780}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.44341494224,5277497.492143637],[517210.448343014,5277495.825059108],[517212.6261762754,5277495.831497412],[517212.54614990245,5277497.498359916],[517210.44341494224,5277497.492143637]]]},"properties":{"ID_SOURCE":"w145193468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":781}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.36990366125,5277376.124761416],[516826.6663313575,5277376.116947264],[516826.66922215465,5277375.116696701],[516829.29801692977,5277375.013154824],[516829.36990366125,5277376.124761416]]]},"properties":{"ID_SOURCE":"w145193495","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":782}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517135.6325123722,5277616.713571965],[517138.9869525679,5277612.422330082],[517143.8865327003,5277606.212918843],[517147.16812237864,5277608.812144197],[517150.92921163514,5277611.790659849],[517142.6368856515,5277622.546812207],[517141.48369457514,5277623.977122087],[517136.56126901385,5277620.0949602965],[517137.6315921852,5277618.753317474],[517135.5489252595,5277617.046745799],[517135.6325123722,5277616.713571965]]]},"properties":{"ID_SOURCE":"w145193502","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":783}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517053.8101809799,5277643.847083078],[517046.5405339796,5277638.824494717],[517050.24271289347,5277633.722898571],[517053.6281929196,5277629.064936865],[517060.67190699157,5277634.309151759],[517053.8101809799,5277643.847083078]]]},"properties":{"ID_SOURCE":"w145193514","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":784}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516832.9697825263,5277741.452059602],[516827.9821412709,5277726.322607856],[516829.2597152525,5277725.992881152],[516834.2476748636,5277741.011194976],[516832.9697825263,5277741.452059602]]]},"properties":{"ID_SOURCE":"w145193516","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":785}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.5405339796,5277638.824494717],[517053.8101809799,5277643.847083078],[517047.5515207655,5277652.60880876],[517040.28253002174,5277647.363950136],[517043.42658140947,5277643.08315165],[517046.5405339796,5277638.824494717]]]},"properties":{"ID_SOURCE":"w145193535","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":786}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.0226204094,5277062.86122438],[517306.1321237025,5277063.441020613],[517305.9743198629,5277065.996768698],[517297.8651502763,5277065.305833783],[517298.0226204094,5277062.86122438]]]},"properties":{"ID_SOURCE":"w145193547","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":787}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516827.33421649766,5277612.73572542],[516829.3630984211,5277612.297030374],[516829.65802138014,5277614.1872615935],[516827.5546864202,5277614.403461488],[516827.4517683494,5277613.636298551],[516827.33421649766,5277612.73572542]]]},"properties":{"ID_SOURCE":"w145193587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":788}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.49605039565,5277539.4405856235],[516723.97963390645,5277541.752927086],[516720.8555605,5277531.29680343],[516728.59696161805,5277529.096244261],[516729.92759735155,5277533.8346274365],[516731.49605039565,5277539.4405856235]]]},"properties":{"ID_SOURCE":"w145193597","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":789}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.96430552274,5276762.49728415],[516467.4529366806,5276763.85437229],[516466.118198384,5276760.427494158],[516469.6295689701,5276759.070405218],[516470.96430552274,5276762.49728415]]]},"properties":{"ID_SOURCE":"w145193608","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":790}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516551.1422479204,5277502.137765333],[516543.2503684151,5277504.449272486],[516538.6378877285,5277489.098865566],[516546.4550041964,5277486.67599977],[516548.7539812715,5277494.262273285],[516551.1422479204,5277502.137765333]]]},"properties":{"ID_SOURCE":"w145193618","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":791}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.94707128993,5277700.892934707],[517245.5024547672,5277704.316216019],[517240.4272615276,5277693.742885956],[517243.76642395766,5277692.085675963],[517247.7974518507,5277690.097097695],[517252.94707128993,5277700.892934707]]]},"properties":{"ID_SOURCE":"w145193666","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":792}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516847.6314113713,5277449.752181575],[516851.0108340392,5277449.761961734],[516851.006652304,5277451.206768268],[516849.30943156104,5277451.201856211],[516847.62723047216,5277451.196988111],[516847.6314113713,5277449.752181575]]]},"properties":{"ID_SOURCE":"w145193674","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":793}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.2816900427,5277439.516543216],[516879.95363918797,5277439.50979307],[516879.8817629929,5277438.398185724],[516882.28491272125,5277438.405153601],[516882.2816900427,5277439.516543216]]]},"properties":{"ID_SOURCE":"w145193714","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":794}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516955.1313843909,5277515.636798855],[516956.5857495879,5277506.194141648],[516965.7434412403,5277507.665639611],[516964.28906152514,5277517.1082945885],[516959.6576877045,5277516.361277886],[516955.1313843909,5277515.636798855]]]},"properties":{"ID_SOURCE":"w145193750","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":795}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517047.94850184035,5277314.42230623],[517031.91405950143,5277314.575430886],[517031.67211304413,5277289.457108605],[517047.7066245402,5277289.30398312],[517047.8095242107,5277300.329361262],[517047.94850184035,5277314.42230623]]]},"properties":{"ID_SOURCE":"w145193799","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":796}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516874.1066185697,5277280.340533547],[516873.95410966914,5277255.222482002],[516890.10174703284,5277254.935882035],[516890.25319653295,5277267.450670256],[516890.4040648311,5277280.165508815],[516874.1066185697,5277280.340533547]]]},"properties":{"ID_SOURCE":"w145193805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":797}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.94233278395,5277759.794728824],[516873.5485633215,5277757.907106766],[516881.126642796,5277760.151875611],[516880.52041002514,5277762.039496896],[516872.94233278395,5277759.794728824]]]},"properties":{"ID_SOURCE":"w145193809","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":798}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.1309403669,5276760.977971567],[516527.1128812888,5276760.544712285],[516527.6282222141,5276764.21378637],[516523.7188680175,5276765.5363691915],[516523.1309403669,5276760.977971567]]]},"properties":{"ID_SOURCE":"w145193818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":799}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.41592445935,5277757.330132625],[516400.2001927002,5277756.165372995],[516400.90157568856,5277755.100405869],[516401.9434454574,5277755.792408608],[516400.457825312,5277758.011021201],[516399.41592445935,5277757.330132625]]]},"properties":{"ID_SOURCE":"w145193826","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":800}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516843.06105801393,5277316.259959183],[516842.8277670908,5277303.444857358],[516842.6080160951,5277291.141038357],[516859.0556313729,5277290.966360441],[516859.2082023356,5277316.084412859],[516843.06105801393,5277316.259959183]]]},"properties":{"ID_SOURCE":"w145193845","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":801}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516537.1797212849,5276870.779469844],[516534.0315914778,5276868.547735087],[516534.786120513,5276867.327340138],[516538.08446220704,5276869.559501905],[516537.1797212849,5276870.779469844]]]},"properties":{"ID_SOURCE":"w145193886","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":802}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517232.5593970544,5277256.606213909],[517218.89434092445,5277255.454386814],[517220.68312748516,5277234.67651644],[517234.3485610487,5277235.7172086565],[517233.25961337716,5277248.395047811],[517232.5593970544,5277256.606213909]]]},"properties":{"ID_SOURCE":"w145193906","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":803}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.80328777165,5276951.825143247],[517280.77244959737,5276951.103329806],[517281.2605275078,5276943.5472684335],[517292.2988904286,5276944.269105058],[517292.0706242315,5276947.791560488],[517291.80328777165,5276951.825143247]]]},"properties":{"ID_SOURCE":"w145193907","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":804}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517077.1523524805,5277597.014448917],[517074.0456951606,5277606.452232242],[517064.81765004416,5277603.424397291],[517066.36326563923,5277598.772164359],[517067.92396812694,5277594.0977481045],[517077.1523524805,5277597.014448917]]]},"properties":{"ID_SOURCE":"w145193918","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":805}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.31355526915,5277407.088324472],[517006.74043316767,5277407.092492252],[517006.72815107205,5277408.726212953],[517006.7159988367,5277410.315478081],[517005.3038168743,5277410.422493128],[517005.31355526915,5277407.088324472]]]},"properties":{"ID_SOURCE":"w145193956","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":806}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517288.0195523988,5277219.427614972],[517287.9490709729,5277217.871447118],[517293.881742491,5277218.000205054],[517293.8020198006,5277219.555926856],[517288.0195523988,5277219.427614972]]]},"properties":{"ID_SOURCE":"w145193957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":807}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516747.58180589415,5277299.31355737],[516757.64587497147,5277299.120234851],[516757.6707010953,5277300.931886011],[516757.70626089524,5277304.232842191],[516747.5674201805,5277304.314809626],[516747.55297809205,5277301.502929656],[516747.58180589415,5277299.31355737]]]},"properties":{"ID_SOURCE":"w145193964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":808}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516890.24539505504,5277386.637052092],[516890.17964593443,5277383.413804617],[516891.90692612034,5277383.418815693],[516891.9021861649,5277385.052558287],[516891.8978976333,5277386.5307063535],[516890.24539505504,5277386.637052092]]]},"properties":{"ID_SOURCE":"w145193971","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":809}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517206.0243155693,5276731.05852325],[517196.70900861727,5276731.697846235],[517196.39140042814,5276727.340228032],[517196.0596234794,5276722.693604554],[517205.3749447519,5276722.054280499],[517206.0243155693,5276731.05852325]]]},"properties":{"ID_SOURCE":"w145193984","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":810}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516396.71391161176,5277644.848949041],[516398.97148007987,5277643.188209583],[516400.0935334975,5277644.747328726],[516397.8359653085,5277646.408067756],[516396.71391161176,5277644.848949041]]]},"properties":{"ID_SOURCE":"w145194006","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":811}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516649.38742711843,5277417.507026335],[516647.154645205,5277410.443260129],[516644.84739439597,5277403.157002255],[516652.73976981506,5277400.7344938135],[516657.35488377727,5277415.084738894],[516649.38742711843,5277417.507026335]]]},"properties":{"ID_SOURCE":"w145194013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":812}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.48765249795,5277455.747601688],[517027.6286640556,5277454.832566075],[517027.72033958486,5277449.164698623],[517036.95515328593,5277449.969694157],[517036.48765249795,5277455.747601688]]]},"properties":{"ID_SOURCE":"w145194016","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":813}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.8619083071,5277219.18705536],[517282.0167290997,5277217.631556308],[517287.9490709729,5277217.871447118],[517288.0195523988,5277219.427614972],[517281.8619083071,5277219.18705536]]]},"properties":{"ID_SOURCE":"w145194021","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":814}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517059.9239310311,5277684.542218567],[517059.64718777017,5277702.1015210925],[517052.06324049906,5277701.857022186],[517052.41440506873,5277684.520217333],[517059.9239310311,5277684.542218567]]]},"properties":{"ID_SOURCE":"w145194033","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":815}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517191.95969335176,5277749.936408649],[517189.2758745341,5277748.383637766],[517191.5398666432,5277744.611563722],[517194.1938786001,5277746.086449609],[517191.95969335176,5277749.936408649]]]},"properties":{"ID_SOURCE":"w145194037","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":816}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.2153020375,5277404.542959224],[516535.6725666292,5277396.1775179375],[516543.8123083868,5277385.975774844],[516554.3024814755,5277394.3410812495],[516546.2153020375,5277404.542959224]]]},"properties":{"ID_SOURCE":"w145194046","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":817}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.88507022307,5277362.949931807],[516999.88085165824,5277364.394738118],[516998.228665137,5277364.389914276],[516996.7266773928,5277364.385529372],[516996.73089517374,5277362.94072306],[516999.88507022307,5277362.949931807]]]},"properties":{"ID_SOURCE":"w145194069","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":818}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516883.7117883284,5277490.200485019],[516882.33585802716,5277498.531987958],[516877.2315372711,5277497.716981632],[516872.3523792997,5277496.947088279],[516873.72829565743,5277488.6155830305],[516883.7117883284,5277490.200485019]]]},"properties":{"ID_SOURCE":"w145194086","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":819}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.41948199185,5277426.286637752],[516995.4123446139,5277428.731694843],[516994.2107676974,5277428.728187437],[516994.2179045692,5277426.283130346],[516995.41948199185,5277426.286637752]]]},"properties":{"ID_SOURCE":"w145194103","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":820}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517062.6157533072,5277611.642299393],[517071.3941872085,5277614.335392696],[517067.98423158587,5277624.772549581],[517059.3560040423,5277622.079901443],[517060.9328213937,5277617.027654608],[517062.6157533072,5277611.642299393]]]},"properties":{"ID_SOURCE":"w145194106","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":821}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516950.4358961197,5277467.266150402],[516953.5899498634,5277467.297562002],[516953.5778444851,5277468.875713453],[516951.7755239284,5277468.859351461],[516950.41624943644,5277468.855393891],[516950.4358961197,5277467.266150402]]]},"properties":{"ID_SOURCE":"w145194108","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":822}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516870.0113869932,5277662.094224999],[516869.98453712725,5277660.993861846],[516873.8372935645,5277660.88277361],[516873.871620043,5277661.994272449],[516871.94901305524,5277662.044270169],[516870.0113869932,5277662.094224999]]]},"properties":{"ID_SOURCE":"w145194118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":823}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517090.352082201,5277628.505787879],[517098.3047489782,5277631.085358018],[517095.1193893301,5277641.745439037],[517087.091313722,5277639.276791756],[517088.8430569897,5277633.480427983],[517090.352082201,5277628.505787879]]]},"properties":{"ID_SOURCE":"w145194135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":824}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.2686980227,5277279.634809371],[516936.96593664924,5277254.627457553],[516952.8876300829,5277254.5626541795],[516953.1387436319,5277266.333097785],[516953.41562452435,5277279.570663006],[516937.2686980227,5277279.634809371]]]},"properties":{"ID_SOURCE":"w145194167","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":825}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.43716531934,5277467.3810069775],[516936.40994799347,5277468.992456451],[516934.4650058382,5277468.953456952],[516932.8504626973,5277468.926533013],[516932.88512419834,5277467.337333161],[516936.43716531934,5277467.3810069775]]]},"properties":{"ID_SOURCE":"w145194187","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":826}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.3723295036,5277148.55370975],[516840.31649107626,5277148.653117837],[516840.2635679686,5277140.984315788],[516844.31941173534,5277140.884907654],[516844.3723295036,5277148.55370975]]]},"properties":{"ID_SOURCE":"w145194192","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":827}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.9199670508,5277386.697597406],[516795.91259292787,5277389.253793339],[516794.7857864316,5277389.361682711],[516794.7931600596,5277386.805486776],[516795.9199670508,5277386.697597406]]]},"properties":{"ID_SOURCE":"w145194205","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":828}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.60682870145,5277587.640296946],[517241.9398319822,5277588.720095426],[517241.50702654495,5277582.717255879],[517245.8035055966,5277582.407675685],[517251.87265978224,5277581.969983399],[517252.60682870145,5277587.640296946]]]},"properties":{"ID_SOURCE":"w145194207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":829}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516613.57809241186,5276775.939097028],[516614.2496159097,5276777.496969423],[516603.4212237654,5276782.022815377],[516602.3022250389,5276779.352270934],[516600.063590856,5276774.233460432],[516598.8697988378,5276771.45156374],[516609.9983183154,5276767.037705118],[516610.74495087564,5276768.595791311],[516615.8582561272,5276766.498723685],[516618.84160625516,5276773.8424605625],[516613.57809241186,5276775.939097028]]]},"properties":{"ID_SOURCE":"w145194215","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":830}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516892.4910156998,5277570.3578286255],[516889.4877914476,5277570.1268355325],[516889.528757458,5277568.94887123],[516889.5696590013,5277567.793134722],[516892.72340044996,5277567.913424668],[516892.4910156998,5277570.3578286255]]]},"properties":{"ID_SOURCE":"w145194228","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":831}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.98455877596,5277412.288813229],[516807.4489846632,5277412.293040558],[516807.49693373515,5277413.8935933085],[516807.53804666636,5277415.26073257],[516806.0509956642,5277415.289781872],[516805.98455877596,5277412.288813229]]]},"properties":{"ID_SOURCE":"w145194247","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":832}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.3090744112,5277434.04430986],[516796.3023412614,5277436.37822806],[516795.3260613782,5277436.3754116595],[516795.25769565627,5277434.041276819],[516796.3090744112,5277434.04430986]]]},"properties":{"ID_SOURCE":"w145194270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":833}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.43324737216,5276727.306105856],[516404.0285523397,5276727.7438904485],[516403.5115648963,5276724.630521909],[516405.9913687977,5276724.192948696],[516406.43324737216,5276727.306105856]]]},"properties":{"ID_SOURCE":"w145194272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":834}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.90524922754,5277356.95802765],[516926.8227182182,5277359.514005099],[516925.62112705014,5277359.510511883],[516925.6285580511,5277356.954316099],[516926.90524922754,5277356.95802765]]]},"properties":{"ID_SOURCE":"w145194281","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":835}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.0970944333,5277590.008932152],[516418.27448105946,5277588.784073582],[516422.78936138185,5277585.573751422],[516423.6119742665,5277586.79861062],[516421.3394830835,5277588.4148424845],[516419.0970944333,5277590.008932152]]]},"properties":{"ID_SOURCE":"w145194290","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":836}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516852.48615224054,5277588.69111603],[516861.2721196279,5277588.827695341],[516861.14328433,5277594.417660229],[516861.0152861194,5277599.71866379],[516852.30410980294,5277599.693441195],[516852.48615224054,5277588.69111603]]]},"properties":{"ID_SOURCE":"w145194292","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":837}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.48508601607,5277535.17299389],[517265.21141942375,5277535.886443514],[517261.656057049,5277539.510177449],[517260.9297236612,5277538.7967282655],[517264.48508601607,5277535.17299389]]]},"properties":{"ID_SOURCE":"w145194310","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":838}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516813.25016676163,5277574.907462288],[516812.879818738,5277573.128154147],[516814.98381001706,5277572.689670962],[516815.13878457836,5277573.634807829],[516815.2790928568,5277574.457648437],[516813.25016676163,5277574.907462288]]]},"properties":{"ID_SOURCE":"w145194312","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":839}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.2597152525,5277725.992881152],[516827.59972004854,5277720.931215317],[516824.2723719864,5277710.7522939965],[516825.7004602165,5277710.311861548],[516830.83831089886,5277725.441745124],[516829.2597152525,5277725.992881152]]]},"properties":{"ID_SOURCE":"w145194317","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":840}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.92688177474,5277542.650726148],[517187.18012268806,5277542.546237668],[517186.4753772522,5277552.324472463],[517182.0443280734,5277552.422533476],[517184.92688177474,5277542.650726148]]]},"properties":{"ID_SOURCE":"w145194324","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":841}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9682071859,5277386.965980701],[516927.03587458644,5277389.52239494],[516925.90938867274,5277389.519119989],[516925.8417207767,5277386.962705763],[516926.9682071859,5277386.965980701]]]},"properties":{"ID_SOURCE":"w145194357","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":842}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516885.35779362987,5277570.003715786],[516892.4910156998,5277570.3578286255],[516892.0088334944,5277581.24814184],[516884.72543156514,5277580.893593954],[516885.35779362987,5277570.003715786]]]},"properties":{"ID_SOURCE":"w145194399","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":843}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517173.4385678831,5277440.256946549],[517169.7600566058,5277439.8015375305],[517170.1450538239,5277436.579615086],[517173.97376402095,5277437.035467389],[517173.4385678831,5277440.256946549]]]},"properties":{"ID_SOURCE":"w145194409","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":844}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.62325231615,5276826.748519654],[517280.6285292404,5276824.970298046],[517283.44501750916,5276824.978656738],[517286.41171848326,5276824.987462699],[517286.40643979126,5276826.765684308],[517280.62325231615,5276826.748519654]]]},"properties":{"ID_SOURCE":"w145194443","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":845}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.5404454466,5277247.946342236],[517309.26406056085,5277247.831407698],[517309.50786581135,5277241.608297774],[517310.70948150445,5277241.611870156],[517310.5404454466,5277247.946342236]]]},"properties":{"ID_SOURCE":"w145194461","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":846}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.28071626223,5277683.4169762945],[516698.70488812623,5277687.273658222],[516695.723390775,5277679.485312505],[516707.59961380326,5277675.629486721],[516708.85078522045,5277679.26735299],[516710.28071626223,5277683.4169762945]]]},"properties":{"ID_SOURCE":"w145194537","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":847}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.1552775183,5277409.259671939],[516796.07376632886,5277411.48223444],[516795.0220628996,5277411.5903404085],[516794.9536966827,5277409.256205665],[516796.1552775183,5277409.259671939]]]},"properties":{"ID_SOURCE":"w145194576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":848}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9794363306,5277449.691268235],[516867.8331710782,5277449.69953541],[516867.8289851682,5277451.144341937],[516866.304490404,5277451.13992535],[516864.975251127,5277451.136074761],[516864.9794363306,5277449.691268235]]]},"properties":{"ID_SOURCE":"w145194579","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":849}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.10557473905,5277412.176359121],[517218.9342310174,5277412.10621082],[517219.0371513902,5277410.317162406],[517220.2085283431,5277410.376196827],[517220.10557473905,5277412.176359121]]]},"properties":{"ID_SOURCE":"w145194582","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":850}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.8818413143,5277360.98807683],[516938.75932704547,5277360.9935387205],[516938.7552206524,5277362.405003354],[516938.7509202578,5277363.883151361],[516936.9485348491,5277363.877907936],[516936.8818413143,5277360.98807683]]]},"properties":{"ID_SOURCE":"w145194591","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":851}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517029.8793151325,5277352.923856033],[517027.4013554672,5277352.805468743],[517027.4793802795,5277351.805437867],[517029.88256589754,5277351.812466579],[517029.8793151325,5277352.923856033]]]},"properties":{"ID_SOURCE":"w145194597","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":852}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516890.23413364263,5277364.63132202],[516890.2428387671,5277361.630570413],[516891.819926576,5277361.635145728],[516891.8377164976,5277363.268953631],[516891.8563447576,5277364.6138002705],[516890.23413364263,5277364.63132202]]]},"properties":{"ID_SOURCE":"w145194654","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":853}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.11259217444,5277467.375964834],[516988.1157240501,5277468.876362787],[516986.6287504466,5277468.8831381425],[516985.31450233865,5277468.890417788],[516985.303859935,5277467.389997932],[516988.11259217444,5277467.375964834]]]},"properties":{"ID_SOURCE":"w145194670","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":854}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517211.2453172923,5277480.267823732],[517211.32468638226,5277478.8232391905],[517213.4270994913,5277478.940594735],[517213.347729882,5277480.385179253],[517211.2453172923,5277480.267823732]]]},"properties":{"ID_SOURCE":"w145194671","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":855}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.36213844694,5277374.193109771],[517270.20040158555,5277378.082527382],[517269.2257599743,5277377.523936803],[517269.3835403908,5277374.968186528],[517270.36213844694,5277374.193109771]]]},"properties":{"ID_SOURCE":"w145194709","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":856}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.6638810031,5277218.239661671],[517299.7429448478,5277216.906217784],[517305.67594748177,5277216.923848815],[517305.7470848416,5277218.257739056],[517299.6638810031,5277218.239661671]]]},"properties":{"ID_SOURCE":"w145194710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":857}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.2823730947,5277619.116844486],[517032.0910600237,5277623.733854854],[517029.74864814826,5277628.661615914],[517021.64933057583,5277624.859171459],[517026.25879133854,5277615.092335448],[517034.2823730947,5277619.116844486]]]},"properties":{"ID_SOURCE":"w145194738","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":858}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.20872779284,5277519.389398417],[516837.73295465513,5277520.008419005],[516843.29619109415,5277520.535754698],[516842.4456847988,5277528.979927142],[516830.28378417925,5277527.611077517],[516831.20872779284,5277519.389398417]]]},"properties":{"ID_SOURCE":"w145194752","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":859}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9343111592,5277315.602119993],[516540.3875948698,5277314.658719042],[516543.82243861735,5277316.335575543],[516543.361676057,5277317.267840992],[516539.9343111592,5277315.602119993]]]},"properties":{"ID_SOURCE":"w145194759","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":860}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517140.9365073986,5277511.40186062],[517140.8565017328,5277513.068724097],[517139.2043573043,5277513.063860146],[517139.2092650018,5277511.396775568],[517140.9365073986,5277511.40186062]]]},"properties":{"ID_SOURCE":"w145194768","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":861}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.335142646,5277403.724991164],[516995.3276809325,5277406.281187121],[516994.20119822863,5277406.277898948],[516994.1335605678,5277403.7214837875],[516995.335142646,5277403.724991164]]]},"properties":{"ID_SOURCE":"w145194787","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":862}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.3273372146,5277408.523514167],[517292.1899199638,5277408.333400427],[517292.6436818823,5277407.267804792],[517295.49743793765,5277407.2762815375],[517296.3273372146,5277408.523514167]]]},"properties":{"ID_SOURCE":"w145194840","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":863}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.5217925365,5277746.47253719],[516404.3261927198,5277741.673240736],[516408.04379464954,5277736.204520452],[516411.4899349032,5277731.135140918],[516418.6855419539,5277735.934446135],[516411.5217925365,5277746.47253719]]]},"properties":{"ID_SOURCE":"w145194842","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":864}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516484.35889001976,5276793.3208933715],[516488.5667554266,5276792.665967896],[516489.378453261,5276797.780694486],[516485.0222658296,5276797.768361015],[516484.35889001976,5276793.3208933715]]]},"properties":{"ID_SOURCE":"w145194861","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":865}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.1421808529,5277592.971199198],[517183.57049618155,5277595.104778822],[517180.8388185433,5277604.654752816],[517175.9165347101,5277603.273207215],[517173.2603218038,5277602.520733577],[517176.1421808529,5277592.971199198]]]},"properties":{"ID_SOURCE":"w145194872","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":866}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.75020335964,5276771.4740845235],[516737.87343169685,5276770.782497833],[516724.92267403996,5276761.087242847],[516726.2722635922,5276759.290654948],[516739.2301823274,5276769.108187221],[516740.1071457761,5276769.733090808],[516738.75020335964,5276771.4740845235]]]},"properties":{"ID_SOURCE":"w145194910","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":867}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516405.9396912329,5277542.181695143],[516410.7559289382,5277538.638793354],[516411.7284319721,5277539.975213113],[516406.91219477187,5277543.518114106],[516405.9396912329,5277542.181695143]]]},"properties":{"ID_SOURCE":"w145194943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":868}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516938.62854077114,5277457.573728427],[516938.6317742241,5277456.462338786],[516941.33530934545,5277456.470205019],[516941.33207537653,5277457.581594661],[516938.62854077114,5277457.573728427]]]},"properties":{"ID_SOURCE":"w145194945","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":869}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.29786166846,5277693.441332153],[517138.2103336844,5277697.664393235],[517136.10799822526,5277697.54706462],[517136.19519754517,5277693.435142516],[517138.29786166846,5277693.441332153]]]},"properties":{"ID_SOURCE":"w145195019","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":870}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517219.73351259617,5277418.632488418],[517218.68980508397,5277418.573831654],[517218.8324111271,5277416.06249106],[517219.87611908943,5277416.12114785],[517219.8046514733,5277417.432387611],[517219.73351259617,5277418.632488418]]]},"properties":{"ID_SOURCE":"w145195052","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":871}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517275.7351776161,5277233.839340454],[517276.86169381574,5277233.842683017],[517276.69401353825,5277239.732600221],[517275.4172964689,5277239.728812033],[517275.7351776161,5277233.839340454]]]},"properties":{"ID_SOURCE":"w145195071","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":872}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.3853079628,5277227.687051336],[517261.03381657734,5277227.571904731],[517261.5203373053,5277215.459098316],[517263.1722367564,5277215.575135687],[517262.3853079628,5277227.687051336]]]},"properties":{"ID_SOURCE":"w145195075","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":873}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.8839238723,5277364.293198188],[516926.8764923033,5277366.849394003],[516925.90052380326,5277366.735416785],[516925.7574330771,5277364.289923276],[516926.8839238723,5277364.293198188]]]},"properties":{"ID_SOURCE":"w145195091","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":874}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516537.5403127205,5277378.456016348],[516534.5704878453,5277377.002763502],[516535.19747266924,5277375.715321851],[516538.17480796756,5277377.168596342],[516537.5403127205,5277378.456016348]]]},"properties":{"ID_SOURCE":"w145195093","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":875}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.5193785727,5277720.702297138],[516849.4325306114,5277735.609267633],[516848.00444674515,5277736.049694267],[516843.16638621705,5277721.142942239],[516844.5193785727,5277720.702297138]]]},"properties":{"ID_SOURCE":"w145195157","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":876}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516935.3185296994,5277407.8845637925],[516931.2625467858,5277408.095047099],[516931.1246306173,5277403.871330008],[516935.1055175863,5277403.660628159],[516935.3185296994,5277407.8845637925]]]},"properties":{"ID_SOURCE":"w145195164","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":877}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.26573153574,5277277.06290451],[516855.276992279,5277273.173041843],[516858.73193981266,5277273.071904714],[516858.79577727197,5277276.961984829],[516855.26573153574,5277277.06290451]]]},"properties":{"ID_SOURCE":"w145195181","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":878}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.4776584962,5277449.630842111],[516885.3313932951,5277449.639117862],[516885.3272030411,5277451.083924389],[516883.77266894485,5277451.079416108],[516882.47346895,5277451.0756486375],[516882.4776584962,5277449.630842111]]]},"properties":{"ID_SOURCE":"w145195223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":879}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.1642120366,5276835.812861056],[516375.0550810935,5276833.422914182],[516376.549560453,5276830.80421904],[516380.67352630926,5276833.260892528],[516379.1642120366,5276835.812861056]]]},"properties":{"ID_SOURCE":"w145195271","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":880}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.6444860907,5277513.771220715],[517190.5634817337,5277515.771500468],[517189.287153377,5277515.656592047],[517189.4432547655,5277513.656533999],[517190.6444860907,5277513.771220715]]]},"properties":{"ID_SOURCE":"w145195311","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":881}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.9293477012,5277159.036834298],[517266.1203828683,5277158.45797332],[517266.4719204681,5277153.880052469],[517266.74558797764,5277150.235475779],[517274.4797913591,5277150.70297584],[517273.9293477012,5277159.036834298]]]},"properties":{"ID_SOURCE":"w145195340","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":882}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.57144056796,5277751.644000612],[516937.3958620989,5277752.202098938],[516936.34066075576,5277753.532708473],[516935.5913336849,5277752.974828752],[516936.0813870697,5277752.309414661],[516936.57144056796,5277751.644000612]]]},"properties":{"ID_SOURCE":"w145195355","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":883}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516811.2452807978,5277280.936671295],[516811.04991736,5277267.966085541],[516810.86751930264,5277255.706832581],[516828.4417450302,5277255.5353205865],[516828.7446511652,5277280.653804616],[516811.2452807978,5277280.936671295]]]},"properties":{"ID_SOURCE":"w145195364","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":884}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516879.01957285556,5277463.802266741],[516882.92499640404,5277463.702450543],[516883.0642348989,5277467.48161094],[516879.1588138818,5277467.581427042],[516879.01957285556,5277463.802266741]]]},"properties":{"ID_SOURCE":"w145195366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":885}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517149.94832343695,5277575.122700571],[517149.6845356586,5277575.444229363],[517144.9357714689,5277581.431799837],[517138.9794976261,5277576.690814342],[517134.1620347114,5277572.853420071],[517141.797047476,5277563.462342093],[517145.70774063695,5277566.652460375],[517143.1751617761,5277569.812490804],[517146.411910791,5277572.344899467],[517149.94832343695,5277575.122700571]]]},"properties":{"ID_SOURCE":"w145195387","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":886}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516525.8491155407,5276835.3381762365],[516535.5286628186,5276838.588707022],[516534.24176012457,5276842.1415250935],[516524.5622180608,5276838.890996416],[516525.8491155407,5276835.3381762365]]]},"properties":{"ID_SOURCE":"w145195389","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":887}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.5833187064,5277190.371323687],[517263.7740661838,5277189.903604638],[517264.23535608844,5277183.77005039],[517264.6337973374,5277178.569884949],[517272.3673038454,5277179.259660148],[517271.5833187064,5277190.371323687]]]},"properties":{"ID_SOURCE":"w145195390","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":888}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.416307038,5277448.937364209],[516796.4089325517,5277451.4935603915],[516795.50775346125,5277451.490960609],[516795.44002926175,5277448.934547783],[516796.416307038,5277448.937364209]]]},"properties":{"ID_SOURCE":"w145195399","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":889}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.5188961354,5277439.488242384],[516870.1154248294,5277439.592417498],[516870.0435467572,5277438.480810274],[516872.5217948689,5277438.487991727],[516872.5188961354,5277439.488242384]]]},"properties":{"ID_SOURCE":"w145195418","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":890}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68603405985,5277216.274875673],[517305.6779294405,5277216.257015304],[517305.6832146694,5277214.478792606],[517311.6909906801,5277214.607791896],[517311.68603405985,5277216.274875673]]]},"properties":{"ID_SOURCE":"w145195426","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":891}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.0019662698,5277160.204846987],[517292.5720054596,5277165.893932389],[517292.1421774659,5277171.538562302],[517284.3329011741,5277171.070815752],[517285.1930047635,5277159.625960421],[517293.0019662698,5277160.204846987]]]},"properties":{"ID_SOURCE":"w145195433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":892}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517183.71475726995,5277088.196075975],[517186.11837988195,5277088.092030011],[517186.17970545654,5277092.760085387],[517183.7009818755,5277092.863909682],[517183.71475726995,5277088.196075975]]]},"properties":{"ID_SOURCE":"w145195464","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":893}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.53204385866,5277419.218883036],[517315.9110552044,5277419.373413641],[517315.8632194337,5277420.306846843],[517314.0761022985,5277420.223734032],[517312.48420862923,5277420.152316264],[517312.53204385866,5277419.218883036]]]},"properties":{"ID_SOURCE":"w145195484","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":894}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516588.9201583838,5277711.743989875],[516588.51487514947,5277695.8498274265],[516592.87102443364,5277695.6399618955],[516593.4264855916,5277711.534552757],[516588.9201583838,5277711.743989875]]]},"properties":{"ID_SOURCE":"w145195489","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":895}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.7131902626,5277352.888283371],[517017.6413391544,5277351.776674411],[517020.26982342586,5277351.784357677],[517020.19147495995,5277352.895527593],[517017.7131902626,5277352.888283371]]]},"properties":{"ID_SOURCE":"w145195501","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":896}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516899.45019330614,5277449.568942667],[516902.82961615315,5277449.578752904],[516902.82542155666,5277451.023559429],[516901.00053367356,5277451.018261657],[516899.5210978157,5277451.013967177],[516899.45019330614,5277449.568942667]]]},"properties":{"ID_SOURCE":"w145195527","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":897}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.218956137,5276787.205389569],[517207.81126374763,5276787.189407384],[517207.8145478885,5276786.07801894],[517213.29734816396,5276786.094223135],[517213.218956137,5276787.205389569]]]},"properties":{"ID_SOURCE":"w145195541","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":898}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.46660684276,5277741.892273156],[516835.04061067157,5277752.460902346],[516833.3118331872,5277753.011602964],[516829.9631100899,5277742.443626112],[516831.46660684276,5277741.892273156]]]},"properties":{"ID_SOURCE":"w145195587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":899}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.20437265426,5277211.618687517],[517279.7811715237,5277211.734506737],[517279.53871638083,5277217.513061863],[517277.8861581888,5277217.619297683],[517278.20437265426,5277211.618687517]]]},"properties":{"ID_SOURCE":"w145195606","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":900}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.4618089982,5277646.782776263],[517294.5033927242,5277640.778370427],[517299.529846807,5277639.937526757],[517304.2708059851,5277639.140294812],[517305.22921247734,5277645.144702261],[517295.4618089982,5277646.782776263]]]},"properties":{"ID_SOURCE":"w145195628","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":901}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516819.3062856879,5277376.206820714],[516816.6023924247,5277376.310150188],[516816.60528149473,5277375.309899629],[516819.2340759797,5277375.206353209],[516819.3062856879,5277376.206820714]]]},"properties":{"ID_SOURCE":"w145195662","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":902}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516435.97674881,5277729.092564567],[516436.5825267513,5277727.316036443],[516442.1345113902,5277729.1099529425],[516441.4536372898,5277730.886268415],[516435.97674881,5277729.092564567]]]},"properties":{"ID_SOURCE":"w145195672","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":903}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.9838082491,5276857.449694463],[516528.93638188334,5276859.019706733],[516527.9518036945,5276861.906545859],[516523.0746534863,5276860.22560866],[516523.9838082491,5276857.449694463]]]},"properties":{"ID_SOURCE":"w145195673","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":904}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.7956420472,5277514.835844527],[517174.8759852735,5277513.057842513],[517176.3776068881,5277513.173412442],[517176.29726320447,5277514.951414435],[517174.7956420472,5277514.835844527]]]},"properties":{"ID_SOURCE":"w145195751","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":905}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.5857495879,5277506.194141648],[516955.1313843909,5277515.636798855],[516950.34981337015,5277514.889352162],[516946.42396392033,5277514.277768046],[516947.87831530743,5277504.835108718],[516956.5857495879,5277506.194141648]]]},"properties":{"ID_SOURCE":"w145195767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":906}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.4489454403,5276953.250029925],[517141.0776097573,5276953.257767289],[517141.2121154341,5276958.592875445],[517138.5080217919,5276958.696055837],[517138.4489454403,5276953.250029925]]]},"properties":{"ID_SOURCE":"w145195789","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":907}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517083.02790318645,5277437.323606809],[517075.67053687305,5277436.524044345],[517076.1737691952,5277431.37974223],[517076.6771327585,5277426.190984616],[517084.0345120068,5277426.990548309],[517083.02790318645,5277437.323606809]]]},"properties":{"ID_SOURCE":"w145195802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":908}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.06415363576,5277446.254597263],[516667.3220269016,5277448.677505469],[516665.83504534094,5277443.438560625],[516664.4224596523,5277438.444336884],[516672.16396222095,5277436.243702758],[516675.06415363576,5277446.254597263]]]},"properties":{"ID_SOURCE":"w145195814","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":909}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.47943152505,5277630.731485588],[516697.8807030333,5277634.257554004],[516695.4254862747,5277626.248438909],[516700.07085052104,5277624.716917791],[516706.09932384145,5277622.722581531],[516708.47943152505,5277630.731485588]]]},"properties":{"ID_SOURCE":"w145195827","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":910}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.4032744343,5277654.793121017],[517041.07279779116,5277659.591657805],[517034.1360380073,5277669.129392728],[517027.31665398955,5277664.219285514],[517030.890097126,5277659.472948352],[517034.4032744343,5277654.793121017]]]},"properties":{"ID_SOURCE":"w145195881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":911}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.84996223677,5277454.881456011],[517157.93095602404,5277452.88117602],[517159.8835105472,5277452.886930605],[517159.8025160894,5277454.887210569],[517157.84996223677,5277454.881456011]]]},"properties":{"ID_SOURCE":"w145195888","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":912}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.43694908696,5277050.248986054],[517314.58334849006,5277050.129360099],[517314.82518301846,5277044.573085632],[517317.43694908696,5277050.248986054]]]},"properties":{"ID_SOURCE":"w145195902","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":913}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517082.24409024045,5277653.266201008],[517082.3296213724,5277649.709973456],[517097.2733411832,5277649.8649810245],[517097.262896585,5277653.421428921],[517082.24409024045,5277653.266201008]]]},"properties":{"ID_SOURCE":"w145195943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":914}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517041.5150981888,5277405.860495103],[517050.22396145645,5277406.775111744],[517049.3685832574,5277416.775198584],[517046.59838440677,5277416.444781361],[517040.66006012197,5277415.749444217],[517041.5150981888,5277405.860495103]]]},"properties":{"ID_SOURCE":"w145195993","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":915}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517282.8270093339,5277516.444762345],[517286.1187987703,5277513.0758806225],[517286.9275085393,5277513.867375482],[517283.62820933363,5277517.236234456],[517282.8270093339,5277516.444762345]]]},"properties":{"ID_SOURCE":"w145196004","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":916}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516352.1291580542,5277583.374337768],[516354.38673741,5277581.713581157],[516355.50912693003,5277583.161552508],[516353.32633214723,5277584.933658622],[516352.1291580542,5277583.374337768]]]},"properties":{"ID_SOURCE":"w145196037","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":917}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.18987155164,5277351.986139201],[517281.33530989557,5277348.530119327],[517282.22138621775,5277348.566091369],[517282.14081041917,5277350.410774891],[517282.07594734855,5277352.022111221],[517281.18987155164,5277351.986139201]]]},"properties":{"ID_SOURCE":"w145196062","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":918}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.1930047635,5277159.625960421],[517286.128873623,5277147.959050562],[517293.9375206054,5277148.649077243],[517293.46193570906,5277154.526964783],[517293.0019662698,5277160.204846987],[517285.1930047635,5277159.625960421]]]},"properties":{"ID_SOURCE":"w145196082","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":919}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.5395180197,5277539.821060907],[517275.82066322037,5277539.118746039],[517278.07289532485,5277536.824832636],[517278.1362279134,5277538.258726001],[517276.5395180197,5277539.821060907]]]},"properties":{"ID_SOURCE":"w145196112","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":920}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.14021793316,5277257.912277998],[517109.997201513,5277255.466780202],[517112.4758544168,5277255.362924677],[517112.61886980006,5277257.808422535],[517110.14021793316,5277257.912277998]]]},"properties":{"ID_SOURCE":"w145196130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":921}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517292.76348599605,5277619.767747338],[517291.2883015194,5277610.761028219],[517301.5056809977,5277609.346564172],[517302.9060842547,5277618.241923713],[517298.48090822366,5277618.906727162],[517292.76348599605,5277619.767747338]]]},"properties":{"ID_SOURCE":"w145196168","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":922}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516300.4643084678,5276804.695186008],[516298.5947314887,5276801.800320108],[516301.6800143119,5276799.697301421],[516303.5499016044,5276802.481029451],[516300.4643084678,5276804.695186008]]]},"properties":{"ID_SOURCE":"w145196173","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":923}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517314.4412418741,5277097.919084362],[517310.987502738,5277097.57539574],[517311.4553018264,5277091.79751278],[517314.8342719452,5277092.029839446],[517314.4412418741,5277097.919084362]]]},"properties":{"ID_SOURCE":"w145196175","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":924}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.20183937385,5277457.513742424],[516956.20475250104,5277456.513491746],[516958.6829930254,5277456.520709893],[516958.7551776576,5277457.521179318],[516956.20183937385,5277457.513742424]]]},"properties":{"ID_SOURCE":"w145196238","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":925}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516873.4289341219,5277203.207506251],[516873.328974356,5277185.869399601],[516933.7120226891,5277185.600138216],[516933.887227367,5277202.827325823],[516873.4289341219,5277203.207506251]]]},"properties":{"ID_SOURCE":"w145196251","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":926}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.81164672377,5277736.560611246],[516716.3191740858,5277725.000644323],[516726.1578605842,5277724.5843440825],[516726.57521914743,5277736.144096114],[516716.81164672377,5277736.560611246]]]},"properties":{"ID_SOURCE":"w145196275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":927}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.15261489275,5276914.37464255],[517186.2555604248,5276914.380848817],[517186.3910099695,5276919.382541184],[517184.2126331328,5276919.487252095],[517184.15261489275,5276914.37464255]]]},"properties":{"ID_SOURCE":"w145196280","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":928}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.8224268599,5277457.503534341],[516990.82534593536,5277456.503283667],[516993.07861628674,5277456.39872001],[516993.1504706268,5277457.5103288395],[516990.8224268599,5277457.503534341]]]},"properties":{"ID_SOURCE":"w145196291","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":929}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.8985267964,5277362.460202318],[516522.36851956794,5277363.153440728],[516519.34694846265,5277369.346470374],[516517.90702816204,5277368.642204046],[516520.8985267964,5277362.460202318]]]},"properties":{"ID_SOURCE":"w145196299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":930}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516298.1075784323,5276734.337146298],[516308.10092099383,5276732.920307196],[516309.10981778137,5276740.091644324],[516310.08929163875,5276747.040619878],[516299.9457581596,5276748.457035082],[516298.1075784323,5276734.337146298]]]},"properties":{"ID_SOURCE":"w145196311","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":931}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.12868258834,5276872.118682175],[516540.4098994632,5276870.566364602],[516541.75864572066,5276871.681593436],[516540.477428728,5276873.233910716],[516539.12868258834,5276872.118682175]]]},"properties":{"ID_SOURCE":"w145196315","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":932}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.191248049,5277076.775009245],[517313.2252977372,5277077.465731105],[517312.52293436485,5277086.354832968],[517308.4608870927,5277085.998223278],[517304.5639998645,5277085.664335236],[517305.191248049,5277076.775009245]]]},"properties":{"ID_SOURCE":"w145196322","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":933}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.98888656835,5277379.8530878],[516926.98177803215,5277382.298144723],[516925.7801915677,5277382.294651464],[516925.7872995978,5277379.84959454],[516926.98888656835,5277379.8530878]]]},"properties":{"ID_SOURCE":"w145196347","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":934}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.23588252475,5277562.306815518],[517225.4220958865,5277562.108750697],[517225.6330163183,5277566.966190716],[517225.84406789945,5277571.779175189],[517217.58244271565,5277572.088156272],[517217.23588252475,5277562.306815518]]]},"properties":{"ID_SOURCE":"w145196351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":935}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.942728484,5276804.423666107],[517249.3700834298,5276804.316754137],[517249.2083479722,5276808.206168846],[517247.85610054893,5276808.3133033095],[517247.942728484,5276804.423666107]]]},"properties":{"ID_SOURCE":"w145196358","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":936}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.2093945172,5277728.550774533],[516471.65489084227,5277726.303765908],[516471.95967214345,5277724.748669588],[516480.66468201124,5277726.884964817],[516480.2093945172,5277728.550774533]]]},"properties":{"ID_SOURCE":"w145196373","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":937}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.1959692812,5276963.967931166],[517217.87849290465,5276964.042636651],[517217.81456153287,5276960.263692824],[517230.1323747584,5276960.077848313],[517230.1959692812,5276963.967931166]]]},"properties":{"ID_SOURCE":"w145196390","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":938}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516860.16967771424,5277539.044934224],[516859.67975470854,5277542.255458889],[516853.82443393266,5277541.460526054],[516854.2846688333,5277538.127661071],[516860.16967771424,5277539.044934224]]]},"properties":{"ID_SOURCE":"w145196395","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":939}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516473.9519332466,5277763.764415017],[516468.4741424296,5277762.304097477],[516468.8549585564,5277760.415796282],[516474.6331280354,5277761.876964218],[516473.9519332466,5277763.764415017]]]},"properties":{"ID_SOURCE":"w145196410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":940}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.8900473161,5277262.826548969],[517270.09132895863,5277262.941251907],[517269.93519385776,5277264.94130708],[517268.7339126267,5277264.826604177],[517268.8900473161,5277262.826548969]]]},"properties":{"ID_SOURCE":"w145196435","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":941}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.0429526103,5277464.488310913],[517214.14537088695,5277464.6056667045],[517214.0663295361,5277465.939112218],[517211.96358317725,5277465.932895417],[517212.0429526103,5277464.488310913]]]},"properties":{"ID_SOURCE":"w145196451","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":942}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517261.90142218943,5277238.91074653],[517260.54894499923,5277239.129016797],[517260.7920395152,5277233.128182887],[517262.0690875191,5277233.020828944],[517261.90142218943,5277238.91074653]]]},"properties":{"ID_SOURCE":"w145196460","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":943}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516905.7718195098,5277315.663729674],[516905.5443490513,5277290.54545752],[516921.7666678239,5277290.370302577],[516921.9175309021,5277303.062914785],[516922.06916833017,5277315.488793799],[516905.7718195098,5277315.663729674]]]},"properties":{"ID_SOURCE":"w145196468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":944}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517054.95180558256,5277664.300178453],[517057.79924817296,5277666.420179994],[517057.12045807234,5277667.4184507355],[517054.12249914405,5277665.409148552],[517054.95180558256,5277664.300178453]]]},"properties":{"ID_SOURCE":"w145196480","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":945}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516620.6914244003,5277604.473458569],[516612.4983187771,5277607.117431384],[516608.92508855456,5277596.1043864405],[516617.4182764402,5277593.572404996],[516619.13666480454,5277599.301014815],[516620.6914244003,5277604.473458569]]]},"properties":{"ID_SOURCE":"w145196498","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":946}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.65698379517,5277353.043218608],[516994.7356517901,5277351.820909417],[516996.7633396212,5277351.826828425],[516996.83487026795,5277353.049576061],[516994.65698379517,5277353.043218608]]]},"properties":{"ID_SOURCE":"w145196521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":947}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.85573722294,5277604.671654621],[517196.72491842194,5277608.691580712],[517194.6379432247,5277616.076223713],[517190.841195859,5277615.009181658],[517187.0894720082,5277613.953389004],[517188.95639501075,5277607.33495936],[517191.77768419764,5277608.132383637],[517193.1285436661,5277603.346240729],[517197.85573722294,5277604.671654621]]]},"properties":{"ID_SOURCE":"w145196543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":948}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.5634817337,5277515.771500468],[517190.6444860907,5277513.771220715],[517192.371399626,5277513.887459998],[517192.2903946762,5277515.887739731],[517190.5634817337,5277515.771500468]]]},"properties":{"ID_SOURCE":"w145196587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":949}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.80077339703,5277236.166286236],[517309.37385342555,5277236.162044042],[517309.69143868826,5277230.383713186],[517310.89305669884,5277230.3872856],[517310.80077339703,5277236.166286236]]]},"properties":{"ID_SOURCE":"w145196610","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":950}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516969.95688675315,5277066.897161568],[516969.83680302626,5277056.560806584],[517000.17888366757,5277056.538173877],[517000.2995625029,5277066.652251825],[516969.95688675315,5277066.897161568]]]},"properties":{"ID_SOURCE":"w145196620","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":951}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516848.6369569862,5277439.64136112],[516845.8583157437,5277439.633320658],[516845.8608883243,5277438.744208961],[516848.5644315685,5277438.752032095],[516848.6369569862,5277439.64136112]]]},"properties":{"ID_SOURCE":"w145196638","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":952}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.29792917485,5277633.568970658],[516680.6013226529,5277636.7642370835],[516677.9955729241,5277628.865838024],[516683.16711190745,5277627.157986983],[516687.6921911137,5277625.670567273],[516690.29792917485,5277633.568970658]]]},"properties":{"ID_SOURCE":"w145196640","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":953}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.37579862226,5277694.830044276],[516968.35171129694,5277694.944028638],[516967.9717006663,5277696.498880333],[516967.1459784526,5277696.38533376],[516967.37579862226,5277694.830044276]]]},"properties":{"ID_SOURCE":"w145196646","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":954}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516916.7231218867,5277449.507965519],[516920.02744650736,5277449.517567532],[516920.02357063355,5277450.85123509],[516918.3939381832,5277450.846499317],[516916.71924677,5277450.84163308],[516916.7231218867,5277449.507965519]]]},"properties":{"ID_SOURCE":"w145196650","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":955}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517216.4459444905,5277702.451974304],[517212.93783734017,5277695.217502345],[517219.0141689704,5277692.3124901485],[517222.1876892291,5277690.799259853],[517225.69545877486,5277698.144876363],[517216.4459444905,5277702.451974304]]]},"properties":{"ID_SOURCE":"w145196667","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":956}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.92357068206,5277271.546105418],[517211.50206911884,5277266.39092412],[517223.5518124393,5277267.749121285],[517222.9733034519,5277272.904301424],[517210.92357068206,5277271.546105418]]]},"properties":{"ID_SOURCE":"w145196682","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":957}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.84083455725,5277480.980381867],[517004.1214139152,5277480.9928823635],[517004.18580001575,5277484.660687647],[516999.9048988374,5277484.759326065],[516999.84083455725,5277480.980381867]]]},"properties":{"ID_SOURCE":"w145196695","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":958}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.3374018695,5277633.8461725125],[516978.48963567434,5277633.146434862],[516978.61176631827,5277632.468837408],[516979.43740014924,5277632.615727272],[516979.20058346575,5277633.993171848],[516978.3374018695,5277633.8461725125]]]},"properties":{"ID_SOURCE":"w145196699","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":959}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.7161777157,5277573.8607542515],[517245.29921731644,5277567.5801115995],[517244.92550345894,5277561.910866895],[517252.70636021625,5277561.656069768],[517252.9266130099,5277573.493127849],[517245.7161777157,5277573.8607542515]]]},"properties":{"ID_SOURCE":"w145196705","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":960}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.3145784396,5277477.230775467],[516900.0438122746,5277477.911340852],[516898.9717955733,5277485.021183072],[516894.2428899008,5277484.22947957],[516895.3145784396,5277477.230775467]]]},"properties":{"ID_SOURCE":"w145196710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":961}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.90740549844,5277627.636759148],[517251.37884961173,5277626.9690910885],[517258.1263917516,5277625.666524069],[517259.16257993435,5277630.782034374],[517249.39351929695,5277632.975880612],[517247.90740549844,5277627.636759148]]]},"properties":{"ID_SOURCE":"w145196728","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":962}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.6130010012,5277457.482499225],[516983.615918836,5277456.48224855],[516986.1692576008,5277456.489697467],[516986.1663393261,5277457.48994814],[516983.6130010012,5277457.482499225]]]},"properties":{"ID_SOURCE":"w145196731","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":963}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.1479783252,5277091.334204552],[517304.75528831035,5277097.112311196],[517301.601299077,5277096.991798746],[517302.0694191344,5277091.102776167],[517305.1479783252,5277091.334204552]]]},"properties":{"ID_SOURCE":"w145196753","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":964}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.40714176255,5277174.0977338115],[516718.1260181611,5277174.1965799],[516718.06208504067,5277170.306502182],[516722.3432114985,5277170.207656042],[516722.40714176255,5277174.0977338115]]]},"properties":{"ID_SOURCE":"w145196770","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":965}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516852.87692793837,5277375.859337179],[516850.3986531884,5277375.852164152],[516850.40186971694,5277374.740774641],[516852.95524418884,5277374.748165048],[516852.87692793837,5277375.859337179]]]},"properties":{"ID_SOURCE":"w145196773","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":966}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516613.56470921607,5277549.216589817],[516615.66932811064,5277548.555756661],[516616.3322038094,5277550.480368619],[516616.8536002688,5277551.982245266],[516614.68133178604,5277552.665112908],[516613.56470921607,5277549.216589817]]]},"properties":{"ID_SOURCE":"w145196783","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":967}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.6019330817,5277561.223592925],[516386.2239049032,5277556.463212975],[516387.2715074102,5277557.79984005],[516380.6495362397,5277562.560218813],[516379.6019330817,5277561.223592925]]]},"properties":{"ID_SOURCE":"w145196786","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":968}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517064.16151769436,5277161.085653414],[517064.03704460413,5277152.3052392835],[517073.27558362205,5277151.998901822],[517073.32461489085,5277160.890234871],[517064.16151769436,5277161.085653414]]]},"properties":{"ID_SOURCE":"w145196794","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":969}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517082.73230345326,5277410.093460582],[517090.4687848513,5277409.671605578],[517090.965440319,5277419.564515754],[517086.2786956891,5277419.750811504],[517083.22929812217,5277419.875231117],[517082.73230345326,5277410.093460582]]]},"properties":{"ID_SOURCE":"w145196795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":970}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516842.3936127678,5277458.717130597],[516846.37381555134,5277458.728646089],[516846.43701503833,5277462.841005126],[516842.53191317857,5277462.829706834],[516842.3936127678,5277458.717130597]]]},"properties":{"ID_SOURCE":"w145196812","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":971}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.3127574956,5277411.393579065],[516995.30562019657,5277413.838636095],[516994.3290120485,5277413.946925289],[516994.2613745628,5277411.390510097],[516995.3127574956,5277411.393579065]]]},"properties":{"ID_SOURCE":"w145196817","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":972}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.9646033933,5277457.5421836525],[516965.89242000086,5277456.5417141365],[516968.82124970964,5277456.55024966],[516968.893432598,5277457.550719215],[516965.9646033933,5277457.5421836525]]]},"properties":{"ID_SOURCE":"w145196842","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":973}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516839.6017333061,5276746.547233754],[516841.93906115694,5276743.442079556],[516844.56203326856,5276745.4501819685],[516842.3001335723,5276748.444413508],[516839.6017333061,5276746.547233754]]]},"properties":{"ID_SOURCE":"w145196843","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":974}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.099323886,5276914.29794121],[516726.26120117377,5276930.490334541],[516721.839263077,5276927.254580605],[516733.75216579594,5276911.173533078],[516738.099323886,5276914.29794121]]]},"properties":{"ID_SOURCE":"w145196858","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":975}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.4895450287,5277453.738399509],[516994.58804179763,5277453.846907871],[516994.52137826715,5277450.957075624],[516995.4976557851,5277450.959925434],[516995.4895450287,5277453.738399509]]]},"properties":{"ID_SOURCE":"w145196876","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":976}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.41839374206,5277375.840646045],[516843.6394005285,5277375.943745667],[516843.6426157656,5277374.832356158],[516846.42128793296,5277374.840395489],[516846.41839374206,5277375.840646045]]]},"properties":{"ID_SOURCE":"w145196892","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":977}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.85045208485,5277647.496662686],[517013.14187223604,5277652.785999676],[517009.3267048827,5277658.020657148],[517005.3154843789,5277663.532594315],[516998.01656115055,5277658.243245095],[517005.85045208485,5277647.496662686]]]},"properties":{"ID_SOURCE":"w145196925","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":978}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516412.0647759747,5277633.778216014],[516413.2685036241,5277633.003630375],[516416.51500466093,5277637.502835462],[516419.77645712753,5277642.02431256],[516418.49763468385,5277642.7986850785],[516412.0647759747,5277633.778216014]]]},"properties":{"ID_SOURCE":"w145196946","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":979}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.09571722883,5277364.601919487],[516880.0889506391,5277366.935837414],[516879.1126590796,5277366.933006991],[516879.11974747817,5277364.4879501145],[516880.09571722883,5277364.601919487]]]},"properties":{"ID_SOURCE":"w145196962","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":980}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.52293436485,5277086.354832968],[517313.2252977372,5277077.465731105],[517316.2923439498,5277086.621663307],[517312.52293436485,5277086.354832968]]]},"properties":{"ID_SOURCE":"w145197010","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":981}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517156.9042417747,5277469.993699263],[517158.85711810924,5277469.8883145545],[517158.7767792895,5277471.666316657],[517156.8245585772,5277471.549423459],[517156.9042417747,5277469.993699263]]]},"properties":{"ID_SOURCE":"w145197017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":982}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.6791097383,5277293.211405957],[516996.63773254835,5277289.376959242],[517000.1675790268,5277289.342808645],[517000.20895389235,5277293.177255387],[516996.6791097383,5277293.211405957]]]},"properties":{"ID_SOURCE":"w145197031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":983}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.56476083334,5277141.492233982],[517308.83120904403,5277140.802400232],[517309.26889586117,5277135.046655199],[517309.69070398575,5277129.579826748],[517317.49937301344,5277130.2698849505],[517316.56476083334,5277141.492233982]]]},"properties":{"ID_SOURCE":"w145197039","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":984}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517183.71475726995,5277088.196075975],[517183.7009818755,5277092.863909682],[517181.52299790696,5277092.85748257],[517181.4613406588,5277088.300566147],[517183.71475726995,5277088.196075975]]]},"properties":{"ID_SOURCE":"w145197047","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":985}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517203.64821073227,5276798.0688090185],[517207.7036440277,5276798.19193115],[517207.77185401524,5276800.526068871],[517203.64065900823,5276800.625002493],[517203.64821073227,5276798.0688090185]]]},"properties":{"ID_SOURCE":"w145197049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":986}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516538.1485204895,5276873.4495755145],[516539.12868258834,5276872.118682175],[516540.477428728,5276873.233910716],[516539.4972665067,5276874.56480383],[516538.1485204895,5276873.4495755145]]]},"properties":{"ID_SOURCE":"w145197062","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":987}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.0936090755,5277408.285688449],[517290.6360383335,5277418.220239584],[517288.6086373925,5277418.12530701],[517289.0586947962,5277408.190733423],[517291.0936090755,5277408.285688449]]]},"properties":{"ID_SOURCE":"w145197063","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":988}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516881.768955281,5277616.338656036],[516886.86034420226,5277616.397878026],[516893.8591103092,5277616.484867036],[516893.75885873125,5277625.153490605],[516881.59330341016,5277625.1182010025],[516881.768955281,5277616.338656036]]]},"properties":{"ID_SOURCE":"w145197080","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":989}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.7003671664,5277669.996885787],[516995.2599511239,5277661.013695755],[517002.15413667314,5277666.03512363],[516999.3645694025,5277669.805735658],[516995.594872084,5277674.907166976],[516988.7003671664,5277669.996885787]]]},"properties":{"ID_SOURCE":"w145197093","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":990}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.2095358689,5277416.483920857],[516796.20280279365,5277418.817838991],[516795.0760020094,5277418.9257283],[516795.0079565236,5277416.48045457],[516796.2095358689,5277416.483920857]]]},"properties":{"ID_SOURCE":"w145197095","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":991}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516463.49213043,5277293.390894466],[516468.2577125375,5277281.290130402],[516474.03447190486,5277283.4181291675],[516481.8367352992,5277286.329845872],[516483.8782899845,5277281.445472913],[516481.70257942437,5277280.661334836],[516479.9105494328,5277276.988648018],[516478.41986297426,5277272.983395152],[516483.4578926005,5277270.774859265],[516484.35280644434,5277273.000189408],[516487.9617242665,5277271.565590292],[516487.06681157503,5277269.3402595995],[516492.255048914,5277267.13215664],[516495.2373484116,5277274.809253027],[516494.2541149771,5277277.251543783],[516499.35559466574,5277279.155375068],[516501.8502896663,5277273.383173854],[516513.92855351017,5277277.974151579],[516513.09519844904,5277280.528004139],[516510.9002664704,5277286.523330353],[516516.60158964456,5277288.76229739],[516521.4026507189,5277290.665295912],[516517.2424960799,5277301.100637133],[516509.29038467916,5277298.077307991],[516507.1740292806,5277302.850320346],[516513.24989288475,5277305.423765622],[516509.08976322104,5277315.859112852],[516506.98412744724,5277316.853401293],[516507.8042402439,5277318.967383377],[516506.21516818204,5277323.186192006],[516501.7138988395,5277321.506335139],[516500.66848434496,5277319.391715399],[516498.63826616976,5277320.275080743],[516497.65598357224,5277322.383954252],[516469.8250393943,5277311.302317794],[516472.0943911454,5277305.529466326],[516460.46706743975,5277300.828710068],[516463.49213043,5277293.390894466]]]},"properties":{"ID_SOURCE":"w145197116","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sustenance","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":992}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516648.26892002265,5277257.129017302],[516646.3821863695,5277260.346678209],[516643.37498073984,5277261.449479777],[516641.9398081406,5277264.3350134],[516638.9329230228,5277265.326678331],[516636.4482502863,5277267.54237516],[516630.98272965424,5277261.636349524],[516631.509704415,5277261.193295416],[516627.4666442689,5277256.847294291],[516624.53009860497,5277259.506265111],[516626.2520201979,5277261.40055915],[516620.60455638607,5277266.608007727],[516607.2033861764,5277251.899309892],[516625.3487000289,5277235.835817229],[516627.7449505609,5277238.287736278],[516634.8228611386,5277231.861843103],[516626.13906261703,5277222.056734685],[516629.00052652333,5277219.397550303],[516628.5543626784,5277217.840318432],[516631.7108380911,5277217.071355055],[516631.3391411721,5277215.736615351],[516633.6688687637,5277215.187571247],[516634.42210436583,5277214.411744302],[516639.73841662216,5277219.983926601],[516641.0164082427,5277219.543019689],[516641.6089592517,5277222.434348934],[516643.2624565465,5277221.994515777],[516643.78054039396,5277224.663352734],[516645.20873367,5277224.222876099],[516645.8015998375,5277227.003066875],[516649.9948694533,5277231.349510027],[516640.8087133034,5277239.658736266],[516647.5477826056,5277246.679810437],[516649.2044514779,5277245.128589664],[516650.70233801013,5277246.577690936],[516652.12989074725,5277246.359493852],[516652.87390660914,5277248.806698243],[516655.04515562986,5277251.146845304],[516652.786408882,5277253.140901755],[516650.8996714504,5277256.358561186],[516648.26892002265,5277257.129017302]]]},"properties":{"ID_SOURCE":"w145197142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":993}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7301105095,5276705.41738373],[516761.6819556981,5276705.756420674],[516764.4248722142,5276692.205266224],[516767.6535583496,5276692.547981002],[516768.1096468387,5276690.659918435],[516771.12645236036,5276686.334155411],[516773.15885327547,5276684.784052354],[516771.5883038529,5276682.445594177],[516783.2512109431,5276675.143971165],[516782.5036513788,5276673.919279489],[516783.4110365673,5276671.810239225],[516794.68273239717,5276669.953359428],[516796.1800909575,5276671.624774202],[516795.6485630893,5276673.62375675],[516809.60972263414,5276676.775952118],[516809.2300110336,5276678.219672908],[516812.98317654367,5276679.008485713],[516812.5257891704,5276681.34110009],[516814.8518967809,5276682.125794353],[516816.3242107046,5276684.664032178],[516828.00542076945,5276704.836299897],[516835.1528793628,5276700.633647281],[516845.3180504434,5276717.778566534],[516844.26461351285,5276718.442357971],[516839.6746870405,5276721.318717339],[516835.46126721194,5276723.862749478],[516829.0331640895,5276713.063612292],[516826.1748937373,5276714.5001698695],[516827.1458352625,5276716.392351358],[516818.89242495934,5276721.24754413],[516819.2428310098,5276722.148788253],[516818.7119416455,5276723.925491185],[516822.91508006613,5276724.9378897315],[516822.304587511,5276728.270319103],[516818.6262416504,5276727.592855907],[516817.9416071687,5276730.591652312],[516813.36325502413,5276729.467034236],[516812.678944335,5276732.354692424],[516806.82504729,5276730.781837957],[516807.8126725819,5276726.894796662],[516809.1800078348,5276721.564034645],[516810.5309834673,5276721.901353648],[516811.06411635876,5276719.34667812],[516809.2711555506,5276716.007309618],[516817.8482027456,5276710.91964439],[516806.11497165915,5276690.547195279],[516806.7986423297,5276687.8818141725],[516792.7623998248,5276684.7294088425],[516793.2948871975,5276682.39700951],[516791.26792777114,5276682.0577454325],[516789.9901273944,5276682.387480471],[516788.86158228724,5276683.051065345],[516789.75839436194,5276684.609607442],[516777.7947454889,5276692.021490768],[516777.12165467645,5276691.0192938],[516776.6710062839,5276691.017995526],[516775.4651152422,5276692.459338449],[516774.93583733955,5276693.680351101],[516775.085092963,5276694.014200308],[516776.0608569836,5276694.23929068],[516773.09131029586,5276708.234346101],[516770.61403170926,5276707.782652381],[516770.3059189568,5276710.449119237],[516771.9534895624,5276712.12096049],[516773.4588465955,5276711.013898648],[516784.1563399236,5276725.937448634],[516778.96270662773,5276729.812373586],[516780.3836656001,5276731.928123433],[516776.01846368646,5276735.0274598915],[516763.52542032476,5276717.65368098],[516761.64388857683,5276718.981942136],[516759.7693945277,5276717.865149487],[516757.9224042862,5276707.190417573],[516759.7301105095,5276705.41738373]]]},"properties":{"ID_SOURCE":"w145197166","HEIGHT_WALL":15.0,"HEIGHT_ROOF":15.0,"NB_LEV":5,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":994}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516404.5164179041,5277620.864715114],[516392.3258213585,5277629.721567807],[516389.1092105633,5277625.266916482],[516390.76445167646,5277624.160177658],[516387.4733661888,5277619.483037862],[516385.81781157525,5277620.700916616],[516379.60860281583,5277612.23681298],[516375.3944641633,5277615.33687457],[516372.85057251866,5277611.995523439],[516375.18324299017,5277610.3349860255],[516374.06117622077,5277608.7758717965],[516376.16824698873,5277607.225840149],[516369.5103066285,5277598.093646151],[516371.09045530204,5277596.986690622],[516367.72392964276,5277592.420490083],[516366.14378038095,5277593.527446521],[516360.00929803844,5277585.1747143855],[516355.7200539448,5277588.274579078],[516353.32633214723,5277584.933658622],[516355.50912693003,5277583.161552508],[516354.38673741,5277581.713581157],[516356.4938126384,5277580.163542442],[516352.9776968112,5277575.374650655],[516362.68484295486,5277568.4001134],[516366.20126751665,5277573.077872015],[516367.2544956785,5277572.413993694],[516373.7629012694,5277581.323484268],[516374.9669471687,5277580.437751765],[516378.18390644545,5277584.78125589],[516375.7761284289,5277586.441580829],[516379.1423386137,5277591.118924975],[516381.5504283977,5277589.347462431],[516384.69196861197,5277593.801897916],[516382.3592888234,5277595.4624315025],[516385.8753683114,5277600.2513412675],[516386.9292195001,5277599.365188496],[516393.5123479044,5277608.386052038],[516394.79148749856,5277607.500535068],[516397.9333207515,5277611.843838879],[516395.6003313495,5277613.615506194],[516398.89172674395,5277618.181511547],[516401.2998114533,5277616.410057106],[516404.5164179041,5277620.864715114]]]},"properties":{"ID_SOURCE":"w145197196","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":995}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.1071457761,5276769.733090808],[516739.2301823274,5276769.108187221],[516726.2722635922,5276759.290654948],[516742.0360632537,5276738.852896258],[516749.17855538684,5276744.1748016],[516749.6913314309,5276743.4649819955],[516750.3096415697,5276742.62209828],[516744.7638377596,5276738.382838178],[516744.20753024495,5276735.947277856],[516746.7104313201,5276732.709194105],[516750.3065826813,5276728.01832509],[516754.5779305658,5276731.431489265],[516761.4435464667,5276736.3969657635],[516762.7855070063,5276737.256604633],[516760.50907271187,5276740.095230195],[516761.69308301876,5276741.03221205],[516763.79125975625,5276742.716462097],[516764.74103647866,5276741.530000843],[516767.2610202582,5276745.404919816],[516770.59520028514,5276748.226356887],[516779.77517092664,5276742.39573571],[516793.52929371066,5276765.196807994],[516790.8882914352,5276766.834060976],[516790.3652015098,5276765.910092652],[516787.3479281683,5276767.801883818],[516784.59417213954,5276769.472156537],[516770.8862185781,5276759.318943511],[516770.3433344397,5276760.050902521],[516769.00182833977,5276759.035667484],[516757.18252987496,5276750.277173068],[516756.5080032574,5276749.775103175],[516747.11415508634,5276762.084594029],[516746.2896703551,5276761.49318224],[516740.1071457761,5276769.733090808]]]},"properties":{"ID_SOURCE":"w145197234","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":996}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.952596158,5276728.393859355],[516932.6000132553,5276728.612205878],[516931.56531010167,5276722.829929036],[516927.8834194285,5276723.374924007],[516926.184370221,5276713.589685222],[516929.7163744365,5276712.933113634],[516929.2801526254,5276710.553454332],[516928.7551579681,5276707.706749968],[516929.88242199935,5276707.487747482],[516929.2177593815,5276703.59592319],[516921.55255449604,5276705.018461959],[516920.4427280361,5276699.235969102],[516916.98582455836,5276699.892764501],[516915.2867498799,5276690.107529321],[516917.46585283754,5276689.780439993],[516916.92644224904,5276686.722529388],[516915.9140868067,5276680.995890634],[516915.5382229847,5276681.105938616],[516915.4653745536,5276680.327748648],[516922.83017745096,5276678.904328797],[516922.16421489965,5276675.457060817],[516930.50543339254,5276674.036488025],[516931.1707449344,5276677.706034619],[516932.59844783455,5276677.487906138],[516933.48326521803,5276683.158607106],[516936.9405037601,5276682.390682658],[516938.56540619,5276691.842289163],[516935.1078498296,5276692.721351475],[516936.06744708994,5276698.503410238],[516934.7899651426,5276698.72197469],[516935.530055753,5276702.502879187],[516937.78458643256,5276702.0648770565],[516938.301937118,5276704.95601591],[516943.7877234522,5276703.971716674],[516944.3795320918,5276707.085352278],[516948.06175809825,5276706.429228894],[516949.61152771395,5276715.880620312],[516947.8079713718,5276716.208790512],[516948.91809078096,5276721.88014998],[516948.6173366287,5276721.9904144285],[516949.2832779883,5276725.437685735],[516949.58370849624,5276725.438560159],[516949.6575221999,5276725.883334114],[516947.55321503984,5276726.321768803],[516947.9970682928,5276728.656995875],[516942.58576532593,5276729.863787326],[516942.58414859365,5276730.41948151],[516934.3932227944,5276731.840473764],[516934.17016246414,5276731.061846671],[516934.5457002343,5276731.0629387265],[516933.952596158,5276728.393859355]]]},"properties":{"ID_SOURCE":"w145197250","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":997}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516705.5795588951,5277594.491553363],[516717.9819558492,5277590.526118292],[516720.7385001287,5277598.20268824],[516710.80914689606,5277601.352780142],[516707.8852207535,5277602.277963323],[516706.6207028572,5277598.051017989],[516705.5795588951,5277594.491553363]]]},"properties":{"ID_SOURCE":"w145197294","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":998}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.23641539493,5277253.03281632],[517188.920263162,5277258.366597944],[517181.9378602126,5277257.679149429],[517175.2020675897,5277249.768343674],[517181.67714066914,5277244.230452918],[517189.23641539493,5277253.03281632]]]},"properties":{"ID_SOURCE":"w145197297","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":999}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.04941684846,5276721.261790785],[517237.6867085034,5276716.926264696],[517243.1255623684,5276716.586719156],[517247.90333697974,5276716.289676592],[517248.47951024945,5276724.626868696],[517238.4127826103,5276725.375039259],[517238.04941684846,5276721.261790785]]]},"properties":{"ID_SOURCE":"w145197384","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1000}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4892138693,5276965.732311008],[517300.1147778631,5276970.421300479],[517299.86526424054,5276973.510247198],[517288.5274637775,5276972.476315251],[517289.2268328933,5276964.587462017],[517293.13127948245,5276964.932475722],[517300.4892138693,5276965.732311008]]]},"properties":{"ID_SOURCE":"w145197402","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1001}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517152.1290000574,5277586.898845336],[517156.87776726385,5277580.911280667],[517157.55592941865,5277580.135299593],[517166.02185662545,5277586.93979262],[517160.89530939906,5277593.704215986],[517156.6170303424,5277590.390750008],[517152.1290000574,5277586.898845336]]]},"properties":{"ID_SOURCE":"w145197430","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1002}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.799526758,5277673.598046585],[517236.5150039781,5277670.836466519],[517238.0188873112,5277670.174079485],[517243.01933968544,5277680.636045571],[517239.3943480605,5277682.448005543],[517235.94985057885,5277684.171590167],[517230.799526758,5277673.598046585]]]},"properties":{"ID_SOURCE":"w145197465","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1003}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517195.9297337866,5277758.405886916],[517183.59622382955,5277764.482167706],[517189.1820750364,5277754.718339794],[517195.02991513617,5277757.95866912],[517195.9297337866,5277758.405886916]]]},"properties":{"ID_SOURCE":"w145197471","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1004}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.6207028572,5277598.051017989],[516700.4569985866,5277600.056079828],[516695.12012293184,5277601.796783432],[516692.81316916394,5277594.4549345365],[516704.46331718675,5277590.931873472],[516705.5795588951,5277594.491553363],[516706.6207028572,5277598.051017989]]]},"properties":{"ID_SOURCE":"w145197477","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1005}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.90740549844,5277627.636759148],[517249.39351929695,5277632.975880612],[517247.13899510883,5277633.524900913],[517243.3950619032,5277629.846191687],[517243.32358690724,5277628.623440358],[517247.90740549844,5277627.636759148]]]},"properties":{"ID_SOURCE":"w145197515","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1006}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.20242831856,5277030.4267440755],[517303.8103961898,5277035.982572462],[517303.26188265334,5277043.649593439],[517295.4530957932,5277042.959554712],[517296.318189978,5277029.847619942],[517298.42076373845,5277029.965005702],[517304.20242831856,5277030.4267440755]]]},"properties":{"ID_SOURCE":"w145197524","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1007}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.7855070063,5276737.256604633],[516763.340054562,5276737.691646007],[516764.4040849555,5276738.56159918],[516766.06763064815,5276739.900065578],[516764.74103647866,5276741.530000843],[516763.79125975625,5276742.716462097],[516761.69308301876,5276741.03221205],[516760.50907271187,5276740.095230195],[516762.7855070063,5276737.256604633]]]},"properties":{"ID_SOURCE":"w145197541","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1008}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516398.71353328717,5276852.160967351],[516395.64595459565,5276850.640829004],[516398.44146399066,5276844.758294202],[516401.8168546667,5276846.323756878],[516400.987557888,5276847.432818555],[516398.71353328717,5276852.160967351]]]},"properties":{"ID_SOURCE":"w145197614","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1009}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.5225783435,5277627.248403805],[516657.7868080399,5277631.586477376],[516647.11365200067,5277634.890145277],[516646.10169063206,5277631.61973844],[516644.806969002,5277627.43717614],[516655.5555513221,5277624.022579865],[516656.5225783435,5277627.248403805]]]},"properties":{"ID_SOURCE":"w145197624","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1010}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516437.70996790734,5277274.779926541],[516436.28453248367,5277274.253545288],[516436.8823133031,5277272.665933349],[516438.30023900885,5277273.192293544],[516437.70996790734,5277274.779926541]]]},"properties":{"ID_SOURCE":"w145197666","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1011}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.4847510935,5277583.673046141],[517218.44777502865,5277584.204970552],[517217.6217128813,5277584.202527483],[517217.12496027804,5277574.420742365],[517225.9129166315,5277573.891038037],[517226.19893277495,5277578.748700365],[517226.4847510935,5277583.673046141]]]},"properties":{"ID_SOURCE":"w145197682","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1012}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516303.3444011681,5277144.124067225],[516313.11609516956,5277141.1506617665],[516314.2410718799,5277141.709512615],[516313.48662430514,5277142.929936474],[516303.9402396403,5277145.903972187],[516303.3444011681,5277144.124067225]]]},"properties":{"ID_SOURCE":"w145197685","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1013}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.00279723626,5277408.821199094],[517299.0230549008,5277408.642663084],[517299.7029731745,5277407.288776134],[517299.9279394684,5277407.400584525],[517302.405870972,5277407.519087884],[517303.00279723626,5277408.821199094]]]},"properties":{"ID_SOURCE":"w145197688","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1014}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516488.553915277,5277433.7202963885],[516501.6655935462,5277444.538010367],[516488.4023324022,5277460.726852673],[516475.2906663447,5277449.909168261],[516477.8531293653,5277446.693364192],[516488.553915277,5277433.7202963885]]]},"properties":{"ID_SOURCE":"w145197691","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1015}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.3562025153,5277681.870183982],[517023.53809343197,5277677.478345369],[517026.61446550535,5277673.219567837],[517035.45718591067,5277679.580414108],[517029.12382127834,5277688.230801185],[517028.67422527476,5277687.896066208],[517020.3562025153,5277681.870183982]]]},"properties":{"ID_SOURCE":"w145197695","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1016}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516757.70626089524,5277304.232842191],[516767.69522173895,5277304.039320911],[516767.80125239235,5277319.37692727],[516762.2888192831,5277319.394396514],[516747.7492431721,5277319.430353633],[516747.5674201805,5277304.314809626],[516757.70626089524,5277304.232842191]]]},"properties":{"ID_SOURCE":"w145197731","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"commercial","ZINDEX":0,"ID_BUILD":1017}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517259.3541438978,5277743.478540203],[517258.8324362067,5277742.143313647],[517256.52229591005,5277736.134906062],[517260.7929086393,5277734.380440959],[517265.394335932,5277732.493592102],[517268.67707155395,5277739.7274280405],[517264.2110827069,5277741.525763957],[517259.3541438978,5277743.478540203]]]},"properties":{"ID_SOURCE":"w145197749","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1018}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.76970354444,5277551.530776469],[517218.12374147336,5277541.415130632],[517226.9110900095,5277541.107705671],[517227.3309335036,5277546.421437592],[517227.70723082277,5277551.223796955],[517225.0037393766,5277551.215797633],[517218.76970354444,5277551.530776469]]]},"properties":{"ID_SOURCE":"w145197784","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1019}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.22487834597,5277760.403671911],[516425.6788933333,5277759.182413941],[516425.90574410337,5277758.627354479],[516431.307513518,5277760.420837036],[516430.7014268743,5277762.308504815],[516425.22487834597,5277760.403671911]]]},"properties":{"ID_SOURCE":"w145197795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1020}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.67053687305,5277436.524044345],[517083.02790318645,5277437.323606809],[517084.0789553536,5277437.437830778],[517083.22645798855,5277446.437662605],[517074.8177264459,5277445.635016322],[517075.27521374635,5277440.723973731],[517075.67053687305,5277436.524044345]]]},"properties":{"ID_SOURCE":"w145197802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1021}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517228.6724637682,5276717.344148237],[517218.6053976645,5276718.203491889],[517217.9537444933,5276709.977219691],[517222.7093523363,5276709.557837115],[517227.7955011659,5276709.117208302],[517228.2343115845,5276713.119539407],[517228.6724637682,5276717.344148237]]]},"properties":{"ID_SOURCE":"w145197803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1022}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.4424478932,5276826.170246362],[517311.90393475426,5276839.844790589],[517310.3673415558,5276826.170023098],[517310.4424478932,5276826.170246362]]]},"properties":{"ID_SOURCE":"w145197856","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1023}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.2354639504,5277557.601636666],[517129.83852818364,5277556.825431443],[517136.356584154,5277562.06819058],[517130.17575219576,5277569.829797029],[517126.9766412319,5277567.26416619],[517123.65769944526,5277564.587044739],[517129.2354639504,5277557.601636666]]]},"properties":{"ID_SOURCE":"w145197878","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1024}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.20811512624,5277481.529333127],[516689.3149054349,5277478.748275497],[516697.80829968036,5277476.216411311],[516700.4863212017,5277485.115283402],[516692.14217836445,5277487.980991221],[516690.87014563434,5277483.742914728],[516690.20811512624,5277481.529333127]]]},"properties":{"ID_SOURCE":"w145197922","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1025}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.44402513717,5277507.275605005],[516983.29454351787,5277515.163186],[516973.5364122937,5277513.578769837],[516974.1402779822,5277509.946255066],[516974.91246984026,5277505.24728795],[516984.5951929073,5277506.942626253],[516984.44402513717,5277507.275605005]]]},"properties":{"ID_SOURCE":"w145197925","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1026}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516856.236948171,5277486.3421167955],[516854.9371193109,5277494.340426582],[516849.75807943475,5277493.391860189],[516845.02936702775,5277492.533513268],[516846.40556683176,5277484.090862744],[516856.3130113121,5277486.008917313],[516856.236948171,5277486.3421167955]]]},"properties":{"ID_SOURCE":"w145197931","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1027}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517010.4522160435,5277524.689364563],[517011.6794280985,5277515.912896374],[517011.8328704512,5277514.801945506],[517019.4895611541,5277515.935722661],[517017.9586993752,5277525.822700926],[517013.7550690623,5277525.188031369],[517010.4522160435,5277524.689364563]]]},"properties":{"ID_SOURCE":"w145197956","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1028}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.598562462,5277470.247614064],[517054.56431404693,5277471.004466187],[517055.1425036389,5277471.028387892],[517054.5749823992,5277477.61732267],[517053.9763163746,5277484.584042068],[517045.5676361629,5277483.781437856],[517046.598562462,5277470.247614064]]]},"properties":{"ID_SOURCE":"w145197957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1029}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.73845716915,5277680.476060629],[516851.17133207485,5277679.7109106155],[516853.63853812456,5277683.496810434],[516840.84983762156,5277691.23959685],[516837.78604365437,5277686.007157752],[516846.73845716915,5277680.476060629]]]},"properties":{"ID_SOURCE":"w145197963","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1030}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517097.262896585,5277653.421428921],[517097.15548805695,5277664.423969185],[517077.03021461214,5277664.253760147],[517077.13758510526,5277653.251219603],[517082.24409024045,5277653.266201008],[517097.262896585,5277653.421428921]]]},"properties":{"ID_SOURCE":"w145198005","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1031}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.2735769887,5277749.1731302375],[517268.4991899578,5277749.0626594825],[517272.7858380244,5277746.963716769],[517273.98009430204,5277749.4123400925],[517269.5425994045,5277751.7331144195],[517268.2735769887,5277749.1731302375]]]},"properties":{"ID_SOURCE":"w145198043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1032}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517260.63113729557,5276755.337461616],[517260.344543638,5276750.668739946],[517269.5847204794,5276750.0292960545],[517270.1585517689,5276759.144462703],[517265.6209563901,5276759.508882837],[517260.8429526967,5276759.894821873],[517260.63113729557,5276755.337461616]]]},"properties":{"ID_SOURCE":"w145198100","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1033}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.05208952754,5277755.271882219],[517230.99153994734,5277760.954639639],[517221.5751908865,5277763.305171748],[517218.97875634657,5277760.141115759],[517225.3782134565,5277754.603048323],[517226.05208952754,5277755.271882219]]]},"properties":{"ID_SOURCE":"w145198118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1034}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516467.78104707506,5277741.852393426],[516462.90336166136,5277740.6160586905],[516465.0755514202,5277731.96440314],[516466.776878814,5277725.178567001],[516467.15675360523,5277723.623682846],[516471.95967214345,5277724.748669588],[516467.78104707506,5277741.852393426]]]},"properties":{"ID_SOURCE":"w145198122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1035}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517049.09251673607,5277434.11221624],[517058.55199572816,5277435.140183624],[517058.1117235049,5277439.306640426],[517057.62509040267,5277443.917521117],[517050.8678651311,5277443.342028119],[517048.16497466015,5277443.111833115],[517049.09251673607,5277434.11221624]]]},"properties":{"ID_SOURCE":"w145198152","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1036}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516314.71602842933,5277159.826629046],[516324.79714656295,5277153.631056283],[516326.6778150262,5277152.524931469],[516330.1175500117,5277157.869287499],[516318.2305604537,5277165.282327454],[516314.71602842933,5277159.826629046]]]},"properties":{"ID_SOURCE":"w145198168","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1037}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516768.6121288577,5277689.697396852],[516768.7469531611,5277695.032501799],[516768.81884699565,5277696.144108185],[516753.5732621676,5277696.54477404],[516753.44162234647,5277690.0982793905],[516768.6121288577,5277689.697396852]]]},"properties":{"ID_SOURCE":"w145198201","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1038}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.55089302716,5276971.812587597],[517214.5462931591,5276973.368531876],[517214.52066530683,5276982.037364343],[517209.2633624945,5276982.021824433],[517209.21814806544,5276971.907964595],[517214.55089302716,5276971.812587597]]]},"properties":{"ID_SOURCE":"w145198231","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1039}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.8316908911,5277618.351167357],[517264.31788289215,5277614.348604867],[517272.5840672777,5277612.483744386],[517274.2819302838,5277622.380239104],[517270.7425975534,5277623.147718105],[517265.7153751935,5277624.244206309],[517264.8316908911,5277618.351167357]]]},"properties":{"ID_SOURCE":"w145198240","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1040}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.8205342926,5277679.713908819],[516929.8151957845,5277673.3818245465],[516942.61284830334,5277675.51959992],[516949.48080676084,5277676.662104977],[516948.4864479479,5277682.883046969],[516928.8205342926,5277679.713908819]]]},"properties":{"ID_SOURCE":"w145198250","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1041}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.33585802716,5277498.531987958],[516883.7117883284,5277490.200485019],[516883.8645622765,5277489.311808819],[516893.6227578269,5277490.896074467],[516892.1694586032,5277500.005330021],[516887.26016869093,5277499.268678694],[516882.33585802716,5277498.531987958]]]},"properties":{"ID_SOURCE":"w145198257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1042}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.52041002514,5277762.039496896],[516881.126642796,5277760.151875611],[516888.7047164715,5277762.396654348],[516888.47653194936,5277763.396251952],[516888.17325328063,5277764.39563172],[516880.52041002514,5277762.039496896]]]},"properties":{"ID_SOURCE":"w145198269","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1043}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68603405985,5277216.274875673],[517311.6909906801,5277214.607791896],[517317.0979558385,5277214.735010451],[517317.15884368366,5277219.514207313],[517311.8269842338,5277219.387211989],[517311.68603405985,5277216.274875673]]]},"properties":{"ID_SOURCE":"w145198282","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1044}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517194.6379432247,5277616.076223713],[517196.72491842194,5277608.691580712],[517206.1262330477,5277611.508971352],[517204.07728758606,5277618.727013513],[517199.2675667814,5277617.379122672],[517194.6379432247,5277616.076223713]]]},"properties":{"ID_SOURCE":"w145198287","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1045}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.6943018657,5277600.412466364],[517131.56845467334,5277606.9546376085],[517131.04114566697,5277607.508785695],[517124.37359732424,5277602.043312268],[517130.02609658544,5277595.169264499],[517133.51754333824,5277597.913581467],[517136.6943018657,5277600.412466364]]]},"properties":{"ID_SOURCE":"w145198288","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1046}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516497.4462509334,5277687.922390335],[516496.9815075305,5277692.922368944],[516493.67795138183,5277692.690728686],[516494.2976056599,5277686.024090221],[516497.52575540286,5277686.366657019],[516497.4462509334,5277687.922390335]]]},"properties":{"ID_SOURCE":"w145198307","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1047}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.92921163514,5277611.790659849],[517158.34637505485,5277617.70293306],[517154.1629849796,5277622.969752894],[517149.9796024498,5277628.236575758],[517142.6368856515,5277622.546812207],[517150.92921163514,5277611.790659849]]]},"properties":{"ID_SOURCE":"w145198309","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1048}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.52229591005,5277736.134906062],[517258.8324362067,5277742.143313647],[517259.3541438978,5277743.478540203],[517249.20420137566,5277747.560636712],[517246.2221535472,5277740.216562557],[517251.1090625661,5277738.286092185],[517256.52229591005,5277736.134906062]]]},"properties":{"ID_SOURCE":"w145198320","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1049}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516365.93990097067,5276837.776194898],[516370.24094784446,5276830.675341124],[516373.7728272958,5276832.685786314],[516375.0550810935,5276833.422914182],[516379.1642120366,5276835.812861056],[516374.86253294686,5276843.135986039],[516365.93990097067,5276837.776194898]]]},"properties":{"ID_SOURCE":"w145198340","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1050}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.1479783252,5277091.334204552],[517308.4518460283,5277091.566304306],[517308.0591527476,5277097.344410737],[517305.0556996871,5277097.113204004],[517304.75528831035,5277097.112311196],[517305.1479783252,5277091.334204552]]]},"properties":{"ID_SOURCE":"w145198351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1051}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.64495246415,5276963.001836839],[517312.2674094054,5276970.21291108],[517312.8910454839,5276962.546115093],[517316.64495246415,5276963.001836839]]]},"properties":{"ID_SOURCE":"w145198355","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1052}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516940.587916735,5277584.278934081],[516941.1996849695,5277580.501956726],[516941.8114539777,5277576.724979456],[516948.1614272399,5277577.843746841],[516955.9225024057,5277579.211138613],[516954.62320348853,5277586.987149617],[516940.587916735,5277584.278934081]]]},"properties":{"ID_SOURCE":"w145198359","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1053}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516742.0360632537,5276738.852896258],[516742.55628572573,5276738.165325393],[516744.20753024495,5276735.947277856],[516744.7638377596,5276738.382838178],[516750.3096415697,5276742.62209828],[516749.6913314309,5276743.4649819955],[516749.17855538684,5276744.1748016],[516742.0360632537,5276738.852896258]]]},"properties":{"ID_SOURCE":"w145198419","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1054}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.21977109084,5277266.704324083],[516438.39552622783,5277268.7025137395],[516432.92712247267,5277266.408711072],[516430.2178254396,5277263.089098466],[516434.0888168294,5277264.58929683],[516439.21977109084,5277266.704324083]]]},"properties":{"ID_SOURCE":"w145198430","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1055}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517028.78603338404,5277495.624300791],[517028.3208194305,5277500.624236567],[517024.5672378405,5277500.168699529],[517024.8003306171,5277497.502023031],[517024.95702590316,5277495.279682827],[517028.78603338404,5277495.624300791]]]},"properties":{"ID_SOURCE":"w145198466","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1056}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.44777502865,5277584.204970552],[517226.4847510935,5277583.673046141],[517226.7527214056,5277589.553142789],[517226.9781984168,5277594.566222096],[517218.94156604086,5277594.987006811],[517218.91353260435,5277594.308970155],[517218.44777502865,5277584.204970552]]]},"properties":{"ID_SOURCE":"w145198496","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1057}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516569.444219957,5276718.098484374],[516569.1460026441,5276717.319657694],[516569.525652173,5276715.875921313],[516570.72895723255,5276715.323646533],[516571.6258224656,5276716.882154985],[516569.444219957,5276718.098484374]]]},"properties":{"ID_SOURCE":"w145198528","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1058}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516320.9921737129,5277144.618066646],[516321.9669446135,5277145.176497971],[516326.6778150262,5277152.524931469],[516324.79714656295,5277153.631056283],[516320.0105495,5277146.504691626],[516320.9921737129,5277144.618066646]]]},"properties":{"ID_SOURCE":"w145198533","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1059}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517206.6812177112,5277652.410118041],[517209.0318520954,5277644.748408378],[517218.06473892834,5277647.698097697],[517220.36046598817,5277648.4495256655],[517217.93472249206,5277656.111008729],[517211.25745413237,5277653.979604906],[517206.6812177112,5277652.410118041]]]},"properties":{"ID_SOURCE":"w145198537","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1060}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.65975057654,5277273.3286337815],[516417.619397477,5277272.478217547],[516420.7201475874,5277264.818314036],[516425.02609687555,5277266.542012722],[516421.93285204144,5277274.201935156],[516419.65975057654,5277273.3286337815]]]},"properties":{"ID_SOURCE":"w145198623","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1061}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.85725529277,5276929.777185755],[517149.4091715445,5276929.498373813],[517149.43071833707,5276934.933175176],[517149.49784583616,5276950.392924101],[517138.4574502347,5276950.360419199],[517130.8718722981,5276950.3380980315],[517130.85725529277,5276929.777185755]]]},"properties":{"ID_SOURCE":"w145198655","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1062}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.594872084,5277674.907166976],[516992.895589884,5277678.622475713],[516989.7137552253,5277683.003217119],[516982.2194649065,5277677.757773318],[516988.1012251639,5277669.439437679],[516988.7003671664,5277669.996885787],[516995.594872084,5277674.907166976]]]},"properties":{"ID_SOURCE":"w145198663","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1063}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517260.63113729557,5276755.337461616],[517256.6118783907,5276755.670083226],[517252.8180075433,5276755.981147388],[517252.24414876866,5276746.86598256],[517260.0566318601,5276746.444573673],[517260.344543638,5276750.668739946],[517260.63113729557,5276755.337461616]]]},"properties":{"ID_SOURCE":"w145198696","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1064}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.29001413047,5277409.2963406835],[517309.2352066186,5277409.10646048],[517309.9898625848,5277407.875050837],[517312.6176608958,5277408.105144051],[517312.5422315854,5277408.216059689],[517313.29001413047,5277409.2963406835]]]},"properties":{"ID_SOURCE":"w145198701","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1065}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.0188873112,5277670.174079485],[517236.5150039781,5277670.836466519],[517230.799526758,5277673.598046585],[517225.7239507906,5277663.135868979],[517228.7471659696,5277661.666653488],[517233.0187458184,5277659.60097891],[517238.0188873112,5277670.174079485]]]},"properties":{"ID_SOURCE":"w145198709","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1066}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.99153994734,5277760.954639639],[517226.05208952754,5277755.271882219],[517230.1477155177,5277751.738637133],[517234.4089490773,5277748.07251721],[517239.4975989311,5277754.089143456],[517231.2158358977,5277761.288723498],[517230.99153994734,5277760.954639639]]]},"properties":{"ID_SOURCE":"w145198727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1067}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.9804047673,5277139.4038074305],[517286.9645665943,5277144.738474908],[517281.4086508811,5277144.166283085],[517281.7993357643,5277139.0550079355],[517286.9053024706,5277139.403584457],[517286.9804047673,5277139.4038074305]]]},"properties":{"ID_SOURCE":"w145198752","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1068}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.96685196826,5277396.478042028],[516795.974226132,5277393.921846064],[516795.91259292787,5277389.253793339],[516795.9199670508,5277386.697597406],[516795.8560893919,5277382.807517402],[516806.2207336119,5277382.504006795],[516806.08817971125,5277376.390930879],[516809.91824026156,5277376.401987762],[516812.39683566446,5277376.298004606],[516816.6023924247,5277376.310150188],[516819.3062856879,5277376.206820714],[516826.6663313575,5277376.116947264],[516829.36990366125,5277376.124761416],[516833.5006826781,5277376.025563175],[516836.0540565685,5277376.032946171],[516843.6394005285,5277375.943745667],[516846.41839374206,5277375.840646045],[516850.3986531884,5277375.852164152],[516852.87692793837,5277375.859337179],[516856.9326083959,5277375.759938181],[516856.9781039489,5277385.98493918],[516849.4678718758,5277386.074339614],[516846.23861044773,5277386.06499503],[516831.9694595723,5277386.1348653985],[516828.8152973029,5277386.125747588],[516814.6209251395,5277386.307016496],[516811.2414656909,5277386.297257548],[516805.6838115704,5277386.392352721],[516805.82695209485,5277388.837843242],[516805.8176487976,5277392.060872907],[516805.98455877596,5277412.288813229],[516806.0509956642,5277415.289781872],[516806.1594873648,5277429.738280173],[516806.22560307465,5277432.850387863],[516806.46728671837,5277453.189685249],[516806.45926616655,5277455.968159376],[516806.4701151141,5277457.413009286],[516806.51254834945,5277463.525825855],[516796.599919438,5277463.386079696],[516796.5373260273,5277459.051443348],[516796.5443799553,5277456.606386101],[516796.4089325517,5277451.4935603915],[516796.416307038,5277448.937364209],[516796.3023412614,5277436.37822806],[516796.3090744112,5277434.04430986],[516796.3241438367,5277428.820778686],[516796.25609902584,5277426.3755049],[516796.20280279365,5277418.817838991],[516796.2095358689,5277416.483920857],[516796.07376632886,5277411.48223444],[516796.1552775183,5277409.259671939],[516795.96685196826,5277396.478042028]]]},"properties":{"ID_SOURCE":"w145198754","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1069}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516975.8024655923,5277457.570860223],[516983.6130010012,5277457.482499225],[516986.1663393261,5277457.48994814],[516990.8224268599,5277457.503534341],[516993.1504706268,5277457.5103288395],[516995.55361257825,5277457.5173434885],[516995.4895450287,5277453.738399509],[516995.4976557851,5277450.959925434],[516995.4368323774,5277446.069591873],[516995.4446186602,5277443.402256795],[516995.39028361184,5277436.289144086],[516995.3974209982,5277433.8440869665],[516995.4123446139,5277428.731694843],[516995.41948199185,5277426.286637752],[516995.30562019657,5277413.838636095],[516995.3127574956,5277411.393579065],[516995.3276809325,5277406.281187121],[516995.335142646,5277403.724991164],[516995.27074965026,5277400.057186459],[517005.2589069572,5277400.0863510035],[517005.31355526915,5277407.088324472],[517005.3038168743,5277410.422493128],[517005.31951109186,5277430.761141661],[517005.3113956983,5277433.539615642],[517005.3452677645,5277447.654483011],[517005.41095211543,5277450.877732269],[517005.4578083502,5277460.547041437],[516995.6196266261,5277460.629453708],[516995.6752586634,5277467.298010833],[516988.11259217444,5277467.375964834],[516985.303859935,5277467.389997932],[516970.97521519114,5277467.325985126],[516967.82854175055,5277467.339041585],[516953.5899498634,5277467.297562002],[516950.4358961197,5277467.266150402],[516936.43716531934,5277467.3810069775],[516932.88512419834,5277467.337333161],[516927.48557387304,5277467.321631608],[516927.58910779457,5277457.541621001],[516931.7946060732,5277457.553849934],[516934.3479443126,5277457.561276126],[516938.62854077114,5277457.573728427],[516941.33207537653,5277457.581594661],[516948.84189372056,5277457.603451896],[516951.3204573603,5277457.499527947],[516956.20183937385,5277457.513742424],[516958.7551776576,5277457.521179318],[516965.9646033933,5277457.5421836525],[516968.893432598,5277457.550719215],[516973.0238327579,5277457.562759047],[516975.8024655923,5277457.570860223]]]},"properties":{"ID_SOURCE":"w145198761","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1070}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516444.3315919081,5277323.455641031],[516442.83524355944,5277321.4508980205],[516444.8676501007,5277319.789540621],[516447.7258434793,5277318.241656498],[516448.399545355,5277319.021538524],[516451.7095960551,5277317.030373559],[516455.54346441495,5277315.707529894],[516458.6241351962,5277315.160538381],[516464.25757844344,5277314.843046264],[516468.91189286974,5277315.52304847],[516472.5132341596,5277316.755774417],[516475.6633451306,5277318.20950539],[516477.9116260808,5277319.882965389],[516478.6645128423,5277319.218257187],[516483.38825853734,5277321.898984551],[516480.52376562916,5277325.669630109],[516481.94531472446,5277327.5630313065],[516477.35321563715,5277331.439927978],[516474.58552977786,5277327.542201708],[516473.0882495321,5277325.870867725],[516471.0646403859,5277324.420324818],[516468.81510178815,5277323.191423235],[516464.1611077654,5277322.400282134],[516459.72958455107,5277322.610032187],[516457.3251308673,5277323.047794618],[516455.9714478861,5277323.710807467],[516452.8106570585,5277326.0358112985],[516449.79692841467,5277329.472630669],[516448.8174909188,5277330.581261884],[516444.3231167041,5277326.456392571],[516445.6045231288,5277324.792914377],[516444.3315919081,5277323.455641031]]]},"properties":{"ID_SOURCE":"w145198767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1071}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517253.71572939714,5277286.932264318],[517265.970993213,5277287.346469401],[517265.63424418634,5277297.070212888],[517271.36386684765,5277297.26503016],[517271.5531145891,5277291.697482023],[517273.3628677684,5277291.758420723],[517273.4866627987,5277288.002259033],[517281.76196609804,5277288.282437341],[517281.70444768254,5277289.949365278],[517287.2913862273,5277290.14377468],[517287.19271927245,5277293.022005442],[517289.6257715266,5277293.095913856],[517289.4937300776,5277297.09655861],[517290.8078526864,5277297.144917004],[517290.7173872094,5277299.789778283],[517290.6107465962,5277302.823581238],[517284.7910097163,5277302.62847747],[517284.57773484517,5277308.696083625],[517282.587779741,5277308.623492515],[517282.47228091693,5277312.112942996],[517274.354688707,5277311.844345386],[517274.40423320944,5277310.332989555],[517268.9600038604,5277310.139015679],[517269.07516497944,5277306.760703896],[517267.0852090499,5277306.688118091],[517267.2165757329,5277302.909750673],[517265.36927587,5277302.848702527],[517265.4182578338,5277301.526282829],[517263.00773891475,5277301.45245132],[517262.97496381024,5277302.374815405],[517262.00906827365,5277303.927910415],[517261.1862612081,5277302.814071922],[517260.50838265754,5277303.478901765],[517259.61179287283,5277301.920285125],[517258.1809358969,5277303.249722645],[517257.35911624494,5277301.802467893],[517255.70197105524,5277303.464655042],[517254.58106746234,5277301.571954662],[517253.37551212276,5277302.902061041],[517252.25361971743,5277301.3427779125],[517250.89720590226,5277302.894717617],[517249.99896709557,5277301.891797135],[517250.54409618955,5277295.336157581],[517250.02004055097,5277294.77890539],[517251.22526749165,5277293.559937258],[517250.17715591914,5277292.445432805],[517251.1557651793,5277291.670352894],[517251.45715441153,5277291.337826165],[517250.1837414244,5277290.222654161],[517251.9904308959,5277288.783188382],[517250.64257562894,5277287.445515896],[517252.74999702035,5277285.895801468],[517252.9752982436,5277285.896469079],[517253.71572939714,5277286.932264318]]]},"properties":{"ID_SOURCE":"w145198772","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1072}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.5810001403,5277528.995463378],[517286.63751346356,5277528.070200271],[517284.9577295636,5277529.78788214],[517278.07289532485,5277536.824832636],[517275.82066322037,5277539.118746039],[517276.5395180197,5277539.821060907],[517277.99965728074,5277541.259099455],[517278.1263328721,5277541.592895262],[517278.0505760943,5277541.814950341],[517277.9744894904,5277542.148144402],[517277.8236356259,5277542.369976617],[517277.6727817719,5277542.591808835],[517277.29597700876,5277543.035250427],[517276.9945992006,5277543.367775921],[517276.7085376706,5277543.600320924],[517276.32478399936,5277543.8548040325],[517275.98658329906,5277543.942712411],[517275.5884038816,5277543.997100842],[517275.3180543947,5277543.99629863],[517273.1016107561,5277541.822493115],[517267.50488664134,5277547.540712478],[517263.6710246765,5277543.783926254],[517264.0476306101,5277543.407167169],[517260.88018410164,5277540.308084745],[517261.656057049,5277539.510177449],[517265.21141942375,5277535.886443514],[517264.48508601607,5277535.17299389],[517269.77296408534,5277529.776161401],[517270.5666872441,5277530.556495558],[517274.20493145246,5277526.844101012],[517278.31020214973,5277522.655192957],[517277.50896920095,5277521.87483547],[517282.8270093339,5277516.444762345],[517283.62820933363,5277517.236234456],[517286.9275085393,5277513.867375482],[517287.78622680577,5277512.991919687],[517291.2082791726,5277516.336280679],[517291.584888658,5277515.959523383],[517295.2315689725,5277519.526833844],[517289.53687819623,5277525.34476699],[517291.813234844,5277527.574326631],[517291.8943564318,5277528.074697364],[517291.6824335717,5277528.629767697],[517291.38793676154,5277529.173478796],[517291.1391585311,5277529.495045788],[517290.7555353284,5277529.705072355],[517290.356958714,5277529.892826549],[517290.0263327246,5277529.958528616],[517289.69580576086,5277529.990889011],[517289.2451891935,5277530.000664807],[517288.8998738112,5277529.955183364],[517288.6824547941,5277529.832283772],[517288.33766744303,5277529.608980005],[517287.95552944543,5277529.318881376],[517287.5810001403,5277528.995463378]]]},"properties":{"ID_SOURCE":"w145198776","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1073}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8020198006,5277219.555926856],[517299.7346895066,5277219.6846907595],[517299.6638810031,5277218.239661671],[517305.7470848416,5277218.257739056],[517305.67594748177,5277216.923848815],[517305.6779294405,5277216.257015304],[517311.68603405985,5277216.274875673],[517311.8269842338,5277219.387211989],[517317.15884368366,5277219.514207313],[517317.14363855065,5277224.626597609],[517312.1748206831,5277253.952756548],[517312.1000503148,5277253.841394322],[517312.2677661277,5277247.951477924],[517310.5404454466,5277247.946342236],[517310.70948150445,5277241.611870156],[517310.80077339703,5277236.166286236],[517310.89305669884,5277230.3872856],[517310.90197824576,5277227.386534737],[517305.27005155873,5277227.147513353],[517305.1866924229,5277229.925763161],[517299.103830978,5277229.796547409],[517299.1743092522,5277231.352715437],[517275.89494281186,5277230.61675739],[517275.7351776161,5277233.839340454],[517275.4172964689,5277239.728812033],[517275.2492880214,5277245.729868251],[517275.09941591375,5277245.618283683],[517270.14374361694,5277245.270162741],[517263.235116873,5277245.027395216],[517263.5523264002,5277239.360200797],[517261.9007632028,5277239.133024376],[517261.90142218943,5277238.91074653],[517262.0690875191,5277233.020828944],[517262.2353008839,5277230.1539123375],[517262.3853079628,5277227.687051336],[517263.1722367564,5277215.575135687],[517263.33924480824,5277209.907496184],[517264.46576563176,5277209.910836336],[517265.7424892333,5277209.914622106],[517278.2080004745,5277210.396159421],[517278.20437265426,5277211.618687517],[517277.8861581888,5277217.619297683],[517277.8097377198,5277218.063630502],[517276.3077120479,5277218.059173567],[517276.3014464867,5277220.170813034],[517277.95334432827,5277220.286854604],[517277.9477377607,5277222.176216242],[517281.62736818875,5277222.298276383],[517281.5582045634,5277220.297552924],[517281.56051362946,5277219.519580488],[517281.8619083071,5277219.18705536],[517288.0195523988,5277219.427614972],[517293.8020198006,5277219.555926856]]]},"properties":{"ID_SOURCE":"w145198792","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1074}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.0722881948,5277078.6994201355],[517279.72377498174,5277079.233365161],[517278.9468784715,5277090.478414992],[517272.26403647126,5277090.014028072],[517272.4837864961,5277086.824965532],[517271.5151559016,5277086.755408363],[517271.6642140699,5277084.610850938],[517272.0722881948,5277078.6994201355]]]},"properties":{"ID_SOURCE":"w145198805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1075}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.04941684846,5276721.261790785],[517229.18407889927,5276722.124673508],[517228.6724637682,5276717.344148237],[517228.2343115845,5276713.119539407],[517232.47898728156,5276712.7653371645],[517237.3246575328,5276712.368460998],[517237.6867085034,5276716.926264696],[517238.04941684846,5276721.261790785]]]},"properties":{"ID_SOURCE":"w145198829","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1076}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516388.0159817567,5276759.595907595],[516386.78580745275,5276769.706161083],[516372.29421101866,5276768.220583519],[516373.6029050229,5276756.888010903],[516376.90637177246,5276757.3418591395],[516376.7530318722,5276758.452825169],[516379.9517225836,5276758.773012809],[516388.0159817567,5276759.595907595]]]},"properties":{"ID_SOURCE":"w145198855","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1077}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516707.2041310714,5277525.589477363],[516697.88409707794,5277528.341236534],[516695.85405287094,5277521.322487316],[516694.09174130316,5277515.215853709],[516701.83315344923,5277513.01525898],[516704.43414080795,5277522.580751888],[516706.23807149095,5277522.030228563],[516707.2041310714,5277525.589477363]]]},"properties":{"ID_SOURCE":"w145198859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1078}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.7507537666,5277625.46647911],[516736.4114120963,5277624.265576548],[516741.1694968629,5277622.712184226],[516743.5505152978,5277630.387685748],[516731.599080129,5277634.243222365],[516728.9205378256,5277625.566611593],[516732.3781485362,5277624.465148969],[516732.7507537666,5277625.46647911]]]},"properties":{"ID_SOURCE":"w145198861","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1079}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.30244434276,5277349.331020035],[516536.0125784041,5277347.854876917],[516542.1998948657,5277350.8287728885],[516541.45962505013,5277352.338171601],[516535.30244434276,5277349.331020035]]]},"properties":{"ID_SOURCE":"w145198914","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1080}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.83120904403,5277140.802400232],[517316.56476083334,5277141.492233982],[517315.70558471355,5277152.603667785],[517308.6473060833,5277152.138122174],[517308.7316588048,5277149.026456032],[517308.20594357885,5277149.024893284],[517308.51083461946,5277144.991421646],[517308.83120904403,5277140.802400232]]]},"properties":{"ID_SOURCE":"w145198926","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1081}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516441.41824926453,5276865.773750677],[516442.0979671754,5276864.441992847],[516444.9485357922,5276865.6725795865],[516440.6402060732,5276875.329572671],[516429.689201371,5276870.186236119],[516433.392278691,5276862.083483495],[516437.6978014937,5276864.062809163],[516441.41824926453,5276865.773750677]]]},"properties":{"ID_SOURCE":"w145198952","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1082}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.4361986754,5276735.114747594],[516432.6521126781,5276738.449548707],[516421.19606512896,5276739.184097037],[516420.26040760643,5276724.733294286],[516430.3342521982,5276724.083755826],[516430.80178691895,5276731.4091829285],[516431.0464593106,5276735.199737985],[516432.4361986754,5276735.114747594]]]},"properties":{"ID_SOURCE":"w145198991","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1083}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.6060773505,5276928.914093929],[517255.9100391946,5276929.146163577],[517255.9834974633,5276929.70208049],[517263.2667057507,5276930.390507137],[517262.9239870775,5276934.523893388],[517262.6437909012,5276937.83503016],[517251.9064247215,5276936.914089875],[517252.6060773505,5276928.914093929]]]},"properties":{"ID_SOURCE":"w145199005","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1084}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516847.04784737,5277573.5603475105],[516837.96211284737,5277573.200642968],[516836.7769578576,5277567.529079743],[516842.55265655194,5277569.879724056],[516844.95639510837,5277569.664398686],[516847.5119354086,5277568.893814017],[516847.04784737,5277573.5603475105]]]},"properties":{"ID_SOURCE":"w145199019","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1085}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516517.87437857996,5276866.545821611],[516516.29841780796,5276866.0967924455],[516514.1004930917,5276873.092363711],[516504.7210995466,5276869.953858616],[516505.7983120077,5276866.178160099],[516507.60378830886,5276859.848311828],[516518.8595815456,5276863.436703045],[516517.87437857996,5276866.545821611]]]},"properties":{"ID_SOURCE":"w145199024","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1086}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516813.8172490181,5277560.572051392],[516816.03580577805,5277572.470429654],[516814.98381001706,5277572.689670962],[516812.879818738,5277573.128154147],[516813.25016676163,5277574.907462288],[516815.2790928568,5277574.457648437],[516818.5277698792,5277593.7053518165],[516809.73731661006,5277595.124782849],[516809.5155572343,5277593.901603477],[516806.0599348033,5277594.302844678],[516802.66121607705,5277574.988031464],[516801.6089646943,5277575.296186379],[516799.5411504937,5277563.198196851],[516813.8172490181,5277560.572051392]]]},"properties":{"ID_SOURCE":"w145199036","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1087}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516315.57610974263,5276718.826502036],[516315.1912301204,5276722.159615141],[516304.0777872128,5276721.239372078],[516305.17099253146,5276706.349711508],[516315.30868450925,5276707.044943266],[516314.785628106,5276714.123077524],[516314.44980570575,5276718.712206853],[516315.57610974263,5276718.826502036]]]},"properties":{"ID_SOURCE":"w145199043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1088}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.0120262327,5276815.816218573],[516460.1773733125,5276818.814632372],[516449.37115493056,5276815.561044628],[516451.1070425362,5276809.920049414],[516453.54032015026,5276802.013774434],[516462.9955855617,5276804.930131058],[516459.81126551563,5276815.479405185],[516461.0120262327,5276815.816218573]]]},"properties":{"ID_SOURCE":"w145199057","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1089}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.3548190538,5277722.977347649],[517016.63143001386,5277722.98107907],[517016.6720892632,5277734.762033749],[517013.81816925673,5277734.864832293],[517013.8246654388,5277732.6420520535],[517015.4019776696,5277732.535522075],[517015.3548190538,5277722.977347649]]]},"properties":{"ID_SOURCE":"w145199086","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1090}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.25642012747,5277390.035091541],[516641.2040805077,5277390.365503206],[516643.36257283395,5277397.1512048],[516635.9962065575,5277399.464089047],[516634.37305314565,5277394.558183361],[516632.49671915994,5277388.895803838],[516641.0653181156,5277386.364071518],[516642.25642012747,5277390.035091541]]]},"properties":{"ID_SOURCE":"w145199089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1091}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517083.6209491524,5277537.217911613],[517083.7768180354,5277535.284534146],[517084.5651427995,5277535.3535314035],[517084.51816027303,5277536.009119142],[517089.0079275006,5277536.377943924],[517088.87677173625,5277537.566756242],[517084.07185824646,5277537.108094824],[517083.6209491524,5277537.217911613]]]},"properties":{"ID_SOURCE":"w145199105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1092}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.3047489782,5277631.085358018],[517090.352082201,5277628.505787879],[517092.73306788615,5277620.688525489],[517094.4467520017,5277615.069875689],[517100.59908714844,5277616.977323107],[517103.3750319928,5277617.874597277],[517099.13015157694,5277631.310062161],[517098.3047489782,5277631.085358018]]]},"properties":{"ID_SOURCE":"w145199118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1093}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516395.1962089976,5276716.9384642085],[516390.7871916845,5276711.658030072],[516388.68373153027,5276709.140352355],[516387.7805611541,5276709.804648988],[516385.6096270558,5276707.242326631],[516394.3421613572,5276700.1539621595],[516403.1000502829,5276710.736897519],[516395.1962089976,5276716.9384642085]]]},"properties":{"ID_SOURCE":"w145199120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1094}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.3900979841,5277269.19752716],[516448.81370690383,5277268.12066759],[516450.2239341949,5277268.713692828],[516449.8078351132,5277269.790573517],[516449.4899321151,5277270.66767997],[516448.0120205106,5277270.107805649],[516448.3900979841,5277269.19752716]]]},"properties":{"ID_SOURCE":"w145199125","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1095}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516397.5495825426,5276814.748052596],[516393.843453552,5276813.270573248],[516387.7215832955,5276810.830495691],[516391.2024476307,5276801.615694405],[516404.1824317789,5276806.431253263],[516400.0972550886,5276816.866882117],[516397.1709207943,5276815.858383732],[516397.5495825426,5276814.748052596]]]},"properties":{"ID_SOURCE":"w145199128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1096}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517064.16151769436,5277161.085653414],[517073.32461489085,5277160.890234871],[517074.9020831122,5277160.783720737],[517075.4215547496,5277214.132382513],[517056.4199420832,5277214.410108076],[517055.974747306,5277161.283946206],[517064.16151769436,5277161.085653414]]]},"properties":{"ID_SOURCE":"w145199129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1097}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517052.2106550375,5277497.693381194],[517051.7847276643,5277502.093274695],[517051.43624209,5277505.693187603],[517041.0753803781,5277504.7737325495],[517041.47429078986,5277496.772825716],[517044.7776126296,5277497.115915505],[517051.30980850407,5277497.579602831],[517052.2106550375,5277497.693381194]]]},"properties":{"ID_SOURCE":"w145199142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1098}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.62179970986,5277685.440208232],[517138.62212689593,5277685.32906923],[517128.2596361006,5277685.076291969],[517128.521218064,5277672.740525662],[517140.6112524874,5277672.887249405],[517140.4240857207,5277685.445514334],[517138.62179970986,5277685.440208232]]]},"properties":{"ID_SOURCE":"w145199160","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1099}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.1399599993,5277584.007911696],[517039.9611442825,5277577.567125485],[517048.36480787414,5277580.036806809],[517046.4540198661,5277586.299504196],[517045.104416194,5277590.696694272],[517034.52556964697,5277587.331533109],[517035.73914669896,5277583.222906441],[517038.1399599993,5277584.007911696]]]},"properties":{"ID_SOURCE":"w145199169","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1100}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516513.09519844904,5277280.528004139],[516517.1458937331,5277282.206591331],[516518.9464122128,5277282.878538367],[516518.2657788424,5277284.543704842],[516516.60158964456,5277288.76229739],[516510.9002664704,5277286.523330353],[516513.09519844904,5277280.528004139]]]},"properties":{"ID_SOURCE":"w145199220","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1101}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.92417471454,5277529.437573266],[517038.9303636166,5277519.215644675],[517043.50967772846,5277519.784748219],[517043.3555787487,5277521.117976226],[517050.0366405903,5277522.026657791],[517048.9592409092,5277530.91469692],[517043.5618315636,5277530.187598127],[517037.92417471454,5277529.437573266]]]},"properties":{"ID_SOURCE":"w145199224","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1102}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516865.7419256131,5277627.183916397],[516859.8847599863,5277627.055811127],[516859.8186760143,5277623.943701801],[516857.5661167781,5277623.826038912],[516857.67403805,5277612.490079046],[516862.9005392137,5277612.571899287],[516865.93429616815,5277612.625143362],[516865.7419256131,5277627.183916397]]]},"properties":{"ID_SOURCE":"w145199243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1103}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.6725980245,5277648.964976726],[517059.2697021393,5277651.531735],[517059.8917261743,5277651.967003548],[517060.5437232487,5277652.424587992],[517058.130892278,5277655.751716249],[517053.2597684313,5277652.292106977],[517055.6725980245,5277648.964976726]]]},"properties":{"ID_SOURCE":"w145199261","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1104}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.56727119745,5276861.410864172],[517316.08303402824,5276861.672245793],[517314.11052624724,5276855.522067973],[517313.56727119745,5276861.410864172]]]},"properties":{"ID_SOURCE":"w145199267","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1105}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.08303402824,5276861.672245793],[517316.7151083504,5276863.643021023],[517316.87093862,5276861.754107158],[517316.08303402824,5276861.672245793]]]},"properties":{"ID_SOURCE":"w145199267","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1106}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.55961742136,5276833.147087084],[516456.90853687277,5276832.69786177],[516454.63556519826,5276839.6932427175],[516445.2554584294,5276836.777111489],[516446.8247209985,5276831.624659187],[516448.439426805,5276826.338968002],[516459.54510831233,5276829.926819849],[516458.55961742136,5276833.147087084]]]},"properties":{"ID_SOURCE":"w145199282","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1107}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.0974204299,5277687.200262669],[516668.8131746561,5277688.521673278],[516667.9206237235,5277685.518339965],[516661.68199376215,5277687.50100008],[516658.9995562189,5277680.158089009],[516664.00580257195,5277678.460862074],[516669.748686388,5277676.521240855],[516673.0974204299,5277687.200262669]]]},"properties":{"ID_SOURCE":"w145199295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1108}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517099.34014271223,5277713.220828837],[517117.1363247266,5277713.717687192],[517117.0416231547,5277720.385806872],[517117.0324733625,5277723.497699123],[517116.9485556233,5277726.498231579],[517099.0015703528,5277726.223210577],[517099.34014271223,5277713.220828837]]]},"properties":{"ID_SOURCE":"w145199323","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1109}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.18774175027,5277764.645070088],[517274.54622188455,5277761.083719093],[517272.9778157622,5277758.18942548],[517280.5738883456,5277754.322068908],[517284.0094209218,5277760.667247523],[517279.0456109926,5277763.208732012],[517276.18774175027,5277764.645070088]]]},"properties":{"ID_SOURCE":"w145199334","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1110}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516418.09365731716,5276827.253589403],[516410.53133633314,5276824.253727934],[516407.36535613413,5276823.000041615],[516406.7610608908,5276824.220876153],[516403.6100385303,5276822.989461969],[516407.8454302954,5276812.554258718],[516421.80019286467,5276817.928302491],[516418.09365731716,5276827.253589403]]]},"properties":{"ID_SOURCE":"w145199366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1111}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.831487615,5277293.82924783],[516772.5136142775,5277273.823157702],[516787.90986760077,5277273.645250027],[516788.09394418047,5277313.989550406],[516779.63017070084,5277313.965152176],[516775.627339054,5277313.953617635],[516775.6105185767,5277293.726114336],[516772.831487615,5277293.82924783]]]},"properties":{"ID_SOURCE":"w145199382","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1112}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.490244011,5276754.180993914],[516363.2393288448,5276756.42543583],[516368.26310862147,5276759.429213085],[516363.05635523173,5276768.083478931],[516351.4353575471,5276760.71561473],[516357.3205629337,5276751.174126531],[516360.2450632124,5276752.849437776],[516359.490244011,5276754.180993914]]]},"properties":{"ID_SOURCE":"w145199406","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1113}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.15998487856,5276835.544942617],[516486.6031866017,5276823.001559063],[516495.75482801854,5276827.028507132],[516492.8374993587,5276833.45523536],[516491.37127959623,5276836.685249599],[516492.4966131985,5276837.132995665],[516491.136518817,5276840.018777314],[516481.15998487856,5276835.544942617]]]},"properties":{"ID_SOURCE":"w145199410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1114}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517162.3005867164,5277626.494645106],[517163.2807666829,5277625.163855217],[517162.38125250686,5277624.605503624],[517163.4424266258,5277621.274433316],[517166.58990766184,5277623.50651254],[517163.64936600055,5277627.498881018],[517162.3005867164,5277626.494645106]]]},"properties":{"ID_SOURCE":"w145199417","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1115}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.30045372434,5277496.507053572],[516566.74324686517,5277495.769366962],[516570.83964489703,5277494.525144275],[516573.146792844,5277501.866943221],[516562.6236435509,5277505.171193343],[516560.01830594044,5277497.050571295],[516564.07737411035,5277495.728439768],[516564.30045372434,5277496.507053572]]]},"properties":{"ID_SOURCE":"w145199423","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1116}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.1088877172,5277599.814312529],[516736.50042925775,5277601.13761677],[516736.05336572556,5277599.913792564],[516732.8286022651,5277600.993694298],[516727.7847848193,5277602.668526363],[516725.10398694786,5277594.769890758],[516737.1305950232,5277590.914556757],[516740.1088877172,5277599.814312529]]]},"properties":{"ID_SOURCE":"w145199470","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1117}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516519.2186466431,5276842.765726808],[516527.6239056912,5276845.12351173],[516524.3618608239,5276856.561649183],[516514.45607390796,5276853.643914397],[516515.2150135666,5276850.867572869],[516516.8663997754,5276851.20567589],[516517.5720731299,5276848.673691057],[516519.2186466431,5276842.765726808]]]},"properties":{"ID_SOURCE":"w145199501","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1118}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516365.9803641554,5276796.654606386],[516371.41022994556,5276788.778948236],[516383.25427762134,5276796.925458705],[516377.14500580257,5276806.021732263],[516374.3710628611,5276804.235695841],[516375.1255665534,5276803.015280389],[516371.85729261715,5276800.738840313],[516365.9803641554,5276796.654606386]]]},"properties":{"ID_SOURCE":"w145199508","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1119}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517131.56845467334,5277606.9546376085],[517136.6943018657,5277600.412466364],[517140.28294216463,5277603.301555473],[517143.8865327003,5277606.212918843],[517138.9869525679,5277612.422330082],[517136.06539792626,5277609.9686509995],[517135.83912787656,5277610.301404848],[517131.56845467334,5277606.9546376085]]]},"properties":{"ID_SOURCE":"w145199530","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1120}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516457.12561083207,5276782.463311396],[516467.1905608224,5276782.269484921],[516467.3725103388,5276797.60728369],[516455.73097471934,5276797.574374829],[516455.66623202333,5276793.90658043],[516457.2437874173,5276793.799898814],[516457.20280259114,5276789.698726571],[516457.12561083207,5276782.463311396]]]},"properties":{"ID_SOURCE":"w145199542","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1121}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.7177350956,5277094.376954088],[517018.4107492735,5277165.619627101],[516968.4656840355,5277166.251840211],[516967.54836966057,5277094.452823486],[516979.03943255765,5277094.37518008],[516979.11323910276,5277094.819954682],[517017.7177350956,5277094.376954088]]]},"properties":{"ID_SOURCE":"w145199594","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1122}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.38961499673,5277504.140748549],[517070.2318445564,5277503.636607871],[517070.8278235259,5277497.592343345],[517071.268785145,5277493.192495276],[517080.06025114213,5277494.06294363],[517079.02329491527,5277504.507054715],[517076.14787244523,5277504.220770451],[517075.38961499673,5277504.140748549]]]},"properties":{"ID_SOURCE":"w145199628","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1123}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516460.22508897324,5277758.279730824],[516453.60746421723,5277764.218122583],[516455.34710162744,5277757.154541378],[516455.8023798273,5277755.488729661],[516460.6049599237,5277756.724846171],[516460.22508897324,5277758.279730824]]]},"properties":{"ID_SOURCE":"w145199669","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1124}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516641.99311113067,5277560.967472024],[516642.9700054819,5277560.747984792],[516641.80945500743,5277556.910340945],[516640.21747027885,5277551.626645617],[516649.2367335291,5277548.985074123],[516653.7747313046,5277564.001939129],[516644.0026150976,5277567.308190554],[516641.99311113067,5277560.967472024]]]},"properties":{"ID_SOURCE":"w145199672","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1125}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516950.0416367462,5277097.069191187],[516951.0485045119,5277163.978311386],[516933.39889491827,5277164.149235542],[516932.4627257536,5277098.685142985],[516946.50792204705,5277098.3925837],[516946.51148009725,5277097.170055785],[516950.0416367462,5277097.069191187]]]},"properties":{"ID_SOURCE":"w145199681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1126}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.70864058106,5276833.494238675],[517231.7178490799,5276830.382350814],[517237.05105308595,5276830.175855278],[517237.46319948876,5276843.180434991],[517222.5306241548,5276843.636380942],[517217.5581066838,5276843.788386236],[517217.21149281523,5276834.007056805],[517231.70864058106,5276833.494238675]]]},"properties":{"ID_SOURCE":"w145199683","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1127}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516350.14115640917,5276740.151132215],[516350.2065905175,5276743.596647285],[516338.86475332006,5276743.7870935155],[516338.52819376724,5276729.8936843565],[516348.29279937886,5276729.6988093],[516348.538234479,5276735.912208629],[516348.71380343806,5276740.25826458],[516350.14115640917,5276740.151132215]]]},"properties":{"ID_SOURCE":"w145199695","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1128}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516788.67202937545,5277738.545643171],[516788.4225539184,5277731.309713717],[516790.3452653897,5277731.215232858],[516790.3401367104,5277732.993457078],[516794.2453778874,5277732.893581789],[516794.30476219987,5277738.339610129],[516788.67202937545,5277738.545643171]]]},"properties":{"ID_SOURCE":"w145199712","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1129}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.9778157622,5277758.18942548],[517274.54622188455,5277761.083719093],[517276.18774175027,5277764.645070088],[517262.9029833845,5277762.271720974],[517272.52955811756,5277757.4101155335],[517272.9778157622,5277758.18942548]]]},"properties":{"ID_SOURCE":"w145199726","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1130}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516619.6293858116,5277581.9090275755],[516618.2012820208,5277582.349510522],[516619.3169435474,5277586.131451677],[516611.12444702716,5277588.553148422],[516607.70329802216,5277576.873699197],[516617.2488183643,5277574.011299784],[516618.51346985856,5277578.215997581],[516619.6293858116,5277581.9090275755]]]},"properties":{"ID_SOURCE":"w145199732","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1131}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.22431139875,5276770.278760565],[516430.2407983634,5276781.164857856],[516415.60247340694,5276778.456221229],[516417.2820850899,5276768.791799414],[516423.61041238345,5276769.943269086],[516428.4673920661,5276770.823859214],[516428.69647565734,5276769.490828693],[516432.22431139875,5276770.278760565]]]},"properties":{"ID_SOURCE":"w145199742","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1132}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.598562462,5277470.247614064],[517047.87725226104,5277456.736744185],[517056.39114128397,5277457.528545718],[517055.88744014315,5277462.83955815],[517055.45341181435,5277467.43947929],[517054.9053587609,5277467.382303861],[517054.56431404693,5277471.004466187],[517046.598562462,5277470.247614064]]]},"properties":{"ID_SOURCE":"w145199744","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1133}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.0659374689,5277257.856784983],[517129.59687434736,5277256.080108739],[517128.17126713664,5277255.631355234],[517128.6261222664,5277254.187874764],[517131.8525141051,5277255.19762614],[517130.7916201125,5277258.417561478],[517129.0659374689,5277257.856784983]]]},"properties":{"ID_SOURCE":"w145199748","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1134}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.2027961482,5277444.580528358],[516360.1177173648,5277439.692946041],[516367.40757327614,5277437.824057725],[516367.0220833439,5277441.379449074],[516363.1138442752,5277442.479862051],[516362.50524873263,5277445.256647749],[516359.2027961482,5277444.580528358]]]},"properties":{"ID_SOURCE":"w145199760","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1135}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516913.20762452687,5277651.438984495],[516913.17921107804,5277661.219216443],[516909.87468380295,5277661.320757027],[516909.80217077397,5277660.4314269],[516906.14469396824,5277660.53194443],[516898.912345889,5277660.733226169],[516898.7876405495,5277651.95280924],[516913.20762452687,5277651.438984495]]]},"properties":{"ID_SOURCE":"w145199775","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1136}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.8210088191,5276856.949693304],[516426.7266689885,5276855.396291547],[516429.87704178755,5276856.849996086],[516425.6454039727,5276865.951517664],[516415.1437504848,5276861.254035217],[516418.6199284128,5276853.706332515],[516422.68553088605,5276855.540488871],[516425.8210088191,5276856.949693304]]]},"properties":{"ID_SOURCE":"w145199782","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1137}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.5290364502,5277691.441493311],[517149.19156885636,5277691.806312729],[517149.1109080966,5277693.695454577],[517138.29786166846,5277693.441332153],[517136.19519754517,5277693.435142516],[517136.20108608407,5277691.434640453],[517138.5290364502,5277691.441493311]]]},"properties":{"ID_SOURCE":"w145199789","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1138}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.23588252475,5277562.306815518],[517216.8850483616,5277553.970281655],[517218.76280078327,5277553.864695014],[517218.76970354444,5277551.530776469],[517225.0037393766,5277551.215797633],[517225.205769867,5277556.539999043],[517225.4220958865,5277562.108750697],[517217.23588252475,5277562.306815518]]]},"properties":{"ID_SOURCE":"w145199793","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1139}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.2633734079,5277650.927055184],[517305.22921247734,5277645.144702261],[517310.78927409067,5277644.160972535],[517314.2198818245,5277652.173252719],[517308.81034903164,5277653.04628671],[517308.36704430747,5277650.599889224],[517306.2633734079,5277650.927055184]]]},"properties":{"ID_SOURCE":"w145199826","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1140}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517181.52299790696,5277092.85748257],[517182.0444556251,5277145.205900331],[517162.89175147435,5277145.705113536],[517162.00294401177,5277039.56392373],[517180.85591068736,5277038.952681544],[517181.4613406588,5277088.300566147],[517181.52299790696,5277092.85748257]]]},"properties":{"ID_SOURCE":"w145199836","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1141}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.90735496255,5277480.068134649],[516837.22177445004,5277491.621809321],[516832.71815926937,5277490.830807341],[516833.17613649525,5277488.27591377],[516830.29360244784,5277487.845248609],[516826.3451289783,5277487.255908231],[516827.64781108726,5277478.257341519],[516838.90735496255,5277480.068134649]]]},"properties":{"ID_SOURCE":"w145199853","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1142}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516347.70144341077,5276779.821164273],[516355.6054611241,5276773.508393969],[516364.2866403355,5276784.646755586],[516355.8537592765,5276792.069426052],[516353.53325280425,5276789.284415678],[516354.7374584342,5276788.398679724],[516352.304789044,5276785.435531292],[516347.70144341077,5276779.821164273]]]},"properties":{"ID_SOURCE":"w145199896","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1143}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.29454351787,5277515.163186],[516984.44402513717,5277507.275605005],[516990.5240071147,5277508.293604544],[516991.13678840635,5277504.183215878],[516994.96514305664,5277504.750089556],[516993.8779630814,5277511.870984921],[516993.1277669363,5277516.747837721],[516983.29454351787,5277515.163186]]]},"properties":{"ID_SOURCE":"w145199899","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1144}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.86229650106,5277699.7561596595],[517293.07027974125,5277693.454462949],[517300.53983110504,5277706.924594038],[517292.0395733353,5277711.789498765],[517288.62542651204,5277705.822255464],[517285.988235351,5277701.213228996],[517283.43104415934,5277702.539316369],[517281.86229650106,5277699.7561596595]]]},"properties":{"ID_SOURCE":"w145199900","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1145}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.0978999462,5277340.135488573],[516608.45780324604,5277338.703105773],[516611.2852740029,5277347.935779733],[516604.6707733305,5277349.92854328],[516598.8830691797,5277351.679163732],[516596.7260918505,5277344.337784533],[516604.54374372965,5277341.803857822],[516604.0978999462,5277340.135488573]]]},"properties":{"ID_SOURCE":"w145199905","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1146}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516747.58180589415,5277299.31355737],[516747.3999494456,5277284.209127739],[516757.5385372797,5277284.227184975],[516757.64587497147,5277299.120234851],[516747.58180589415,5277299.31355737]]]},"properties":{"ID_SOURCE":"w145199931","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":1147}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.1107918204,5276719.106563762],[517264.788876457,5276718.429141201],[517264.9559898191,5276720.33012738],[517268.3217047266,5276720.040029338],[517274.5347934438,5276719.491643403],[517275.3633927734,5276728.807617557],[517258.1065014145,5276730.334635257],[517257.1107918204,5276719.106563762]]]},"properties":{"ID_SOURCE":"w145199945","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1148}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517105.1140177535,5277537.192107653],[517099.4931554629,5277533.285698277],[517104.6213162743,5277525.965526657],[517114.4384807543,5277532.996193245],[517109.6129884832,5277539.539266256],[517106.83259978064,5277537.586146961],[517105.4911362543,5277536.637515979],[517105.1140177535,5277537.192107653]]]},"properties":{"ID_SOURCE":"w145199966","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1149}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517294.1865497695,5276988.941818927],[517305.9746122551,5276990.088240136],[517305.6622053503,5276994.121688616],[517305.34999703453,5276998.088453809],[517301.22026099626,5276997.7427623775],[517301.06509950396,5276999.409399284],[517293.4812352975,5276998.831171728],[517294.1865497695,5276988.941818927]]]},"properties":{"ID_SOURCE":"w145199990","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1150}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.4866465984,5276965.508386825],[517260.8639967018,5276955.500990055],[517264.6812251169,5276954.867695418],[517270.1064857473,5276953.972436591],[517271.30142522673,5276961.311210912],[517271.75228355284,5276961.2347503025],[517273.746307332,5276962.507659499],[517273.8956592887,5276962.797066166],[517271.50380653894,5276963.979167647],[517270.977744976,5276964.088747172],[517262.4866465984,5276965.508386825]]]},"properties":{"ID_SOURCE":"w145200002","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1151}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516801.8644214753,5276731.99006071],[516802.6925284538,5276731.325611464],[516804.2640142084,5276733.330661753],[516803.4359073318,5276733.995110778],[516801.85512230464,5276735.213087047],[516800.2839568692,5276733.096898561],[516801.8644214753,5276731.99006071]]]},"properties":{"ID_SOURCE":"w145200027","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1152}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.04269481613,5277044.820975417],[516722.8841005644,5277034.17406849],[516740.7961658343,5277047.340036239],[516729.5623222627,5277062.422764093],[516718.77042659174,5277054.38970123],[516721.93785431224,5277049.842064273],[516715.04269481613,5277044.820975417]]]},"properties":{"ID_SOURCE":"w145200035","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1153}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516681.3854584009,5277598.978915342],[516674.09379117173,5277601.514244714],[516673.94550837734,5277600.8469806025],[516671.2920938017,5277601.71738694],[516668.23277813854,5277602.720000236],[516665.5534903734,5277594.265697289],[516678.25720111583,5277589.967620575],[516681.3854584009,5277598.978915342]]]},"properties":{"ID_SOURCE":"w145200058","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1154}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517109.460130801,5277591.552309646],[517101.7431513346,5277585.416938798],[517107.7730823964,5277577.877138723],[517111.33164696494,5277580.788349344],[517115.4146423225,5277584.123435694],[517114.96242935996,5277584.677805995],[517110.2140351195,5277590.554265791],[517109.460130801,5277591.552309646]]]},"properties":{"ID_SOURCE":"w145200093","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1155}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4484362991,5277181.676966661],[517304.3226958926,5277182.021899091],[517308.10683294863,5277182.366566201],[517307.4077922643,5277190.14428096],[517302.7525471536,5277189.77479758],[517302.2474771746,5277195.463659368],[517299.5797532132,5277196.000318094],[517300.0943450314,5277189.633531014],[517299.7490755641,5277189.565821217],[517300.4484362991,5277181.676966661]]]},"properties":{"ID_SOURCE":"w145200110","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1156}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516392.9671682374,5276841.742107808],[516393.4963526662,5276840.521060376],[516396.4214234223,5276841.974112429],[516391.9645094298,5276851.075023747],[516381.4643654101,5276845.82190796],[516385.24280957284,5276837.608197567],[516389.35997577617,5276839.80923674],[516392.9671682374,5276841.742107808]]]},"properties":{"ID_SOURCE":"w145200119","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1157}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516397.5427002329,5276763.846035065],[516401.9720165928,5276764.569803208],[516408.65354264394,5276765.655567564],[516406.89758495515,5276775.764335581],[516392.5590381258,5276773.278881102],[516394.468314754,5276762.059143272],[516397.69666987064,5276762.5127918655],[516397.5427002329,5276763.846035065]]]},"properties":{"ID_SOURCE":"w145200135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1158}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.84511304816,5277434.358718482],[516638.5647813451,5277446.705873229],[516627.1399982051,5277450.118570387],[516624.83416661015,5277442.332194671],[516630.24664604285,5277440.458274535],[516628.9823531964,5277436.120208397],[516634.84511304816,5277434.358718482]]]},"properties":{"ID_SOURCE":"w145200160","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1159}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516456.33729279035,5276875.373911835],[516456.7910677549,5276874.263796684],[516459.4911029859,5276875.605104937],[516454.4298165321,5276885.926798355],[516442.35477027786,5276879.891143606],[516446.73663578974,5276870.790058183],[516452.2420178158,5276873.417394235],[516456.33729279035,5276875.373911835]]]},"properties":{"ID_SOURCE":"w145200167","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1160}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.67091734573,5276734.63150343],[516482.3431100308,5276735.967082732],[516479.259300415,5276737.514311505],[516474.2560263844,5276727.275299909],[516487.1176739292,5276720.86559488],[516491.5241622773,5276729.658110895],[516485.3188849595,5276732.785795686],[516481.67091734573,5276734.63150343]]]},"properties":{"ID_SOURCE":"w145200169","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1161}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.42076373845,5277029.965005702],[517298.73537607916,5277025.186926093],[517296.7082345068,5277024.958624428],[517297.18295766466,5277016.846824441],[517305.0668832454,5277017.537088577],[517304.6818644773,5277023.259647444],[517304.20242831856,5277030.4267440755],[517298.42076373845,5277029.965005702]]]},"properties":{"ID_SOURCE":"w145200180","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1162}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517122.9916130201,5276871.739061793],[517128.5497651029,5276871.644268381],[517128.57093036914,5276889.982401481],[517123.3132178237,5276890.078078239],[517123.2149694072,5276872.406557504],[517122.9896521962,5276872.405894954],[517122.9916130201,5276871.739061793]]]},"properties":{"ID_SOURCE":"w145200185","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1163}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.34846033546,5277541.741286523],[516641.5601508885,5277539.038333818],[516640.04300398444,5277533.8437645435],[516647.70990899106,5277531.420605295],[516650.982082621,5277542.655091828],[516642.33861169324,5277545.186594972],[516641.3712451459,5277542.071912837],[516642.34846033546,5277541.741286523]]]},"properties":{"ID_SOURCE":"w145200205","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1164}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.46799227374,5277355.730324723],[516578.74563293066,5277355.400543079],[516577.9271333248,5277352.730856059],[516582.5120027685,5277351.410234294],[516585.41175835335,5277361.643360244],[516579.774555322,5277363.294402484],[516577.59509083617,5277363.843895788],[516577.8175409433,5277364.8447878435],[516573.60849626164,5277366.055343231],[516571.15425800206,5277357.601728796],[516577.46799227374,5277355.730324723]]]},"properties":{"ID_SOURCE":"w145200216","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1165}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516500.3904779438,5276807.9256037725],[516500.31318270427,5276811.348488988],[516500.2185358954,5276815.593759188],[516490.30479916185,5276815.454537258],[516490.26210903283,5276804.007022462],[516501.9784236097,5276804.151352078],[516501.96771547856,5276807.930073134],[516500.3904779438,5276807.9256037725]]]},"properties":{"ID_SOURCE":"w145200225","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1166}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517284.9577295636,5277529.78788214],[517286.63751346356,5277528.070200271],[517287.5810001403,5277528.995463378],[517286.64662598795,5277530.05963249],[517284.9577295636,5277529.78788214]]]},"properties":{"ID_SOURCE":"w145200236","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1167}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516551.8112818837,5276711.935654492],[516552.1899797671,5276710.825333514],[516555.1176043432,5276711.389354221],[516552.7620947842,5276720.940675693],[516541.57894383674,5276718.130405562],[516543.47936895303,5276710.133743138],[516548.9514122019,5276711.316258123],[516551.8112818837,5276711.935654492]]]},"properties":{"ID_SOURCE":"w145200238","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1168}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.49243007647,5276796.93894674],[516426.27956246206,5276800.892100055],[516424.3845306017,5276807.043896418],[516414.70455638994,5276803.904689663],[516418.8723955338,5276790.801950476],[516429.678363154,5276794.166620211],[516428.69319645804,5276797.275753438],[516427.49243007647,5276796.93894674]]]},"properties":{"ID_SOURCE":"w145200256","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1169}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.9829675512,5276832.693366587],[516569.28434117517,5276832.360804827],[516572.88216558855,5276834.927257573],[516571.9622642731,5276836.191632864],[516570.6955466802,5276837.921808367],[516567.09803936305,5276835.244218099],[516567.3243065448,5276834.911442556],[516568.3571825939,5276833.536248221],[516568.9829675512,5276832.693366587]]]},"properties":{"ID_SOURCE":"w145200263","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1170}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516341.3364873339,5277468.758840528],[516343.8534089882,5277454.984564574],[516344.76925176714,5277449.763562897],[516345.249631054,5277449.853823395],[516361.2824375294,5277452.81072081],[516358.4610219769,5277468.0289518805],[516357.77452290576,5277471.80577792],[516341.3364873339,5277468.758840528]]]},"properties":{"ID_SOURCE":"w145200300","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1171}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.981562874,5277620.111761936],[516802.687914643,5277617.776976093],[516802.5377224186,5277617.776542613],[516802.31628319185,5277616.442224479],[516804.3445202981,5277616.225798711],[516804.85992736695,5277619.783763868],[516802.981562874,5277620.111761936]]]},"properties":{"ID_SOURCE":"w145200305","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1172}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.3915035117,5277180.120457434],[516339.0814534799,5277175.1211026665],[516337.4366978809,5277172.449132373],[516338.8661278391,5277171.564024977],[516340.51088303636,5277174.235995669],[516339.8938502769,5277180.013533476],[516338.3915035117,5277180.120457434]]]},"properties":{"ID_SOURCE":"w145200339","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1173}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.76254435617,5277011.32254798],[517277.5950251812,5277012.009656357],[517276.73557668366,5277023.232232397],[517268.92675947386,5277022.542229338],[517269.17438073107,5277017.552783905],[517269.32601056475,5277014.541343354],[517270.527673101,5277014.544907327],[517270.76254435617,5277011.32254798]]]},"properties":{"ID_SOURCE":"w145200374","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1174}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.4951723747,5276888.528430904],[516470.8729004365,5276887.751520998],[516473.7982426821,5276889.0934732575],[516469.1168697577,5276897.860272361],[516458.6171934405,5276892.495877841],[516462.69551077625,5276884.505343788],[516467.29281865904,5276886.874505619],[516470.4951723747,5276888.528430904]]]},"properties":{"ID_SOURCE":"w145200376","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1175}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516644.518551423,5277596.984018195],[516642.4890430296,5277597.645055609],[516641.1493802703,5277593.417909969],[516651.7475122412,5277590.114016386],[516654.87040537194,5277601.014659677],[516646.60281840246,5277603.436091712],[516645.0321725196,5277598.574787229],[516644.518551423,5277596.984018195]]]},"properties":{"ID_SOURCE":"w145200378","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1176}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.02691785205,5277104.379283665],[517277.35030776873,5277112.201523419],[517272.5899866835,5277111.787296812],[517269.3538533827,5277111.510962284],[517269.47826979397,5277110.07762686],[517266.48239806405,5277109.8242345005],[517267.04208807147,5277103.435351275],[517278.02691785205,5277104.379283665]]]},"properties":{"ID_SOURCE":"w145200385","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1177}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.1345113902,5277729.1099529425],[516442.5891601256,5277727.666418305],[516450.99191315996,5277730.468654869],[516455.79325831763,5277732.149323381],[516452.8479544415,5277740.676543404],[516450.03895960626,5277748.804046494],[516445.2376265866,5277747.123382658],[516450.3867592378,5277732.022903478],[516442.1345113902,5277729.1099529425]]]},"properties":{"ID_SOURCE":"w145200432","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1178}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.9303636166,5277519.215644675],[517037.92417471454,5277529.437573266],[517033.6227600857,5277528.858173137],[517029.5165325102,5277528.301575106],[517030.5935778348,5277519.524671458],[517032.77042661887,5277519.86445943],[517033.00124637067,5277517.975755988],[517038.9319899492,5277518.659949805],[517038.9303636166,5277519.215644675]]]},"properties":{"ID_SOURCE":"w145200500","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1179}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517123.3132178237,5276890.078078239],[517123.16300680576,5276890.077636533],[517123.21915728773,5276896.523911494],[517120.59046737954,5276896.516182256],[517120.4357303834,5276872.5095255235],[517122.9896521962,5276872.405894954],[517123.2149694072,5276872.406557504],[517123.3132178237,5276890.078078239]]]},"properties":{"ID_SOURCE":"w145200516","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1180}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.7868080399,5277631.586477376],[516656.5225783435,5277627.248403805],[516659.75456809474,5277626.257392514],[516659.8303001757,5277626.035329417],[516663.23513924645,5277625.000358727],[516669.60137252643,5277623.062521453],[516672.0582175055,5277630.51593054],[516658.67905466666,5277634.700947849],[516657.7868080399,5277631.586477376]]]},"properties":{"ID_SOURCE":"w145200521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1181}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.55420472875,5277528.325899135],[517078.86837478017,5277536.837206027],[517073.77884034085,5277536.122096326],[517068.0205813332,5277535.527284486],[517068.72056784085,5277527.304981742],[517072.39935723913,5277527.649188128],[517072.5524849865,5277526.649377785],[517079.8349664755,5277527.337577407],[517079.55420472875,5277528.325899135]]]},"properties":{"ID_SOURCE":"w145200548","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1182}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516857.9045713346,5277558.810165494],[516867.59142422176,5277559.060502693],[516867.3503558271,5277564.505660151],[516866.3740974016,5277564.502831784],[516866.2927220764,5277566.669824413],[516866.1294886282,5277571.170518171],[516857.1185263136,5277570.9221402835],[516857.6041838348,5277558.809295698],[516857.9045713346,5277558.810165494]]]},"properties":{"ID_SOURCE":"w145200569","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1183}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.9901639523,5277484.975816006],[516417.83034318127,5277479.97689162],[516419.7347461199,5277470.424234589],[516426.4153325825,5277471.554478014],[516424.6608012175,5277481.21869559],[516424.2853119041,5277481.217636301],[516423.75210240134,5277483.883488706],[516416.9901639523,5277484.975816006]]]},"properties":{"ID_SOURCE":"w145200654","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1184}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.9460208584,5277644.955494274],[517279.2427754291,5277646.178914755],[517275.0344447083,5277647.166685456],[517274.81245528755,5277646.054627018],[517274.5868382216,5277646.165097523],[517274.21564643545,5277644.719176468],[517278.6492661594,5277643.732073812],[517278.9460208584,5277644.955494274]]]},"properties":{"ID_SOURCE":"w145200659","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1185}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.5062260521,5277719.369093528],[517235.8613374076,5277714.067982164],[517238.4004123977,5277718.854519274],[517237.14445315435,5277719.484298269],[517236.21937200613,5277719.959461192],[517237.26411785255,5277722.185354144],[517229.7444430467,5277725.608433282],[517227.78967767867,5277726.3806281],[517224.5062260521,5277719.369093528]]]},"properties":{"ID_SOURCE":"w145200681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1186}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516508.9171726998,5276714.481249308],[516513.92480942386,5276723.164346831],[516508.2371254031,5276726.515754539],[516505.27294047805,5276728.252246232],[516506.1695061396,5276729.921883446],[516501.27932699374,5276732.797657613],[516495.22458035854,5276722.5556485355],[516495.29968800966,5276722.555861284],[516508.9171726998,5276714.481249308]]]},"properties":{"ID_SOURCE":"w145200693","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1187}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.25540374493,5277004.144429533],[517286.7870710367,5277002.1454904],[517287.5374518078,5277002.369997866],[517287.6889797832,5277001.9258882925],[517291.2178810668,5277002.269785926],[517290.7484455252,5277008.603364075],[517285.94311015646,5277008.144537463],[517286.0667738064,5277006.966822038],[517286.25540374493,5277004.144429533]]]},"properties":{"ID_SOURCE":"w145200729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1188}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.45600202936,5277477.323498359],[517071.5730002417,5277476.522398783],[517071.6494017313,5277476.078063125],[517072.02521736885,5277475.9680251945],[517072.3737824864,5277472.34588586],[517072.72192434024,5277468.868227221],[517080.75516502064,5277469.658655066],[517079.98136151535,5277477.436179493],[517079.45600202936,5277477.323498359]]]},"properties":{"ID_SOURCE":"w145200754","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1189}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516401.9434454574,5277755.792408608],[516403.9194034861,5277752.786084737],[516411.86436620064,5277758.143192904],[516395.4794126012,5277763.209459601],[516399.41592445935,5277757.330132625],[516400.457825312,5277758.011021201],[516401.9434454574,5277755.792408608]]]},"properties":{"ID_SOURCE":"w145200755","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1190}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.5085806403,5277712.053446559],[516588.9201583838,5277711.743989875],[516597.3317370849,5277711.434545348],[516600.9369260533,5277711.222544974],[516566.1638753689,5277712.568308689],[516580.5085806403,5277712.053446559]]]},"properties":{"ID_SOURCE":"w145200776","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1191}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.2668703974,5276888.092453275],[517315.4063396285,5276899.648438233],[517315.7179976846,5276895.870610231],[517316.2668703974,5276888.092453275]]]},"properties":{"ID_SOURCE":"w145200777","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1192}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.71210992924,5277468.034676799],[516643.532508123,5277469.059187256],[516639.36513459135,5277455.710490349],[516648.1589331835,5277453.179412319],[516649.997045989,5277459.063968099],[516651.3589138218,5277463.413432122],[516649.63006839337,5277463.964187192],[516650.53042772604,5277466.878626851],[516646.71210992924,5277468.034676799]]]},"properties":{"ID_SOURCE":"w145200845","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1193}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.2671110201,5277560.869379301],[517240.1430519982,5277561.485485001],[517239.85977809585,5277555.705368568],[517243.9755834802,5277555.550847855],[517250.67505285447,5277555.292845093],[517250.9688542258,5277557.516514738],[517256.75197470345,5277557.311373778],[517256.97331223043,5277558.645709315],[517257.2671110201,5277560.869379301]]]},"properties":{"ID_SOURCE":"w145200857","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1194}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.492125547,5277619.992168546],[517232.837453986,5277619.367774168],[517233.33713662665,5277628.149310471],[517228.8085193742,5277628.247046778],[517224.5502478552,5277628.345586466],[517224.33318030497,5277625.566445139],[517217.50535833044,5277623.545728966],[517217.7329473166,5277622.768422309],[517218.492125547,5277619.992168546]]]},"properties":{"ID_SOURCE":"w145200865","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1195}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516664.68856172246,5277529.135242425],[516668.44660626666,5277528.0346017275],[516669.41427895945,5277531.038149338],[516670.2413031506,5277530.707097665],[516671.3491131231,5277534.600166014],[516672.99221013376,5277540.384145729],[516665.77588865324,5277542.808561535],[516661.98251607874,5277530.01661641],[516664.68856172246,5277529.135242425]]]},"properties":{"ID_SOURCE":"w145200889","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1196}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516484.35889001976,5276793.3208933715],[516482.2942785682,5276779.756000815],[516491.98716199544,5276778.3386269305],[516493.08667636843,5276785.254632877],[516493.61055439146,5276788.568080999],[516494.8125779785,5276788.460345926],[516495.25408913556,5276791.684649112],[516488.5667554266,5276792.665967896],[516484.35889001976,5276793.3208933715]]]},"properties":{"ID_SOURCE":"w145200957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1197}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.78731155,5276851.45582257],[516409.31618525565,5276850.345915415],[516412.01655567606,5276851.5760626905],[516407.70952305757,5276860.788524361],[516397.1346176939,5276855.42402968],[516398.71353328717,5276852.160967351],[516400.987557888,5276847.432818555],[516405.3449252073,5276849.679001557],[516408.78731155,5276851.45582257]]]},"properties":{"ID_SOURCE":"w145201000","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1198}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516368.09814424283,5277753.1298174225],[516368.6976490901,5277753.576062651],[516366.398272881,5277756.770426963],[516365.88105948985,5277756.435553215],[516359.01516287745,5277751.881747486],[516367.3096024634,5277739.790812505],[516374.0556059052,5277744.255378751],[516370.4283106359,5277749.668804612],[516368.09814424283,5277753.1298174225]]]},"properties":{"ID_SOURCE":"w145201057","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1199}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.48412443255,5276794.022096487],[517150.3646787903,5276783.574602619],[517154.9461986888,5276783.588097552],[517154.95864006644,5276779.364821479],[517158.4886661526,5276779.375221673],[517158.5516565704,5276783.487580205],[517158.5956533039,5276794.045991817],[517150.48412443255,5276794.022096487]]]},"properties":{"ID_SOURCE":"w145201095","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1200}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.455862022,5277058.910266782],[517269.7972994655,5277058.220708096],[517270.34958614176,5277051.798461746],[517270.80858518643,5277046.442881533],[517278.54259641527,5277047.021525471],[517278.23327824735,5277050.021384053],[517281.23675660224,5277050.252576871],[517280.53443915286,5277059.141682099],[517277.455862022,5277058.910266782]]]},"properties":{"ID_SOURCE":"w145201105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1201}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.9204221601,5277468.4681339385],[517263.27465006785,5277484.978604249],[517256.60444840905,5277480.402092193],[517235.66463721916,5277476.116746245],[517240.8042155304,5277467.551960543],[517242.45702595805,5277464.80058477],[517238.55850619066,5277462.566241595],[517249.2682095879,5277447.149510635],[517279.9204221601,5277468.4681339385]]]},"properties":{"ID_SOURCE":"w145201128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"commercial","ZINDEX":0,"ID_BUILD":1202}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5286628186,5276838.588707022],[516525.8491155407,5276835.3381762365],[516524.57357171696,5276834.889997462],[516525.63420512737,5276831.669954447],[516527.2101745297,5276832.118986097],[516528.3153058483,5276829.099121425],[516530.9190906311,5276822.015796167],[516540.2231256916,5276825.265268602],[516535.5286628186,5276838.588707022]]]},"properties":{"ID_SOURCE":"w145201139","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1203}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516725.1170121146,5277564.09531439],[516721.4027114315,5277549.969877733],[516730.7230415868,5277547.10701719],[516732.382277303,5277552.479842853],[516733.84804692055,5277557.229729516],[516730.9163936324,5277558.221562932],[516732.1824998774,5277561.892818373],[516730.3782596405,5277562.554472655],[516725.1170121146,5277564.09531439]]]},"properties":{"ID_SOURCE":"w145201165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1204}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517077.3087685207,5277390.072366343],[517077.579499518,5277400.186892098],[517074.42501860595,5277400.288780164],[517074.13928956015,5277395.286646349],[517074.815506419,5277395.17748955],[517074.67150121304,5277393.065408976],[517077.00804630754,5277390.1826241985],[517077.3087685207,5277390.072366343]]]},"properties":{"ID_SOURCE":"w145201170","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1205}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.1820750364,5277754.718339794],[517191.95969335176,5277749.936408649],[517194.1938786001,5277746.086449609],[517194.91846210894,5277744.843821944],[517198.06730860664,5277746.586907161],[517201.5910343205,5277748.531153749],[517195.9297337866,5277758.405886916],[517195.02991513617,5277757.95866912],[517189.1820750364,5277754.718339794]]]},"properties":{"ID_SOURCE":"w145201177","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1206}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516668.44660626666,5277528.0346017275],[516664.68856172246,5277529.135242425],[516660.5231889904,5277515.119695037],[516668.3403221837,5277512.696992754],[516669.9391656585,5277518.202994938],[516671.3149418472,5277522.930379633],[516670.3380400687,5277523.149862114],[516671.5284584642,5277527.043166983],[516668.44660626666,5277528.0346017275]]]},"properties":{"ID_SOURCE":"w145201273","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1207}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.9053024706,5277139.403584457],[517287.61059075966,5277129.514228742],[517295.04408035695,5277130.092003033],[517294.82849551894,5277134.403590207],[517294.64480050263,5277138.092888778],[517290.2147539523,5277137.746312558],[517290.0589389628,5277139.635227917],[517286.9804047673,5277139.4038074305],[517286.9053024706,5277139.403584457]]]},"properties":{"ID_SOURCE":"w145201286","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1208}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516898.84017796227,5277530.365884282],[516904.90584079665,5277531.139245124],[516907.7735222713,5277531.5032203095],[516907.6977795179,5277531.725280173],[516913.1028425986,5277532.407819203],[516912.8015367986,5277535.307695702],[516912.08241886954,5277539.851229287],[516897.84165613924,5277538.031640144],[516898.84017796227,5277530.365884282]]]},"properties":{"ID_SOURCE":"w145201315","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1209}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516617.8382586354,5277551.673864068],[516621.0366504774,5277562.463563724],[516612.09188362164,5277565.327671136],[516607.40136638616,5277551.088383287],[516613.56470921607,5277549.216589817],[516614.68133178604,5277552.665112908],[516616.8536002688,5277551.982245266],[516617.8382586354,5277551.673864068]]]},"properties":{"ID_SOURCE":"w145201316","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1210}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.21450936917,5277357.143414981],[516523.9059121814,5277363.913554696],[516540.6525228846,5277372.085429715],[516538.17480796756,5277377.168596342],[516535.19747266924,5277375.715321851],[516534.5704878453,5277377.002763502],[516537.5403127205,5277378.456016348],[516535.6669629954,5277382.285020421],[516532.6971396212,5277380.831768522],[516532.0399584471,5277382.174694634],[516534.994793036,5277383.61678965],[516532.50200496695,5277388.722143897],[516512.8005901205,5277379.10820679],[516517.90702816204,5277368.642204046],[516519.34694846265,5277369.346470374],[516522.36851956794,5277363.153440728],[516527.95840192406,5277351.710788192],[516532.9531511573,5277354.147817817],[516533.7914582054,5277352.494214627],[516535.30244434276,5277349.331020035],[516541.45962505013,5277352.338171601],[516542.1998948657,5277350.8287728885],[516544.8286762615,5277345.445959799],[516528.1494895336,5277337.307606836],[516535.4692950542,5277322.313397958],[516536.39176140307,5277322.76057721],[516539.9343111592,5277315.602119993],[516543.361676057,5277317.267840992],[516543.82243861735,5277316.335575543],[516549.7773223966,5277319.186564998],[516548.5988451632,5277321.6171778785],[516549.611304168,5277322.109070948],[516550.17787068133,5277320.943713062],[516555.8401098722,5277323.704965059],[516556.4519902603,5277322.450824753],[516571.55626721185,5277329.817910902],[516565.9360170613,5277341.338233226],[516556.8689822229,5277336.911304299],[516551.20345544163,5277348.520423908],[516546.27620381414,5277346.116912411],[516543.42833796766,5277351.954775716],[516544.43621918757,5277351.413054351],[516545.5481840443,5277356.528647182],[516544.26201875316,5277359.85918778],[516541.24793747807,5277363.407099033],[516539.14294470375,5277364.179097984],[516537.4150277062,5277364.396469481],[516534.56377651554,5277363.499252746],[516533.13941297476,5277362.6060890965],[516532.0918083343,5277361.269436191],[516530.67596366466,5277357.3755214745],[516529.1727123218,5277357.815812995],[516528.875469625,5277356.703570673],[516527.21450936917,5277357.143414981]]]},"properties":{"ID_SOURCE":"w145201330","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":1211}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516572.5243621491,5277390.747532919],[516564.4743941252,5277393.136359635],[516563.5526202322,5277389.810655515],[516565.2063802929,5277389.259661247],[516562.304706472,5277379.693378692],[516570.2724941996,5277377.159833235],[516571.97629099246,5277382.777245221],[516573.54617161665,5277387.949717139],[516571.8927267189,5277388.389570086],[516572.5243621491,5277390.747532919]]]},"properties":{"ID_SOURCE":"w145201413","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1212}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.55420472875,5277528.325899135],[517084.4044124644,5277528.7068917435],[517084.70044689573,5277525.073484677],[517089.8884970626,5277525.488815237],[517089.0079275006,5277536.377943924],[517084.51816027303,5277536.009119142],[517084.5651427995,5277535.3535314035],[517083.7768180354,5277535.284534146],[517083.6209491524,5277537.217911613],[517078.86837478017,5277536.837206027],[517079.55420472875,5277528.325899135]]]},"properties":{"ID_SOURCE":"w145201419","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1213}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.85723972163,5276716.977010619],[516645.94818407035,5276721.20629744],[516643.90661815676,5276725.979471208],[516642.4808440291,5276725.530837391],[516644.3702876456,5276721.424066816],[516642.80223768455,5276718.196532635],[516638.44980093907,5276716.850418482],[516639.12989868957,5276715.407544977],[516643.85723972163,5276716.977010619]]]},"properties":{"ID_SOURCE":"w145201424","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1214}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.3696908357,5277743.113387293],[516474.2407467909,5277741.314970401],[516473.7094242488,5277743.31398521],[516467.78104707506,5277741.852393426],[516471.65489084227,5277726.303765908],[516480.2093945172,5277728.550774533],[516479.75379266666,5277730.3277233085],[516485.3818001258,5277731.788476628],[516481.3696908357,5277743.113387293]]]},"properties":{"ID_SOURCE":"w145201433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1215}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516524.4826023722,5276787.544205692],[516524.33428096725,5276786.876946331],[516520.42714976956,5276787.421559415],[516519.6179999031,5276781.417717715],[516523.3746058953,5276780.98381671],[516522.8887074904,5276777.525991963],[516522.12301475013,5276772.089085999],[516532.0412420527,5276770.67241804],[516534.25153699174,5276785.793698716],[516524.4826023722,5276787.544205692]]]},"properties":{"ID_SOURCE":"w145201452","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1216}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516810.37561806856,5276983.857381007],[516806.7545310764,5276963.397203874],[516787.44304853363,5276966.675691675],[516786.9997906903,5276964.118198313],[516779.8610158738,5276965.4313000385],[516775.86876843293,5276943.41411661],[516822.6837882295,5276934.991412053],[516826.74647328013,5276958.564789018],[516821.2609467921,5276959.549198286],[516822.36728806054,5276966.55420217],[516826.1241194602,5276966.009357691],[516827.96929290047,5276977.239810492],[516824.4377816636,5276977.785304772],[516825.6169717671,5276985.568498678],[516814.7220389032,5276987.204124691],[516814.1327580772,5276983.201389924],[516810.37561806856,5276983.857381007]]]},"properties":{"ID_SOURCE":"w145201468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1217}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517049.09251673607,5277434.11221624],[517049.4023489533,5277430.890066093],[517046.32428537216,5277430.547633429],[517046.943296599,5277424.325610828],[517050.0964620503,5277424.668263732],[517050.17448990233,5277423.668233039],[517059.7087586544,5277424.807561128],[517059.16896802915,5277429.618337683],[517058.55199572816,5277435.140183624],[517049.09251673607,5277434.11221624]]]},"properties":{"ID_SOURCE":"w145201470","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1218}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.944905521,5277060.61287338],[516640.7940636925,5277060.834721905],[516642.0679608506,5277061.838620922],[516639.05271414976,5277065.719897077],[516637.70371408906,5277064.715784116],[516637.7788173306,5277064.715998712],[516635.08081584057,5277062.7077737],[516638.24690320314,5277058.604646916],[516640.944905521,5277060.61287338]]]},"properties":{"ID_SOURCE":"w145201471","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1219}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516598.5554321972,5276776.340816724],[516599.67506684165,5276778.789082731],[516598.622619486,5276779.119502028],[516598.8463563026,5276779.675838526],[516595.98880936485,5276780.890231319],[516594.571912951,5276777.329721398],[516597.50425152725,5276776.22668083],[516597.6531983781,5276776.671664361],[516598.5554321972,5276776.340816724]]]},"properties":{"ID_SOURCE":"w145201474","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1220}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.95334432827,5277220.286854604],[517280.4313558937,5277220.405348379],[517280.656989503,5277220.2948781345],[517280.9573945232,5277220.295769717],[517281.1069373175,5277220.5184933515],[517281.5582045634,5277220.297552924],[517281.62736818875,5277222.298276383],[517277.9477377607,5277222.176216242],[517277.95334432827,5277220.286854604]]]},"properties":{"ID_SOURCE":"w145201475","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1221}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516705.0589977392,5276990.6672399705],[516704.0794549482,5276991.775827899],[516692.31358566927,5276982.850903541],[516693.0674961487,5276981.852806606],[516689.9198045887,5276979.509848015],[516716.6829872374,5276944.355303653],[516738.34163051867,5276960.643931693],[516711.8040220187,5276995.687885306],[516705.0589977392,5276990.6672399705]]]},"properties":{"ID_SOURCE":"w145201505","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1222}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517180.6197239343,5277678.89560096],[517178.07008982904,5277677.66553752],[517179.50674050034,5277674.335577796],[517182.2062385095,5277675.677224132],[517184.9280439812,5277669.461419743],[517192.20245716895,5277672.817096539],[517191.28022157686,5277674.870462554],[517187.9692230363,5277682.251494157],[517180.6197239343,5277678.89560096]]]},"properties":{"ID_SOURCE":"w145201515","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1223}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.1128812888,5276760.544712285],[516523.1309403669,5276760.977971567],[516518.09655420756,5276761.741667409],[516517.1088430579,5276755.137165249],[516516.03263991023,5276747.954485718],[516526.2510206993,5276746.649798776],[516527.64840975485,5276757.100900196],[516528.7002260835,5276756.992745774],[516529.06661385304,5276760.216838226],[516527.1128812888,5276760.544712285]]]},"properties":{"ID_SOURCE":"w145201532","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1224}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516610.1281548161,5277463.962495624],[516608.49165876576,5277458.467517283],[516606.7807587789,5277452.727819521],[516615.1233234934,5277450.417684329],[516615.1974702471,5277450.751315545],[516618.579747129,5277449.760710096],[516620.7366568126,5277457.102098765],[516617.4291647664,5277458.204056279],[516618.3214602743,5277461.318519602],[516610.1281548161,5277463.962495624]]]},"properties":{"ID_SOURCE":"w145201536","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1225}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.2736425941,5277674.4959609145],[517270.0633943471,5277672.369597018],[517267.91182139947,5277668.595569571],[517276.8630246098,5277663.620827976],[517283.06328979955,5277674.642089369],[517274.3373840933,5277679.61748996],[517274.0383218586,5277679.17204266],[517272.53377720685,5277680.056698404],[517269.84452223853,5277675.269701135],[517271.2736425941,5277674.4959609145]]]},"properties":{"ID_SOURCE":"w145201538","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1226}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.9654762633,5277128.128188331],[517277.32386682415,5277128.705717237],[517277.47407169716,5277128.706162933],[517277.0007028933,5277136.373410252],[517272.94583607005,5277136.139100308],[517272.71525401954,5277137.916654416],[517269.33663862216,5277137.573213214],[517269.60010072,5277132.305964193],[517269.81560101005,5277128.016603924],[517269.9654762633,5277128.128188331]]]},"properties":{"ID_SOURCE":"w145201543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1227}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.03447190486,5277283.4181291675],[516474.6393633505,5277281.975022929],[516475.6222732689,5277279.643867795],[516476.076021034,5277278.533753506],[516479.9105494328,5277276.988648018],[516481.70257942437,5277280.661334836],[516483.8782899845,5277281.445472913],[516481.8367352992,5277286.329845872],[516474.03447190486,5277283.4181291675]]]},"properties":{"ID_SOURCE":"w145201544","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1228}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517052.2106550375,5277497.693381194],[517051.30980850407,5277497.579602831],[517044.7776126296,5277497.115915505],[517045.0880901581,5277493.6714868825],[517041.5594732019,5277493.3277374655],[517041.9515531968,5277487.6607491365],[517045.70579234266,5277487.894019423],[517053.0634231252,5277488.582405263],[517052.5982854577,5277493.548997405],[517052.2106550375,5277497.693381194]]]},"properties":{"ID_SOURCE":"w145201547","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1229}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.2735769887,5277749.1731302375],[517263.68622498517,5277751.382324515],[517262.5581611303,5277751.934679317],[517260.5464294135,5277746.593994809],[517265.35906745127,5277744.385466203],[517266.8517273876,5277747.501812975],[517267.52856643527,5277747.170400568],[517268.4991899578,5277749.0626594825],[517268.2735769887,5277749.1731302375]]]},"properties":{"ID_SOURCE":"w145201562","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1230}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.2726181079,5277265.696563462],[517263.9936722968,5277267.813324472],[517265.0450812759,5277267.816442085],[517264.8876298101,5277270.261053119],[517263.91132188187,5277270.258158212],[517261.95376355667,5277271.91945282],[517260.602282438,5277271.804306281],[517260.85113777104,5277268.926520474],[517261.14643756056,5277265.582084779],[517262.2726181079,5277265.696563462]]]},"properties":{"ID_SOURCE":"w145201597","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1231}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516609.2907062783,5277441.620992353],[516610.25842416444,5277444.624529618],[516604.39441433485,5277446.830600138],[516603.2771309917,5277443.604357583],[516600.64615348855,5277444.485974196],[516599.1939667794,5277440.191834814],[516597.5183201709,5277435.252447569],[516605.185336686,5277432.829232428],[516608.16296245053,5277442.062334715],[516609.2907062783,5277441.620992353]]]},"properties":{"ID_SOURCE":"w145201620","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1232}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.6512433471,5277047.469987041],[516699.43232252443,5277040.886291875],[516694.530198495,5277047.985182768],[516691.90699353215,5277046.088285671],[516698.76818336523,5277036.772214335],[516710.1711734424,5277041.250519352],[516715.04269481613,5277044.820975417],[516711.4991146569,5277049.589816127],[516708.6512433471,5277047.469987041]]]},"properties":{"ID_SOURCE":"w145201625","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1233}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.96430552274,5276762.49728415],[516469.6295689701,5276759.070405218],[516479.6151247489,5276755.097624438],[516483.32913405244,5276764.410531948],[516478.55442326615,5276766.308622293],[516476.291152944,5276767.202450142],[516476.9102020675,5276768.737930066],[516473.8724500676,5276769.940758801],[516473.49952437927,5276769.017244008],[516470.0331602116,5276770.396685848],[516467.4529366806,5276763.85437229],[516470.96430552274,5276762.49728415]]]},"properties":{"ID_SOURCE":"w145201628","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1234}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516666.3712969358,5277649.615711893],[516676.2180656535,5277646.4208519915],[516678.67457367247,5277653.985403189],[516672.8943714942,5277655.835996859],[516668.6776251433,5277657.179828923],[516667.93239670235,5277655.177176808],[516665.1516315182,5277655.947195356],[516663.1431362439,5277649.2730515115],[516665.92454065406,5277648.280754004],[516666.3712969358,5277649.615711893]]]},"properties":{"ID_SOURCE":"w145201630","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1235}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.7690603874,5276804.007617156],[517289.9651780321,5276804.4482580535],[517289.610466454,5276797.434281873],[517281.3474091607,5276797.854313639],[517280.9216036218,5276789.484221298],[517287.7724336316,5276789.137794064],[517294.0823963722,5276788.8231105395],[517294.40874383063,5276795.270189575],[517298.3149214394,5276795.070626046],[517298.7690603874,5276804.007617156]]]},"properties":{"ID_SOURCE":"w145201671","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1236}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516810.3998160378,5277087.339735558],[516820.2912604613,5277087.23493294],[516820.36879652686,5277094.192510207],[516820.5990273748,5277115.887670372],[516820.812311659,5277135.648949178],[516820.9428936547,5277147.641314913],[516810.90885768377,5277147.7457042085],[516810.97947093146,5277154.50321026],[516802.83057358506,5277154.590828481],[516780.9674911249,5277154.827855065],[516776.829206206,5277154.871499817],[516776.72316277196,5277144.757469305],[516811.01618101646,5277144.389590974],[516810.3998160378,5277087.339735558]]]},"properties":{"ID_SOURCE":"w145201678","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1237}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.2596361006,5277685.076291969],[517138.62212689593,5277685.32906923],[517138.62179970986,5277685.440208232],[517138.5290364502,5277691.441493311],[517136.20108608407,5277691.434640453],[517136.19519754517,5277693.435142516],[517136.10799822526,5277697.54706462],[517128.14791823155,5277697.523639407],[517128.2596361006,5277685.076291969]]]},"properties":{"ID_SOURCE":"w145201708","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1238}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516730.8165008331,5277645.2438250035],[516732.8987379986,5277652.362764174],[516730.26751525165,5277653.355461321],[516730.3413333467,5277653.800233135],[516727.3496845844,5277654.780781831],[516723.9521373666,5277655.893533934],[516724.24996565655,5277656.783508855],[516720.7169608541,5277657.995899634],[516718.18860498234,5277649.319724858],[516730.8165008331,5277645.2438250035]]]},"properties":{"ID_SOURCE":"w145201718","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1239}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.7432532724,5277583.287261583],[517011.5609752487,5277582.151947697],[517012.2482111683,5277578.2640581615],[517009.9211898245,5277577.923838955],[517011.08172090404,5277571.403315767],[517011.982573658,5277566.371309136],[517020.01370553864,5277567.839601394],[517018.029027234,5277578.836653027],[517020.4311443723,5277579.17709502],[517019.7432532724,5277583.287261583]]]},"properties":{"ID_SOURCE":"w145201723","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1240}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517028.67422527476,5277687.896066208],[517022.11364461074,5277697.21263604],[517013.8697492571,5277691.52039956],[517016.2835147342,5277687.85983586],[517017.4076688561,5277688.641101465],[517017.78476928454,5277688.086504021],[517018.1618697825,5277687.531906603],[517016.962295452,5277686.861560348],[517020.3562025153,5277681.870183982],[517028.67422527476,5277687.896066208]]]},"properties":{"ID_SOURCE":"w145201728","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1241}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516592.0997945436,5277412.897890353],[516594.7307849683,5277412.0162698915],[516596.9622040734,5277419.5801411895],[516594.25643483043,5277420.350407636],[516594.0330394523,5277419.682931736],[516583.96095479873,5277422.7661495935],[516581.35624213633,5277414.423241149],[516586.55006031384,5277412.859849288],[516591.57853732386,5277411.340446814],[516592.0997945436,5277412.897890353]]]},"properties":{"ID_SOURCE":"w145201735","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1242}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.7153751935,5277624.244206309],[517266.6771202515,5277629.137217257],[517262.91233995947,5277629.959602338],[517259.16257993435,5277630.782034374],[517258.1263917516,5277625.666524069],[517258.9527775083,5277625.55783391],[517261.95859578706,5277624.89990579],[517261.0745782743,5277619.118006402],[517264.8316908911,5277618.351167357],[517265.7153751935,5277624.244206309]]]},"properties":{"ID_SOURCE":"w145201747","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1243}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.04647822666,5276738.079651586],[516600.2698996992,5276738.747126941],[516597.9384012187,5276739.851878646],[516597.48997396545,5276739.072622334],[516597.0386958184,5276739.2936156355],[516595.46999113966,5276736.288371838],[516599.0044775752,5276734.742489036],[516600.5731808583,5276737.747733781],[516600.04647822666,5276738.079651586]]]},"properties":{"ID_SOURCE":"w145201759","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1244}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.86627530097,5276894.471994372],[517293.6549089044,5276897.361002562],[517293.31809316424,5276902.027875713],[517289.33816903067,5276901.793777886],[517289.1013037164,5276905.682969149],[517282.7941067063,5276905.108546906],[517283.18183829414,5276900.997523502],[517285.65965579066,5276901.227157971],[517286.28227367415,5276893.893776621],[517293.86627530097,5276894.471994372]]]},"properties":{"ID_SOURCE":"w145201771","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1245}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516602.98359054496,5276735.309531168],[516604.10893533163,5276735.757298706],[516602.66985246376,5276739.976505981],[516597.78090071474,5276742.407643878],[516593.27952377335,5276740.616579907],[516593.73333519144,5276739.506475578],[516597.85980933515,5276741.074191839],[516601.54514206375,5276739.306461034],[516602.98359054496,5276735.309531168]]]},"properties":{"ID_SOURCE":"w145201773","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1246}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.81665981037,5277521.422476267],[516722.3066687181,5277522.854339191],[516722.6414782802,5277523.944471836],[516723.4970524785,5277526.747654764],[516718.0101635918,5277528.398994742],[516716.74499831774,5277524.394325681],[516717.94783190987,5277523.953219958],[516714.97169921704,5277514.27550392],[516723.6913032944,5277511.410907339],[516726.81665981037,5277521.422476267]]]},"properties":{"ID_SOURCE":"w145201776","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1247}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517074.8177264459,5277445.635016322],[517083.22645798855,5277446.437662605],[517082.76151977543,5277451.326454804],[517090.5701084802,5277451.905071047],[517089.95105329354,5277458.127089386],[517078.6889342764,5277457.204922435],[517078.7514905819,5277456.360442555],[517078.8449990512,5277455.204861699],[517073.8901462684,5277454.634629352],[517074.8177264459,5277445.635016322]]]},"properties":{"ID_SOURCE":"w145201778","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1248}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.46285137616,5276799.06162681],[517167.72140037076,5276799.074179949],[517172.77608021605,5276799.089083927],[517172.8882746008,5276811.981633281],[517163.4245257719,5276812.064872047],[517163.50258042733,5276811.064843774],[517144.1995479448,5276811.23026158],[517144.15781590587,5276799.893877926],[517163.46055839205,5276799.839598739],[517163.46285137616,5276799.06162681]]]},"properties":{"ID_SOURCE":"w145201781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1249}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517048.89479992347,5277552.92021458],[517053.0979507363,5277553.710504165],[517050.96203517035,5277565.040521494],[517043.6064530121,5277563.685304104],[517042.91984518775,5277567.350911939],[517037.2901893003,5277566.445314971],[517039.6559224978,5277553.560006323],[517044.82743411366,5277554.486492149],[517048.437709151,5277555.141674716],[517048.89479992347,5277552.92021458]]]},"properties":{"ID_SOURCE":"w145201783","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1250}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.3140977976,5276961.228161117],[517130.27070749016,5276950.4474693155],[517130.87154533603,5276950.449236907],[517130.8718722981,5276950.3380980315],[517138.4574502347,5276950.360419199],[517138.4489454403,5276953.250029925],[517138.5080217919,5276958.696055837],[517138.57625709096,5276961.030193273],[517130.3140977976,5276961.228161117]]]},"properties":{"ID_SOURCE":"w145201788","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1251}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517011.6794280985,5277515.912896374],[517010.4522160435,5277524.689364563],[517005.39263689687,5277523.996630267],[517000.4681668699,5277523.326522886],[517001.7707861394,5277514.4391329745],[517002.5214360873,5277514.5524650505],[517002.98240733123,5277510.997333809],[517009.21257724555,5277512.01579153],[517008.75160226994,5277515.570922295],[517011.6794280985,5277515.912896374]]]},"properties":{"ID_SOURCE":"w145201791","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1252}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516689.60807847267,5277698.694984154],[516689.6600077831,5277698.9174128715],[516636.9378743218,5277700.655884599],[516636.730057553,5277694.5425952785],[516636.9582013982,5277693.542988009],[516658.8882056398,5277692.827720934],[516677.7389961586,5277692.214854275],[516689.37970003695,5277691.914794207],[516689.60807847267,5277698.694984154]]]},"properties":{"ID_SOURCE":"w145201794","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1253}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.49800025014,5277213.220217558],[516761.5446268322,5277223.111798014],[516752.17915517266,5277223.20709852],[516730.9322270828,5277223.423856467],[516707.8152174773,5277223.657553363],[516693.7256918652,5277223.806077918],[516693.74034961197,5277218.693687349],[516683.6013614437,5277218.775766508],[516683.26603045507,5277178.54218575],[516693.33030552795,5277178.348751615],[516693.38053145993,5277184.406016457],[516693.56634963,5277208.657261131],[516693.6038487702,5277213.914282948],[516761.49800025014,5277213.220217558]]]},"properties":{"ID_SOURCE":"w145201796","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1254}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.84869128384,5277471.434697155],[517108.4640527,5277470.517992847],[517108.8506470628,5277466.740371465],[517108.0248948672,5277466.626805022],[517108.51287251175,5277461.5713724345],[517109.10925444565,5277455.4048592625],[517117.4428691984,5277456.207334335],[517116.1328727653,5277467.539755219],[517118.3854878027,5277467.657517988],[517117.84869128384,5277471.434697155]]]},"properties":{"ID_SOURCE":"w145201808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1255}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.2103336844,5277697.664393235],[517138.29786166846,5277693.441332153],[517149.1109080966,5277693.695454577],[517151.66414300405,5277693.702976327],[517150.79630152544,5277733.377389455],[517156.8789667589,5277733.395312629],[517156.6173263522,5277745.731078981],[517137.0937447538,5277745.340154082],[517138.2103336844,5277697.664393235]]]},"properties":{"ID_SOURCE":"w145201810","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1256}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.36218788003,5277721.510736306],[516433.58313144324,5277725.751610134],[516428.53171331104,5277732.850306545],[516417.88865075633,5277725.596187896],[516421.0788252476,5277720.759485979],[516422.7908130573,5277718.163641613],[516423.16566002596,5277718.38697887],[516424.97546088556,5277715.724727151],[516429.3228065987,5277718.626631699],[516427.36218788003,5277721.510736306]]]},"properties":{"ID_SOURCE":"w145201821","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1257}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516483.4578926005,5277270.774859265],[516484.28494293033,5277270.443781251],[516482.19628420414,5277265.436576086],[516483.8507009681,5277264.663280883],[516486.0141444635,5277269.781838217],[516487.06681157503,5277269.3402595995],[516487.9617242665,5277271.565590292],[516484.35280644434,5277273.000189408],[516483.4578926005,5277270.774859265]]]},"properties":{"ID_SOURCE":"w145201827","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1258}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516922.7291235034,5277631.016905863],[516923.64545945486,5277625.795992669],[516937.1562751129,5277628.058082432],[516936.92807718547,5277629.057677957],[516935.70552664576,5277636.2782172],[516929.7982605009,5277635.305232275],[516925.42223798856,5277634.581212754],[516925.1179771219,5277635.914007412],[516921.96491918655,5277635.571421824],[516922.7291235034,5277631.016905863]]]},"properties":{"ID_SOURCE":"w145201840","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1259}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.4743941252,5277393.136359635],[516572.5243621491,5277390.747532919],[516573.3426689233,5277393.483902719],[516574.7256611537,5277393.076622209],[516575.8935460731,5277397.003184063],[516577.50784572324,5277402.39806338],[516572.5395703788,5277403.873193423],[516571.051347561,5277404.313516895],[516571.5869031086,5277406.126620921],[516564.8072332041,5277408.130073392],[516563.2822200361,5277403.024415236],[516568.6413242452,5277401.439249649],[516566.86341123126,5277395.477094006],[516565.3075343987,5277395.939454414],[516564.4743941252,5277393.136359635]]]},"properties":{"ID_SOURCE":"w145201849","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1260}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.12374147336,5277541.415130632],[517211.6647328096,5277541.6183118345],[517211.5991640733,5277538.395059513],[517220.00971609884,5277538.531069982],[517219.2106016152,5277529.415230757],[517225.8959024374,5277528.8793075625],[517226.33563418576,5277532.548226912],[517226.4939422645,5277534.882634234],[517226.9110900095,5277541.107705671],[517218.12374147336,5277541.415130632]]]},"properties":{"ID_SOURCE":"w145201852","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1261}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516389.1761863108,5277708.177460778],[516396.0714606529,5277712.975892134],[516392.21758941456,5277718.833225812],[516389.4346391009,5277723.07093441],[516388.0854366446,5277722.178017001],[516385.9740245307,5277725.283990756],[516379.0784438977,5277720.596710273],[516381.26557427336,5277717.268667322],[516382.54030962026,5277717.93909378],[516389.1761863108,5277708.177460778]]]},"properties":{"ID_SOURCE":"w145201913","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1262}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517254.63904100156,5277611.430271562],[517245.14197493275,5277613.058117362],[517242.39210490935,5277613.505646277],[517241.95963114715,5277607.391667473],[517247.2265130237,5277606.518148647],[517253.8307691062,5277605.426318012],[517253.97865601524,5277606.204736043],[517263.220111785,5277604.676172615],[517264.0303515528,5277610.013293554],[517256.06652781216,5277611.212222592],[517254.63904100156,5277611.430271562]]]},"properties":{"ID_SOURCE":"w145201917","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1263}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516771.5108877847,5276917.950550124],[516774.2471974396,5276932.740024608],[516759.5943754739,5276935.25404841],[516756.7822851298,5276920.686642459],[516751.22163009655,5276921.670901578],[516749.74510308146,5276912.775470929],[516764.0237307893,5276909.81578571],[516765.72459221276,5276919.045285326],[516771.5108877847,5276917.950550124]]]},"properties":{"ID_SOURCE":"w145201929","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1264}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516330.16412933957,5276819.893400734],[516338.454831923,5276809.580661167],[516342.906209469,5276813.138509661],[516347.37254046166,5276816.718631525],[516339.08214392036,5276826.9202196635],[516336.1592338887,5276824.6892244825],[516336.6871607317,5276823.912727381],[516333.53955263307,5276821.4588236995],[516333.0122494365,5276822.013043363],[516330.16412933957,5276819.893400734]]]},"properties":{"ID_SOURCE":"w145201949","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1265}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.2225135415,5277381.123801015],[516634.470886875,5277381.343933237],[516635.4389196126,5277384.236335458],[516629.4255936004,5277386.108534709],[516628.5329747514,5277383.105209021],[516627.4806346747,5277383.435623161],[516626.1856843593,5277379.308636276],[516624.28056703345,5277373.201617975],[516631.87257707876,5277370.778223567],[516635.2225135415,5277381.123801015]]]},"properties":{"ID_SOURCE":"w145201956","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1266}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517209.0318520954,5277644.748408378],[517206.6812177112,5277652.410118041],[517195.8031773493,5277648.710358209],[517196.1816105146,5277647.711216326],[517192.80591264693,5277646.478706585],[517194.7003756553,5277640.705023521],[517196.8086971894,5277641.34474869],[517198.3767880634,5277641.827282718],[517198.5282929964,5277641.383170436],[517209.0318520954,5277644.748408378]]]},"properties":{"ID_SOURCE":"w145201957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1267}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516867.59142422176,5277559.060502693],[516857.9045713346,5277558.810165494],[516857.9077894813,5277557.698775664],[516855.2046232239,5277557.579809076],[516855.3009565579,5277550.244853675],[516858.07922320574,5277550.364037755],[516858.15850382956,5277548.919448451],[516867.99492315657,5277549.392499153],[516867.8174414367,5277553.626415673],[516867.59142422176,5277559.060502693]]]},"properties":{"ID_SOURCE":"w145201980","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1268}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.81398893544,5277526.844155254],[516639.3928129256,5277522.22778799],[516637.76326756214,5277516.943986337],[516645.95651141147,5277514.30004913],[516646.17957935884,5277515.078666123],[516649.0355065616,5277514.308853286],[516650.9711934708,5277520.204803065],[516648.03985373245,5277521.085539188],[516649.0072202961,5277524.200222327],[516640.81398893544,5277526.844155254]]]},"properties":{"ID_SOURCE":"w145201981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1269}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.0787587174,5277278.581084946],[516568.3079473764,5277275.794703723],[516566.80150982965,5277277.346374888],[516557.88888723886,5277268.763254893],[516564.3668265252,5277262.00215068],[516573.35455063445,5277270.585494272],[516575.23776024947,5277268.590338036],[516578.15877289535,5277271.377150192],[516571.0787587174,5277278.581084946]]]},"properties":{"ID_SOURCE":"w145201984","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1270}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.129186849,5276928.12142589],[517280.09813969815,5276927.773074372],[517279.5542655858,5276933.884152051],[517275.1991676878,5276933.537810618],[517275.8188017431,5276927.204677629],[517277.5455580296,5276927.432080518],[517278.3193627417,5276919.7657271335],[517285.82789634453,5276920.454850529],[517285.42428528774,5276924.854790354],[517285.129186849,5276928.12142589]]]},"properties":{"ID_SOURCE":"w145202017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1271}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.12499784253,5276718.63915617],[516643.3942055795,5276721.310137338],[516642.49164305587,5276721.752116866],[516642.79048559594,5276722.308669652],[516639.70694327063,5276723.744674703],[516637.9148384485,5276720.071942647],[516640.99838226405,5276718.635936653],[516641.2975427052,5276719.081350522],[516642.12499784253,5276718.63915617]]]},"properties":{"ID_SOURCE":"w145202021","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1272}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.49637277395,5276741.842710898],[516632.5117233147,5276744.729531979],[516629.51028493437,5276743.720702426],[516628.9807249113,5276745.052867203],[516625.3039542864,5276743.819831916],[516625.7584061779,5276742.487452376],[516627.6341870867,5276743.15964652],[516628.6939418057,5276740.273039097],[516633.49637277395,5276741.842710898]]]},"properties":{"ID_SOURCE":"w145202028","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1273}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.063590856,5276774.233460432],[516602.3022250389,5276779.352270934],[516600.8622035109,5276783.904895468],[516599.36165027454,5276783.344919181],[516600.6514569064,5276778.791866063],[516599.2329788263,5276775.787049254],[516594.7313114974,5276774.107122857],[516595.1863875175,5276772.552463192],[516600.063590856,5276774.233460432]]]},"properties":{"ID_SOURCE":"w145202032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1274}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517026.25879133854,5277615.092335448],[517026.1089240612,5277614.980757209],[517027.0920001378,5277612.649693573],[517024.61707602924,5277611.53105624],[517027.03868219233,5277605.20316161],[517029.8136685116,5277606.433817617],[517030.3435688213,5277604.990548467],[517039.1184493741,5277608.906121909],[517036.93463830015,5277613.523152377],[517034.2823730947,5277619.116844486],[517026.25879133854,5277615.092335448]]]},"properties":{"ID_SOURCE":"w145202034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1275}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.1562751129,5277628.058082432],[516938.15063068754,5277621.837139045],[516941.8290441597,5277622.292402098],[516941.83001442935,5277621.9589851145],[516953.31453380524,5277623.770656275],[516952.1641452216,5277631.991661687],[516944.7031029442,5277630.769629621],[516940.37958130485,5277630.067979667],[516940.3808748906,5277629.623423686],[516936.92807718547,5277629.057677957],[516937.1562751129,5277628.058082432]]]},"properties":{"ID_SOURCE":"w145202041","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1276}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516896.41437299247,5277589.92984013],[516896.564565942,5277589.930276029],[516896.3212136206,5277596.15340554],[516899.02436122263,5277596.272391274],[516898.78294207854,5277601.828686805],[516896.07979705255,5277601.709701176],[516896.0791519558,5277601.931979157],[516888.34519818693,5277601.576119021],[516888.55850324134,5277595.352902007],[516888.75549977086,5277589.57419744],[516896.41437299247,5277589.92984013]]]},"properties":{"ID_SOURCE":"w145202043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1277}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.3705494745,5276849.101758041],[516484.1217604418,5276850.557192441],[516480.56535699585,5276859.882865472],[516476.6636249176,5276858.538147166],[516476.3603711807,5276859.537546906],[516473.4343858032,5276858.417871183],[516473.81274500396,5276857.41868377],[516471.71952215664,5276856.623670155],[516463.75923653785,5276853.611499427],[516467.39040855604,5276844.397167532],[516480.3705494745,5276849.101758041]]]},"properties":{"ID_SOURCE":"w145202055","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1278}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.3136061747,5277607.46255786],[517303.0922812094,5277606.128220427],[517302.5755255739,5277603.1259054495],[517306.18080956873,5277602.914341629],[517309.04339138226,5277599.9220726285],[517313.5382658555,5277603.603057201],[517314.4076902588,5277614.275079991],[517310.55439732905,5277614.552585231],[517305.619455686,5277614.915789631],[517305.1913430734,5277607.356999123],[517303.3136061747,5277607.46255786]]]},"properties":{"ID_SOURCE":"w145202058","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1279}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.48651434557,5277478.2827887675],[517285.48292923224,5277484.422114126],[517284.2927868124,5277485.6300061485],[517278.65090645745,5277491.359194578],[517275.86384685786,5277494.196106389],[517271.7480706545,5277491.794386121],[517280.9724630733,5277480.896702148],[517277.57106626104,5277478.174792485],[517283.4336128037,5277471.47934063],[517288.8870849158,5277476.096726118],[517291.48651434557,5277478.2827887675]]]},"properties":{"ID_SOURCE":"w145202088","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1280}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516502.3441886207,5277417.088389127],[516502.2722400442,5277415.976786651],[516496.7281617816,5277411.293201357],[516507.20438776305,5277398.097252036],[516518.9083226804,5277407.477308763],[516517.227596908,5277409.595311597],[516508.71906881494,5277420.107237712],[516508.26690126193,5277420.661654885],[516511.71387437213,5277423.338786094],[516502.3441886207,5277417.088389127]]]},"properties":{"ID_SOURCE":"w145202101","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1281}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516548.26122708694,5277458.896166238],[516546.1758507032,5277452.777546677],[516546.7772682996,5277452.556976188],[516545.8088873811,5277449.775727444],[516555.20470404567,5277446.801660651],[516555.9493663634,5277449.026575461],[516556.250391581,5277448.805151747],[516558.6326746712,5277456.147157885],[516553.0552068065,5277457.953991432],[516548.4098439145,5277459.4522879915],[516548.26122708694,5277458.896166238]]]},"properties":{"ID_SOURCE":"w145202107","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1282}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.1643174669,5276876.594083089],[517268.9765862066,5276876.582412369],[517265.52248247823,5276876.316548362],[517265.45986059285,5276877.1721394295],[517264.52127024694,5276877.091558727],[517263.76286761224,5276877.033740335],[517263.614565511,5276878.922677891],[517253.40243529907,5276878.136660495],[517254.0115742754,5276870.269765025],[517269.5625511052,5276871.471717637],[517269.1643174669,5276876.594083089]]]},"properties":{"ID_SOURCE":"w145202112","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1283}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516445.2376265866,5277747.123382658],[516439.46100443375,5277745.106548883],[516440.21759849694,5277743.108167176],[516432.1149230267,5277740.41793294],[516432.5695684141,5277738.974397503],[516435.97674881,5277729.092564567],[516441.4536372898,5277730.886268415],[516442.1345113902,5277729.1099529425],[516450.3867592378,5277732.022903478],[516445.2376265866,5277747.123382658]]]},"properties":{"ID_SOURCE":"w145202130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1284}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517073.362226725,5277404.175560283],[517072.51006738556,5277413.064254227],[517068.21559114085,5277412.651559297],[517062.90003157494,5277412.146963053],[517063.28725135815,5277408.147061143],[517060.8844146353,5277408.0288796285],[517061.19523168856,5277404.47331336],[517063.59774414997,5277404.702633951],[517069.52892563597,5277405.275719592],[517069.75845818035,5277403.831573722],[517073.362226725,5277404.175560283]]]},"properties":{"ID_SOURCE":"w145202134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1285}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517187.9692230363,5277682.251494157],[517187.28909989627,5277683.694305803],[517183.47271014925,5277691.840713767],[517181.6212013996,5277695.791832037],[517174.57176861155,5277692.547971906],[517176.38651295344,5277688.330007036],[517174.13660730433,5277687.323109557],[517175.5732533828,5277683.993148821],[517177.82316007884,5277685.000046849],[517180.6197239343,5277678.89560096],[517187.9692230363,5277682.251494157]]]},"properties":{"ID_SOURCE":"w145202141","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1286}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.0117999632,5277681.809420065],[516734.0935818028,5277680.8180183675],[516733.20074383554,5277677.92581401],[516738.84526069177,5277676.25271391],[516745.8276294231,5277674.183363667],[516748.1332051059,5277681.969790743],[516736.18219196546,5277685.7141790185],[516736.6292487344,5277686.938003414],[516732.9463885986,5277688.038816006],[516732.12800758705,5277685.369105636],[516731.0117999632,5277681.809420065]]]},"properties":{"ID_SOURCE":"w145202150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1287}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.12800758705,5277685.369105636],[516729.2715141692,5277686.361155758],[516728.82509453816,5277684.915053918],[516718.076580665,5277688.32951508],[516715.3961291446,5277680.319743817],[516720.84596521006,5277678.446015462],[516726.2958048062,5277676.572292211],[516726.8911390866,5277678.463381384],[516729.5974452757,5277677.470898497],[516731.0117999632,5277681.809420065],[516732.12800758705,5277685.369105636]]]},"properties":{"ID_SOURCE":"w145202175","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1288}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.8987379986,5277652.362764174],[516730.8165008331,5277645.2438250035],[516734.2741002539,5277644.142363493],[516734.7965759137,5277645.255264522],[516744.3426873013,5277642.170795302],[516747.0227973513,5277650.29171847],[516741.4830673311,5277652.076251969],[516737.10090002685,5277653.486242817],[516736.3560140978,5277651.372442898],[516732.97319478507,5277652.5852580145],[516732.8987379986,5277652.362764174]]]},"properties":{"ID_SOURCE":"w145202178","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1289}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.89703659376,5276965.977885288],[517270.977744976,5276964.088747172],[517271.50380653894,5276963.979167647],[517273.8956592887,5276962.797066166],[517276.70819764544,5276961.582871865],[517277.7378148338,5276963.8865217725],[517277.25619014003,5276974.332239018],[517274.7784034626,5276974.1026080195],[517270.27312653285,5276973.75582456],[517270.6720526215,5276965.866078142],[517270.89703659376,5276965.977885288]]]},"properties":{"ID_SOURCE":"w145202214","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1290}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.2129406339,5277417.6231182525],[516616.94828163047,5277416.191813164],[516620.6316082653,5277414.979788353],[516621.450396627,5277417.53834274],[516622.8034422984,5277417.0976461945],[516623.9637800298,5277421.024196486],[516625.70436299726,5277426.886237666],[516617.36176036333,5277429.196357701],[516614.7586842304,5277420.297739303],[516613.10524532467,5277420.737580553],[516612.2129406339,5277417.6231182525]]]},"properties":{"ID_SOURCE":"w145202219","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1291}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516868.312377776,5277543.50300351],[516859.67975470854,5277542.255458889],[516860.16967771424,5277539.044934224],[516861.0115500395,5277533.590402691],[516862.20559892064,5277525.814067214],[516870.1626923552,5277526.948518002],[516869.2402710429,5277534.28107931],[516866.50786017417,5277533.884173022],[516864.51107958436,5277533.600538788],[516863.59252943395,5277539.599433299],[516868.772298804,5277540.281278619],[516868.312377776,5277543.50300351]]]},"properties":{"ID_SOURCE":"w145202223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1292}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.3915035117,5277180.120457434],[516320.3624122452,5277181.736991974],[516321.0523465412,5277176.737635091],[516315.2202547417,5277167.496687505],[516318.2305604537,5277165.282327454],[516330.1175500117,5277157.869287499],[516332.6299735316,5277161.799569056],[516338.8661278391,5277171.564024977],[516337.4366978809,5277172.449132373],[516339.0814534799,5277175.1211026665],[516338.3915035117,5277180.120457434]]]},"properties":{"ID_SOURCE":"w145202249","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1293}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517004.8095162566,5277759.622722713],[517016.52455025684,5277759.5458144285],[517016.67473883764,5277759.546253437],[517004.8095162566,5277759.622722713]]]},"properties":{"ID_SOURCE":"w145202275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1294}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516594.4095507822,5277498.371033446],[516597.5665034864,5277497.379773637],[516597.2686475138,5277496.489805484],[516601.3725297501,5277495.256739571],[516607.5659052465,5277493.40725323],[516610.24595884676,5277501.639249888],[516600.0989093214,5277504.722225659],[516600.39676443307,5277505.612193968],[516597.08962060977,5277506.603024074],[516595.67575627274,5277502.042258621],[516594.4095507822,5277498.371033446]]]},"properties":{"ID_SOURCE":"w145202307","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1295}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516574.3817590134,5276835.820643687],[516572.88216558855,5276834.927257573],[516569.28434117517,5276832.360804827],[516568.9829675512,5276832.693366587],[516566.2100442642,5276830.573821967],[516566.58715646394,5276830.019196019],[516565.46277558175,5276829.238019055],[516572.3240150325,5276819.921801789],[516573.8229797904,5276821.037465439],[516577.3665843221,5276816.268542603],[516583.6612828744,5276821.287754547],[516580.2688381487,5276825.723684719],[516581.3925848166,5276826.727142255],[516574.3817590134,5276835.820643687]]]},"properties":{"ID_SOURCE":"w145202397","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1296}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.7608254351,5276973.287598402],[517224.88604855316,5276981.734597439],[517225.7869717353,5276981.848402379],[517226.15455465415,5277035.307760408],[517209.10602855467,5277035.25734951],[517208.587423562,5276982.0198267875],[517209.2633624945,5276982.021824433],[517214.52066530683,5276982.037364343],[517214.5462931591,5276973.368531876],[517224.7608254351,5276973.287598402]]]},"properties":{"ID_SOURCE":"w145202407","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1297}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516595.67575627274,5277502.042258621],[516592.51912315935,5277502.922380475],[516592.22190018103,5277501.810134625],[516581.9997630987,5277504.892927896],[516579.3941358508,5277496.88343609],[516585.5652581582,5277494.933837131],[516589.8422120533,5277493.579002279],[516590.3621953943,5277495.581001775],[516593.2938558206,5277494.589097666],[516594.4095507822,5277498.371033446],[516595.67575627274,5277502.042258621]]]},"properties":{"ID_SOURCE":"w145202419","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1298}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.86229650106,5277699.7561596595],[517280.0695815685,5277696.527778667],[517281.2734127362,5277695.753372187],[517278.7335709922,5277691.233550098],[517275.52142997464,5277685.51142233],[517283.64557549905,5277680.867656882],[517287.53007000603,5277687.7698694505],[517291.2160079359,5277685.669156439],[517295.1011505933,5277692.349096133],[517293.07027974125,5277693.454462949],[517281.86229650106,5277699.7561596595]]]},"properties":{"ID_SOURCE":"w145202469","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1299}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516689.60807847267,5277698.694984154],[516689.37970003695,5277691.914794207],[516696.1385825423,5277691.823034433],[516715.2146663542,5277691.2109352155],[516733.76476885,5277690.708526505],[516752.01449415076,5277690.2053125305],[516753.44162234647,5277690.0982793905],[516753.5732621676,5277696.54477404],[516753.19746686047,5277696.654832513],[516689.60807847267,5277698.694984154]]]},"properties":{"ID_SOURCE":"w145202472","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1300}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.2129406339,5277417.6231182525],[516609.50716843025,5277418.393377617],[516608.6145444075,5277415.390054841],[516610.0426883125,5277414.949569565],[516608.32423513156,5277409.220964242],[516607.14141819853,5277405.272125118],[516614.73274497077,5277403.070986267],[516617.63336918375,5277412.970712412],[516616.205224211,5277413.41119583],[516616.94828163047,5277416.191813164],[516612.2129406339,5277417.6231182525]]]},"properties":{"ID_SOURCE":"w145202503","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1301}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.63962748874,5276755.117091688],[516604.26897801284,5276758.652542909],[516601.72895790293,5276753.866291874],[516600.4505505619,5276754.418346164],[516595.1486579204,5276743.622679274],[516597.78090071474,5276742.407643878],[516602.66985246376,5276739.976505981],[516605.37752284243,5276738.650549312],[516610.52982057945,5276749.223519304],[516609.10056280624,5276749.997420917],[516611.63962748874,5276755.117091688]]]},"properties":{"ID_SOURCE":"w145202505","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1302}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516595.1863875175,5276772.552463192],[516594.7313114974,5276774.107122857],[516593.2158710208,5276778.770674046],[516581.8854847436,5276774.959648295],[516582.1887609073,5276773.960254131],[516577.0120733317,5276771.945000113],[516579.51243789075,5276764.283475693],[516584.6149739093,5276765.965101457],[516585.14547148376,5276764.299516091],[516596.55066677596,5276768.221900979],[516595.1863875175,5276772.552463192]]]},"properties":{"ID_SOURCE":"w145202506","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1303}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517216.0124770137,5277595.089484276],[517213.01124905574,5277594.191490311],[517213.39133166627,5277592.63665469],[517218.91353260435,5277594.308970155],[517218.94156604086,5277594.987006811],[517226.9781984168,5277594.566222096],[517227.049677323,5277595.788973149],[517225.0214166065,5277596.005251703],[517224.5659058915,5277597.671003381],[517216.0124770137,5277595.089484276]]]},"properties":{"ID_SOURCE":"w145202513","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1304}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.5925347735,5277543.471027715],[516963.5949929652,5277543.9687910015],[516963.3198185102,5277545.623974069],[516973.58075711183,5277547.309865286],[516972.00608940097,5277556.796624214],[516965.63337419444,5277555.744448644],[516962.3832319247,5277555.20150665],[516962.138582788,5277556.69006885],[516958.50560834684,5277556.090443684],[516959.6599360129,5277549.103105004],[516960.5925347735,5277543.471027715]]]},"properties":{"ID_SOURCE":"w145202521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1305}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516667.4861243016,5276242.011259175],[516671.37679920706,5276242.100192232],[516671.3823663296,5276240.155264033],[516675.97179240244,5276240.179516485],[516675.9166753097,5276254.182956638],[516672.8821137906,5276254.163154994],[516672.897385046,5276248.828494706],[516672.34154318186,5276248.826903553],[516671.6955647989,5276248.825054443],[516671.6942922878,5276249.269609466],[516667.43518309266,5276249.312989407],[516667.4861243016,5276242.011259175]]]},"properties":{"ID_SOURCE":"w145337927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1306}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.0802982018,5276558.085091268],[517304.9366834798,5276555.861868829],[517310.94679094426,5276555.435171534],[517312.03874851,5276567.108095005],[517311.3624310167,5276567.217224354],[517311.57685778674,5276570.885474741],[517306.24209230253,5276571.536457754],[517305.80497528234,5276566.978427534],[517299.1185629094,5276567.514260883],[517298.2433260007,5276558.731618071],[517302.07504784083,5276558.365125446],[517305.0802982018,5276558.085091268]]]},"properties":{"ID_SOURCE":"w145337928","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1307}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.97606548684,5276489.944335643],[516340.84603565175,5276492.7280741],[516335.27787507884,5276496.268922969],[516335.0528551159,5276496.157152137],[516330.865050711,5276489.588166587],[516324.50899434637,5276479.456636542],[516306.97788310447,5276463.4034102345],[516311.04788341245,5276458.413522644],[516329.85307834315,5276475.470590432],[516338.44966738205,5276490.165138192],[516338.97606548684,5276489.944335643]]]},"properties":{"ID_SOURCE":"w145337929","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1308}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.5222984181,5276481.470739185],[516680.31343389687,5276481.453980959],[516682.61939806753,5276481.438358056],[516682.63804506185,5276485.417213035],[516681.706672203,5276485.414545161],[516681.7167281909,5276487.148353424],[516681.7266886661,5276488.91550333],[516682.41770682327,5276488.9174827095],[516682.4235602682,5276492.118323116],[516676.82018012024,5276492.146730802],[516674.56686129555,5276492.140278768],[516674.5222984181,5276481.470739185]]]},"properties":{"ID_SOURCE":"w145337930","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1309}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516790.53429914545,5276207.044499045],[516790.60685031035,5276207.933825562],[516790.60044244904,5276210.156600517],[516783.5400215393,5276210.025111197],[516783.6316145111,5276206.913464361],[516783.7232716203,5276203.779589793],[516783.789704294,5276201.579215774],[516813.0150405297,5276202.241432401],[516817.3639058591,5276202.342899469],[516828.53293089947,5276202.54186923],[516830.95896437566,5276202.604449174],[516830.95318345027,5276204.604946605],[516830.94624633976,5276207.005543534],[516830.9429062476,5276208.161386503],[516820.5252917838,5276207.875670312],[516817.2730673067,5276207.788481165],[516814.46398502885,5276207.713687097],[516790.53429914545,5276207.044499045]]]},"properties":{"ID_SOURCE":"w145337934","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1310}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.1929301007,5276439.103341156],[516667.1324668222,5276439.08313104],[516666.53157633083,5276439.081411425],[516666.5621089828,5276428.412087777],[516673.5471555676,5276428.5432209205],[516674.14836534153,5276428.433802469],[516674.13754677516,5276432.212521239],[516673.4615441722,5276432.210585865],[516673.4106546487,5276434.24429666],[516673.37656922603,5276435.655673255],[516674.2027941415,5276435.658038712],[516674.1929301007,5276439.103341156]]]},"properties":{"ID_SOURCE":"w145337935","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1311}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517093.5543074549,5276512.004226442],[517101.4242536637,5276517.695458526],[517099.6144271219,5276520.135218955],[517100.81358084036,5276521.027858045],[517102.6123107282,5276522.366817149],[517099.5958267834,5276526.470130523],[517097.57209311804,5276525.019372009],[517095.0843213667,5276528.123982113],[517089.31355667056,5276523.772594992],[517094.51704104897,5276516.674921988],[517091.6690459535,5276514.554907656],[517093.5543074549,5276512.004226442]]]},"properties":{"ID_SOURCE":"w145337938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1312}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.75980560255,5276423.970533366],[516706.7919672758,5276420.614206682],[516709.96912210225,5276420.645549544],[516713.1537880609,5276420.676915694],[516713.16410585836,5276419.69891594],[516717.14495489036,5276419.732569142],[516717.08253370575,5276425.77838972],[516717.07068399555,5276427.2898556525],[516713.48041974986,5276427.257323351],[516713.46962348727,5276428.402031297],[516706.71723159426,5276428.338201481],[516706.75980560255,5276423.970533366]]]},"properties":{"ID_SOURCE":"w145337940","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1313}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.2249259165,5276602.041416175],[516945.7098333448,5276598.3723054],[516947.9637581893,5276598.156584816],[516947.6739942948,5276594.488129638],[516958.4191573518,5276592.963452916],[516959.1547155591,5276598.300303184],[516959.522494141,5276600.968728374],[516955.9907422586,5276601.514143123],[516955.98847713403,5276602.292114825],[516951.9008859025,5276602.847027683],[516946.37061667367,5276603.597796705],[516946.2249259165,5276602.041416175]]]},"properties":{"ID_SOURCE":"w145337941","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1314}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516569.1589265336,5276316.772204441],[516568.4258190121,5276310.435157834],[516568.3522868567,5276309.879250319],[516572.40965245315,5276309.446235263],[516572.77889241796,5276311.670079272],[516583.3729831122,5276310.588837857],[516584.40082944895,5276318.927239749],[516573.6568442844,5276319.896913014],[516573.36240181775,5276317.784421429],[516573.21628739557,5276316.339189954],[516569.1589265336,5276316.772204441]]]},"properties":{"ID_SOURCE":"w145337942","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1315}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516891.1347322494,5276613.995602714],[516892.5340797486,5276623.557680408],[516889.6038641444,5276623.882600728],[516889.01201742404,5276620.768971189],[516880.1452926307,5276622.076940648],[516879.1150273713,5276614.738730815],[516883.1728494146,5276614.083654859],[516882.80471455934,5276611.526373342],[516887.68906168407,5276610.7625569375],[516888.04971576895,5276613.308703106],[516888.2041896236,5276614.431662567],[516891.1347322494,5276613.995602714]]]},"properties":{"ID_SOURCE":"w145337944","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1316}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.93107249046,5276084.046963248],[517222.7400981614,5276081.940657906],[517228.28454186884,5276086.736061721],[517226.5512889029,5276088.620310073],[517226.9258820266,5276088.95483705],[517219.1613510951,5276098.267612018],[517210.319697754,5276090.795120696],[517213.40995672974,5276087.247782346],[517215.8080800457,5276089.144244796],[517218.2807174098,5276086.161895977],[517220.40657546173,5276083.600853777],[517220.93107249046,5276084.046963248]]]},"properties":{"ID_SOURCE":"w145337946","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1317}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516670.1818092707,5276449.650130074],[516667.1022510827,5276449.641316076],[516667.1324668222,5276439.08313104],[516674.1929301007,5276439.103341156],[516674.71870928205,5276439.104846507],[516674.7823651609,5276443.106057973],[516674.18179327704,5276442.99319878],[516674.1398465626,5276444.526806552],[516674.0974543964,5276446.216008638],[516674.6986623595,5276446.106590245],[516674.7635909636,5276449.663246592],[516670.1818092707,5276449.650130074]]]},"properties":{"ID_SOURCE":"w145337949","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1318}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517166.8489588574,5276618.580577553],[517175.19589241466,5276615.2709951615],[517175.49403417914,5276616.049852931],[517174.89250628225,5276616.270358448],[517175.1906480341,5276617.0492162],[517174.1348607828,5276618.490919701],[517174.93262738036,5276620.493788491],[517175.7751310156,5276622.6079291245],[517168.02940658364,5276625.808143224],[517166.836837104,5276622.6927137375],[517168.1904365711,5276622.141005127],[517166.8489588574,5276618.580577553]]]},"properties":{"ID_SOURCE":"w145337951","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1319}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.59483290475,5276652.920783607],[517309.7551011564,5276653.123507804],[517309.75311908126,5276653.790340725],[517297.8833252419,5276654.644189807],[517297.74169116555,5276651.754134288],[517297.38331389,5276645.973800211],[517303.8968531085,5276645.448565601],[517309.32856432424,5276645.009034507],[517309.32559129264,5276646.009283873],[517312.1052725983,5276645.7952669505],[517312.17737470445,5276646.806853484],[517312.59483290475,5276652.920783607]]]},"properties":{"ID_SOURCE":"w145337952","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1320}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.22544057714,5276389.7889128225],[516685.2480469976,5276381.898059481],[516687.95239923423,5276381.794668082],[516687.95271768485,5276381.6835293025],[516690.4614602359,5276381.690718274],[516692.1589926209,5276381.69558328],[516692.3044387022,5276383.363095518],[516695.4591439988,5276383.372138076],[516695.5097240795,5276391.93003943],[516692.0545757373,5276391.920135724],[516691.91008540156,5276389.91920713],[516685.22544057714,5276389.7889128225]]]},"properties":{"ID_SOURCE":"w145337956","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1321}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.95156708546,5276222.220368039],[517308.9872522494,5276229.123023099],[517299.882938141,5276234.31954081],[517299.06097571715,5276232.872282952],[517295.44923361024,5276234.973211502],[517291.56343471626,5276228.182150535],[517295.4759659422,5276225.970973048],[517295.6252040056,5276226.304835392],[517301.04233106703,5276223.32015171],[517301.4907047492,5276224.09946169],[517304.95156708546,5276222.220368039]]]},"properties":{"ID_SOURCE":"w145337964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1322}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516903.1605693834,5276611.140861891],[516902.1296859319,5276604.024925684],[516910.6205745257,5276602.827037952],[516910.1792780093,5276599.60270373],[516913.4863443987,5276598.834329157],[516914.7354408043,5276608.39597576],[516911.8048935325,5276608.832023742],[516911.98872880475,5276610.188462598],[516912.3196837134,5276612.612270344],[516907.4353347972,5276613.376066096],[516906.9927467461,5276610.59628733],[516903.1605693834,5276611.140861891]]]},"properties":{"ID_SOURCE":"w145337965","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1323}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517215.23307244317,5276385.329897137],[517221.0032245264,5276389.903685524],[517218.66621058446,5276392.786409125],[517219.7151487452,5276393.678628365],[517215.492784047,5276399.1119933855],[517207.6995410358,5276392.865136388],[517209.7347880091,5276390.426075682],[517211.2334143071,5276391.653041448],[517212.236016144,5276390.433467225],[517213.41954408935,5276388.992148424],[517212.6697382045,5276388.545373379],[517215.23307244317,5276385.329897137]]]},"properties":{"ID_SOURCE":"w145337966","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1324}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517258.73528944195,5276634.7451551445],[517259.09370585,5276640.525486645],[517253.90988622623,5276640.954685055],[517254.27390485,5276644.845656377],[517250.5174833989,5276645.167947313],[517250.15346228937,5276641.276976232],[517243.9177929188,5276641.814207707],[517243.62788869074,5276638.256875921],[517243.1927025778,5276633.032017121],[517251.6671513403,5276632.323592836],[517258.5188558977,5276631.74373931],[517258.73528944195,5276634.7451551445]]]},"properties":{"ID_SOURCE":"w145337967","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1325}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516714.7056279539,5276586.590736155],[516716.56996442424,5276591.263956021],[516717.0171112226,5276592.487776591],[516712.28012014704,5276594.25241652],[516712.50321549096,5276595.031034864],[516707.0148162404,5276596.904662482],[516704.03148460796,5276589.560882434],[516709.74585575005,5276587.46562091],[516709.5975502636,5276586.798357005],[516711.3797162036,5276586.081062519],[516713.9589994075,5276585.032637068],[516714.7056279539,5276586.590736155]]]},"properties":{"ID_SOURCE":"w145337970","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1326}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516672.45671105385,5276470.984351197],[516679.1492195798,5276470.959058283],[516680.2082832801,5276470.962091454],[516680.22591341246,5276475.296590501],[516679.71515966626,5276475.295127669],[516679.7182463222,5276476.839978434],[516679.7219059242,5276478.184779373],[516680.30777022295,5276478.186457332],[516680.31343389687,5276481.453980959],[516674.5222984181,5276481.470739185],[516672.4867966843,5276481.464911624],[516672.45671105385,5276470.984351197]]]},"properties":{"ID_SOURCE":"w145337972","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1327}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5410906715,5276193.007678636],[516822.57344048034,5276193.1333510475],[516822.4903009915,5276195.911602712],[516829.0249372268,5276196.0416199295],[516829.85087504645,5276196.155146128],[516829.84766363876,5276197.266533581],[516831.04949460295,5276197.270006453],[516831.00483968365,5276199.726064193],[516830.977712736,5276201.3152831355],[516830.95896437566,5276202.604449174],[516828.53293089947,5276202.54186923],[516817.3639058591,5276202.342899469],[516817.3146952709,5276201.1757908175],[516817.3647058048,5276199.464384263],[516817.5410906715,5276193.007678636]]]},"properties":{"ID_SOURCE":"w145337973","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1328}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516724.044408532,5276577.837508493],[516731.46364765783,5276583.638085228],[516727.0907001996,5276589.404789381],[516724.4621912561,5276589.2861004835],[516720.7143807936,5276586.60798516],[516720.7923620957,5276585.607951484],[516721.7735713633,5276583.94367284],[516721.0995009876,5276583.274899008],[516722.0115165932,5276582.166120387],[516722.9085106492,5276581.057298771],[516722.0842210842,5276580.388093476],[516724.044408532,5276577.837508493]]]},"properties":{"ID_SOURCE":"w145337974","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1329}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.22544057714,5276389.7889128225],[516678.9160369596,5276389.770840486],[516678.91030791786,5276391.771338532],[516675.00512438064,5276391.537876761],[516674.80301729025,5276383.424100671],[516678.40871297836,5276383.323285548],[516678.41316875484,5276381.767342642],[516680.59908859455,5276381.718033058],[516682.76998606726,5276381.66868126],[516682.76934936194,5276381.890958817],[516685.2480469976,5276381.898059481],[516685.22544057714,5276389.7889128225]]]},"properties":{"ID_SOURCE":"w145337976","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1330}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.0351038638,5276612.901207529],[517161.8425290167,5276609.785779142],[517163.0455851884,5276609.344765474],[517161.7788829818,5276605.895699325],[517170.2006132801,5276602.697469956],[517170.4246302057,5276603.142689561],[517169.8231011751,5276603.363195598],[517169.97102588066,5276604.141610179],[517169.21534667525,5276605.69533915],[517169.968510002,5276607.54248001],[517170.8559517485,5276609.70120827],[517163.0351038638,5276612.901207529]]]},"properties":{"ID_SOURCE":"w145337977","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1331}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.60455288953,5276137.293740729],[517221.0826810887,5276134.393694421],[517218.3686753498,5276137.719861718],[517203.90689206216,5276125.674040223],[517216.4207206611,5276110.596016813],[517224.8132864835,5276117.51149124],[517244.96999132435,5276134.242090666],[517246.9183808155,5276135.803815571],[517236.9683052099,5276147.55516963],[517236.893519024,5276147.443808602],[517234.5856963713,5276145.503148445],[517232.77238257613,5276143.986283166],[517232.39746453374,5276143.762894508],[517231.4173509663,5276144.982531562],[517229.68345662387,5276147.089056583],[517229.00906453066,5276146.5313631445],[517227.0308250631,5276144.9028721005],[517221.81543128873,5276140.6196843],[517224.60455288953,5276137.293740729]]]},"properties":{"ID_SOURCE":"w145337978","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1332}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516892.5340797486,5276623.557680408],[516891.1347322494,5276613.995602714],[516894.1403843917,5276613.559762225],[516893.9936160121,5276612.370141107],[516893.70004682196,5276610.002012767],[516898.73461495055,5276609.2386413915],[516899.10242046526,5276611.907062745],[516903.1605693834,5276611.140861891],[516904.19080504304,5276618.479076006],[516895.47429120983,5276619.787458179],[516895.9152717951,5276623.122930194],[516892.5340797486,5276623.557680408]]]},"properties":{"ID_SOURCE":"w145337979","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1333}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.0351038638,5276612.901207529],[517170.8559517485,5276609.70120827],[517171.64555437793,5276611.926332057],[517172.1967736752,5276613.483914349],[517173.99808054394,5276613.933785289],[517174.4454573831,5276615.04650244],[517175.04698538885,5276614.825996876],[517175.19589241466,5276615.2709951615],[517166.8489588574,5276618.580577553],[517165.43204284256,5276615.131067739],[517164.22866011487,5276615.683219731],[517163.0351038638,5276612.901207529]]]},"properties":{"ID_SOURCE":"w145337982","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1334}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516337.7194217889,5276509.501393433],[516336.8165382499,5276510.054559013],[516338.9093395303,5276513.728039486],[516333.0413823327,5276517.04577006],[516332.4436167754,5276515.93269684],[516329.28368619515,5276517.813210448],[516326.069521855,5276512.247215236],[516328.32657180267,5276510.919866787],[516326.2334512828,5276507.357528953],[516328.71614607715,5276505.919673548],[516328.7201969911,5276504.4748691],[516330.37512018386,5276503.590391959],[516331.5750177125,5276504.260594733],[516333.7566498249,5276503.044176574],[516335.02885198756,5276504.714839953],[516337.7194217889,5276509.501393433]]]},"properties":{"ID_SOURCE":"w145337983","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1335}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.0308125049,5276390.070834495],[516706.1067906644,5276381.913398913],[516708.6830064428,5276381.965245157],[516708.68332528963,5276381.854106377],[516710.2833395235,5276381.81424102],[516713.04014316876,5276381.755467638],[516713.11047124065,5276383.422764866],[516716.2651765342,5276383.431818691],[516716.23997613665,5276392.211782271],[516712.78482793004,5276392.201866265],[516712.7154566658,5276390.201152683],[516706.0308125049,5276390.070834495]]]},"properties":{"ID_SOURCE":"w145337984","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1336}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516518.01120495045,5276421.098210783],[516515.542924623,5276417.42360129],[516512.1559710244,5276419.859070581],[516506.7703039064,5276411.952886395],[516515.12408589997,5276406.1973059615],[516516.15665657003,5276407.6005940605],[516516.77024022694,5276408.424767763],[516518.3507381535,5276407.3178534545],[516521.9415973603,5276412.440464414],[516520.43652702443,5276413.436452032],[516523.20399110124,5276417.556471117],[516518.01120495045,5276421.098210783]]]},"properties":{"ID_SOURCE":"w145337985","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1337}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.9109585862,5276147.123309944],[516651.94601089903,5276147.053543425],[516651.9847312733,5276144.019541784],[516652.006204453,5276141.763468368],[516650.6090945178,5276141.748360285],[516650.5914979999,5276142.648541111],[516645.8443485774,5276142.590516405],[516645.88357398397,5276139.378692774],[516658.22464775696,5276139.536229144],[516658.9006525393,5276139.549276541],[516658.8038267275,5276147.139837461],[516656.9109585862,5276147.123309944]]]},"properties":{"ID_SOURCE":"w145337986","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1338}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517185.4517021284,5276525.055753925],[517192.57208048436,5276530.189199169],[517191.07122076186,5276532.274196267],[517189.9323995975,5276533.849019433],[517190.3787955135,5276535.295154067],[517189.7749624222,5276536.293629645],[517190.67398688564,5276537.074261716],[517190.2974524023,5276537.406569576],[517182.5775115519,5276531.826798953],[517184.84032601543,5276528.610422386],[517183.6418425066,5276527.495488347],[517185.4517021284,5276525.055753925]]]},"properties":{"ID_SOURCE":"w145337988","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1339}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516939.75023026107,5276581.461724694],[516932.1806521488,5276575.771584197],[516933.9900680072,5276573.442910543],[516933.11319242243,5276572.784636334],[516930.84225058317,5276571.09982353],[516933.85794598,5276567.218700421],[516935.8059493202,5276568.891461273],[516938.3693747487,5276565.564724015],[516944.1402097498,5276569.915961681],[516939.2383643544,5276576.681226521],[516941.71148300875,5276578.577796315],[516939.75023026107,5276581.461724694]]]},"properties":{"ID_SOURCE":"w145337989","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1340}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517193.5219631019,5276513.743317912],[517200.56723801396,5276518.876551078],[517199.2998708262,5276520.7399561405],[517198.22864443064,5276522.314977304],[517198.675039196,5276523.761112549],[517197.84521643835,5276524.98119944],[517198.66978779854,5276525.539333328],[517198.21748549945,5276526.093696459],[517190.49753709306,5276520.513915453],[517192.83579871163,5276517.1866249405],[517191.6366581993,5276516.293966872],[517193.5219631019,5276513.743317912]]]},"properties":{"ID_SOURCE":"w145337990","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1341}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.69625532243,5276340.116551329],[516683.4151561387,5276339.993146712],[516683.26811453886,5276338.881328673],[516683.64367756026,5276338.8824044885],[516683.5781158651,5276335.548026198],[516683.5921238596,5276330.657920306],[516686.2213871341,5276330.554312891],[516686.287265812,5276333.777552421],[516686.2821711685,5276335.555772751],[516687.78442411334,5276335.560076935],[516687.69625532243,5276340.116551329]]]},"properties":{"ID_SOURCE":"w145337992","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1342}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516921.06230761996,5276550.62168593],[516919.02691462793,5276553.171986505],[516920.19630336796,5276553.9755900735],[516921.95038587163,5276555.180995868],[516919.00915629003,5276559.2846208885],[516916.7471466441,5276562.278822899],[516914.3487999168,5276560.493620743],[516908.6527205466,5276556.25376962],[516913.7044442876,5276549.600054381],[516911.08172980713,5276547.480782793],[516913.2679867197,5276544.708638124],[516921.06230761996,5276550.62168593]]]},"properties":{"ID_SOURCE":"w145337993","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1343}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.98697083746,5276600.338721499],[516935.31114238163,5276609.900591022],[516932.1552669371,5276610.335973511],[516932.35311750934,5276612.036987029],[516932.5949347147,5276614.116003569],[516927.710584307,5276614.879782319],[516927.1928969579,5276612.099783666],[516923.58636884077,5276612.533860923],[516922.5558335386,5276605.30678221],[516930.8968293532,5276603.997348706],[516930.53065338323,5276600.773231274],[516933.98697083746,5276600.338721499]]]},"properties":{"ID_SOURCE":"w145337994","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1344}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.21283725597,5276248.830284825],[516647.40364599053,5276248.8000267865],[516647.4797155816,5276243.209919151],[516646.60842683614,5276243.196314863],[516645.9474568325,5276243.183311799],[516645.94640863425,5276243.550069687],[516641.6650471949,5276243.493379202],[516641.76127849024,5276236.102866662],[516645.88490611163,5276236.159106383],[516645.90507457627,5276234.35870151],[516650.4042731609,5276234.416017822],[516650.21283725597,5276248.830284825]]]},"properties":{"ID_SOURCE":"w145337995","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1345}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.2913073146,5276546.461011791],[517172.1018109079,5276543.798995568],[517173.5259508554,5276544.803452926],[517175.9393031106,5276541.476377037],[517183.3594535098,5276546.832974877],[517182.8317164687,5276547.498256398],[517182.0819287676,5276547.051485136],[517181.62897392944,5276547.828127171],[517179.825680018,5276548.045086785],[517178.68656990404,5276549.719937094],[517177.4116726045,5276551.594438706],[517170.2913073146,5276546.461011791]]]},"properties":{"ID_SOURCE":"w145337996","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1346}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516410.34324121574,5276565.831123986],[516406.429397881,5276568.709728772],[516407.2524726923,5276569.823444545],[516395.81109204615,5276578.571257717],[516389.8248519773,5276570.552349262],[516398.7816723657,5276563.909181891],[516398.1829854005,5276563.129518242],[516400.7420361269,5276561.247349669],[516402.1637996821,5276563.140728616],[516406.00284796226,5276560.150770581],[516410.34324121574,5276565.831123986]]]},"properties":{"ID_SOURCE":"w145337997","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1347}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.93243625667,5276344.531260802],[516520.19928003236,5276338.194220101],[516523.3549554954,5276337.869753061],[516523.5771402256,5276338.981780086],[516524.62903192913,5276338.873624824],[516524.5573879519,5276337.650885211],[516524.4103159842,5276336.539071262],[516534.6291043454,5276335.345536942],[516535.7296039574,5276344.573253854],[516521.15241432877,5276346.421259166],[516520.93243625667,5276344.531260802]]]},"properties":{"ID_SOURCE":"w145337999","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1348}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516487.63356162235,5276485.584289026],[516490.76429409895,5276494.039769613],[516482.1702829003,5276497.149580479],[516473.39582706837,5276500.325577396],[516470.264758569,5276491.981244912],[516477.55835021206,5276489.223384053],[516476.8876996676,5276487.332111892],[516477.41693334345,5276486.111072652],[516481.7777572805,5276484.5674567],[516482.9031598715,5276485.015200502],[516483.64860486373,5276487.01782474],[516487.63356162235,5276485.584289026]]]},"properties":{"ID_SOURCE":"w145338000","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1349}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516316.73461361456,5276627.028351085],[516318.6082869731,5276628.478417172],[516316.1215987521,5276631.36108177],[516306.68029370735,5276623.332579293],[516316.62799029966,5276611.468494874],[516317.67702611885,5276612.360551712],[516319.2592995232,5276610.586750302],[516323.3055333292,5276614.043420827],[516321.7980571497,5276615.928570478],[516324.270735652,5276618.0471553905],[516316.73461361456,5276627.028351085]]]},"properties":{"ID_SOURCE":"w145338001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1350}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.16350462975,5276534.828445533],[517136.6950320301,5276528.357414285],[517138.50487164233,5276525.917665318],[517137.4481724502,5276525.114349426],[517135.5821137629,5276523.686269593],[517138.6737348756,5276519.583195853],[517140.9227910876,5276521.0346318595],[517142.9586199269,5276518.373269908],[517148.804133197,5276522.836070202],[517143.67700664786,5276529.48936082],[517147.0491103948,5276532.166642715],[517145.16350462975,5276534.828445533]]]},"properties":{"ID_SOURCE":"w145338002","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1351}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.5921238596,5276330.657920306],[516683.5781158651,5276335.548026198],[516683.64367756026,5276338.8824044885],[516683.26811453886,5276338.881328673],[516680.0382725543,5276338.872077657],[516679.96666119347,5276337.649336056],[516672.07951793866,5276337.737892767],[516672.02317574585,5276331.180490285],[516672.09987916943,5276330.6250114525],[516677.50799431826,5276330.640495148],[516683.5921238596,5276330.657920306]]]},"properties":{"ID_SOURCE":"w145338003","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1352}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.8907887826,5276455.3037001835],[516706.29402528197,5276455.421733241],[516706.41396032204,5276465.98034944],[516699.35321085516,5276466.071238974],[516698.82743410417,5276466.069731393],[516698.6899587649,5276461.623748945],[516699.51618000487,5276461.6261180015],[516699.51997230115,5276460.30356637],[516699.52414701454,5276458.847648192],[516698.622814322,5276458.845063773],[516698.5579004369,5276455.288407075],[516703.8907887826,5276455.3037001835]]]},"properties":{"ID_SOURCE":"w145338004","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1353}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516931.07396308734,5276336.373391101],[516927.83442863263,5276339.698165728],[516920.99611863465,5276332.976569873],[516912.6298168625,5276324.761272872],[516916.0195765015,5276321.436926186],[516919.861308765,5276317.669335677],[516922.6551400335,5276320.389261512],[516925.4789492201,5276323.131503772],[516924.34902742883,5276324.239617285],[516928.0936844841,5276328.029250035],[516929.22360626434,5276326.921137242],[516934.6903572907,5276332.605155218],[516932.6260010523,5276334.755263435],[516931.07396308734,5276336.373391101]]]},"properties":{"ID_SOURCE":"w145338006","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1354}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516466.44843573053,5276380.641837062],[516462.45118617895,5276381.086209579],[516462.6269941489,5276382.664889826],[516462.75880293746,5276383.865570833],[516454.6891660625,5276384.765225329],[516453.9492169788,5276378.150324554],[516452.31127107184,5276378.323520774],[516451.7765466068,5276373.50966269],[516461.55928991997,5276372.425908458],[516461.7572236783,5276374.149132759],[516465.67933436437,5276373.715661284],[516466.44843573053,5276380.641837062]]]},"properties":{"ID_SOURCE":"w145338009","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1355}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.5027590644,5276356.795546235],[516689.6768414376,5276356.682039718],[516689.8471307291,5276349.680727466],[516694.42867253604,5276349.804998043],[516695.85580934695,5276349.809089012],[516697.58307738026,5276349.92518048],[516697.57262623776,5276353.570532245],[516697.5642780681,5276356.482368125],[516696.88826666714,5276356.480430052],[516696.96274180355,5276356.7029229365],[516693.5826849343,5276356.693233713],[516690.5027590644,5276356.795546235]]]},"properties":{"ID_SOURCE":"w145338011","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1356}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517198.21748549945,5276526.093696459],[517197.76518328825,5276526.648059623],[517196.94028381957,5276526.201064662],[517196.4128715408,5276526.75520614],[517194.91033945244,5276526.861909441],[517193.83927942056,5276528.381362023],[517192.57208048436,5276530.189199169],[517185.4517021284,5276525.055753925],[517187.56331626297,5276522.1723515475],[517188.8378944472,5276522.954091673],[517190.49753709306,5276520.513915453],[517198.21748549945,5276526.093696459]]]},"properties":{"ID_SOURCE":"w145338013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1357}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.04806920385,5276323.662489892],[516608.56149847194,5276327.9984012665],[516607.43449042866,5276328.106327192],[516608.4584958795,5276337.778398909],[516600.34348234587,5276338.755520352],[516599.806342147,5276334.830758871],[516599.5340319732,5276332.862810514],[516598.5569336589,5276333.082305092],[516598.1176599608,5276329.080024957],[516601.04832350777,5276328.643819038],[516600.5342551537,5276324.530185876],[516608.04806920385,5276323.662489892]]]},"properties":{"ID_SOURCE":"w145338015","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1358}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.46364765783,5276583.638085228],[516724.044408532,5276577.837508493],[516726.2305647635,5276575.065293717],[516727.0551738302,5276575.623360781],[516727.61321911484,5276574.846985543],[516728.48800172866,5276573.626961262],[516729.3874010967,5276574.296383215],[516730.4430857339,5276572.854599437],[516731.3450393911,5276572.634911201],[516734.8678447405,5276575.201246978],[516735.91203266074,5276577.760461424],[516731.46364765783,5276583.638085228]]]},"properties":{"ID_SOURCE":"w145338016","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1359}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516985.0901306705,5276075.463537107],[516989.2966272776,5276075.475805147],[516989.2739353142,5276083.255515752],[516984.76665659907,5276083.353510267],[516984.6951056082,5276082.130765265],[516979.73713057814,5276082.227449451],[516978.4601598776,5276082.223726995],[516978.4851051405,5276073.666045341],[516982.5410469253,5276073.789009304],[516982.6113023103,5276075.45630915],[516985.0901306705,5276075.463537107]]]},"properties":{"ID_SOURCE":"w145338017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1360}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.0777111475,5276366.793095081],[516564.35851729795,5276367.182618905],[516564.7822196793,5276371.3849037625],[516560.5446285673,5276371.817411478],[516560.4205404606,5276370.550066325],[516558.6097994609,5276370.7338553155],[516555.20623792417,5276371.068712525],[516554.3515285668,5276362.5863258075],[516563.3526048567,5276361.689458074],[516563.3015749905,5276361.144728541],[516567.4864689947,5276360.756528761],[516568.0777111475,5276366.793095081]]]},"properties":{"ID_SOURCE":"w145338019","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1361}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516958.4191573518,5276592.963452916],[516957.90115898853,5276590.29459041],[516967.8198054437,5276588.878664076],[516968.4847798422,5276592.659353286],[516971.5658822164,5276592.112632766],[516971.93300774373,5276595.0033363495],[516972.2266431175,5276597.338127008],[516965.9222224142,5276598.264445005],[516962.5333377238,5276598.754702131],[516962.31092332315,5276597.7537965],[516959.1547155591,5276598.300303184],[516958.4191573518,5276592.963452916]]]},"properties":{"ID_SOURCE":"w145338020","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1362}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.5972869465,5276537.873611258],[516973.9911678581,5276533.104492986],[516975.42344316264,5276531.33043173],[516977.3086481826,5276528.779712957],[516980.6060422239,5276531.345540525],[516978.72116059356,5276533.785119444],[516986.3661826561,5276539.364400306],[516981.0119826494,5276546.684009421],[516974.8287595672,5276542.087025882],[516972.61780850874,5276540.435713653],[516973.14616988716,5276539.548135539],[516970.5972869465,5276537.873611258]]]},"properties":{"ID_SOURCE":"w145338022","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1363}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.0645910083,5276225.851110913],[517250.1718470764,5276219.179348579],[517244.29159818497,5276211.148762117],[517245.64661671704,5276210.152516642],[517242.0556074914,5276205.251737413],[517247.47568830906,5276201.26675535],[517251.066695476,5276206.167537895],[517251.8949283152,5276205.50315277],[517258.5531003182,5276214.63633515],[517259.68211909884,5276213.861702694],[517263.79726026667,5276219.319745112],[517255.0645910083,5276225.851110913]]]},"properties":{"ID_SOURCE":"w145338024","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1364}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516531.5204305014,5276319.110321046],[516530.64052636665,5276311.550326414],[516530.56667518045,5276311.105558151],[516534.92480435653,5276310.562230992],[516535.21799902094,5276313.119275652],[516544.83592716284,5276311.924053209],[516545.6733025292,5276318.583697973],[516546.01184390683,5276321.040846358],[516541.1356008286,5276321.527123848],[516536.1692232072,5276322.013149503],[516535.7283280628,5276318.566568093],[516531.5204305014,5276319.110321046]]]},"properties":{"ID_SOURCE":"w145338025","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1365}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.71665907174,5276538.906071527],[517027.51153036684,5276544.596984378],[517025.70141826384,5276547.147906587],[517026.67563779786,5276547.906505126],[517028.3992013609,5276549.26744951],[517025.23223908193,5276553.481500985],[517023.28360634064,5276552.030987819],[517021.1724093936,5276554.803310868],[517015.17661152466,5276550.340199717],[517020.3790072928,5276543.575876862],[517017.7556791211,5276541.678834776],[517019.71665907174,5276538.906071527]]]},"properties":{"ID_SOURCE":"w145338032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1366}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516321.2221880637,5276660.605115925],[516321.994185258,5276661.185206059],[516322.8711471913,5276661.832274328],[516323.32366688765,5276661.166704494],[516328.721190726,5276664.849446475],[516324.7987307664,5276670.839993627],[516317.9015342072,5276666.263935217],[516317.4496383424,5276666.70722781],[516309.1275498303,5276661.349209609],[516318.3312640003,5276646.926831054],[516326.57763311255,5276652.506929346],[516321.2221880637,5276660.605115925]]]},"properties":{"ID_SOURCE":"w145338034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1367}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516698.82386113843,5276572.097010564],[516704.3132373755,5276569.889958816],[516705.65596518334,5276573.116862421],[516705.12956049514,5276573.337631869],[516706.0842360913,5276575.685418647],[516707.2924340054,5276578.6785433255],[516704.58530366916,5276579.782174876],[516704.9579819943,5276580.783501425],[516700.4469509402,5276582.326519683],[516697.8366019438,5276575.872930472],[516700.0927567169,5276574.879142271],[516698.82386113843,5276572.097010564]]]},"properties":{"ID_SOURCE":"w145338035","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1368}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.50711102615,5276661.309104884],[516576.64101115847,5276670.106600405],[516572.5018298336,5276672.984452699],[516571.0804647966,5276670.979892816],[516569.77852947265,5276671.876420064],[516568.82278835983,5276672.52942516],[516569.34664913855,5276673.197754032],[516564.3042778782,5276676.739880789],[516559.7410050175,5276670.28079855],[516564.707638415,5276666.960731891],[516563.8849235899,5276665.735854762],[516570.50711102615,5276661.309104884]]]},"properties":{"ID_SOURCE":"w145338042","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1369}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516717.08253370575,5276425.77838972],[516717.14495489036,5276419.732569142],[516717.1417823032,5276418.221060105],[516721.27291931916,5276418.232919573],[516721.42027063435,5276419.233599947],[516723.67361771036,5276419.24007004],[516727.80475401296,5276419.251934143],[516727.6350588643,5276426.030968582],[516727.63250515686,5276426.920078873],[516720.8724728346,5276426.900666592],[516720.8759827639,5276425.678139944],[516717.08253370575,5276425.77838972]]]},"properties":{"ID_SOURCE":"w145338044","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1370}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.7865106091,5276133.524856163],[516652.15747679595,5276133.517339207],[516652.1488977147,5276136.518085078],[516645.8395374322,5276136.388910493],[516645.8434759629,5276135.010790168],[516645.84779563895,5276133.499303358],[516647.6502440265,5276133.615594497],[516647.6689858203,5276127.058409124],[516655.0299708514,5276127.190592629],[516655.1000013947,5276128.9690271765],[516654.7865106091,5276133.524856163]]]},"properties":{"ID_SOURCE":"w145338046","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1371}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.9107668768,5276683.189316969],[517276.6027573859,5276683.210631148],[517276.84039303707,5276686.656670076],[517272.51324132265,5276686.955025557],[517272.2972785305,5276683.798014588],[517270.75723135285,5276683.904586867],[517269.32987944863,5276684.0003797645],[517269.4017247879,5276685.100876873],[517265.5704179458,5276685.356252032],[517264.92297862767,5276675.729625664],[517276.3568324711,5276674.963328175],[517276.9107668768,5276683.189316969]]]},"properties":{"ID_SOURCE":"w145338047","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1372}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516867.44372486806,5276598.9230702445],[516857.97577624145,5276600.340471974],[516857.5338069785,5276597.338419451],[516860.84054577403,5276596.681153819],[516859.5139966388,5276587.897273419],[516866.72771770274,5276586.806764136],[516867.242217293,5276590.698145364],[516869.94744211866,5276590.26142222],[516870.75851296174,5276595.48733987],[516868.20370223565,5276595.857814449],[516867.0014384791,5276596.032155814],[516867.44372486806,5276598.9230702445]]]},"properties":{"ID_SOURCE":"w145338048","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1373}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516583.8013408294,5276368.549397242],[516578.15879979904,5276369.100145439],[516572.7341485042,5276369.629291173],[516572.4204320216,5276366.372005942],[516568.0777111475,5276366.793095081],[516567.4864689947,5276360.756528761],[516571.87429333857,5276360.324453531],[516572.0494714854,5276362.114300771],[516578.44336320716,5276361.487887548],[516578.0347556438,5276357.263416747],[516582.6554634321,5276356.8208985515],[516583.8013408294,5276368.549397242]]]},"properties":{"ID_SOURCE":"w145338050","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1374}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517182.5775115519,5276531.826798953],[517190.2974524023,5276537.406569576],[517189.8451518176,5276537.960933362],[517189.09569144674,5276537.403022403],[517188.56828092324,5276537.957164598],[517186.9906418281,5276538.063648248],[517185.6176699348,5276540.0823403215],[517184.5011879971,5276541.723914333],[517177.45592683746,5276536.590700389],[517179.26643674914,5276533.928686421],[517180.4659033562,5276534.710203168],[517182.5775115519,5276531.826798953]]]},"properties":{"ID_SOURCE":"w145338054","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1375}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.98307237215,5276656.081367511],[516649.91738840076,5276654.311520414],[516649.17011591804,5276652.97570714],[516648.57242477225,5276651.862601061],[516657.0743157097,5276646.774484944],[516659.24165640643,5276650.559435564],[516661.04712410585,5276649.564343061],[516661.705294692,5276655.790051327],[516653.4303272284,5276660.323110948],[516654.7001784105,5276662.771816661],[516651.766182946,5276664.430522536],[516646.98307237215,5276656.081367511]]]},"properties":{"ID_SOURCE":"w145338061","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1376}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.53621929686,5276557.314148005],[516969.195111537,5276555.096186453],[516968.44576192903,5276554.4938483955],[516966.57241960877,5276552.976889803],[516969.438252237,5276548.984208704],[516971.6122289721,5276550.435360464],[516973.72372772015,5276547.551880719],[516978.0710310548,5276550.67646586],[516979.64509822184,5276551.792452486],[516974.59232890245,5276558.779527144],[516977.2156632806,5276560.676549824],[516975.3304685107,5276563.227268733],[516967.53621929686,5276557.314148005]]]},"properties":{"ID_SOURCE":"w145338064","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1377}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517162.3773580354,5276581.2244326575],[517162.23630968464,5276578.112103324],[517163.8136098962,5276578.116751792],[517163.59974548506,5276574.226229416],[517170.4353729894,5276574.024099838],[517172.4633318353,5276574.030079369],[517172.46202096675,5276574.474634603],[517171.7857070303,5276574.583780151],[517171.8581949631,5276575.473112083],[517170.50229057216,5276576.802791488],[517170.7056504081,5276579.159554291],[517170.86538620194,5276581.027173483],[517162.3773580354,5276581.2244326575]]]},"properties":{"ID_SOURCE":"w145338065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1378}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.71665907174,5276538.906071527],[517021.451336175,5276536.466066762],[517024.22423582914,5276538.58582723],[517029.5027376158,5276531.488315757],[517030.55167941074,5276532.380501118],[517035.34864906245,5276535.839863285],[517033.01048516145,5276539.167216891],[517035.1093398549,5276540.618172684],[517032.16867303965,5276544.499463059],[517029.9870355482,5276543.103836114],[517029.01990416204,5276542.489739438],[517027.51153036684,5276544.596984378],[517019.71665907174,5276538.906071527]]]},"properties":{"ID_SOURCE":"w145338066","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1379}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.014077943,5276227.201428651],[517118.5764272356,5276227.448867779],[517118.6306353829,5276234.561968434],[517117.57544691226,5276235.781403955],[517115.54802352394,5276235.553166329],[517115.4676840565,5276237.331165581],[517110.4353774133,5276237.2052399935],[517110.4494168605,5276232.426273791],[517111.42589873617,5276232.429142539],[517111.35568248335,5276230.761840635],[517110.0039567562,5276230.646729833],[517110.014077943,5276227.201428651]]]},"properties":{"ID_SOURCE":"w145338067","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1380}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.61650699284,5276500.243625821],[517217.5219264933,5276500.36631022],[517217.52619789797,5276498.921505893],[517220.6805126607,5276499.041971895],[517220.2799845521,5276507.487409828],[517217.68155738787,5276507.346359473],[517215.99934617773,5276507.252474575],[517214.8700612768,5276508.138254497],[517213.9690645233,5276508.024451509],[517213.890669071,5276509.135617456],[517213.2146752454,5276509.133619409],[517213.21763164084,5276508.133370247],[517213.61650699284,5276500.243625821]]]},"properties":{"ID_SOURCE":"w145338070","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1381}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516524.86435684736,5276573.601313702],[516523.8219676539,5276570.375304455],[516521.1407221985,5276562.365638564],[516531.44116436166,5276558.727258372],[516534.64343184634,5276568.405503912],[516531.4105625127,5276569.507723146],[516531.93222847633,5276570.954020206],[516529.526197486,5276571.836308297],[516529.07964062,5276570.39022463],[516528.2150599641,5276570.676734046],[516527.4256520812,5276570.941228987],[516528.0224284892,5276572.3877388565],[516524.86435684736,5276573.601313702]]]},"properties":{"ID_SOURCE":"w145338075","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1382}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.00442714687,5276588.3333323775],[517160.93914270547,5276584.998946751],[517162.44165913167,5276584.892234714],[517162.3773580354,5276581.2244326575],[517170.86538620194,5276581.027173483],[517171.46626217326,5276581.028945169],[517171.388531096,5276581.917834174],[517170.7122180445,5276582.02697985],[517170.86047088687,5276582.694255616],[517169.35467713565,5276583.912353576],[517169.4236921093,5276585.97975687],[517169.49244489707,5276588.136071223],[517161.00442714687,5276588.3333323775]]]},"properties":{"ID_SOURCE":"w145338076","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1383}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517193.5219631019,5276513.743317912],[517195.40759779885,5276511.0815307675],[517196.8323981555,5276511.863716168],[517198.94402267784,5276508.980317952],[517200.0677249396,5276509.983894479],[517206.28908337106,5276514.33672287],[517206.0624388894,5276514.78061233],[517205.38775907794,5276514.334060001],[517204.48380820564,5276515.220507648],[517202.9812729836,5276515.327208873],[517201.78934285074,5276517.079696459],[517200.56723801396,5276518.876551078],[517193.5219631019,5276513.743317912]]]},"properties":{"ID_SOURCE":"w145338078","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1384}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.98697083746,5276600.338721499],[516936.91752409743,5276599.902684671],[516937.4335917673,5276603.238378219],[516946.2249259165,5276602.041416175],[516946.37061667367,5276603.597796705],[516947.1803233535,5276609.268280538],[516943.4229269878,5276609.924186004],[516943.79071199655,5276612.59261023],[516938.90668206126,5276613.245240781],[516938.5076874937,5276610.976829219],[516938.24169093877,5276609.464554865],[516935.31114238163,5276609.900591022],[516933.98697083746,5276600.338721499]]]},"properties":{"ID_SOURCE":"w145338079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1385}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.5693817131,5276164.126699312],[516653.76027672034,5276164.051982811],[516653.6845700563,5276166.885827417],[516647.067398986,5276166.711315355],[516647.1515668711,5276163.544075919],[516649.10442627047,5276163.594113673],[516649.15454644733,5276161.827136526],[516649.3326339671,5276157.3376037935],[516655.4770682107,5276157.34405705],[516656.83633087424,5276157.4590837695],[516656.64272719366,5276159.49238568],[516656.5693817131,5276164.126699312]]]},"properties":{"ID_SOURCE":"w145338080","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1386}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516412.84039399575,5276665.863895654],[516414.04024854064,5276666.534115691],[516415.9057395312,5276670.873822884],[516414.0258388984,5276671.646501944],[516415.487372752,5276675.407143954],[516416.71031294623,5276678.544731337],[516418.0638274799,5276677.992848527],[516419.10719546885,5276680.885422798],[516408.58046294824,5276684.967922156],[516403.73412285687,5276672.284341343],[516409.82478462084,5276669.856427039],[516408.8558920649,5276667.18634379],[516412.84039399575,5276665.863895654]]]},"properties":{"ID_SOURCE":"w145338083","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1387}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516557.51415128954,5276238.274487984],[516557.7334898829,5276240.386764942],[516558.1008442799,5276243.27744029],[516557.12404850434,5276243.3858030625],[516555.24651860923,5276243.269326335],[516553.6688122302,5276243.375981663],[516553.67355036084,5276241.708900328],[516552.321185148,5276241.816196485],[516552.2508090172,5276240.148901688],[516553.7530864893,5276240.153171241],[516553.7584563916,5276238.263812404],[516557.51415128954,5276238.274487984]]]},"properties":{"ID_SOURCE":"w145338084","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1388}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516479.180492564,5276553.022158738],[516478.7326638324,5276552.020634249],[516473.91997456487,5276554.007532949],[516470.5623492207,5276546.107117375],[516475.07428962825,5276544.230504786],[516474.62708829745,5276543.006703014],[516474.6277170908,5276542.784425394],[516480.0425537985,5276540.3546723975],[516481.90677874355,5276545.138955127],[516482.80159357743,5276544.785840589],[516483.8618391455,5276544.366510612],[516486.248997278,5276550.152532255],[516479.180492564,5276553.022158738]]]},"properties":{"ID_SOURCE":"w145338085","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1389}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.2916256427,5276543.91893362],[517254.42366225,5276543.597755083],[517254.71126009536,5276547.9330584975],[517253.43419379584,5276547.995958787],[517253.7505848675,5276552.753678642],[517254.153550987,5276558.7119646715],[517252.1249282664,5276558.928234314],[517246.790487916,5276559.46813298],[517246.50189743465,5276555.466246303],[517246.14214610454,5276550.130471603],[517243.6631904144,5276550.234270851],[517243.2299714789,5276544.34257998],[517250.2916256427,5276543.91893362]]]},"properties":{"ID_SOURCE":"w145338088","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1390}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.5342551537,5276324.530185876],[516600.16977818793,5276320.639258501],[516599.02017168485,5276320.7693495825],[516597.2394274015,5276320.964326092],[516596.35897542466,5276313.626598846],[516601.5433513879,5276313.085676012],[516601.4710896037,5276312.085212997],[516608.8340600514,5276311.439367333],[516609.71227800887,5276319.55506786],[516607.83382289374,5276319.771990415],[516608.19829479913,5276323.662918273],[516608.04806920385,5276323.662489892],[516600.5342551537,5276324.530185876]]]},"properties":{"ID_SOURCE":"w145338089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1391}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517173.41479020775,5276557.028499829],[517171.99695821106,5276558.980378973],[517170.9260083205,5276560.466494175],[517171.071640189,5276562.022880365],[517170.4678131524,5276563.021357977],[517171.3674914211,5276563.579709488],[517171.3665083366,5276563.913125907],[517163.569837313,5276558.88885277],[517165.83197567257,5276555.894746335],[517164.4071820134,5276555.11256845],[517166.4439926469,5276552.117798155],[517167.7182394286,5276553.010672509],[517173.41479020775,5276557.028499829]]]},"properties":{"ID_SOURCE":"w145338091","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1392}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.05656647217,5276569.861295649],[516887.646485941,5276573.641757592],[516888.0877970104,5276576.866089937],[516884.5560374502,5276577.411548008],[516884.9989610868,5276580.08018608],[516879.96404750977,5276580.9547081655],[516879.6541927213,5276579.019978491],[516879.3738017139,5276577.28538578],[516876.4432415473,5276577.721451566],[516875.1173554576,5276568.715290208],[516878.04792004655,5276568.279223751],[516878.5653127924,5276571.1703565875],[516887.05656647217,5276569.861295649]]]},"properties":{"ID_SOURCE":"w145338092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1393}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.12501634983,5276379.91073393],[516424.0117833797,5276379.932969521],[516423.92538842635,5276383.933753828],[516425.42762873217,5276383.937990368],[516428.35699733027,5276383.946252739],[516428.34530384414,5276388.091729307],[516428.32909597305,5276393.837604374],[516416.01074637886,5276393.802869985],[516416.0223371268,5276389.690735014],[516418.65125505574,5276389.698145654],[516418.74203273834,5276384.141418297],[516416.03800028807,5276384.133795905],[516416.12501634983,5276379.91073393]]]},"properties":{"ID_SOURCE":"w145338094","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1394}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.4353729894,5276574.024099838],[517163.59974548506,5276574.226229416],[517162.17266338994,5276574.222023695],[517162.0316147279,5276571.109694397],[517163.5344623032,5276570.8918438265],[517163.3957070806,5276567.001542868],[517172.4095237747,5276566.805835438],[517172.33212009456,5276567.583585612],[517171.5059137246,5276567.581149442],[517171.6531837523,5276568.58184163],[517170.1473862113,5276569.799939364],[517170.2626792789,5276571.456261908],[517170.4353729894,5276574.024099838]]]},"properties":{"ID_SOURCE":"w145338096","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1395}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516655.1000013947,5276128.9690271765],[516661.33393633546,5276129.209135633],[516661.4641379048,5276136.211305709],[516664.84368671395,5276136.4432534585],[516664.9105342515,5276139.333075521],[516664.45888925076,5276139.665202239],[516658.9006525393,5276139.549276541],[516658.22464775696,5276139.536229144],[516658.18482332723,5276137.702311093],[516658.1584326215,5276136.424129693],[516654.70345054474,5276136.3031097725],[516654.7865106091,5276133.524856163],[516655.1000013947,5276128.9690271765]]]},"properties":{"ID_SOURCE":"w145338097","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1396}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.2233309667,5276179.523405319],[516614.4682841606,5276179.532660816],[516614.86823065684,5276178.889191739],[516615.29834992863,5276178.201352902],[516615.3975601072,5276169.755022709],[516620.1373029367,5276169.768545719],[516623.43484192394,5276169.777956237],[516623.7108762584,5276178.336496992],[516622.350882654,5276181.111106768],[516620.1728753135,5276180.993751698],[516620.0124977064,5276184.549762839],[516611.27679735696,5276184.480386129],[516611.2066591496,5276182.73529361],[516611.2233309667,5276179.523405319]]]},"properties":{"ID_SOURCE":"w145338098","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1397}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.49244489707,5276588.136071223],[517169.5304002506,5276590.547916272],[517169.5554307463,5276592.248428652],[517170.75455888064,5276593.141082307],[517170.82639133855,5276594.252691873],[517171.5778123012,5276594.143767679],[517171.5755183821,5276594.921739357],[517169.62234846444,5276595.027120369],[517162.71196386,5276595.117890683],[517162.49678931833,5276591.671923487],[517161.144820856,5276591.667939357],[517161.00442714687,5276588.3333323775],[517169.49244489707,5276588.136071223]]]},"properties":{"ID_SOURCE":"w145338100","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1398}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.8132272443,5276112.107452926],[516470.7333975235,5276113.774321521],[516467.504059421,5276113.542911195],[516468.1326356518,5276103.764401686],[516469.5642322124,5276102.212494814],[516480.0031063629,5276103.019998537],[516479.7664391873,5276107.0203553075],[516478.5649042043,5276106.905816235],[516478.5249253146,5276107.761478219],[516478.4853866309,5276108.4615459815],[516483.36726961733,5276108.697638814],[516483.1306003307,5276112.697995491],[516470.8132272443,5276112.107452926]]]},"properties":{"ID_SOURCE":"w145338104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1399}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.21283725597,5276248.830284825],[516650.4042731609,5276234.416017822],[516654.7005686678,5276234.506099303],[516654.66556538106,5276236.23977794],[516658.8041520374,5276236.318297518],[516658.7408915234,5276240.0524092605],[516658.6775357079,5276243.819862649],[516654.7342503385,5276243.741901599],[516654.7430647198,5276243.2862541815],[516654.0745833543,5276243.273228711],[516653.4211247568,5276243.260246278],[516653.32993137604,5276248.883652526],[516650.21283725597,5276248.830284825]]]},"properties":{"ID_SOURCE":"w145338105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1400}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516991.75136024825,5276109.49170499],[516998.00281841704,5276103.730682445],[517000.09956892586,5276105.95959532],[516999.5721377502,5276106.513754304],[517000.7404054028,5276107.728586583],[517002.5676782188,5276109.634408768],[517003.3913539503,5276110.5259306375],[517000.6797328067,5276113.074227864],[516993.82541274314,5276119.500326677],[516990.75508145255,5276116.268318813],[516990.83895044867,5276113.267792247],[516993.17401664477,5276111.051810871],[516991.75136024825,5276109.49170499]]]},"properties":{"ID_SOURCE":"w145338107","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1401}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.592871686,5276405.782560502],[517175.7281365202,5276409.330583175],[517173.40524468303,5276407.434357463],[517174.611293084,5276405.993097215],[517172.06371959456,5276403.873930004],[517171.38509212853,5276404.761047069],[517165.91470833,5276400.410470887],[517171.04131744616,5276393.979478413],[517176.1894108717,5276398.095715384],[517178.16023059236,5276399.668598441],[517179.1402905492,5276398.448952066],[517182.21233509894,5276401.014228621],[517178.592871686,5276405.782560502]]]},"properties":{"ID_SOURCE":"w145338109","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1402}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.2913073146,5276546.461011791],[517177.4116726045,5276551.594438706],[517176.0541880625,5276553.457583039],[517174.9983236491,5276554.921514028],[517175.36961179273,5276556.367426043],[517174.61556383607,5276557.365460191],[517175.2154589454,5276557.700648671],[517174.98881849647,5276558.144539361],[517173.41479020775,5276557.028499829],[517167.7182394286,5276553.010672509],[517169.75472483493,5276550.127042179],[517168.4056954595,5276549.122807157],[517170.2913073146,5276546.461011791]]]},"properties":{"ID_SOURCE":"w145338110","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1403}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517225.1557395243,5276331.901020191],[517224.1743440904,5276333.565213808],[517221.1221869275,5276331.889092179],[517215.0253786237,5276328.536875948],[517219.02738371666,5276321.435763412],[517224.80219822505,5276324.45361226],[517225.70749640296,5276323.122612902],[517228.70674914774,5276324.909720132],[517228.3292125933,5276325.575441752],[517231.17922416644,5276327.028689592],[517229.59363635146,5276329.802492149],[517227.7056267491,5276333.242238998],[517225.1557395243,5276331.901020191]]]},"properties":{"ID_SOURCE":"w145338113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1404}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.05656647217,5276569.861295649],[516886.615898793,5276566.4146858],[516895.2570582297,5276565.217211197],[516894.8157501911,5276561.992878357],[516898.1218683828,5276561.557911486],[516899.521862744,5276570.897712447],[516896.14064012916,5276571.332460602],[516896.47328071145,5276573.178345468],[516896.8798053026,5276575.44677576],[516891.7704210617,5276576.098792099],[516891.32878961565,5276572.985598283],[516887.646485941,5276573.641757592],[516887.05656647217,5276569.861295649]]]},"properties":{"ID_SOURCE":"w145338114","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1405}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516709.7243320666,5276333.1779091945],[516712.8039518916,5276333.18674558],[516713.17983421375,5276333.076684531],[516713.1788774279,5276333.410100841],[516713.7053040352,5276333.189332147],[516713.60946045286,5276340.413136686],[516710.00405635,5276340.402791302],[516710.00086766575,5276341.514179018],[516700.9125652471,5276341.376971162],[516701.01126133837,5276333.15291751],[516707.1859698669,5276333.015031512],[516709.72496979136,5276332.955631655],[516709.7243320666,5276333.1779091945]]]},"properties":{"ID_SOURCE":"w145338115","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1406}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517208.15169821994,5276341.519911849],[517201.25250048045,5276337.720780319],[517197.50310394703,5276335.598052925],[517201.0514521687,5276329.495846166],[517204.651282552,5276331.395854517],[517206.23751469667,5276328.399767663],[517213.21117607446,5276332.421404547],[517211.4743876427,5276335.528184345],[517210.7245746933,5276335.081409605],[517209.84827595076,5276336.768144133],[517208.98713159194,5276338.410467681],[517209.661831622,5276338.8570202505],[517208.15169821994,5276341.519911849]]]},"properties":{"ID_SOURCE":"w145338117","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1407}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517168.4223475765,5276237.709299538],[517160.68561337603,5276237.686498987],[517160.0122076158,5276236.795397204],[517159.94462487684,5276234.23898468],[517158.8933567379,5276234.124747759],[517158.9071085086,5276229.456920345],[517163.63961993455,5276229.359724883],[517163.7111313033,5276230.582472459],[517165.36331210815,5276230.69848122],[517165.2931112669,5276229.031178631],[517168.3727867442,5276229.040255772],[517168.4223475765,5276237.709299538]]]},"properties":{"ID_SOURCE":"w145338118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1408}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517243.2299714789,5276544.34257998],[517241.6523330323,5276544.449048827],[517241.43687403016,5276541.11421768],[517239.55879469606,5276541.219797642],[517239.2698692465,5276537.32905025],[517240.6225083982,5276537.110774886],[517240.1935623692,5276529.77427998],[517247.9312254374,5276529.352631911],[517248.2664356692,5276535.366286489],[517248.50149444793,5276539.690319932],[517250.0037280119,5276539.683655382],[517250.2916256427,5276543.91893362],[517243.2299714789,5276544.34257998]]]},"properties":{"ID_SOURCE":"w145338120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1409}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.95981978177,5276251.664452645],[516692.96943168034,5276237.827591571],[516697.2586269867,5276237.773202544],[516697.26864751213,5276239.518124042],[516701.4225091547,5276239.507805973],[516701.40232353314,5276241.308210708],[516701.4468622833,5276246.731954242],[516697.0526416548,5276246.7415832],[516697.0544258795,5276246.119206172],[516696.4760496133,5276246.1175481165],[516695.98780990567,5276246.116148504],[516696.0019576822,5276251.662058526],[516692.95981978177,5276251.664452645]]]},"properties":{"ID_SOURCE":"w145338122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1410}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.35817069875,5276538.691870197],[517100.75614411617,5276540.588286982],[517097.73999710276,5276544.580462604],[517095.7613026759,5276543.140950849],[517094.6670131553,5276542.348646341],[517092.8575232265,5276544.677270136],[517085.13782546064,5276538.986490019],[517087.1736224962,5276536.325108568],[517089.9468246009,5276538.333761579],[517095.2250807905,5276531.34744829],[517097.9979562342,5276533.467243926],[517100.84593973705,5276535.587261442],[517098.35817069875,5276538.691870197]]]},"properties":{"ID_SOURCE":"w145338123","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1411}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516437.73578211525,5276337.027322271],[516436.6691829015,5276337.024312051],[516436.69665742305,5276332.612145166],[516442.1197299937,5276332.64968044],[516442.16816117434,5276326.137033229],[516439.6293498424,5276326.129866463],[516439.65886569035,5276320.995297646],[516450.07688929955,5276321.069169426],[516449.9979511671,5276333.06091557],[516446.71555877535,5276333.040531569],[516444.2594057685,5276333.022482221],[516444.23296104453,5276337.067891139],[516437.73578211525,5276337.027322271]]]},"properties":{"ID_SOURCE":"w145338126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1412}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.2195319077,5276349.887232619],[516489.2924417599,5276350.665416705],[516485.1596843148,5276351.209415777],[516484.7181322147,5276347.985115683],[516475.40135506116,5276348.959009662],[516474.9607405311,5276345.401294008],[516475.7872925837,5276345.29249251],[516474.83283652837,5276337.510016129],[516483.69927066076,5276336.423706905],[516484.16920212517,5276340.237127396],[516484.433410504,5276342.427326575],[516488.26540922857,5276341.993615163],[516489.2195319077,5276349.887232619]]]},"properties":{"ID_SOURCE":"w145338128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1413}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.1987808469,5276313.079136292],[516643.90736395563,5276313.095447069],[516643.8527998493,5276316.418367425],[516643.8170060755,5276318.429893264],[516645.2441505449,5276318.433971814],[516645.15792066266,5276322.323614037],[516641.4773926471,5276322.313096433],[516641.4691361152,5276325.202704427],[516634.7840987447,5276325.183606973],[516634.79393911624,5276321.738305135],[516635.7700883779,5276321.852232941],[516635.87027984066,5276313.072484819],[516638.1987808469,5276313.079136292]]]},"properties":{"ID_SOURCE":"w145338129","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1414}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516684.5820054198,5276242.071321719],[516684.5969667422,5276239.470696389],[516688.5479571682,5276239.4820159245],[516688.5527020535,5276237.826048497],[516692.96943168034,5276237.827591571],[516692.95981978177,5276251.664452645],[516689.79749992717,5276251.666503965],[516689.7981142249,5276246.209548023],[516689.05448760645,5276246.207417172],[516688.2282358108,5276246.205049675],[516688.22648437304,5276246.816312825],[516684.59097685013,5276246.805897223],[516684.5820054198,5276242.071321719]]]},"properties":{"ID_SOURCE":"w145338130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1415}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.56664931326,5276218.089596064],[517115.6737600498,5276218.326881197],[517115.74593483674,5276219.327350646],[517117.92424546706,5276219.333752356],[517118.5970063754,5276220.447126719],[517118.5764272356,5276227.448867779],[517110.014077943,5276227.201428651],[517110.0222401856,5276224.422959967],[517111.4490814482,5276224.538291446],[517111.4546322348,5276222.648932745],[517110.628703453,5276222.5353665855],[517110.56664931326,5276218.089596064]]]},"properties":{"ID_SOURCE":"w145338134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1416}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516460.0192814614,5276529.295215216],[516462.10885667545,5276534.080128344],[516452.1814534157,5276538.60880241],[516450.389800583,5276534.713851931],[516449.4875379747,5276535.044722464],[516447.6968238742,5276530.816356422],[516448.4488667784,5276530.485061333],[516450.32913138374,5276529.601254632],[516448.7621772565,5276525.929218821],[516456.9595512985,5276522.2847674675],[516459.0488174855,5276527.18081824],[516460.0192814614,5276529.295215216]]]},"properties":{"ID_SOURCE":"w145338136","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1417}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517195.0100752866,5276213.225856234],[517188.9087660774,5276218.987111863],[517183.6661854455,5276213.748075757],[517183.7449065264,5276212.525771179],[517185.62768172787,5276210.864230601],[517184.8033922383,5276210.194960204],[517188.41904515686,5276206.760298265],[517191.56433348963,5276209.992632878],[517190.7354521548,5276210.879304054],[517191.7837714631,5276211.99379541],[517192.8383236738,5276210.996650817],[517195.0100752866,5276213.225856234]]]},"properties":{"ID_SOURCE":"w145338139","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1418}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.5161613529,5276516.04731395],[516690.2640070403,5276516.113623442],[516690.19194287265,5276520.292270214],[516689.1554530654,5276520.2781858975],[516689.12827006006,5276521.900747851],[516689.1013418531,5276523.434398761],[516690.10024413513,5276523.459489325],[516690.0988427043,5276523.948500059],[516689.93360022514,5276523.9480265],[516689.879966363,5276526.937531172],[516682.3166578448,5276526.815835304],[516682.4979184417,5276515.980232304],[516686.5161613529,5276516.04731395]]]},"properties":{"ID_SOURCE":"w145338140","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1419}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517035.24264163716,5276520.724546939],[517042.96208691545,5276526.52639938],[517041.07685230725,5276529.077096964],[517042.22346849745,5276529.95845626],[517043.84974840627,5276531.196866759],[517040.908420631,5276535.300430292],[517040.0087255739,5276534.742098999],[517037.7469691818,5276537.625115263],[517035.34864906245,5276535.839863285],[517030.55167941074,5276532.380501118],[517035.8298693957,5276525.39413422],[517033.281973273,5276523.386166116],[517035.24264163716,5276520.724546939]]]},"properties":{"ID_SOURCE":"w145338142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1420}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.35607418703,5276653.309460205],[516570.30898182234,5276651.75052454],[516573.9965765317,5276649.204804649],[516576.53982924693,5276652.879654369],[516583.38831619243,5276648.120144072],[516587.80199656077,5276654.356539101],[516589.0813743528,5276653.47106559],[516592.82160168514,5276658.81642831],[516586.87631975237,5276662.911661665],[516583.28599014255,5276657.677869325],[516580.89276198007,5276659.349264703],[516577.2652890049,5276661.88403742],[516571.35607418703,5276653.309460205]]]},"properties":{"ID_SOURCE":"w145338143","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1421}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516658.6775357079,5276243.819862649],[516658.7408915234,5276240.0524092605],[516663.38286559604,5276240.087916058],[516663.3774283326,5276241.988388756],[516667.4861243016,5276242.011259175],[516667.43518309266,5276249.312989407],[516663.9574478511,5276249.291924211],[516663.95916494523,5276248.691774929],[516663.2906524201,5276248.689862277],[516662.539514752,5276248.687713322],[516662.5091984484,5276254.0334445145],[516658.64090658136,5276254.000151195],[516658.6775357079,5276243.819862649]]]},"properties":{"ID_SOURCE":"w145338145","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1422}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.9166753097,5276254.182956638],[516675.97179240244,5276240.179516485],[516680.5387797818,5276240.170366392],[516680.5483278609,5276242.0819959855],[516684.5820054198,5276242.071321719],[516684.59097685013,5276246.805897223],[516684.59823127405,5276249.517725891],[516680.5946043756,5276249.528486185],[516680.5959093973,5276249.0728172865],[516679.8597945251,5276249.070709123],[516679.34150956536,5276249.06922486],[516679.35694626084,5276254.170579802],[516675.9166753097,5276254.182956638]]]},"properties":{"ID_SOURCE":"w145338150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1423}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516677.5002887559,5276149.705097958],[516685.22726859554,5276153.172557282],[516685.602525208,5276153.284771935],[516684.16610790376,5276156.503707024],[516682.81594867515,5276155.833001745],[516681.9237987714,5276157.853188109],[516680.01855312224,5276162.159950058],[516679.71809358837,5276162.159089612],[516672.2161491262,5276158.803421301],[516675.0129014041,5276152.698746772],[516674.1875908461,5276152.362965078],[516675.62464001053,5276148.921750083],[516677.5002887559,5276149.705097958]]]},"properties":{"ID_SOURCE":"w145338158","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1424}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517168.02940658364,5276625.808143224],[517175.7751310156,5276622.6079291245],[517176.7368249134,5276625.055840788],[517177.3406178152,5276626.613578679],[517179.0664834737,5276627.17436848],[517178.9156099779,5276627.396202988],[517179.2140784624,5276628.063922146],[517179.9661509629,5276627.732721403],[517180.26429143746,5276628.511579434],[517171.8425927453,5276631.7097943025],[517170.5007918277,5276628.260504637],[517169.2223024362,5276628.812434149],[517168.02940658364,5276625.808143224]]]},"properties":{"ID_SOURCE":"w145338162","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1425}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.28058505175,5276627.536977323],[516693.3343394492,5276626.762019669],[516691.1647820996,5276623.755028219],[516690.6377454764,5276624.198076627],[516687.94560778525,5276620.078191362],[516694.8693338596,5276615.31902734],[516699.2074927832,5276621.666430204],[516700.3360394216,5276621.002828017],[516702.9546528442,5276624.566809505],[516693.17106003466,5276631.318280769],[516691.00150431856,5276628.311289359],[516692.28058505175,5276627.536977323]]]},"properties":{"ID_SOURCE":"w145338164","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1426}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.61650699284,5276500.243625821],[517213.21763164084,5276508.133370247],[517210.91213532485,5276507.993188728],[517209.3125456883,5276507.899549927],[517207.58106497827,5276509.228110873],[517206.9050711646,5276509.22611356],[517206.82700544165,5276510.226140806],[517206.1510117455,5276510.22414358],[517206.466229555,5276505.223785419],[517206.77849258744,5276501.2236764645],[517210.15780944156,5276501.455941323],[517210.31197167333,5276500.122719714],[517213.61650699284,5276500.243625821]]]},"properties":{"ID_SOURCE":"w145338165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1427}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516918.9141399428,5276457.547029952],[516918.74209725973,5276449.544469814],[516923.23393985356,5276449.490836693],[516923.30614449055,5276450.491304048],[516924.74076788116,5276450.495472991],[516926.8363695887,5276450.501563337],[516926.8389537269,5276449.612453029],[516929.46784515766,5276449.620094315],[516929.51937230397,5276457.733444249],[516926.9659186345,5276457.61488245],[516926.81246629736,5276458.725833736],[516923.1320240507,5276458.715137932],[516923.06046539044,5276457.492392985],[516918.9141399428,5276457.547029952]]]},"properties":{"ID_SOURCE":"w145338167","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1428}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516826.7068914081,5276608.363241816],[516832.85234824265,5276613.04887096],[516831.0423427529,5276615.599853693],[516829.5433737272,5276614.484124202],[516828.11084214295,5276616.369360225],[516829.28764511854,5276617.206308969],[516833.1328672705,5276619.940346102],[516830.2671629628,5276623.933094411],[516826.6696411597,5276621.255344721],[516824.6339930244,5276623.916817231],[516820.13708702486,5276620.569634825],[516826.32010670047,5276612.252015339],[516824.89624500595,5276611.13650407],[516826.7068914081,5276608.363241816]]]},"properties":{"ID_SOURCE":"w145338168","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1429}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.0640409757,5276406.097752944],[517207.50071864633,5276409.313231539],[517209.0744522152,5276410.54041872],[517206.88833243423,5276413.201313441],[517198.34562277986,5276406.396555798],[517200.6829494515,5276403.402685241],[517201.5072096003,5276404.071958158],[517202.5025258862,5276402.774562919],[517203.61854678486,5276401.299700805],[517202.8690700279,5276400.741788232],[517206.6387802639,5276395.973915243],[517212.9337258001,5276400.882665468],[517209.2397820927,5276405.428478812],[517210.0640409757,5276406.097752944]]]},"properties":{"ID_SOURCE":"w145338169","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1430}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517118.70674584503,5276208.666640491],[517108.5669686363,5276208.414567558],[517108.5751301403,5276205.636098956],[517109.85174736875,5276205.750988746],[517109.9324119627,5276203.86185076],[517108.6554678604,5276203.858099696],[517108.6688527743,5276199.30141123],[517113.7766331764,5276199.316417169],[517113.847828873,5276200.65030279],[517117.3030912938,5276200.660456452],[517117.43862178316,5276205.662141412],[517118.71556549455,5276205.665894403],[517118.70674584503,5276208.666640491]]]},"properties":{"ID_SOURCE":"w145338170","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1431}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.2505477502,5276532.568018746],[516714.23746242846,5276532.497688316],[516714.2306059921,5276529.652491807],[516714.26983634545,5276526.4517804785],[516715.83957543614,5276526.478513787],[516715.87804108317,5276523.544535608],[516721.9242226208,5276523.628576779],[516721.8850518765,5276526.807060297],[516723.25950437726,5276526.833234881],[516723.2309395809,5276528.933693571],[516723.7792437077,5276528.935268075],[516723.7603918769,5276530.268890587],[516723.25715395657,5276530.267445493],[516723.2505477502,5276532.568018746]]]},"properties":{"ID_SOURCE":"w145338171","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1432}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516746.6498233929,5276604.909424253],[516745.3007343536,5276603.905287303],[516749.07057756523,5276598.914840215],[516751.2570576102,5276596.031495917],[516753.3681107647,5276593.259075188],[516754.11920402327,5276593.261235964],[516757.21051877,5276589.157960011],[516757.0631781359,5276588.157278442],[516759.62649265316,5276584.830462674],[516761.4361563201,5276582.3905967325],[516765.4323156312,5276577.067392436],[516766.85651699913,5276578.07175025],[516746.6498233929,5276604.909424253]]]},"properties":{"ID_SOURCE":"w145338172","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1433}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.66891291726,5276166.062696697],[517261.24861324474,5276166.854245214],[517263.3508405639,5276167.193894862],[517265.37070494896,5276169.978374796],[517264.8435835888,5276170.421371127],[517266.0404783918,5276172.092014788],[517254.44843944017,5276180.282001447],[517252.1294314409,5276177.052080336],[517254.7640434519,5276175.170509617],[517252.37057719234,5276171.7180884415],[517255.45686827204,5276169.5044368245],[517254.18518431287,5276167.7224341],[517256.66891291726,5276166.062696697]]]},"properties":{"ID_SOURCE":"w145338173","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1434}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.9873950573,5276656.711071435],[516634.58540593705,5276657.71303719],[516640.4543481174,5276654.062193169],[516643.0707596535,5276658.404119661],[516643.6937153677,5276658.561495666],[516644.4217593866,5276658.741400039],[516643.51092869946,5276662.07298891],[516642.9877106292,5276661.182375704],[516638.8494425941,5276663.726764408],[516639.44745191,5276664.728730676],[516642.81176658993,5276670.184191537],[516636.943156591,5276673.723894408],[516628.870813592,5276659.9195113005],[516633.9873950573,5276656.711071435]]]},"properties":{"ID_SOURCE":"w145338174","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1435}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516769.1732608185,5276529.954917905],[516769.16046015033,5276534.400470076],[516768.48446938145,5276534.398523645],[516768.5458192307,5276539.177708527],[516767.7202489501,5276538.953052042],[516767.7879991769,5276541.509460828],[516761.5538697067,5276541.491514831],[516761.7117666988,5276538.824615848],[516760.6602263051,5276538.821589444],[516760.7141523292,5276535.743174237],[516760.75132915203,5276533.264865362],[516759.69978775654,5276533.261839131],[516759.7844929818,5276529.927891156],[516769.1732608185,5276529.954917905]]]},"properties":{"ID_SOURCE":"w145338175","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1436}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.93918767857,5276541.493775966],[516721.6698886168,5276541.57691146],[516721.61665339366,5276544.421935509],[516723.17887662206,5276544.448649245],[516723.14264132734,5276546.604655826],[516723.76605371776,5276546.606446017],[516723.74688276247,5276548.051207375],[516723.093426563,5276548.049330915],[516723.05572327494,5276550.716576025],[516713.9752585327,5276550.579368537],[516714.03896736784,5276546.700775046],[516714.0836033935,5276544.23360131],[516715.8936895517,5276544.261024455],[516715.93918767857,5276541.493775966]]]},"properties":{"ID_SOURCE":"w145338179","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1437}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516917.612213872,5276432.547923665],[516917.66488782293,5276440.272287482],[516914.0971977185,5276440.228583061],[516914.09971534816,5276439.361700527],[516912.19943133864,5276439.345067993],[516910.4643922148,5276439.328915884],[516910.4433353974,5276441.40716758],[516906.9807694978,5276441.37488673],[516907.0345278934,5276433.206273156],[516910.31683130166,5276433.238030603],[516910.3374040296,5276431.326487113],[516914.0102878692,5276431.359380732],[516914.0068019471,5276432.5596796125],[516917.612213872,5276432.547923665]]]},"properties":{"ID_SOURCE":"w145338180","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1438}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516952.4676607564,5276418.456734214],[516952.5204505181,5276426.125528892],[516946.2107621838,5276426.218305673],[516946.14082482643,5276424.439866577],[516944.5257657056,5276424.490737292],[516942.9858181236,5276424.541826967],[516943.1341011858,5276425.209096694],[516938.77731100086,5276425.307563244],[516938.79929148115,5276417.750125986],[516942.5548712344,5276417.761050133],[516942.6332159819,5276416.649880814],[516946.4642314472,5276416.549887206],[516946.5335220414,5276418.550603853],[516952.4676607564,5276418.456734214]]]},"properties":{"ID_SOURCE":"w145338184","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1439}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.5398204581,5276532.5226495825],[516743.47792336275,5276532.548339968],[516743.4230159062,5276535.971285588],[516743.38523936813,5276538.6607583035],[516741.6577086867,5276538.655791889],[516741.7993023718,5276541.656971491],[516735.9407230808,5276541.640132532],[516735.9490270524,5276538.750523577],[516734.52161715983,5276538.857561479],[516734.3784228789,5276536.412076101],[516733.85392984544,5276535.966010124],[516733.8571232766,5276534.854622072],[516734.45800390386,5276534.856348655],[516734.5398204581,5276532.5226495825]]]},"properties":{"ID_SOURCE":"w145338195","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1440}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.9407230808,5276541.640132532],[516741.7993023718,5276541.656971491],[516741.7906759932,5276544.657719261],[516743.36766546307,5276544.773392644],[516743.4276277232,5276547.429804477],[516743.50063081825,5276550.775320117],[516734.48776536924,5276550.638274995],[516734.41840388905,5276548.63756063],[516733.7427341264,5276548.52447942],[516733.7468855757,5276547.079674926],[516734.4976654275,5276547.1929719625],[516734.42990067706,5276544.636563572],[516736.0072096726,5276544.641096151],[516735.9407230808,5276541.640132532]]]},"properties":{"ID_SOURCE":"w145338197","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1441}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.2361503834,5276318.533266288],[517253.74663911655,5276315.759247394],[517252.9217138958,5276315.312244714],[517254.7346311889,5276311.872283555],[517255.7094534112,5276312.430870331],[517257.5213852983,5276309.324326331],[517264.19590050477,5276312.900578871],[517262.3081944142,5276316.229175714],[517261.55838283326,5276315.782394437],[517260.67485161655,5276317.369074164],[517259.8215636443,5276318.889159811],[517260.6464878336,5276319.336163471],[517259.13566736976,5276322.22131936],[517252.2361503834,5276318.533266288]]]},"properties":{"ID_SOURCE":"w145338200","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1442}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517196.7809870162,5276224.01163696],[517200.3215243841,5276220.576760558],[517204.81524121994,5276225.035621655],[517203.8354752653,5276226.1441247165],[517206.45625961927,5276228.930359456],[517199.4338717642,5276236.278181116],[517193.3831360751,5276230.003150175],[517195.4925630577,5276227.897722971],[517196.6159924074,5276229.012437001],[517199.25253214093,5276226.464008639],[517196.7809870162,5276224.01163696]]]},"properties":{"ID_SOURCE":"w145338201","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1443}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516606.46123879857,5276643.073465539],[516600.327988354,5276634.053661295],[516603.2626179878,5276632.172651934],[516601.54271900875,5276629.500395267],[516607.3368766277,5276625.73816508],[516608.9819821823,5276628.299070413],[516609.7346557943,5276627.745518464],[516615.26893090137,5276636.096785223],[516611.5062010233,5276638.642264748],[516611.1322423998,5276638.085499418],[516609.792580692,5276639.037479995],[516608.6485824473,5276639.856651227],[516609.3961828848,5276641.081320425],[516606.46123879857,5276643.073465539]]]},"properties":{"ID_SOURCE":"w145338202","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1444}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.8345039249,5276502.443207164],[517277.228539854,5276502.654787982],[517277.2750568855,5276502.1659109825],[517276.3578750623,5276492.316206369],[517280.18950720155,5276491.994154794],[517279.9671431006,5276490.993237077],[517290.9356094198,5276490.247813581],[517292.0964610518,5276504.032592078],[517287.1378488911,5276504.462430177],[517287.0653775792,5276503.5730968695],[517286.9942258277,5276502.239208389],[517280.90895487915,5276502.665707625],[517280.8345039249,5276502.443207164]]]},"properties":{"ID_SOURCE":"w145338203","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1445}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516929.51937230397,5276457.733444249],[516929.46784515766,5276449.620094315],[516932.92328274227,5276449.519000162],[516932.91714320844,5276451.630637145],[516934.89256666217,5276451.636380977],[516936.5224787879,5276451.64112069],[516936.4499532367,5276450.751791948],[516940.35605731857,5276450.6520128045],[516940.5497094071,5276461.544269597],[516936.94405674085,5276461.644922334],[516936.5743192698,5276459.643331942],[516932.74397861026,5276459.521054413],[516932.67403762514,5276457.742615396],[516929.51937230397,5276457.733444249]]]},"properties":{"ID_SOURCE":"w145338204","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1446}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.46003083343,5276648.912729059],[517200.4081818678,5276649.020762026],[517201.1336627775,5276657.691808532],[517197.60257824854,5276658.014799131],[517197.53107999306,5276656.792050285],[517186.93815461494,5276657.649896245],[517186.7128290891,5276657.6492312495],[517186.06210734585,5276649.089547068],[517193.04884952056,5276648.554471071],[517192.97669394413,5276647.553999942],[517194.55955385853,5276645.669296844],[517201.17075761734,5276645.133121772],[517201.3369748681,5276647.345294545],[517201.46003083343,5276648.912729059]]]},"properties":{"ID_SOURCE":"w145338206","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1447}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.07562002866,5276432.444959823],[516931.35802074615,5276432.4433874935],[516931.3607024894,5276431.520935576],[516935.11633798527,5276431.509627191],[516935.1138495501,5276432.365395836],[516938.74179512984,5276432.353718493],[516938.74937427836,5276440.077951492],[516934.9036107215,5276440.088995429],[516934.9062607169,5276439.17765738],[516933.2988461837,5276439.184097523],[516931.3759641212,5276439.189620974],[516931.3729592661,5276440.223211688],[516928.083051803,5276440.224762169],[516928.07562002866,5276432.444959823]]]},"properties":{"ID_SOURCE":"w145338207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1448}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.1694914565,5276212.204530228],[517153.02383305336,5276212.212935702],[517152.9277711106,5276219.325594177],[517150.74946044624,5276219.319179377],[517150.81999285845,5276220.875343006],[517149.990137538,5276222.095436217],[517144.7321487854,5276222.079956254],[517144.7502402669,5276215.93398361],[517143.39808645204,5276215.963345438],[517143.4196767319,5276208.62818829],[517148.22666461766,5276208.753478848],[517148.2916351401,5276212.199001075],[517150.1694914565,5276212.204530228]]]},"properties":{"ID_SOURCE":"w145338208","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1449}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517137.26007426437,5276183.1590691805],[517137.1059209849,5276184.492292038],[517133.72543661663,5276184.593486359],[517133.72968680627,5276183.148682741],[517131.0255602422,5276183.140728618],[517131.1215956647,5276176.028070246],[517144.11644196353,5276176.066305886],[517144.0318403648,5276179.289108207],[517144.933216487,5276179.291761453],[517144.989029153,5276185.849168193],[517140.5572682053,5276185.836124351],[517140.489676149,5276183.279712285],[517137.26007426437,5276183.1590691805]]]},"properties":{"ID_SOURCE":"w145338212","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1450}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516472.2916240235,5276704.819517863],[516467.8866590367,5276695.471322679],[516479.16952724947,5276689.612834393],[516478.1236748109,5276687.609359921],[516484.29166231304,5276684.403764095],[516485.41230671946,5276686.518591123],[516488.19539767335,5276685.0816538725],[516490.0624010054,5276688.865690915],[516487.2045179701,5276690.191275802],[516491.8350946696,5276699.428984851],[516485.59264015715,5276702.412082437],[516483.8749104945,5276698.961888449],[516478.60977452254,5276701.6254547695],[516472.2916240235,5276704.819517863]]]},"properties":{"ID_SOURCE":"w145338218","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1451}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516850.4259418468,5276613.766531414],[516847.11985696864,5276614.20152532],[516846.9738184785,5276612.756286128],[516844.64479415596,5276612.9718285315],[516844.8210697217,5276614.350471276],[516845.4529910249,5276619.197992164],[516841.0947409788,5276619.852225562],[516840.2078952966,5276614.848372341],[516836.8263814645,5276615.394293713],[516836.165822641,5276610.057676158],[516846.30973216536,5276608.642194402],[516846.0905131278,5276606.529905075],[516849.32149311254,5276606.0946932705],[516850.4259418468,5276613.766531414]]]},"properties":{"ID_SOURCE":"w145338219","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1452}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517154.95552610647,5276219.442706056],[517155.1267047752,5276212.330268847],[517157.98071891523,5276212.449815496],[517159.933689407,5276212.455569078],[517159.86872577504,5276209.0100467],[517164.37558342,5276209.023326639],[517164.20341082336,5276216.469179802],[517163.0015836535,5276216.465638177],[517162.9104220321,5276221.911215372],[517157.2765350528,5276222.005756129],[517156.5270306747,5276221.44784974],[517156.53292345355,5276219.447352314],[517154.95552610647,5276219.442706056]]]},"properties":{"ID_SOURCE":"w145338220","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1453}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.07320472837,5276199.448356732],[516622.06495814346,5276202.3379641725],[516612.8255744459,5276202.42274308],[516612.9945063363,5276195.865985478],[516614.6501945016,5276194.759311744],[516614.5858591499,5276190.980380097],[516621.34616501443,5276190.999668357],[516621.4903679083,5276193.111733252],[516622.76699691836,5276193.226516247],[516622.7558953051,5276197.116372383],[516621.4041527149,5276197.001375026],[516621.32206072134,5276199.446213108],[516622.07320472837,5276199.448356732]]]},"properties":{"ID_SOURCE":"w145338221","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1454}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3291203006,5276479.350491839],[516520.185895406,5276480.608567302],[516517.5389702382,5276481.668000585],[516518.2096082715,5276483.559277439],[516513.9986800682,5276485.214430894],[516508.7061447024,5276470.973545554],[516511.71373149066,5276469.870674905],[516512.6826105288,5276472.540774473],[516520.2015795396,5276469.783605893],[516519.3081296599,5276467.002579336],[516522.46625775244,5276465.789001548],[516526.3436438832,5276475.802575204],[516522.58400322945,5276477.236723719],[516523.3291203006,5276479.350491839]]]},"properties":{"ID_SOURCE":"w145338223","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1455}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516713.5019786626,5276482.560503212],[516713.3997573128,5276492.007085394],[516710.1474670169,5276491.997752814],[516707.54112814233,5276491.990275126],[516707.46984353376,5276490.656394076],[516704.3155151093,5276490.536206076],[516704.40879600204,5276484.201510084],[516707.56376553036,5276484.099420532],[516707.5679104008,5276482.65461618],[516709.82155180443,5276482.549942175],[516709.8985758397,5276481.883324906],[516711.4755829067,5276481.998989597],[516711.54909910547,5276482.554899107],[516713.5019786626,5276482.560503212]]]},"properties":{"ID_SOURCE":"w145338224","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1456}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.738653627,5276391.394490513],[516662.5365448377,5276391.502190849],[516662.5314573531,5276393.280411342],[516663.7332477862,5276393.283849786],[516663.79818393645,5276396.840505698],[516655.98686873337,5276396.707021366],[516655.995768342,5276393.595135488],[516654.71854825964,5276393.702622632],[516654.6593272215,5276388.145468803],[516655.034887062,5276388.146542782],[516655.0450574332,5276384.590101827],[516663.6829390307,5276384.61481002],[516663.738653627,5276391.394490513]]]},"properties":{"ID_SOURCE":"w145338225","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1457}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516679.7911977476,5276608.718577493],[516676.65475527104,5276602.374630508],[516681.0925652695,5276600.16454578],[516682.5113631012,5276603.058242875],[516685.74551662325,5276601.51155217],[516688.3593705692,5276606.742609218],[516691.668632794,5276605.19613703],[516693.6103208222,5276609.091593199],[516681.80163442605,5276614.837021242],[516680.4576299114,5276612.054678212],[516681.736394427,5276611.391502696],[516680.2424891474,5276608.497590617],[516679.7911977476,5276608.718577493]]]},"properties":{"ID_SOURCE":"w145338226","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1458}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516917.66488782293,5276440.272287482],[516917.612213872,5276432.547923665],[516920.62427802355,5276432.523332062],[516920.611742045,5276431.667519773],[516924.8932218904,5276431.635504636],[516924.9057249408,5276432.502430815],[516928.07562002866,5276432.444959823],[516928.083051803,5276440.224762169],[516924.4699719576,5276440.292059188],[516924.4577918405,5276439.313994211],[516922.4447762645,5276439.319258682],[516920.8147961189,5276439.336750676],[516920.82717059035,5276440.2481323695],[516917.66488782293,5276440.272287482]]]},"properties":{"ID_SOURCE":"w145338228","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1459}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516704.3132373755,5276569.889958816],[516698.82386113843,5276572.097010564],[516697.7051836036,5276569.315309854],[516695.6753118087,5276569.976328517],[516693.0652704569,5276563.411602785],[516697.27587522054,5276561.867717424],[516698.0228299015,5276563.314675488],[516700.8047576158,5276562.322395105],[516701.9456810869,5276565.204185934],[516702.7435853025,5276567.218103334],[516703.1945620245,5276567.108257054],[516704.3132373755,5276569.889958816]]]},"properties":{"ID_SOURCE":"w145338229","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1460}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.6698886168,5276541.57691146],[516715.93918767857,5276541.493775966],[516715.9787060476,5276538.193039662],[516714.19859822415,5276538.187930481],[516714.2140515414,5276535.420595778],[516714.23746242846,5276532.497688316],[516723.2505477502,5276532.568018746],[516723.23671775765,5276534.768545516],[516723.83008738415,5276534.770249436],[516723.82625756215,5276536.103915099],[516723.23288807244,5276536.102211179],[516723.2108449735,5276538.547221761],[516721.7236663702,5276538.542951449],[516721.6698886168,5276541.57691146]]]},"properties":{"ID_SOURCE":"w145338230","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1461}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.6829390307,5276384.61481002],[516655.0450574332,5276384.590101827],[516655.1300220341,5276381.14501447],[516654.6039198111,5276381.254649679],[516654.54469843995,5276375.697495963],[516656.1220531408,5276375.702006795],[516656.0555227497,5276372.701044989],[516663.5667394776,5276372.722530914],[516663.63199404714,5276376.168047928],[516662.27965787705,5276376.27531851],[516662.4251126563,5276377.9428299675],[516663.70170036674,5276378.057622066],[516663.6829390307,5276384.61481002]]]},"properties":{"ID_SOURCE":"w145338232","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1462}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.9052339006,5276489.29388101],[516770.8973907668,5276484.192545373],[516770.8703505026,5276467.499282166],[516770.8633392615,5276462.10898584],[516767.69362231303,5276462.110972967],[516767.68050489173,5276456.231644396],[516777.6028083989,5276456.215764356],[516777.61085090315,5276458.638633276],[516782.1476231432,5276458.629476707],[516782.1968181045,5276491.082415818],[516776.12030294153,5276491.087136646],[516776.117978227,5276489.286666501],[516772.2948132484,5276489.286768766],[516770.9052339006,5276489.29388101]]]},"properties":{"ID_SOURCE":"w145338233","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1463}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.5827982815,5276451.9718759945],[517313.73202941124,5276452.305738937],[517308.6949573406,5276453.846723315],[517308.17446406465,5276452.066940161],[517305.54326160945,5276452.837099425],[517302.6863962326,5276453.717729195],[517302.38925350277,5276452.6054487415],[517299.0663692744,5276453.595835566],[517297.2077686019,5276447.1330948165],[517300.53062317317,5276446.153820813],[517300.4561722259,5276445.931320119],[517310.9809959665,5276442.850681019],[517313.5827982815,5276451.9718759945]]]},"properties":{"ID_SOURCE":"w145338234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1464}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517188.9087660774,5276218.987111863],[517195.0100752866,5276213.225856234],[517196.95746704104,5276215.12098089],[517196.05281513993,5276216.229707025],[517197.1762466521,5276217.344421134],[517197.92935752816,5276216.67980656],[517200.9247351218,5276219.800563972],[517200.3215243841,5276220.576760558],[517196.7809870162,5276224.01163696],[517196.1820430038,5276223.343030277],[517195.2777206301,5276224.340617796],[517193.85153704596,5276224.002988285],[517188.9087660774,5276218.987111863]]]},"properties":{"ID_SOURCE":"w145338237","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1465}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.65943577065,5276691.184176617],[516871.52862894896,5276692.625717314],[516872.80224565335,5276693.740804966],[516870.6918153858,5276696.29090522],[516864.3965829063,5276691.493661402],[516866.4322259192,5276688.83220252],[516867.85573867674,5276690.058862976],[516874.11386200285,5276681.74151089],[516878.9104780034,5276685.311883917],[516876.7249339155,5276687.861764275],[516880.4722854635,5276690.6511195805],[516877.5317970522,5276694.532488523],[516873.3790563128,5276691.675276613],[516872.65943577065,5276691.184176617]]]},"properties":{"ID_SOURCE":"w145338241","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1466}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516649.1142526682,5276357.232781887],[516648.5216138456,5276354.341456013],[516647.018095097,5276354.781717043],[516645.5310938116,5276349.442762213],[516646.13262884674,5276349.222202095],[516645.3159207174,5276345.885677453],[516653.6597655042,5276343.686736506],[516655.3686021869,5276350.248864282],[516654.01530676085,5276350.689553109],[516654.5366445642,5276352.246999452],[516655.73939696216,5276351.917019906],[516656.5560982547,5276355.253546054],[516649.1142526682,5276357.232781887]]]},"properties":{"ID_SOURCE":"w145338244","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1467}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.9746347262,5276368.635057004],[516710.97718584357,5276367.745946795],[516708.573275547,5276367.850189461],[516708.34793885244,5276367.849543001],[516706.545181537,5276367.866599394],[516700.6110603173,5276367.938491955],[516700.7094371466,5276359.825576729],[516712.0520375008,5276359.635833556],[516712.19875414134,5276360.858791143],[516716.40504415764,5276360.870862595],[516716.3878185531,5276366.872356463],[516712.0313083823,5276366.859853947],[516712.1013180469,5276368.638289899],[516710.9746347262,5276368.635057004]]]},"properties":{"ID_SOURCE":"w145338251","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1468}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.93243625667,5276344.531260802],[516517.4005715451,5276345.076941581],[516517.2534984134,5276343.965127798],[516507.8609665791,5276345.161034403],[516507.7129466025,5276344.38263719],[516504.7822982025,5276344.818890046],[516504.12234742317,5276339.148896907],[516507.05331361794,5276338.6015049415],[516506.8317557026,5276337.267201009],[516516.07375959534,5276336.18200549],[516516.1911978349,5276337.149253622],[516516.36727632326,5276338.627910514],[516520.19928003236,5276338.194220101],[516520.93243625667,5276344.531260802]]]},"properties":{"ID_SOURCE":"w145338253","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1469}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.59719628363,5276186.583967687],[516824.5453584517,5276186.581806259],[516824.5851630126,5276185.8039435465],[516824.6252886239,5276184.91494209],[516826.06742461986,5276184.941336013],[516827.85521617753,5276184.924273083],[516827.7601933753,5276191.814658166],[516829.11225447344,5276191.818564676],[516829.0593503114,5276194.530219816],[516829.0249372268,5276196.0416199295],[516822.4903009915,5276195.911602712],[516822.57344048034,5276193.1333510475],[516817.5410906715,5276193.007678636],[516817.5495304829,5276190.084729665],[516817.59719628363,5276186.583967687]]]},"properties":{"ID_SOURCE":"w145338254","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1470}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.2195319077,5276349.887232619],[516488.26540922857,5276341.993615163],[516492.54808391974,5276341.561182456],[516492.32061658753,5276339.660050063],[516492.03456961387,5276337.22528142],[516500.7510971291,5276336.027433985],[516501.63103608286,5276343.587424312],[516501.85007576324,5276345.810838252],[516501.32208398945,5276346.587319942],[516497.038782696,5276347.242023744],[516496.81690803333,5276346.01885895],[516493.1348215582,5276346.564128925],[516493.42771788465,5276349.232310362],[516489.2195319077,5276349.887232619]]]},"properties":{"ID_SOURCE":"w145338257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1471}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.56080596324,5276437.277283824],[516985.90549893363,5276444.93873306],[516983.26773300953,5276445.397827304],[516983.3933154922,5276446.120601776],[516979.76356369955,5276446.754628493],[516979.6232177536,5276445.942899273],[516975.9709329052,5276446.5768626565],[516974.64089321875,5276439.03771218],[516978.41345796664,5276438.370756673],[516978.59809345525,5276439.449350324],[516980.07102053217,5276439.198023168],[516982.1301401267,5276438.837265909],[516981.93809135834,5276437.725308608],[516984.56080596324,5276437.277283824]]]},"properties":{"ID_SOURCE":"w145338260","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1472}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516743.47792336275,5276532.548339968],[516734.5398204581,5276532.5226495825],[516734.62035964173,5276530.633505735],[516734.0201172709,5276530.409501524],[516733.87436779967,5276528.853126629],[516734.47588775464,5276528.632575606],[516734.557065672,5276526.521154162],[516736.13437957544,5276526.525686761],[516736.2181132152,5276523.52515492],[516742.0767107299,5276523.541994114],[516742.1431944439,5276526.54295773],[516743.57028797537,5276526.547060494],[516743.5240737,5276529.558814103],[516743.47792336275,5276532.548339968]]]},"properties":{"ID_SOURCE":"w145338262","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1473}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.9242226208,5276523.628576779],[516715.87804108317,5276523.544535608],[516715.8728122948,5276520.132531241],[516714.29517770524,5276520.239142935],[516714.33290896064,5276517.56078402],[516714.3875123328,5276514.237863183],[516723.25021374517,5276514.374445693],[516723.2435118315,5276516.708360529],[516723.7692840158,5276516.7098703245],[516723.8396070741,5276518.377168048],[516723.1632953218,5276518.4863656815],[516723.15818912274,5276520.264586523],[516721.8809954826,5276520.37205889],[516721.9242226208,5276523.628576779]]]},"properties":{"ID_SOURCE":"w145338263","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1474}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516961.2935142561,5276439.032166732],[516964.2453244354,5276439.062992094],[516964.22470164706,5276440.985649337],[516965.8395621382,5276441.00146737],[516967.7999345842,5276441.018292471],[516967.8022659314,5276440.218093211],[516971.5051885522,5276440.251110634],[516971.4384226164,5276447.697278026],[516968.2687943224,5276447.665814367],[516968.2651676767,5276448.9105687905],[516964.35193920956,5276448.876940799],[516964.3725620328,5276446.954283528],[516961.22546668304,5276446.922889344],[516961.2935142561,5276439.032166732]]]},"properties":{"ID_SOURCE":"w145338269","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1475}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.58686932287,5276483.809119226],[516722.56772193796,5276490.477447033],[516719.71351722395,5276490.469252187],[516719.63393963,5276492.024979718],[516716.9374680011,5276492.017239066],[516713.3997573128,5276492.007085394],[516713.5019786626,5276482.560503212],[516716.13085498934,5276482.568048232],[516716.057977225,5276481.789861074],[516717.7107330223,5276481.683465445],[516717.9335130409,5276482.5732226465],[516719.7361710934,5276482.57839762],[516719.7323422723,5276483.912063176],[516722.58686932287,5276483.809119226]]]},"properties":{"ID_SOURCE":"w145338270","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1476}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.25204138266,5276327.520823335],[517248.76219629415,5276324.857941884],[517247.7873755022,5276324.299356256],[517249.7505127091,5276320.859838393],[517250.72566307895,5276321.307285584],[517252.2361503834,5276318.533266288],[517259.13566736976,5276322.22131936],[517257.32307995274,5276325.550140439],[517256.49815639574,5276325.103137245],[517255.5540108872,5276326.867461744],[517254.8364554151,5276328.210126689],[517255.51148242195,5276328.545545808],[517254.00099611084,5276331.319564293],[517247.25204138266,5276327.520823335]]]},"properties":{"ID_SOURCE":"w145338272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1477}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.210311259,5276318.576462682],[516656.1979585347,5276317.642854069],[516654.2450872839,5276317.6150415605],[516654.1822638936,5276318.570663134],[516650.952728424,5276318.450289508],[516650.82410875376,5276310.892423843],[516654.27930511057,5276310.902302975],[516654.2080057519,5276309.568422991],[516659.9162744314,5276309.695888218],[516660.0655466543,5276310.029734234],[516662.69450080284,5276310.03725495],[516662.59490480996,5276318.594725128],[516656.210311259,5276318.576462682]]]},"properties":{"ID_SOURCE":"w145338273","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1478}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.0075603635,5276378.701984249],[516994.4170223005,5276380.124646725],[516993.8261785769,5276376.677591326],[516992.69917241164,5276376.785442705],[516991.8829908082,5276373.337730071],[516993.7620921919,5276372.898653828],[516993.3952868537,5276369.896811112],[517001.21117466694,5276368.474805076],[517001.87777596805,5276371.699802908],[517000.14922235,5276372.028176259],[517000.4370665811,5276373.7739100875],[517000.6659239438,5276375.141596702],[517001.49215755524,5276375.1440085685],[517002.0075603635,5276378.701984249]]]},"properties":{"ID_SOURCE":"w145338275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1479}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.55012613995,5276564.172814664],[516957.4491773344,5276564.953410699],[516952.09568409534,5276572.050768931],[516954.86923889455,5276573.948218851],[516952.83351557713,5276576.609646534],[516945.18915757095,5276570.808131704],[516946.92314711335,5276568.590382335],[516946.2487449224,5276568.043835097],[516944.150557258,5276566.359519798],[516947.31777712516,5276562.034285497],[516949.2661018256,5276563.595912035],[516951.52812775155,5276560.60172261],[516955.50053169567,5276563.502920221],[516956.55012613995,5276564.172814664]]]},"properties":{"ID_SOURCE":"w145338276","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1480}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.14172395587,5276318.369984738],[517274.029764628,5276314.930252298],[517274.85468830005,5276315.377257968],[517275.64795628865,5276313.83476853],[517276.5167332706,5276312.159135504],[517275.0167814494,5276311.376708154],[517277.88657056494,5276306.161653201],[517284.7109732007,5276309.849513673],[517281.8415095228,5276314.953426545],[517283.2663465896,5276315.735632761],[517281.45308381075,5276319.28672386],[517280.4031523028,5276318.727909898],[517278.74110702163,5276321.94603129],[517272.14172395587,5276318.369984738]]]},"properties":{"ID_SOURCE":"w145338277","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1481}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.51724150917,5276231.391515956],[517137.9447346219,5276231.284576435],[517137.80497125624,5276227.727694468],[517134.9509642471,5276227.608157685],[517134.9646967994,5276222.940330313],[517141.57441170735,5276223.070919272],[517141.79615598853,5276224.294108692],[517145.0263892913,5276224.192476879],[517145.21181779896,5276237.752067465],[517137.9264213173,5276237.508346358],[517137.8607910276,5276234.285101619],[517136.58385358134,5276234.281344415],[517136.51724150917,5276231.391515956]]]},"properties":{"ID_SOURCE":"w145338278","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1482}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.66666639573,5276514.518379316],[516743.6047969349,5276514.544069829],[516743.59533892985,5276517.83377836],[516743.5875424628,5276520.545565133],[516742.08533719886,5276520.541246441],[516742.0767107299,5276523.541994114],[516736.2181132152,5276523.52515492],[516736.22673666396,5276520.524407247],[516734.57463022775,5276520.408519994],[516734.6564469828,5276518.074820973],[516733.98077367316,5276517.961739751],[516734.0603548036,5276516.406012342],[516734.66123733413,5276516.4077389445],[516734.66666639573,5276514.518379316]]]},"properties":{"ID_SOURCE":"w145338294","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1483}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.74391012086,5276360.147089336],[516659.6013721726,5276367.265342095],[516651.2578765536,5276369.353135764],[516650.3663797496,5276365.905256774],[516649.9153884969,5276366.015107145],[516648.57829976146,5276360.787719668],[516649.856480102,5276360.346814846],[516649.1142526682,5276357.232781887],[516656.5560982547,5276355.253546054],[516657.37343432906,5276358.367794786],[516656.02045847,5276358.697344377],[516656.6162716282,5276360.477283288],[516657.74391012086,5276360.147089336]]]},"properties":{"ID_SOURCE":"w145338296","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1484}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.52295786253,5276383.657042472],[516608.61046170705,5276384.579751383],[516609.6380382744,5276385.093924391],[516610.4031030312,5276385.473981263],[516611.1735247641,5276383.975792851],[516614.4062873488,5276385.585425595],[516612.1246541245,5276390.224555987],[516615.40244841005,5276391.845431731],[516613.9439429355,5276394.942068175],[516609.2035281236,5276392.594613934],[516609.0133083009,5276390.815836497],[516603.6635327133,5276391.434078634],[516603.2532031125,5276387.820869112],[516602.8351083202,5276384.29654925],[516608.52295786253,5276383.657042472]]]},"properties":{"ID_SOURCE":"w145338299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1485}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.92293880985,5276336.902989404],[517269.5219768378,5276340.590164418],[517269.8217681385,5276340.813332846],[517267.0274451074,5276345.917475919],[517268.75239708915,5276346.811708172],[517266.8640402251,5276350.362581228],[517265.66388799594,5276349.803324511],[517263.9267471643,5276353.021227577],[517257.2526072926,5276349.33383624],[517259.06551672914,5276345.893876265],[517259.89010776917,5276346.452018615],[517260.6004473832,5276345.009307105],[517261.4770231595,5276343.233669142],[517259.90229416447,5276342.33988425],[517262.92293880985,5276336.902989404]]]},"properties":{"ID_SOURCE":"w145338300","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1486}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516449.89656465803,5276342.363018743],[516449.84357320546,5276350.487178316],[516445.84762238245,5276350.464779399],[516445.8346819051,5276352.387459008],[516448.49363028555,5276352.406081797],[516448.4664920674,5276356.695996134],[516444.6132590014,5276356.674001103],[516444.61448284244,5276356.240559874],[516443.1348004708,5276356.22526814],[516443.1326354066,5276356.992125701],[516436.6129449939,5276356.951494414],[516436.64076451893,5276352.417074733],[516440.32124183234,5276352.438576816],[516440.3341804901,5276350.515897199],[516436.69128954934,5276350.483387224],[516436.7190777594,5276345.9600814665],[516438.9348966716,5276345.966335335],[516438.9605848506,5276342.187659403],[516437.7062051957,5276342.184118971],[516437.73578211525,5276337.027322271],[516444.23296104453,5276337.067891139],[516444.26673191,5276341.069014235],[516444.26318599744,5276342.3248823825],[516449.89656465803,5276342.363018743]]]},"properties":{"ID_SOURCE":"w145338302","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1487}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.2600855458,5276461.626969252],[516428.5791216488,5276464.967700927],[516430.159587432,5276463.860762662],[516432.6285287023,5276467.313058567],[516431.8004269264,5276467.977560147],[516432.75798968837,5276469.347280017],[516433.6706736231,5276470.650189602],[516434.4984616115,5276470.096827082],[516436.9667703053,5276473.771402468],[516427.40982255014,5276480.079399239],[516420.827650277,5276470.280544657],[516421.05329634994,5276470.170041208],[516418.8851065826,5276466.607458421],[516420.39014574944,5276465.6114445515],[516426.2600855458,5276461.626969252]]]},"properties":{"ID_SOURCE":"w145338308","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1488}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.2413854295,5276452.159099749],[516908.3607748998,5276457.605292951],[516908.29536207416,5276459.438908533],[516905.17818871106,5276459.452087359],[516905.17454327457,5276460.707955686],[516901.12599371345,5276460.718433228],[516901.1160351851,5276458.973510627],[516894.9042858558,5276458.977715245],[516894.8966487886,5276451.253482216],[516901.43889546825,5276451.250236665],[516901.4486926655,5276453.050728638],[516903.19881445315,5276453.044693914],[516904.858802879,5276453.038398086],[516904.86131914385,5276452.171515531],[516908.2413854295,5276452.159099749]]]},"properties":{"ID_SOURCE":"w145338311","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1489}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516555.56768535834,5276394.53132604],[516554.89142568427,5276394.618315464],[516555.08232532116,5276396.1636996595],[516555.7811183797,5276396.076774314],[516556.3025016201,5276400.268222429],[516546.0460139296,5276401.550522917],[516545.53181888285,5276397.470235846],[516545.0509136424,5276397.535553466],[516543.94911351526,5276388.774616846],[516556.1141623859,5276387.253230478],[516556.7238480338,5276392.089539735],[516556.7385544663,5276392.200721224],[516557.0103706281,5276394.346489783],[516555.56768535834,5276394.53132604]]]},"properties":{"ID_SOURCE":"w145338318","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1490}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.5669686363,5276208.414567558],[517118.70674584503,5276208.666640491],[517118.6972728842,5276211.8896640865],[517117.1949877717,5276211.8852488315],[517117.03071449435,5276216.663773374],[517115.67833240406,5276216.770938757],[517115.6737600498,5276218.326881197],[517110.56664931326,5276218.089596064],[517108.46377886046,5276217.972279001],[517108.4768372265,5276213.526729176],[517109.8292199273,5276213.419562119],[517109.75900294166,5276211.752260286],[517108.5568483672,5276211.859868643],[517108.5669686363,5276208.414567558]]]},"properties":{"ID_SOURCE":"w145338322","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1491}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.1064980724,5276431.212800068],[517024.8999839509,5276435.8946795],[517022.7152574896,5276438.111088088],[517023.3141990284,5276438.779677164],[517020.82805462595,5276441.328624632],[517020.22878827056,5276440.771174596],[517017.51698751736,5276443.430603741],[517012.1252085246,5276437.857864776],[517014.68678663054,5276435.197994265],[517015.3608407513,5276435.866801955],[517016.4606814496,5276434.769732011],[517017.92209645634,5276433.318071651],[517017.2480423306,5276432.649263671],[517019.4324439497,5276430.543991832],[517020.1064980724,5276431.212800068]]]},"properties":{"ID_SOURCE":"w145338326","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1492}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.592871686,5276405.782560502],[517182.21233509894,5276401.014228621],[517183.41838700516,5276399.572970201],[517185.74127876095,5276401.469199881],[517185.0626489243,5276402.356315353],[517186.561441281,5276403.527705399],[517188.0602330334,5276404.699095831],[517188.73919106805,5276403.700841931],[517191.7361168739,5276406.2659018645],[517186.83581443876,5276412.364124906],[517183.98812929785,5276410.13292704],[517183.38494032586,5276410.909125557],[517180.4627971416,5276408.455430257],[517181.0663138374,5276407.568092662],[517178.592871686,5276405.782560502]]]},"properties":{"ID_SOURCE":"w145338331","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1493}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.56080596324,5276437.277283824],[516987.566718537,5276436.78592205],[516987.7894591555,5276437.6756896],[516989.788263755,5276437.392556927],[516991.6217587373,5276437.131170585],[516991.47445428756,5276436.130483234],[516995.00663409085,5276435.473951109],[516996.1151416713,5276441.7010109825],[516996.2617964924,5276442.92397603],[516993.0300661102,5276443.581384016],[516993.0277961523,5276444.359355525],[516989.0449544882,5276445.014574181],[516988.8966772037,5276444.347303247],[516985.90549893363,5276444.93873306],[516984.56080596324,5276437.277283824]]]},"properties":{"ID_SOURCE":"w145338333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1494}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1566535209,5276370.173300824],[517206.6267114142,5276374.635048669],[517204.06370559015,5276377.739389874],[517203.23944198375,5276377.070116631],[517202.0783821491,5276378.533731782],[517201.1284245366,5276379.731235263],[517202.77727956243,5276380.958642502],[517198.93245086796,5276385.72629608],[517192.71291729086,5276380.706644135],[517196.4075198662,5276375.93854293],[517195.0584544548,5276374.9343021],[517197.546016308,5276371.940873931],[517198.52050566726,5276372.610589973],[517200.6318527038,5276369.838331648],[517201.1566535209,5276370.173300824]]]},"properties":{"ID_SOURCE":"w145338338","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1495}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.6063837174,5276415.116707488],[516989.7136053317,5276421.788321043],[516989.8615589015,5276422.566730759],[516986.7049295087,5276423.224361375],[516986.4821881524,5276422.334593889],[516985.0992931345,5276422.6195239285],[516983.2504474971,5276422.992007307],[516983.32361446973,5276423.65905904],[516979.1898887463,5276424.536123944],[516977.93534834695,5276416.86382542],[516981.84277226415,5276416.319518919],[516981.7709012688,5276415.207912088],[516985.67897494126,5276414.441330596],[516985.97618007683,5276415.553594671],[516988.6063837174,5276415.116707488]]]},"properties":{"ID_SOURCE":"w145338348","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1496}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.7574501282,5276437.135354113],[516415.87040380493,5276443.593046903],[516414.74122916575,5276444.478981619],[516412.558931738,5276445.917647006],[516414.6529617249,5276449.146599213],[516411.7930997158,5276451.139053598],[516409.4602700991,5276452.6884356225],[516408.1808759615,5276453.573948355],[516405.8618236102,5276450.233224899],[516405.4856416745,5276450.454444568],[516400.6237598504,5276443.216672274],[516408.0741769689,5276438.125232954],[516408.7473606472,5276439.127386647],[516411.7574501282,5276437.135354113]]]},"properties":{"ID_SOURCE":"w145338351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1497}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516736.4203941551,5276505.409961984],[516736.35358777555,5276502.520137342],[516734.70115687494,5276502.515388868],[516734.78329323174,5276500.070551118],[516734.25720019685,5276500.18017913],[516734.18624116626,5276498.735158921],[516734.6372237863,5276498.625315074],[516734.64424958057,5276496.180261506],[516736.52233340056,5276496.074518717],[516743.73294894525,5276496.09524501],[516743.72313944314,5276499.507206125],[516743.7153749141,5276502.20787894],[516742.21252592123,5276502.425837824],[516742.203899438,5276505.426585411],[516736.4203941551,5276505.409961984]]]},"properties":{"ID_SOURCE":"w145338353","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1498}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516918.9141399428,5276457.547029952],[516915.50383861514,5276457.626035541],[516915.5163752556,5276458.481847854],[516911.88074132823,5276458.560201091],[516911.85369831015,5276457.526523099],[516908.3607748998,5276457.605292951],[516908.2413854295,5276452.159099749],[516908.1887177204,5276449.602733157],[516911.72671263595,5276449.524094061],[516911.7537557266,5276450.557772038],[516913.2786093266,5276450.528858254],[516915.3518390593,5276450.4793096315],[516915.3393023691,5276449.623497328],[516918.74209725973,5276449.544469814],[516918.9141399428,5276457.547029952]]]},"properties":{"ID_SOURCE":"w145338357","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1499}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517021.1333910655,5276372.834101894],[517018.6243845478,5276372.915681514],[517018.5614183725,5276368.758871893],[517019.49287497066,5276368.7393658385],[517019.4749531301,5276367.161129411],[517019.45003969007,5276365.405049001],[517017.91017314966,5276365.422777265],[517017.8297386527,5276359.532137021],[517025.59674534417,5276359.42146951],[517025.6774319027,5276365.223198862],[517027.1421862553,5276365.205253052],[517027.1912286631,5276368.984147007],[517025.8541660472,5276369.002466086],[517025.9030792792,5276372.8258155575],[517021.1333910655,5276372.834101894]]]},"properties":{"ID_SOURCE":"w145338367","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1500}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.4170223005,5276380.124646725],[517002.0075603635,5276378.701984249],[517003.04095975443,5276384.928825599],[517001.38719757355,5276385.368556639],[517001.6306224202,5276386.8918814575],[517001.9035728187,5276388.59311604],[517002.8052409555,5276388.484608593],[517003.4705410981,5276392.154161829],[516996.706899856,5276393.356956026],[516990.31914514914,5276394.449714898],[516989.7295973714,5276390.558104729],[516994.1644452223,5276389.459646414],[516993.64774149144,5276386.346226482],[516995.3766148072,5276385.906712431],[516994.4170223005,5276380.124646725]]]},"properties":{"ID_SOURCE":"w145338374","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1501}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.9977021609,5276383.280839401],[517028.99726463365,5276383.259768029],[517029.0039355657,5276386.116078494],[517029.9203020356,5276386.118757943],[517029.92378771264,5276390.064228433],[517029.00742186105,5276390.061548982],[517029.01194800757,5276393.651375411],[517023.9718739604,5276393.658868749],[517021.0874792336,5276393.683780127],[517021.0831106077,5276390.0383843295],[517021.96192048234,5276390.040952769],[517021.95973643474,5276388.218254878],[517021.95794217254,5276386.26219046],[517021.00401972537,5276386.259402504],[517020.9977021609,5276383.280839401]]]},"properties":{"ID_SOURCE":"w145338378","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1502}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.8544528837,5276238.973575469],[516568.19170625164,5276234.303824679],[516567.8202463818,5276232.857952523],[516566.9318399751,5276228.298699677],[516566.78382478846,5276227.520301094],[516577.1520924534,5276226.6606846955],[516577.81673083466,5276230.663603941],[516578.1831268961,5276233.887696793],[516574.3519989143,5276233.987932896],[516574.4217362683,5276235.877505467],[516572.84402751137,5276235.984155605],[516573.06146317127,5276238.763265674],[516572.9112353868,5276238.762838204],[516568.8544528837,5276238.973575469]]]},"properties":{"ID_SOURCE":"w145338380","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1503}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516667.7756059262,5276581.788361521],[516658.67464339006,5276586.2079100115],[516657.10656431934,5276582.980372732],[516658.68577036227,5276582.318051508],[516657.4089324939,5276579.680387807],[516655.1762855386,5276575.083931698],[516661.6446105789,5276571.990521818],[516660.9718037613,5276570.877199736],[516661.5010686672,5276569.656176991],[516664.283941104,5276568.330462735],[516665.4847412904,5276568.667318063],[516667.27655806224,5276572.45119647],[516666.747610259,5276573.561079886],[516664.26549600327,5276574.776513837],[516667.7756059262,5276581.788361521]]]},"properties":{"ID_SOURCE":"w145338384","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1504}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516497.90198301576,5276307.678748896],[516497.8287589109,5276307.011703524],[516500.8342239156,5276306.6867987225],[516501.202546729,5276309.244054424],[516504.132582859,5276309.030077283],[516503.9154321479,5276306.139830783],[516510.9785766604,5276305.270732511],[516512.7456829545,5276317.834524093],[516508.73330105894,5276318.301050072],[516507.1854405613,5276318.485600257],[516507.3325162958,5276319.597413732],[516503.5756142074,5276320.031325464],[516503.2830358724,5276317.2520048665],[516499.2253662568,5276317.796206828],[516497.90198301576,5276307.678748896]]]},"properties":{"ID_SOURCE":"w145338388","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1505}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.2879426624,5276209.420375863],[516654.794799036,5276209.43326149],[516654.8587901968,5276213.323332504],[516657.5625843595,5276213.4422043385],[516657.6160843406,5276220.999854182],[516657.39074196824,5276220.999209708],[516656.5648044446,5276220.885707958],[516656.26530143584,5276220.551432464],[516650.25585335644,5276220.645389605],[516650.26887971465,5276216.088700837],[516650.20202610263,5276213.19887861],[516648.8499700677,5276213.195013619],[516648.86077147734,5276209.416296142],[516650.2879426624,5276209.420375863]]]},"properties":{"ID_SOURCE":"w145338393","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1506}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.64052636665,5276311.550326414],[516531.5204305014,5276319.110321046],[516527.91375191335,5276319.544643495],[516528.0822220952,5276321.056621021],[516528.27985419374,5276322.879872378],[516519.41370602715,5276323.854975013],[516518.7525060769,5276318.629535449],[516515.5968204683,5276318.954004997],[516514.7175259285,5276311.171735286],[516519.45090310404,5276310.740600263],[516519.3035142159,5276309.739925259],[516522.38409205084,5276309.415244625],[516522.75114405673,5276312.417056792],[516524.5544852845,5276312.199893692],[516530.64052636665,5276311.550326414]]]},"properties":{"ID_SOURCE":"w145338396","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1507}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.19044781156,5276451.998679078],[517287.4951410668,5276460.00758287],[517283.6611786746,5276461.107601181],[517282.10033656267,5276455.545981012],[517282.8521073711,5276455.325932367],[517282.034129931,5276452.545010919],[517280.8762309257,5276452.941678206],[517280.07926129433,5276453.206048909],[517280.6748741627,5276454.986052398],[517276.014028198,5276456.305901807],[517273.04056848306,5276445.84994442],[517277.7014221085,5276444.530092634],[517278.29670688824,5276446.4212346375],[517283.11555875547,5276445.012944113],[517285.19044781156,5276451.998679078]]]},"properties":{"ID_SOURCE":"w145338403","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1508}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.25204138266,5276327.520823335],[517254.00099611084,5276331.319564293],[517252.64139503974,5276333.871750657],[517250.99154945917,5276332.977745693],[517249.9949267588,5276334.70857374],[517249.33051195246,5276335.862459201],[517250.08032186865,5276336.309238923],[517248.11718959425,5276339.748756745],[517241.44269552414,5276336.172522429],[517243.33005423844,5276332.955057531],[517242.3552342925,5276332.3964728005],[517244.24292378005,5276329.067869446],[517245.66809146677,5276329.738927716],[517247.10214496334,5276327.409239705],[517247.25204138266,5276327.520823335]]]},"properties":{"ID_SOURCE":"w145338409","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1509}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.4491757341,5276402.257021621],[516965.37386895146,5276394.588161428],[516971.63094886474,5276394.517479869],[516971.60621550377,5276392.694716358],[516975.33189627185,5276392.661118538],[516975.34371167835,5276393.761436227],[516979.06188060687,5276393.727818901],[516979.09127153666,5276396.528625603],[516979.1378174082,5276401.1744017415],[516975.3220078806,5276401.207734398],[516975.30922068516,5276400.440833037],[516973.18345902546,5276400.467979365],[516971.7337685312,5276400.474868623],[516971.75128210086,5276402.197585368],[516965.4491757341,5276402.257021621]]]},"properties":{"ID_SOURCE":"w145338411","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1510}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.91471977375,5276502.59077222],[516760.9610071136,5276499.556791099],[516761.0058231467,5276497.034048458],[516761.0128600093,5276494.588994903],[516761.7665249673,5276493.702046251],[516763.71940082725,5276493.707667203],[516764.61848866416,5276494.488233295],[516764.53601979604,5276497.04420943],[516769.11744436854,5276497.168539069],[516769.1056039107,5276501.280674611],[516769.7815985237,5276501.282621105],[516769.7678374289,5276506.061589475],[516760.00347881654,5276506.033481069],[516760.1636148198,5276502.588610598],[516760.91471977375,5276502.59077222]]]},"properties":{"ID_SOURCE":"w145338416","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1511}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.37386895146,5276394.588161428],[516965.4491757341,5276402.257021621],[516962.57271765143,5276402.137503437],[516962.5835628833,5276400.992795884],[516960.6231769592,5276400.975972568],[516959.0909283549,5276400.960396606],[516959.0881127937,5276401.927303986],[516954.8969390763,5276401.892873167],[516954.9651398686,5276393.946581672],[516958.6605807517,5276393.979568989],[516958.6629108061,5276393.179369787],[516962.5311095639,5276393.212862606],[516962.5284229156,5276394.1353144655],[516965.45021108974,5276394.166052872],[516965.37386895146,5276394.588161428]]]},"properties":{"ID_SOURCE":"w145338432","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1512}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517241.3663652917,5276361.956716517],[517244.5368782814,5276356.631395526],[517245.8114852993,5276357.4131478425],[517246.55894846295,5276356.115026218],[517247.472515001,5276354.528433249],[517246.7974905583,5276354.193015046],[517248.8360588725,5276350.642580401],[517251.6863822711,5276351.984699611],[517255.81065220654,5276354.3308522655],[517253.77273939253,5276357.659006957],[517254.82266637956,5276358.217816164],[517252.8595385726,5276361.657332497],[517251.0598054475,5276360.651743671],[517248.19039600325,5276365.755673395],[517241.3663652917,5276361.956716517]]]},"properties":{"ID_SOURCE":"w145338438","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1513}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517025.9030792792,5276372.8258155575],[517028.98274353467,5276372.812591427],[517028.9905518834,5276375.279916135],[517029.8318079135,5276375.282375948],[517029.84966618527,5276379.450167849],[517028.9558322918,5276379.447554301],[517028.99726463365,5276383.259768029],[517020.9977021609,5276383.280839401],[517020.9950873746,5276379.03529428],[517021.9940782633,5276379.03821395],[517021.9916018506,5276377.315540986],[517021.98863819416,5276375.759576188],[517021.1398710217,5276375.757095558],[517021.1333910655,5276372.834101894],[517025.9030792792,5276372.8258155575]]]},"properties":{"ID_SOURCE":"w145338443","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1514}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516669.97290106723,5276362.560468145],[516669.51245342894,5276360.725345431],[516668.93309809035,5276358.4453237],[516667.05401709885,5276358.884504689],[516664.5313615009,5276347.985597024],[516665.13289741636,5276347.765038864],[516665.0581029385,5276347.653685163],[516671.0715559482,5276346.114939538],[516672.92709737364,5276353.90002906],[516674.12953230826,5276353.681192083],[516675.0958111562,5276357.240428505],[516674.1947809373,5276357.126709129],[516675.1607409508,5276360.797084357],[516674.784861146,5276360.907147859],[516669.97290106723,5276362.560468145]]]},"properties":{"ID_SOURCE":"w145338444","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1515}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.8999839509,5276435.8946795],[517020.1064980724,5276431.212800068],[517024.626178753,5276426.780420932],[517025.8994999742,5276428.006680308],[517026.97658324963,5276426.987343627],[517028.4604387929,5276425.569093436],[517027.636486892,5276424.788706248],[517030.49852398265,5276422.12972114],[517035.7400772326,5276427.702037565],[517033.17913628323,5276430.139621248],[517033.92765019555,5276431.030928328],[517031.1480433985,5276433.75683667],[517033.5597390954,5276436.120052142],[517029.363752314,5276440.308863473],[517024.8999839509,5276435.8946795]]]},"properties":{"ID_SOURCE":"w145338457","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1516}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.4663605341,5276345.110586284],[516563.4883828253,5276337.717016715],[516567.4406974566,5276337.239243653],[516568.84577774856,5276337.076531235],[516568.6842607949,5276335.764623622],[516567.27163731307,5276335.938428589],[516566.9634670231,5276333.370225582],[516571.6220654311,5276332.816666665],[516571.9010108464,5276335.095823629],[516578.38551027694,5276334.314072489],[516579.2734295273,5276341.674046351],[516568.14536984626,5276343.009397197],[516568.33610969025,5276344.610351089],[516564.4663605341,5276345.110586284]]]},"properties":{"ID_SOURCE":"w145338463","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1517}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.92293880985,5276336.902989404],[517264.584641677,5276333.79600222],[517265.40989284706,5276334.131867808],[517266.1195434028,5276332.922548399],[517267.2218232723,5276331.025326724],[517265.3466408883,5276330.130649621],[517266.78202015394,5276327.356411385],[517274.0564218839,5276331.267873201],[517274.43165585055,5276331.380125876],[517272.9221500523,5276333.820723192],[517274.19675831235,5276334.602481694],[517272.3083942224,5276338.153352939],[517271.0334569188,5276337.482733607],[517269.5219768378,5276340.590164418],[517262.92293880985,5276336.902989404]]]},"properties":{"ID_SOURCE":"w145338467","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1518}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.6063837174,5276415.116707488],[516988.4581055915,5276414.449436598],[516991.7646389782,5276413.903383989],[516991.46775910846,5276412.679980834],[516995.0753890971,5276411.912529097],[516995.59468428924,5276414.136839036],[517001.60686016694,5276413.0429896135],[517002.7869076445,5276420.492796415],[516996.3991814813,5276421.585548596],[516995.87891428784,5276419.694654905],[516994.1053082998,5276420.02289852],[516992.9479416098,5276420.241800951],[516992.945023127,5276421.242049992],[516989.7136053317,5276421.788321043],[516988.6063837174,5276415.116707488]]]},"properties":{"ID_SOURCE":"w145338468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1519}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.7767381754,5276247.371737974],[516857.95687206986,5276243.581931158],[516860.1412861351,5276241.476600177],[516860.0671374338,5276241.142966482],[516860.7434840016,5276241.033784708],[516863.30443487264,5276238.596125901],[516865.62588566134,5276241.047920779],[516866.8280294573,5276240.940262303],[516866.52435551514,5276242.050779734],[516868.2468242171,5276243.834003021],[516866.06272991846,5276245.828192225],[516865.98471959226,5276246.828223487],[516865.1587896419,5276246.714692138],[516863.1246032447,5276248.8204562105],[516861.7767381754,5276247.371737974]]]},"properties":{"ID_SOURCE":"w145338471","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1520}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.706899856,5276393.356956026],[517003.4705410981,5276392.154161829],[517004.2970967853,5276392.0454353215],[517004.96369357395,5276395.270433641],[517004.1368138433,5276395.490298829],[517004.45476530376,5276397.213892891],[517004.72829846654,5276398.715077838],[517005.4797414051,5276398.606132192],[517006.1440650769,5276402.609102136],[517000.0570901994,5276403.591588857],[516998.40365791507,5276403.920181968],[516997.81444091117,5276399.917432129],[516996.61232733645,5276400.025063522],[516996.02148702735,5276396.578007787],[516997.1488137828,5276396.359018278],[516996.706899856,5276393.356956026]]]},"properties":{"ID_SOURCE":"w145338480","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1521}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.9469161132,5276297.45482438],[516459.1232106812,5276288.230731392],[516460.70561463776,5276286.456969012],[516461.7540592092,5276287.571328794],[516463.9389412433,5276285.24357192],[516465.5122357507,5276286.692835007],[516467.8476604637,5276284.254365541],[516468.67642084917,5276283.367591677],[516476.0915741239,5276290.834920383],[516473.07855817204,5276293.827168321],[516471.2808708088,5276292.043849592],[516468.87020887336,5276294.526560821],[516467.5142124374,5276295.923086327],[516462.70697072643,5276295.909496191],[516462.7025726972,5276297.465438914],[516458.9469161132,5276297.45482438]]]},"properties":{"ID_SOURCE":"w145338489","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1522}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516793.284818073,5276243.061683366],[516794.11107035045,5276243.064065767],[516794.18137722055,5276244.731363657],[516796.58469901275,5276244.84943373],[516816.78871222876,5276245.4634331195],[516816.87120668974,5276242.907458672],[516820.626898998,5276242.918303923],[516820.31520988204,5276246.807292586],[516790.3457664222,5276246.387400227],[516790.5059262591,5276242.942531937],[516791.81274695083,5276243.001869273],[516793.284818073,5276243.061683366]]]},"properties":{"ID_SOURCE":"w145338491","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1523}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516501.4542319284,5276432.498662402],[516497.4149022752,5276426.59681579],[516500.34991726966,5276424.604616235],[516499.3775610046,5276423.157045616],[516500.6569757586,5276422.271552915],[516499.235524196,5276420.267011559],[516500.9815444085,5276419.060535765],[516503.0737714529,5276417.61053421],[516502.10141468066,5276416.1629631575],[516504.96132489265,5276414.170553113],[516510.7964012383,5276422.52256842],[516512.0679403908,5276424.415547912],[516510.93874732684,5276425.301463993],[516512.95856436546,5276428.196822242],[516503.09975409013,5276434.948398019],[516501.4542319284,5276432.498662402]]]},"properties":{"ID_SOURCE":"w145338495","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1524}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.3161640834,5276150.618807052],[516608.30697372387,5276153.841830496],[516608.22995729005,5276154.508448742],[516605.0751281389,5276154.499453729],[516605.30078993086,5276154.388957437],[516603.4980303809,5276154.383818127],[516603.4248162943,5276153.7167715635],[516602.6285974021,5276153.714501889],[516601.997631488,5276153.712703356],[516601.9957307556,5276154.379535795],[516598.9160165242,5276154.370758226],[516598.6377272768,5276146.590190226],[516601.8679925701,5276146.488257108],[516601.94500837434,5276145.821638783],[516608.33010806894,5276145.7287025545],[516608.3161640834,5276150.618807052]]]},"properties":{"ID_SOURCE":"w145338500","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1525}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.32509231474,5276583.306686474],[516379.8734978811,5276583.638835374],[516378.59319917526,5276584.857771163],[516378.1378542419,5276586.523586009],[516378.43391592836,5276588.080374394],[516379.2554303965,5276589.749780326],[516375.1194155773,5276591.51638427],[516373.2529309679,5276587.510107267],[516379.7264049028,5276582.527024698],[516380.32509231474,5276583.306686474]]]},"properties":{"ID_SOURCE":"w145338502","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1526}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.74110702163,5276321.94603129],[517278.8910029832,5276322.057615734],[517277.6822738593,5276324.387964407],[517278.35730001144,5276324.723386169],[517276.46860054863,5276328.385394787],[517275.7935747143,5276328.04997324],[517274.0564218839,5276331.267873201],[517266.78202015394,5276327.356411385],[517268.51917010354,5276324.138509278],[517269.2693096137,5276324.474152698],[517270.0547670186,5276323.031665099],[517271.0819042111,5276321.145335322],[517270.4072067887,5276320.698775642],[517271.6917057998,5276318.146370704],[517272.14172395587,5276318.369984738],[517278.74110702163,5276321.94603129]]]},"properties":{"ID_SOURCE":"w145338507","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1527}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517241.3663652917,5276361.956716517],[517248.19039600325,5276365.755673395],[517250.66482164396,5276367.2078187],[517250.0616193538,5276367.984010293],[517250.2082228702,5276369.206981718],[517250.35219286405,5276371.319063318],[517248.40256701974,5276370.201891576],[517246.81764078845,5276372.753412078],[517245.69293257606,5276372.083243111],[517243.8055850471,5276375.300707414],[517237.05634601007,5276371.613116674],[517238.0455460934,5276369.84892247],[517238.86857873504,5276368.395427877],[517237.6684275782,5276367.836176912],[517241.1413573257,5276361.844910671],[517241.3663652917,5276361.956716517]]]},"properties":{"ID_SOURCE":"w145338508","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1528}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517258.6167686017,5276294.545987371],[517260.35392365855,5276291.328082988],[517259.22887184215,5276290.769050282],[517256.7537570873,5276289.5391791],[517258.56767253566,5276285.76580298],[517261.3429123036,5276287.107704128],[517262.91765608604,5276288.001489299],[517264.1267161508,5276285.559998932],[517271.2509455648,5276289.47101156],[517269.89132730133,5276292.023193769],[517268.1666887077,5276291.017822542],[517267.0941168602,5276293.026271773],[517266.5049719115,5276294.1248085275],[517266.9546626347,5276294.459560907],[517265.0662901659,5276298.010434296],[517258.6167686017,5276294.545987371]]]},"properties":{"ID_SOURCE":"w145338509","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1529}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516904.2342995978,5276111.793264396],[516914.8381780889,5276107.489602072],[516915.6660634856,5276106.93630803],[516915.89237861475,5276106.603546303],[516915.81952241034,5276105.825357049],[516915.8395342536,5276098.934755935],[516923.4355851261,5276095.73377122],[516925.9720804333,5276101.74268355],[516925.8769410035,5276108.633066409],[516907.2369855385,5276112.46881768],[516906.9871209924,5276120.914707061],[516904.05761952454,5276120.906204268],[516904.2342995978,5276111.793264396]]]},"properties":{"ID_SOURCE":"w145338511","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1530}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.0662901659,5276298.010434296],[517265.29130015435,5276298.122241047],[517263.8575616788,5276300.340785745],[517263.0319761985,5276300.116059167],[517261.982369922,5276301.980095763],[517261.21970915585,5276303.33374018],[517261.9695223755,5276303.780521399],[517260.23171135044,5276307.220702881],[517253.2573933523,5276303.421287371],[517254.9945428354,5276300.203381355],[517254.46973874804,5276299.868407371],[517256.2823324004,5276296.539585521],[517256.8071366841,5276296.874559664],[517258.2418612804,5276294.322596972],[517258.6167686017,5276294.545987371],[517265.0662901659,5276298.010434296]]]},"properties":{"ID_SOURCE":"w145338513","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1531}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.32245930226,5276149.963367406],[516409.9386209046,5276149.611959144],[516410.10074977454,5276145.389110272],[516408.59876104625,5276145.273739086],[516408.99030483933,5276139.606721447],[516410.4174929908,5276139.610742352],[516410.8143622468,5276132.0543663325],[516416.9728740716,5276132.405140339],[516416.81427969196,5276135.372121204],[516416.7346849706,5276136.961193445],[516422.4425001044,5276137.310702963],[516422.0537632669,5276141.977471055],[516422.5786291235,5276142.312369796],[516422.42338508443,5276144.090166047],[516416.715263342,5276143.851795269],[516416.32245930226,5276149.963367406]]]},"properties":{"ID_SOURCE":"w145338518","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1532}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517023.8952692743,5276407.01764017],[517017.4582259587,5276406.987713912],[517017.4234207374,5276403.475596793],[517018.1444938431,5276403.4777037725],[517018.12770846015,5276401.510481536],[517018.1098513739,5276399.910017274],[517016.63759460766,5276399.92794339],[517016.5655475339,5276393.737250092],[517021.0874792336,5276393.683780127],[517023.9718739604,5276393.658868749],[517024.02941058396,5276399.671696197],[517026.02745026594,5276399.65530901],[517026.0758431098,5276403.656480719],[517025.00919086253,5276403.675590481],[517025.0446737692,5276406.95431622],[517023.8952692743,5276407.01764017]]]},"properties":{"ID_SOURCE":"w145338521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1533}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516423.2895993577,5276422.941984669],[516423.27204865025,5276429.165756854],[516419.516477052,5276429.155167548],[516411.7136572987,5276426.021263448],[516410.8129459673,5276425.796446002],[516411.802862143,5276421.020229619],[516415.70866204926,5276421.031237362],[516415.72213224514,5276416.252269489],[516412.3424235187,5276416.1316046165],[516412.4288102131,5276412.130819954],[516413.48043597635,5276412.111555669],[516420.8416285172,5276412.043394281],[516420.90577260253,5276415.933463602],[516423.3841420794,5276416.051591635],[516423.2895993577,5276422.941984669]]]},"properties":{"ID_SOURCE":"w145338526","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1534}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.66666639573,5276514.518379316],[516734.6736922392,5276512.073325687],[516734.07248991716,5276512.182737886],[516734.0775994354,5276510.404517071],[516734.60337219207,5276510.406027843],[516734.60784315947,5276508.850084638],[516734.90860417596,5276508.739809156],[516734.83509055636,5276508.183899324],[516736.4124094263,5276508.188431988],[516736.4203941551,5276505.409961984],[516742.203899438,5276505.426585411],[516742.2700638671,5276508.5386877395],[516743.62173186505,5276508.653713382],[516743.61300878075,5276511.687802638],[516743.6047969349,5276514.544069829],[516734.66666639573,5276514.518379316]]]},"properties":{"ID_SOURCE":"w145338533","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1535}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516556.40766212187,5276231.158404784],[516557.14490062004,5276236.050645225],[516557.51415128954,5276238.274487984],[516553.7584563916,5276238.263812404],[516553.7530864893,5276240.153171241],[516552.2508090172,5276240.148901688],[516552.321185148,5276241.816196485],[516549.8421122271,5276241.920291293],[516546.1669009858,5276240.020475203],[516546.106626439,5276234.796740335],[516550.0226571945,5276231.251397724],[516553.0269008627,5276231.371074812],[516553.9282687043,5276231.3736366145],[516554.90475053375,5276231.376412058],[516556.40766212187,5276231.158404784]]]},"properties":{"ID_SOURCE":"w145338538","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1536}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516961.23922849126,5276449.934816116],[516956.5072241082,5276449.921036841],[516956.5124014432,5276448.142816235],[516952.68173005624,5276448.131664399],[516952.6739658084,5276450.79899531],[516951.2426483118,5276452.239645602],[516947.71242423105,5276452.229371518],[516947.89886939345,5276439.782264474],[516951.8800923794,5276439.682711618],[516951.8014226477,5276440.905019643],[516953.1834705089,5276440.909042548],[516955.1814310044,5276440.914858846],[516955.2617192405,5276439.136856935],[516961.2935142561,5276439.032166732],[516961.22546668304,5276446.922889344],[516961.23922849126,5276449.934816116]]]},"properties":{"ID_SOURCE":"w145338540","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1537}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.55012613995,5276564.172814664],[516958.2844456117,5276561.843929879],[516959.8614264339,5276561.959661908],[516962.8777933662,5276557.856276211],[516964.8863973962,5276559.351399708],[516965.7258137017,5276559.976227641],[516967.53621929686,5276557.314148005],[516975.3304685107,5276563.227268733],[516973.44462754915,5276566.000265871],[516972.24578766373,5276564.996514158],[516967.5698818418,5276571.5401342595],[516965.1709068965,5276569.97718872],[516964.86949709913,5276570.309729938],[516959.6228273842,5276566.515696836],[516957.4491773344,5276564.953410699],[516956.55012613995,5276564.172814664]]]},"properties":{"ID_SOURCE":"w145338546","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1538}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.2600855458,5276461.626969252],[516420.39014574944,5276465.6114445515],[516418.0717318442,5276462.048438553],[516419.65219640377,5276460.941497446],[516414.3418669551,5276452.924471395],[516413.4386541291,5276453.58876388],[516411.7930997158,5276451.139053598],[516414.6529617249,5276449.146599213],[516416.9103696637,5276447.708146332],[516417.5876235934,5276447.265496762],[516419.1580655176,5276449.714996908],[516420.96418052126,5276448.497552654],[516424.41946058033,5276453.775316782],[516426.4985843273,5276456.959775425],[516424.1654396621,5276458.6202903725],[516426.2600855458,5276461.626969252]]]},"properties":{"ID_SOURCE":"w145338548","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1539}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.62988728215,5276084.462326389],[516749.3450857553,5276085.56139979],[516747.04014028463,5276077.3304384],[516747.87025082763,5276075.999149488],[516750.5015480074,5276075.228738509],[516751.77564337145,5276076.232659507],[516757.7149229012,5276074.471509791],[516758.2448919217,5276073.0282191895],[516761.101539972,5276072.258461361],[516763.77756920806,5276082.046451388],[516760.244242804,5276083.036540009],[516760.02113366075,5276082.257920496],[516758.3523132374,5276082.686563401],[516757.0142588361,5276083.027246647],[516753.4809341958,5276084.017339367],[516753.62988728215,5276084.462326389]]]},"properties":{"ID_SOURCE":"w145338551","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1540}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.89903052815,5276456.48794284],[517294.1856359815,5276458.138070531],[517292.40111958224,5276452.020084556],[517295.10743181023,5276451.250142416],[517294.0670962184,5276447.468301066],[517292.97705947235,5276447.776255658],[517292.11255448195,5276448.018196233],[517292.6327230333,5276449.909116709],[517287.97187025176,5276451.228956553],[517284.99842930335,5276440.7729931],[517289.8849536665,5276439.342681051],[517290.4047937825,5276441.344740081],[517295.1407663358,5276440.025125238],[517297.2077686019,5276447.1330948165],[517299.0663692744,5276453.595835566],[517299.89903052815,5276456.48794284]]]},"properties":{"ID_SOURCE":"w145338552","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1541}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.2459878492,5276080.870250399],[516743.32814840216,5276088.211451923],[516737.5394382774,5276089.861909276],[516736.5715550928,5276086.858357645],[516731.3089756685,5276088.399193367],[516729.5969530373,5276082.948433253],[516729.2210542963,5276083.058493241],[516727.510304808,5276077.163178894],[516731.19449957914,5276075.951224521],[516730.9707477967,5276075.394883592],[516738.9397514653,5276073.083847203],[516740.6501712098,5276079.0903036175],[516739.5979090052,5276079.309558667],[516740.11829059606,5276081.2004281785],[516741.2459878492,5276080.870250399]]]},"properties":{"ID_SOURCE":"w145338554","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1542}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.76571607665,5276099.21892934],[516433.3134753618,5276091.44070165],[516442.476032776,5276092.022257921],[516442.0825711721,5276098.35610536],[516441.1814965001,5276098.242422183],[516441.1019888168,5276099.798152392],[516442.0033769783,5276099.800696826],[516442.07912012294,5276099.5786314085],[516445.3084669088,5276099.810027608],[516444.83957329893,5276106.25480159],[516438.38057293266,5276105.903150208],[516438.5402140748,5276102.569412226],[516433.8088691983,5276102.222642119],[516433.8126320877,5276100.888977331],[516432.76571607665,5276099.21892934]]]},"properties":{"ID_SOURCE":"w145338555","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1543}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.6965743838,5276385.600337075],[516775.2223584145,5276385.601851488],[516776.0473099324,5276386.048786488],[516776.57117306476,5276386.717133697],[516776.49253951386,5276387.939443898],[516776.1150588329,5276388.605194762],[516775.4384108951,5276388.825525124],[516774.38652331097,5276388.93363508],[516773.7121161019,5276388.37599419],[516773.1882527928,5276387.707647238],[516773.1908134233,5276386.818537006],[516773.642765707,5276386.37527984],[516773.9444940577,5276385.931590048],[516774.6214623781,5276385.600120734],[516774.6965743838,5276385.600337075]]]},"properties":{"ID_SOURCE":"w145338556","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1544}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.6600740396,5276382.999111387],[517178.5849619875,5276382.9988898365],[517172.88988204574,5276378.425365101],[517174.69912746677,5276376.207905351],[517173.87518801325,5276375.4274975015],[517176.2879543058,5276372.322700017],[517177.03743727034,5276372.8806091305],[517179.37443842064,5276369.997868947],[517183.7962219286,5276373.34510583],[517185.66943503276,5276374.906589375],[517183.1815526628,5276378.011161383],[517182.20673458,5276377.452586679],[517181.166318504,5276378.76096626],[517180.0957269223,5276380.113712912],[517183.0936524382,5276382.345351945],[517181.0577581526,5276385.00669946],[517178.6600740396,5276382.999111387]]]},"properties":{"ID_SOURCE":"w145338561","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1545}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.4582259587,5276406.987713912],[517023.8952692743,5276407.01764017],[517023.8868877561,5276409.8850206975],[517025.6144568362,5276409.890070737],[517025.60276050103,5276413.891066846],[517024.62630908453,5276413.888212413],[517024.61591293314,5276417.444653417],[517019.7712146219,5276417.430493458],[517016.7892840334,5276417.42177995],[517016.808323127,5276413.476375159],[517018.01762073307,5276413.479908665],[517018.0223296589,5276411.868396338],[517018.02785046597,5276409.97903707],[517015.88716707844,5276409.972782275],[517015.8959018435,5276406.983149085],[517017.4582259587,5276406.987713912]]]},"properties":{"ID_SOURCE":"w145338562","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1546}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.9318879585,5276596.987692128],[516745.3007343536,5276603.905287303],[516746.6498233929,5276604.909424253],[516747.09983923804,5276605.132997824],[516741.6708918263,5276612.452610879],[516739.7976373813,5276610.891269662],[516738.0640589347,5276612.9979418125],[516740.08753126045,5276614.559714278],[516739.3332461967,5276615.6689434955],[516724.1931374651,5276604.511471177],[516726.45503148995,5276601.5171944555],[516727.95402348426,5276602.632897335],[516730.8941384102,5276598.862592368],[516732.46823948633,5276599.9785121875],[516735.1072827768,5276596.42962378],[516735.9318879585,5276596.987692128]]]},"properties":{"ID_SOURCE":"w145338565","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1547}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.06654172274,5276672.441753255],[516619.00020574266,5276670.8941682335],[516618.40251071396,5276669.781065233],[516621.4873450416,5276667.9004936535],[516622.0124691103,5276668.124271954],[516623.9159465544,5276666.99608004],[516627.805649836,5276664.695478448],[516631.9920406701,5276671.598096891],[516633.9359681641,5276674.715561713],[516629.64781457826,5276677.148389079],[516629.26878239965,5276678.369843833],[516625.8077754671,5276680.471616818],[516624.60731340613,5276680.023630733],[516624.3791333803,5276681.023236974],[516621.8216482872,5276682.34961352],[516620.32646304066,5276679.900271839],[516616.06654172274,5276672.441753255]]]},"properties":{"ID_SOURCE":"w145338567","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1548}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517221.0032245264,5276389.903685524],[517215.23307244317,5276385.329897137],[517215.0083933978,5276385.106953524],[517216.8169957848,5276383.111784348],[517217.4916900107,5276383.558337872],[517218.35102305317,5276382.527278732],[517219.60238499567,5276381.008363912],[517218.8532357137,5276380.339310531],[517221.4920177151,5276377.012920362],[517229.2098265588,5276383.370712213],[517229.9593030623,5276383.928628161],[517227.8482758141,5276386.589737164],[517226.1239868924,5276385.473239408],[517223.8617519507,5276388.467321853],[517222.88726815046,5276387.797601541],[517221.15311982506,5276390.015268496],[517221.0032245264,5276389.903685524]]]},"properties":{"ID_SOURCE":"w145338576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1549}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.00239075295,5276155.666328885],[517161.4534081096,5276155.556518066],[517174.82879095204,5276153.9288477115],[517174.97771007544,5276154.373845637],[517175.7839830609,5276161.15574498],[517175.78234437254,5276161.711438659],[517169.3195140428,5276162.69264126],[517166.2388208139,5276163.016979913],[517166.4602347516,5276164.3513089],[517162.7782961497,5276164.78501705],[517162.5585188146,5276162.894994527],[517160.15386004973,5276163.221328465],[517159.9330994931,5276161.664722252],[517148.0842498718,5276155.0725831585],[517150.8782312516,5276150.079523319],[517161.00239075295,5276155.666328885]]]},"properties":{"ID_SOURCE":"w145338578","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1550}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516666.1306539605,5276657.914369378],[516664.51452276343,5276645.239814545],[516669.6992466992,5276644.4766751295],[516669.84532830014,5276645.921909847],[516671.8439500209,5276645.672009813],[516677.5843831466,5276644.943810257],[516678.2466744417,5276649.724715655],[516679.524157196,5276649.506094938],[516680.57440421556,5276649.9536620425],[516681.0972992295,5276650.955417449],[516681.3194414444,5276652.067451138],[516681.01614206407,5276653.066840001],[516680.11292946263,5276653.731091333],[516678.8351293061,5276654.060850746],[516670.4945818399,5276655.259506234],[516670.78928920004,5276657.260865148],[516666.1306539605,5276657.914369378]]]},"properties":{"ID_SOURCE":"w145338580","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1551}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516866.54012591875,5276236.604980882],[516865.56396666844,5276236.491014438],[516863.30443487264,5276238.596125901],[516858.3623583107,5276233.2471142905],[516860.7721183689,5276231.142435817],[516860.6234990265,5276230.586307171],[516860.92492026306,5276230.253760708],[516861.4500748429,5276230.47756037],[516863.86048074666,5276228.1506056795],[516866.1081088388,5276230.157628213],[516866.8595708102,5276230.048664664],[516867.0091551313,5276230.271377219],[516866.7815601573,5276231.048695896],[516868.57850227295,5276233.054414267],[516866.5439880579,5276235.271315866],[516866.54012591875,5276236.604980882]]]},"properties":{"ID_SOURCE":"w145338588","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1552}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.1151416713,5276441.7010109825],[516995.00663409085,5276435.473951109],[516994.7838944848,5276434.584183282],[517000.7960491288,5276433.490333038],[517001.241526524,5276435.269869167],[517002.6317682587,5276435.040534278],[517004.5480493437,5276434.723823822],[517004.4752094462,5276433.945633021],[517008.30751309806,5276433.401124977],[517009.56395734823,5276440.406597632],[517010.45036084694,5276445.521614336],[517005.11486678146,5276446.395150831],[517003.5378554812,5276446.279406645],[517002.41410717415,5276445.275868257],[517001.96992872807,5276443.05177686],[517001.52607437846,5276440.716546723],[516996.1151416713,5276441.7010109825]]]},"properties":{"ID_SOURCE":"w145338590","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1553}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.7971642088,5276084.081712082],[517006.5502702177,5276083.4170729155],[517008.87107431085,5276086.091201731],[517001.79104186705,5276092.627771669],[516999.2452140571,5276089.841849236],[516999.7723223266,5276089.398828957],[516997.9005889228,5276087.281712623],[516997.2980404297,5276087.8356525935],[516995.5752402157,5276086.163530321],[516997.08988184715,5276081.944642627],[516998.0660645662,5276082.058631032],[516998.2966018332,5276080.281069102],[517001.2332606229,5276077.844567344],[517003.9290002161,5276080.742067881],[517003.7755238534,5276081.853016536],[517004.75639519945,5276082.933934884],[517005.7971642088,5276084.081712082]]]},"properties":{"ID_SOURCE":"w145338593","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1554}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.3688220896,5276080.252424358],[516838.9454701356,5276090.265332247],[516835.41085074155,5276091.699930205],[516835.1883944382,5276090.699030327],[516833.68447222677,5276091.2503819065],[516833.2369893569,5276090.137692102],[516831.13085609605,5276091.13186258],[516830.6766286683,5276092.353086232],[516829.99994430726,5276092.573410235],[516827.01971462497,5276084.118186012],[516829.35087630677,5276083.235803884],[516829.57461840357,5276083.7921486255],[516829.1971122091,5276084.457895791],[516832.73109206394,5276083.24557152],[516832.06050882343,5276081.354259512],[516835.3688220896,5276080.252424358]]]},"properties":{"ID_SOURCE":"w145338599","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1555}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516645.3159207174,5276345.885677453],[516644.49952925346,5276342.438014179],[516643.7480860769,5276342.54700639],[516642.4857812982,5276337.4309739545],[516641.5841122747,5276337.539537179],[516639.94846375776,5276331.644460848],[516647.1653182954,5276329.553430453],[516647.98329846887,5276332.445400181],[516650.3136981119,5276331.785223893],[516650.83821602265,5276332.231282146],[516651.5066041891,5276334.900545362],[516650.3113280208,5276335.241661132],[516650.6975608167,5276336.765378934],[516651.87771884125,5276336.45756192],[516653.6597655042,5276343.686736506],[516645.3159207174,5276345.885677453]]]},"properties":{"ID_SOURCE":"w145338601","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1556}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.331655877,5276355.1459433865],[516894.9067382274,5276349.382848511],[516900.5985160091,5276355.178627104],[516897.2835746117,5276358.614339563],[516899.1034194762,5276360.475652849],[516900.8783247967,5276362.292380418],[516904.4186033097,5276358.85732402],[516909.9607831546,5276364.430398327],[516901.3731487334,5276372.96322854],[516898.3776909223,5276369.842624634],[516899.9592398149,5276368.402397433],[516898.75325437926,5276367.254159087],[516897.4873076371,5276366.061291146],[516898.1662201344,5276365.063003538],[516894.4966800395,5276361.273607683],[516893.7433001821,5276362.04940029],[516890.9939950871,5276359.518554745],[516887.8252184352,5276356.586391244],[516889.331655877,5276355.1459433865]]]},"properties":{"ID_SOURCE":"w145338607","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1557}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1566535209,5276370.173300824],[517204.8506130209,5276365.627482569],[517203.4270909352,5276364.400740383],[517204.48260269396,5276363.070181413],[517204.70990948414,5276362.404014446],[517205.61421224335,5276361.406428221],[517204.1906892773,5276360.179685862],[517206.45259658806,5276357.296734676],[517214.77003244654,5276364.1008374775],[517212.43268289865,5276367.094702253],[517211.53330646426,5276366.425205863],[517210.2817464826,5276368.010805646],[517209.3468407643,5276369.197238287],[517210.9205848587,5276370.424425863],[517207.22596689034,5276375.192517854],[517206.6267114142,5276374.635048669],[517201.1566535209,5276370.173300824]]]},"properties":{"ID_SOURCE":"w145338611","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1558}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.25250048045,5276337.720780319],[517208.15169821994,5276341.519911849],[517205.3571014069,5276346.735223147],[517203.7072523013,5276345.8412315715],[517202.7482349465,5276347.561064756],[517201.9704728948,5276348.9480142435],[517202.720284716,5276349.3947878685],[517200.8322972843,5276352.834543485],[517200.3078231038,5276352.38843558],[517197.90783480165,5276351.158811085],[517197.8327223399,5276351.158589287],[517191.98379229294,5276347.807128997],[517193.94688863686,5276344.367592294],[517195.14639254473,5276345.149111741],[517197.03405089857,5276341.8204930965],[517198.5340052117,5276342.602900393],[517201.25250048045,5276337.720780319]]]},"properties":{"ID_SOURCE":"w145338612","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1559}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.9692420954,5276108.118328069],[517129.96858837805,5276108.340605524],[517123.8799778233,5276109.767518079],[517123.2114524412,5276107.209339881],[517115.1009594604,5276109.063762739],[517111.1847930066,5276109.952488088],[517111.25827606866,5276110.508402396],[517103.81693994586,5276112.153641406],[517102.11114636966,5276104.70227368],[517109.40226018237,5276103.056591189],[517109.1801778145,5276101.944541989],[517121.80810515943,5276099.092017354],[517121.58406481636,5276098.646800034],[517126.3947385423,5276097.549546352],[517126.4698542714,5276097.54976722],[517127.28632312024,5276100.886358591],[517128.26348070765,5276100.666952657],[517129.9692420954,5276108.118328069]]]},"properties":{"ID_SOURCE":"w145338621","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1560}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.11668712634,5276072.9937920235],[516435.32011153834,5276072.441489542],[516435.32199313893,5276071.774657182],[516435.47630205983,5276070.330277646],[516443.7384411468,5276070.57587621],[516443.569697321,5276077.13263699],[516442.14280757,5276077.01746927],[516442.13841533975,5276078.573411461],[516443.5653047086,5276078.68857918],[516446.79466302786,5276078.919976176],[516446.475998009,5276085.36517403],[516439.56690669863,5276084.78997136],[516439.8774082097,5276081.234380087],[516434.9964414087,5276080.664907583],[516435.00083173387,5276079.1089653885],[516433.8740925302,5276079.105786233],[516434.11668712634,5276072.9937920235]]]},"properties":{"ID_SOURCE":"w145338629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1561}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516566.9318399751,5276228.298699677],[516567.8202463818,5276232.857952523],[516568.19170625164,5276234.303824679],[516568.8544528837,5276238.973575469],[516569.15016588225,5276240.641511528],[516564.4915256738,5276241.1839586375],[516562.0118201676,5276241.510325776],[516562.08314159425,5276242.844204437],[516560.3548912897,5276243.061569522],[516558.1008442799,5276243.27744029],[516557.7334898829,5276240.386764942],[516557.51415128954,5276238.274487984],[516557.14490062004,5276236.050645225],[516556.40766212187,5276231.158404784],[516562.34419562184,5276230.286165967],[516563.24998843105,5276228.732786665],[516566.9318399751,5276228.298699677]]]},"properties":{"ID_SOURCE":"w145338635","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1562}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516701.40232353314,5276241.308210708],[516704.1740888349,5276241.293931568],[516704.1638791378,5276239.615693297],[516711.1346390061,5276239.569005858],[516710.99320178357,5276244.358719779],[516710.3995155914,5276244.457042118],[516710.3196825707,5276246.101680176],[516710.9581498849,5276246.103512019],[516711.02526338695,5276254.127988783],[516704.57280545833,5276254.176162782],[516704.5268990849,5276249.2303158],[516703.0020259893,5276249.248170477],[516701.46967339655,5276249.254890141],[516701.4468622833,5276246.731954242],[516701.40232353314,5276241.308210708]]]},"properties":{"ID_SOURCE":"w145338642","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1563}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.14764776285,5276487.862782901],[517306.2634705225,5276488.515105594],[517307.2813314543,5276499.8543873085],[517294.88578073826,5276500.595541797],[517292.6296242781,5276476.249232261],[517297.3632583928,5276475.707590745],[517298.02143052267,5276481.711093193],[517299.7719739233,5276481.560697233],[517301.7779601247,5276481.388832719],[517301.7763092465,5276481.94452667],[517306.13405544014,5276481.512915377],[517305.48018483486,5276474.064607738],[517309.23638948635,5276473.853490852],[517309.31117005163,5276473.964852879],[517310.06227886956,5276473.967085318],[517310.79191510985,5276481.193339164],[517310.49147195613,5276481.192446139],[517311.14764776285,5276487.862782901]]]},"properties":{"ID_SOURCE":"w145338652","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1564}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5068044968,5276370.134745798],[516531.374371827,5276370.567573293],[516532.0355541894,5276375.793014757],[516531.2090053694,5276375.901808268],[516531.2096362893,5276375.67953071],[516525.91265467776,5276376.22019636],[516521.66755890276,5276376.652711037],[516521.080218463,5276371.87203895],[516517.0229003197,5276372.305089696],[516516.3639103076,5276366.301678554],[516520.4212325791,5276365.868627345],[516521.5476010713,5276365.982962152],[516523.34777259384,5276366.877186471],[516524.0196835536,5276368.323908516],[516530.85710370983,5276367.565333891],[516530.49132136494,5276364.118965824],[516534.69855529093,5276363.797489716],[516535.5068044968,5276370.134745798]]]},"properties":{"ID_SOURCE":"w145338656","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1565}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.79945962655,5276238.340730637],[516578.6208402384,5276238.44566855],[516578.55173698295,5276236.333818409],[516578.1831268961,5276233.887696793],[516577.81673083466,5276230.663603941],[516577.1520924534,5276226.6606846955],[516582.8623422772,5276226.121241671],[516583.61095127114,5276227.012490365],[516587.5171980766,5276226.912474267],[516587.88675429375,5276229.025180196],[516588.47595451534,5276233.139025519],[516588.62206740654,5276234.58425719],[516584.8587748055,5276237.240891656],[516582.98029413534,5276237.457822257],[516582.91055957985,5276235.5682495665],[516580.6568251824,5276235.67297286],[516580.79945962655,5276238.340730637]]]},"properties":{"ID_SOURCE":"w145338665","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1566}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517221.4920177151,5276377.012920362],[517223.3009534924,5276374.906614443],[517223.9756481822,5276375.353168713],[517225.2045123424,5276373.82307459],[517226.4635535152,5276372.248614088],[517225.93941176275,5276371.691365083],[517228.05011472024,5276369.14139421],[517235.6934726117,5276375.276694831],[517233.73233499995,5276378.049385029],[517232.68339613883,5276377.157163283],[517232.0047563222,5276378.044273276],[517232.22943499754,5276378.267217541],[517230.2692864374,5276380.706492588],[517229.29513084446,5276379.9256324405],[517228.7673735687,5276380.590909677],[517230.49166344,5276381.707408204],[517229.2098265588,5276383.370712213],[517221.4920177151,5276377.012920362]]]},"properties":{"ID_SOURCE":"w145338677","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1567}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516591.55087812373,5276234.814878971],[516591.4770305646,5276234.370109981],[516590.2777399599,5276233.477576497],[516590.2038922842,5276233.032807523],[516588.47595451534,5276233.139025519],[516587.88675429375,5276229.025180196],[516587.5171980766,5276226.912474267],[516587.14795809815,5276224.688629619],[516595.78797667404,5276224.046404039],[516595.8592906126,5276225.380283093],[516598.03791522986,5276225.275351614],[516599.68662367883,5276226.613726152],[516600.8678581019,5276233.841170495],[516601.3096718954,5276236.954340191],[516597.1023424724,5276237.275768341],[516596.88523491344,5276234.385518599],[516591.55087812373,5276234.814878971]]]},"properties":{"ID_SOURCE":"w145338681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1568}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517249.6616656492,5276503.017631195],[517249.5209908671,5276499.794161227],[517244.41248643957,5276500.112451974],[517244.5528349538,5276503.447060609],[517238.99334207247,5276503.87516049],[517238.33379596286,5276498.3162198225],[517239.61659741163,5276496.319501191],[517239.766818594,5276496.319945876],[517239.99313736183,5276495.987196528],[517239.4818386566,5276491.095533248],[517244.3653477901,5276490.665432154],[517244.43650946533,5276491.999320065],[517247.299047962,5276491.729947337],[517251.19844297296,5276491.352507494],[517251.35063956864,5276490.686119721],[517255.0320499706,5276490.36360662],[517256.1982554453,5276502.370157042],[517249.6616656492,5276503.017631195]]]},"properties":{"ID_SOURCE":"w145338682","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1569}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516436.29662345775,5276285.387777441],[516436.29693709867,5276285.276638676],[516439.301782318,5276285.173979644],[516439.3715627288,5276287.063550654],[516442.07595402293,5276286.96004501],[516442.00429199444,5276285.737306554],[516446.3614900309,5276285.527329412],[516446.4347203142,5276286.194374103],[516446.33575579367,5276294.64070814],[516441.227432924,5276294.848564857],[516441.07814779185,5276294.5147244865],[516440.35706136836,5276294.512688989],[516439.72611074796,5276294.510907999],[516439.79369493085,5276297.178450403],[516436.2630639608,5276297.279625326],[516436.3500954807,5276293.056564195],[516436.2906642983,5276287.499413966],[516436.29662345775,5276285.387777441]]]},"properties":{"ID_SOURCE":"w145338706","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1570}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516911.3006987986,5276316.866494519],[516908.9792976236,5276314.414681026],[516910.6369451195,5276312.641258586],[516909.6858502048,5276311.660467764],[516907.4915253468,5276309.42018928],[516906.06860465737,5276307.960128667],[516904.1852957079,5276309.844037123],[516902.79976952815,5276308.439655702],[516900.66530548455,5276306.277351337],[516902.32327526645,5276304.39278779],[516899.4775248625,5276301.43932785],[516894.3851476415,5276296.14541842],[516901.01606892905,5276288.9405763345],[516904.5587647544,5276292.451758237],[516906.8581265884,5276294.7367963055],[516906.0289781616,5276295.734646743],[516907.75174145796,5276297.406743169],[516907.22433629737,5276297.960910619],[516920.7804222074,5276311.559322225],[516915.3561495757,5276317.100550912],[516914.2323610562,5276316.097029836],[516912.349374789,5276317.869796917],[516911.85498517886,5276317.401574565],[516911.3006987986,5276316.866494519]]]},"properties":{"ID_SOURCE":"w145338718","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1571}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.01135526027,5276221.120412855],[516622.68738235015,5276221.122342198],[516622.6608652351,5276230.413541873],[516622.64138972346,5276237.237461336],[516618.8099459087,5276237.44880694],[516618.59633737383,5276233.33603008],[516617.7704008731,5276233.222533826],[516616.49060981086,5276234.219139428],[516615.7413726427,5276233.550163994],[516615.5920958893,5276233.216319163],[516614.3151584861,5276233.212676465],[516613.5678230437,5276231.876868789],[516613.42678849195,5276228.653416439],[516615.83329079224,5276227.660024373],[516615.6247526285,5276221.769027663],[516614.7252855072,5276221.099623805],[516614.5826661117,5276218.431865235],[516622.01928469015,5276218.341944081],[516622.01135526027,5276221.120412855]]]},"properties":{"ID_SOURCE":"w145338720","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1572}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516718.59262317914,5276619.276975154],[516715.67932282126,5276613.7116255425],[516715.00748816045,5276612.264880652],[516720.8001412204,5276609.0584573345],[516724.1931374651,5276604.511471177],[516739.3332461967,5276615.6689434955],[516736.9204941441,5276618.885061201],[516734.2127380314,5276620.210956659],[516734.5860473593,5276620.990007545],[516733.0813133121,5276621.874801674],[516733.4539839935,5276622.876130127],[516730.7455919419,5276624.424304842],[516731.19273316377,5276625.648126578],[516728.6348800283,5276627.085595032],[516728.9327615153,5276627.975568631],[516725.69765344483,5276629.855651873],[516723.59715881856,5276628.960501607],[516718.59262317914,5276619.276975154]]]},"properties":{"ID_SOURCE":"w145338723","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1573}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.83775619394,5276092.097335431],[516484.3148934068,5276092.362796266],[516483.99933279306,5276097.6966049895],[516471.00651517307,5276096.881871431],[516471.087916589,5276094.659309234],[516470.4175317566,5276092.656900374],[516470.57436307054,5276090.323411861],[516471.4066084218,5276088.214112568],[516471.8143398356,5276084.814393301],[516475.6445892514,5276085.058619612],[516475.78668259643,5276082.625063911],[516484.8661821392,5276083.362047332],[516484.5528223856,5276087.917884848],[516481.0981229358,5276087.685829259],[516480.88675655477,5276090.708228831],[516479.64747165464,5276090.660266511],[516479.59847158956,5276092.04937312],[516480.83775619394,5276092.097335431]]]},"properties":{"ID_SOURCE":"w145338738","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1574}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4339716028,5276489.391515131],[516731.4314172638,5276490.280625509],[516731.35598731955,5276490.391548519],[516731.50141921564,5276492.0590620525],[516728.15918770805,5276491.982777189],[516725.868441132,5276491.931741917],[516725.8722713673,5276490.598076346],[516722.56772193796,5276490.477447033],[516722.58686932287,5276483.809119226],[516726.1925038598,5276483.708333815],[516726.1960149691,5276482.485807056],[516727.9235623013,5276482.490768844],[516727.9996307329,5276482.1575682005],[516728.2256014665,5276481.935937839],[516729.05213908135,5276481.827172299],[516729.4270543851,5276482.050528678],[516729.42545811913,5276482.606222657],[516731.52887846984,5276482.501125533],[516731.4339716028,5276489.391515131]]]},"properties":{"ID_SOURCE":"w145338753","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1575}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.40777437977,5276143.749954367],[517191.16023786436,5276143.307616439],[517192.5136226498,5276142.867052349],[517195.06655337376,5276143.20800766],[517200.9894903464,5276147.004246234],[517197.8956606219,5276151.774117479],[517199.23014837806,5276152.644947647],[517203.8933737177,5276155.68171961],[517199.51635686215,5276162.559454377],[517186.39584582514,5276154.185246811],[517189.49032083305,5276149.193092],[517187.4664775112,5276147.74230337],[517188.82510874706,5276145.523518704],[517190.40777437977,5276143.749954367]]]},"properties":{"ID_SOURCE":"w145338757","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1576}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517072.1498276077,5276190.958802422],[517072.11273681733,5276201.050178222],[517071.0685815919,5276201.069345686],[517071.0604379927,5276203.847814279],[517071.8115815715,5276203.850015905],[517071.84402134543,5276218.4094116865],[517059.9015193596,5276218.152139675],[517058.62295087654,5276218.704093306],[517056.069069237,5276218.69661394],[517055.9367410138,5276212.5835429765],[517055.8047379124,5276206.35933333],[517054.3775657397,5276206.355154244],[517053.1760619409,5276206.24049654],[517053.19753853127,5276198.905339446],[517054.1740260057,5276198.908198582],[517055.7517542982,5276198.801678791],[517056.1465284586,5276192.245592792],[517056.01257220976,5276186.688215785],[517054.2150290527,5276184.904717094],[517056.2499579439,5276182.576742275],[517060.7568358448,5276182.589941981],[517060.46451580606,5276179.810593393],[517056.1202324226,5276175.574561743],[517053.3406623045,5276175.677562471],[517053.4785263166,5276179.90127443],[517051.06867515447,5276182.005873219],[517049.94553429686,5276180.780048695],[517044.8380630195,5276180.653960036],[517044.8270730751,5276179.275795695],[517040.98887582053,5276179.208994857],[517040.9818515042,5276166.205630563],[517044.6998735809,5276166.272079665],[517044.6062289866,5276157.202807042],[517049.3384713778,5276157.216657316],[517049.46365104994,5276165.774779794],[517064.33639098296,5276165.818334634],[517066.2100287649,5276167.268640272],[517066.2756997666,5276170.491883761],[517067.4216667406,5276171.617752586],[517068.7473224384,5276172.9441996645],[517071.75191269314,5276172.953005518],[517071.8253986718,5276173.50891938],[517073.24866951146,5276174.846767585],[517073.36501723406,5276186.405636897],[517072.08774356294,5276186.5130326],[517072.1498276077,5276190.958802422]]]},"properties":{"ID_SOURCE":"w145338759","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1577}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.6666615359,5276356.806696565],[516617.1081399331,5276360.031006879],[516615.1545852453,5276360.247712749],[516615.5225372552,5276362.916114795],[516617.24536346714,5276364.5881253155],[516617.6114115821,5276367.923360177],[516608.14283390145,5276369.452307075],[516607.77266050735,5276367.561876913],[516606.0441285078,5276367.890367176],[516605.2343713139,5276362.108795029],[516607.2630372961,5276361.892300015],[516607.26240347716,5276362.114577568],[516608.2394972642,5276361.895084454],[516608.1669203756,5276361.005760055],[516607.11503103614,5276361.113900226],[516606.8237719108,5276357.890019022],[516613.3607661315,5276357.130684523],[516616.6666615359,5276356.806696565]]]},"properties":{"ID_SOURCE":"w145338765","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1578}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.6791482967,5276648.951790297],[517212.8817973125,5276647.168240877],[517212.66599764564,5276643.944549104],[517217.6999225736,5276643.403731047],[517217.77273114264,5276644.181924846],[517221.15327920805,5276643.969641061],[517221.1499926689,5276645.081029258],[517223.77287951513,5276647.089302364],[517223.69382643607,5276648.422746064],[517221.58355424507,5276650.861580563],[517221.5769809876,5276653.0843569795],[517216.54372117424,5276653.40289403],[517215.0362932718,5276655.1766743995],[517215.32522839494,5276659.067421284],[517209.84066631785,5276659.606909584],[517209.1866945341,5276652.1586109195],[517212.1165861346,5276651.944990197],[517213.15666525287,5276650.73664062],[517214.6791482967,5276648.951790297]]]},"properties":{"ID_SOURCE":"w145338781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1579}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.5991968046,5276203.860901217],[516960.3700134714,5276206.758600955],[516962.46674089495,5276208.987500698],[516960.1317254007,5276211.203494604],[516958.5585327243,5276209.754097843],[516958.1823141526,5276209.975281809],[516957.955676979,5276210.419180693],[516958.1042875724,5276210.975311825],[516958.5540023526,5276211.310040289],[516958.09555065574,5276213.976057981],[516957.9453222086,5276213.97562058],[516957.86276552186,5276216.53159306],[516957.33696618566,5276216.530062196],[516953.9571511145,5276216.409083314],[516951.4787062343,5276216.290729712],[516951.3355939814,5276213.845240047],[516951.3462681769,5276210.177661411],[516953.6064899209,5276207.850306603],[516957.5991968046,5276203.860901217]]]},"properties":{"ID_SOURCE":"w145338801","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1580}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68704818055,5276594.458551719],[517310.64276423794,5276594.544359361],[517310.20048706804,5276589.1972207595],[517314.9410795077,5276588.8112103185],[517315.013644526,5276589.6672024615],[517317.48679492256,5276599.088096617],[517317.5881803157,5276600.3553917445],[517312.20900328795,5276600.795071505],[517311.68704818055,5276594.458551719]]]},"properties":{"ID_SOURCE":"w145338811","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1581}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.4904845518,5276346.236513612],[516613.76771420706,5276346.129017196],[516614.2817711917,5276350.242651691],[516614.8722080447,5276353.911945445],[516618.17810536455,5276353.58795834],[516618.5451050614,5276356.589776875],[516616.6666615359,5276356.806696565],[516613.3607661315,5276357.130684523],[516606.8237719108,5276357.890019022],[516606.458667628,5276354.221368584],[516605.55700190156,5276354.32993738],[516605.4131145696,5276352.1067335745],[516604.58656096697,5276352.21551668],[516603.9241734283,5276347.434622123],[516606.02795696224,5276347.218340811],[516605.8092739698,5276344.883784085],[516610.1670682449,5276344.451652014],[516610.38638344395,5276346.563931361],[516612.4904845518,5276346.236513612]]]},"properties":{"ID_SOURCE":"w145338818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1582}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.58796949795,5276348.7103305925],[516854.62880876585,5276352.76704792],[516849.42332441197,5276352.818669685],[516846.7417142281,5276352.844254179],[516846.6948691638,5276348.26516297],[516841.69969585916,5276348.317400005],[516841.7467055425,5276352.840921782],[516833.50655083306,5276352.928238993],[516833.44304002775,5276346.3152432665],[516833.390311391,5276341.169322799],[516837.49158674915,5276341.136722225],[516837.5152378752,5276343.348470616],[516838.9874760163,5276343.341613067],[516841.6615792674,5276343.3160032695],[516841.6737093452,5276344.316295648],[516846.78155488987,5276344.264384484],[516846.769586428,5276343.208522711],[516848.2193230122,5276343.190488439],[516850.3225388284,5276343.174345134],[516850.2979922376,5276341.273785238],[516854.5119365473,5276341.241522621],[516854.58796949795,5276348.7103305925]]]},"properties":{"ID_SOURCE":"w145338819","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1583}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.32509231474,5276583.306686474],[516379.7264049028,5276582.527024698],[516373.2529309679,5276587.510107267],[516375.1194155773,5276591.51638427],[516373.6907758033,5276592.068065847],[516363.88549297745,5276579.926279019],[516369.60630973865,5276575.496768899],[516369.9806078415,5276575.942379788],[516373.3680362444,5276573.284549932],[516373.0719724229,5276571.727761846],[516375.7821679928,5276569.512588202],[516376.68285837746,5276569.737400323],[516380.7253355825,5276574.527776321],[516380.4239595524,5276574.860347709],[516381.09838243935,5276575.417943184],[516381.70050930144,5276574.975078123],[516385.4434788718,5276579.431195893],[516381.3788128624,5276582.5316725075],[516380.32509231474,5276583.306686474]]]},"properties":{"ID_SOURCE":"w145338822","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1584}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.67914262647,5276308.122993043],[516835.7446176896,5276311.457373111],[516835.7777728324,5276312.980082756],[516835.870048116,5276317.437051238],[516833.33107197407,5276317.485282242],[516826.05966309557,5276317.630980098],[516817.4060813487,5276317.806037716],[516814.7544362432,5276317.853951487],[516814.5773997516,5276311.52959189],[516814.5950181684,5276308.028742481],[516814.51129974297,5276305.805706969],[516819.03342538903,5276305.70762447],[516819.0794572078,5276307.9750071],[516820.84474126715,5276307.935649278],[516822.7151835625,5276307.896595731],[516822.74205070327,5276308.996956283],[516827.8876119082,5276308.900681452],[516827.86116318655,5276307.655840483],[516829.70903961355,5276307.62783795],[516831.3916995523,5276307.588244568],[516831.35215604905,5276305.676527585],[516835.62634486944,5276305.599969395],[516835.67914262647,5276308.122993043]]]},"properties":{"ID_SOURCE":"w145338828","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1585}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516924.13591451995,5276139.080276816],[516921.7322284879,5276139.073292962],[516921.4994565952,5276141.628829166],[516914.73941534624,5276141.498053925],[516914.74716146174,5276138.830724304],[516909.6396510978,5276138.704754301],[516909.5706663656,5276136.592900283],[516912.42536744114,5276136.490049023],[516912.59270166914,5276130.600132387],[516914.09500761906,5276130.604494817],[516914.1004942235,5276128.715136365],[516915.45224725007,5276128.8302016165],[516917.47842406674,5276129.502924375],[516919.3537241283,5276130.397488905],[516921.15358545113,5276131.402974553],[516922.6520163407,5276132.741003984],[516923.5495245175,5276134.077287748],[516924.2210407032,5276135.635194332],[516924.2152278681,5276137.635691537],[516924.13591451995,5276139.080276816]]]},"properties":{"ID_SOURCE":"w145338831","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1586}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517143.53960734274,5276193.402401632],[517143.85740329686,5276187.512932745],[517149.3407669662,5276187.529075339],[517150.5390002494,5276188.755140277],[517150.75910769927,5276190.534023675],[517157.66964464844,5276190.554376812],[517157.6748829742,5276188.776156965],[517158.8806448708,5276187.446032594],[517164.21345197415,5276187.572885353],[517164.4211093716,5276193.575041428],[517165.4730398231,5276193.4670018405],[517165.5265362716,5276200.802380174],[517160.7946565184,5276200.67729667],[517160.80382528534,5276197.565411891],[517147.73489403876,5276197.1935015265],[517147.6499634391,5276200.52744265],[517142.39228232426,5276200.400826104],[517142.316840817,5276200.511743769],[517142.48767730873,5276193.510445178],[517143.53960734274,5276193.402401632]]]},"properties":{"ID_SOURCE":"w145338832","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1587}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9484894918,5276472.395866921],[516536.41449139855,5276473.719507672],[516533.4327738049,5276465.70898433],[516535.83884911105,5276464.826697896],[516534.79486834514,5276462.156381241],[516537.7270380663,5276461.164449566],[516538.70947798167,5276459.055585304],[516542.2431697976,5276457.843084745],[516542.6909950043,5276458.844613979],[516546.375541442,5276457.410265046],[516548.0926749926,5276461.082753665],[516548.9949547071,5276460.751898405],[516550.4864368273,5276464.534886256],[516547.2528753986,5276465.8593742475],[516546.5734033513,5276467.079980336],[516544.2418068218,5276468.184753302],[516543.4203220974,5276466.515324343],[516542.3977713732,5276466.879180746],[516541.2398948111,5276467.287108846],[516538.307411951,5276468.390177551],[516539.9484894918,5276472.395866921]]]},"properties":{"ID_SOURCE":"w145338833","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1588}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.28672197775,5276439.0101173725],[516486.2590790525,5276440.45768567],[516482.4214835685,5276442.891896562],[516483.2442473258,5276444.116761634],[516483.6204326472,5276443.895546985],[516485.5648308931,5276446.901822007],[516480.37177933,5276450.554734077],[516478.277157254,5276447.548035733],[516479.8576372524,5276446.441110953],[516478.6608893044,5276444.659489755],[516476.7042241032,5276445.987629931],[516474.5351159952,5276442.758442882],[516476.64200432703,5276441.430726979],[516474.0244271891,5276437.422293638],[516477.4110401318,5276435.0979409525],[516477.936505183,5276435.21056733],[516478.41803545103,5276434.922966592],[516479.21559954534,5276434.436208701],[516478.54274186195,5276433.322908054],[516480.57452311524,5276431.994981063],[516485.28672197775,5276439.0101173725]]]},"properties":{"ID_SOURCE":"w145338834","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1589}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517026.3884766497,5276260.742833107],[517029.3926966029,5276260.862755974],[517029.4017953378,5276257.750870861],[517053.3624024706,5276258.043257139],[517053.3207496998,5276272.269017753],[517029.66000508075,5276272.199787507],[517029.5006792982,5276275.311233439],[517016.6559572071,5276275.384830648],[517016.62510942016,5276285.943012645],[517013.3197996831,5276286.044496177],[517013.03926982527,5276304.937427216],[516998.8429029283,5276304.8959755255],[516998.95150196913,5276285.702465033],[517001.9934608432,5276285.755800163],[517002.0468019247,5276282.921893378],[517002.2572130463,5276267.451860794],[517004.5922222867,5276265.235883598],[517006.92690877523,5276263.131046093],[517009.4879115299,5276260.693451356],[517026.3884766497,5276260.742833107]]]},"properties":{"ID_SOURCE":"w145338839","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1590}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517044.6062289866,5276157.202807042],[517044.717832516,5276149.8679142855],[517055.8946269752,5276150.011772415],[517056.796333061,5276149.903273276],[517056.7365148534,5276144.679532798],[517055.53857822495,5276143.34234858],[517054.86124027136,5276143.784923953],[517051.7909555883,5276140.552883676],[517057.44054198865,5276135.123581552],[517061.40960443753,5276139.247374948],[517060.50529232546,5276140.244983237],[517062.0778275653,5276141.9166848585],[517064.18202875915,5276141.589430156],[517063.57589795487,5276143.365889383],[517064.6236025008,5276144.70263511],[517061.91229576553,5276147.139765259],[517061.3864901431,5276147.138225017],[517061.5074202139,5276157.141151229],[517049.3384713778,5276157.216657316],[517044.6062289866,5276157.202807042]]]},"properties":{"ID_SOURCE":"w145338841","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1591}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.23779169226,5276074.14962475],[516487.8170949443,5276075.812905753],[516485.02459221054,5276080.47286559],[516474.67682613427,5276073.997490351],[516474.4517924399,5276073.885714239],[516475.8865417126,5276071.222421708],[516476.34384004545,5276068.889783343],[516476.87185335235,5276068.113299672],[516478.60392537777,5276066.562245052],[516479.81144320825,5276064.565148326],[516485.2857990832,5276067.80368852],[516492.9495288851,5276067.158546316],[516490.60991677875,5276071.041808555],[516487.9479845124,5276069.378292434],[516486.8979953117,5276068.797394286],[516484.95028090815,5276072.226095653],[516484.21530751756,5276071.812798982],[516483.46037286695,5276073.144337894],[516485.23779169226,5276074.14962475]]]},"properties":{"ID_SOURCE":"w145338842","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1592}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.0812416151,5276299.129172086],[517076.00160331355,5276299.120142069],[517075.99117617006,5276302.676582416],[517075.9553328199,5276314.901846257],[517078.80962399807,5276314.910215484],[517078.7074611919,5276324.134512638],[517079.38315053825,5276324.247633783],[517079.37760997756,5276326.136992791],[517079.37206941546,5276328.026351801],[517078.39527768234,5276328.134627155],[517078.30093708826,5276334.691594101],[517071.220474616,5276341.450359193],[517053.49455580174,5276341.176149894],[517053.60871928465,5276327.839717798],[517064.5000692231,5276327.871618789],[517064.6136066518,5276314.757464654],[517061.6090895603,5276314.748662304],[517061.7304343088,5276298.967178141],[517064.88518580527,5276298.976420693],[517064.61504900164,5276280.937653768],[517079.13306075416,5276281.458109418],[517079.0812416151,5276299.129172086]]]},"properties":{"ID_SOURCE":"w145338853","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1593}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.5603365978,5276647.617103499],[516866.84950569813,5276648.489678403],[516866.33372374193,5276645.042852139],[516864.45504166675,5276645.370830628],[516863.71715021733,5276640.811963878],[516865.2952700922,5276640.527570596],[516866.7231083004,5276640.264970433],[516866.42975484795,5276637.819046214],[516865.3021579425,5276638.149199803],[516864.12037195865,5276631.255112727],[516865.1718957063,5276631.258157853],[516864.8791848262,5276628.589956111],[516863.56420024805,5276628.786199677],[516861.94865157024,5276629.026029161],[516861.28522134206,5276624.689657956],[516863.0888009664,5276624.361460949],[516862.57237091486,5276621.136912796],[516868.28322793706,5276620.264333672],[516869.90632816305,5276630.382752707],[516871.4088271532,5276630.275965619],[516872.5161399611,5276636.94755893],[516871.0129987283,5276637.276623376],[516872.5603365978,5276647.617103499]]]},"properties":{"ID_SOURCE":"w145338854","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1594}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516807.1018573999,5276634.86902748],[516810.87205477554,5276629.767481259],[516812.5212410817,5276630.88363964],[516818.8554198298,5276622.233029365],[516823.2772163571,5276625.579993817],[516821.3163591283,5276628.352823294],[516824.7643034595,5276630.807858081],[516821.9737189912,5276634.800827507],[516818.1811097833,5276632.055835624],[516816.8769120599,5276631.118495444],[516815.51949745486,5276633.003951489],[516817.09357315366,5276634.119894304],[516813.02261728776,5276639.331707978],[516811.6735476366,5276638.327555551],[516810.2410276614,5276640.212796014],[516811.6498632488,5276641.3282604],[516815.0370751486,5276644.005393671],[516812.24746617454,5276647.66495134],[516808.649950894,5276644.987212667],[516806.69006934913,5276647.426630647],[516802.5683940692,5276644.191684312],[516808.52539586055,5276636.095673267],[516807.1018573999,5276634.86902748]]]},"properties":{"ID_SOURCE":"w145338857","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1595}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516765.4323156312,5276577.067392436],[516761.4361563201,5276582.3905967325],[516759.86237581586,5276581.1635303],[516758.0527124337,5276583.603396722],[516759.62649265316,5276584.830462674],[516757.0631781359,5276588.157278442],[516757.21051877,5276589.157960011],[516754.11920402327,5276593.261235964],[516753.3681107647,5276593.259075188],[516751.2570576102,5276596.031495917],[516749.68295903574,5276594.915571019],[516747.4971185779,5276597.576638274],[516749.07057756523,5276598.914840215],[516745.3007343536,5276603.905287303],[516735.9318879585,5276596.987692128],[516740.15366146545,5276591.553979178],[516739.25426600856,5276590.884555532],[516751.6201533506,5276574.249152628],[516752.44412071706,5276575.029500913],[516756.2133490174,5276570.261336245],[516765.4323156312,5276577.067392436]]]},"properties":{"ID_SOURCE":"w145338858","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1596}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.98274753377,5276611.230188506],[517056.7589703722,5276611.488683061],[517056.4806594279,5276616.755892983],[517056.4408263601,5276617.533754705],[517058.92657688016,5276617.663289344],[517058.98995221587,5276616.540963313],[517065.6736792762,5276616.893964939],[517065.61017238244,5276618.06074643],[517068.11845520104,5276618.190351026],[517068.17376765533,5276617.256939064],[517068.4285466469,5276612.334193958],[517073.24235504755,5276612.581698222],[517073.00357127155,5276617.171070716],[517076.1501832781,5276617.33589212],[517075.848246941,5276622.96979323],[517065.2594152983,5276622.416397604],[517065.16381320835,5276624.283265622],[517058.4425401331,5276623.930154551],[517058.5459439613,5276621.963283494],[517048.39267597743,5276621.433422382],[517048.71051863127,5276615.488375214],[517051.75197950035,5276615.652875592],[517051.98274753377,5276611.230188506]]]},"properties":{"ID_SOURCE":"w145338859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1597}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.8994838646,5276120.16548458],[516411.98054930946,5276118.054060262],[516410.6287844529,5276117.939111888],[516410.70170795266,5276118.717294673],[516406.4961827375,5276118.372028213],[516406.41668455285,5276119.927758926],[516406.3334297812,5276122.817154475],[516401.67690200143,5276122.581760742],[516401.9952027613,5276116.247698914],[516406.2767843759,5276116.259757495],[516406.37421704514,5276113.670478875],[516406.51966182486,5276110.0366231175],[516409.5239705985,5276110.156226012],[516410.57715389767,5276109.603495165],[516411.8544314526,5276109.495954399],[516413.2061982478,5276109.610903051],[516414.18207403395,5276109.835932319],[516415.98265458853,5276110.618984138],[516417.93503208144,5276110.846766307],[516417.1478520223,5276123.625603566],[516411.8156000637,5276123.277157531],[516411.8994838646,5276120.16548458]]]},"properties":{"ID_SOURCE":"w145338860","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1598}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517003.1943509317,5276623.101745652],[517003.0608573515,5276625.090757693],[516996.5651681031,5276624.649464875],[516996.7062028052,5276622.649360732],[516986.1629154577,5276621.929532244],[516986.5629254795,5276616.118089397],[516989.49159435334,5276616.326684163],[516989.78958901664,5276612.015330743],[516994.4905100146,5276612.340238394],[516994.1609439716,5276617.17385635],[516994.09800275293,5276618.151702597],[516996.92909351765,5276618.33778841],[516996.9681725736,5276617.8155455785],[517003.5464893336,5276618.257080053],[517003.5070202915,5276618.912689422],[517005.84245591477,5276619.075104451],[517005.9053341895,5276618.119486092],[517006.2504185748,5276613.119204409],[517011.04146872374,5276613.444388626],[517010.74300389417,5276617.91133535],[517013.7017146705,5276618.120030051],[517013.31708909,5276623.798148419],[517003.1943509317,5276623.101745652]]]},"properties":{"ID_SOURCE":"w145338865","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1599}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516859.08606764546,5276468.47639035],[516860.2803315648,5276468.479847646],[516860.3220805495,5276474.814932792],[516859.0902624993,5276474.811366769],[516859.13789773395,5276484.302837227],[516856.72677882697,5276484.318085871],[516856.7380372816,5276485.618453255],[516850.4286084108,5276485.644650381],[516850.417637954,5276484.244258095],[516841.0435611499,5276484.306055021],[516841.0349345276,5276482.094349561],[516839.90827309596,5276482.091091672],[516839.8672732901,5276475.489273547],[516841.1742341703,5276475.481938828],[516841.12624808814,5276466.101607515],[516843.42470800795,5276466.086026544],[516843.41328579315,5276464.841228629],[516849.91054674744,5276464.804453256],[516849.92228912475,5276465.938112392],[516852.1005715951,5276465.922187148],[516859.07103057316,5276465.886791269],[516859.08606764546,5276468.47639035]]]},"properties":{"ID_SOURCE":"w145338868","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1600}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.5452482719,5276338.936789073],[516933.84666813735,5276338.604246327],[516940.58773068583,5276345.181092954],[516935.0870650405,5276351.166640135],[516934.1886239223,5276350.163770361],[516932.96876459674,5276351.204936901],[516932.23085313936,5276351.8251739275],[516930.5832255265,5276350.153288413],[516925.0835437889,5276355.805428741],[516924.25989112764,5276354.913917544],[516922.2486419343,5276356.886360241],[516920.418180371,5276358.6815053215],[516921.31662252184,5276359.684372983],[516915.81695874874,5276365.3365221],[516914.15414646023,5276363.720166956],[516912.37147628184,5276361.992324532],[516908.92631251935,5276358.536990254],[516914.5007655962,5276352.996191607],[516917.79635027394,5276356.228815234],[516919.5441881385,5276354.433429303],[516921.56327140046,5276352.349868732],[516918.26736374607,5276349.228381768],[516923.8421575429,5276343.576453327],[516926.3882323311,5276346.251205329],[516928.8818866808,5276343.702239759],[516933.5452482719,5276338.936789073]]]},"properties":{"ID_SOURCE":"w145338869","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1601}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.9068277589,5276613.331078938],[517020.9857801071,5276613.517900751],[517021.2463086239,5276609.184211377],[517025.9098056969,5276609.464579095],[517025.6174105446,5276614.420557803],[517025.56242980855,5276615.242831336],[517028.5136955394,5276615.429283837],[517028.5770325346,5276614.3180713765],[517035.3432537266,5276614.715735293],[517035.2645035112,5276615.960270325],[517037.3897317353,5276616.088741178],[517037.4607764105,5276614.910867489],[517037.7450204112,5276610.177145002],[517042.468603256,5276610.457701775],[517042.20006023056,5276614.95807649],[517045.38416368247,5276615.145218923],[517045.03683381353,5276620.901242337],[517034.8237032544,5276620.293431851],[517034.69741712435,5276622.382490091],[517028.05137914594,5276621.98517828],[517028.1777603898,5276619.862778258],[517017.5515918669,5276619.231562428],[517017.9068277589,5276613.331078938]]]},"properties":{"ID_SOURCE":"w145338870","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1602}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.61973959376,5276373.8766322415],[516814.5399807173,5276373.923309771],[516814.5086815228,5276371.75599521],[516814.47102618695,5276369.188559385],[516811.85699269216,5276369.225468969],[516811.7816154316,5276364.112825142],[516814.49329718814,5276364.076197428],[516814.46270379314,5276361.664377597],[516814.43134029175,5276359.519290837],[516811.8849035668,5276359.5563955875],[516811.81607493805,5276354.777189838],[516821.58116885606,5276354.638676346],[516822.3173025305,5276354.629688579],[516822.3362730027,5276355.863394041],[516825.1155598439,5276355.826966523],[516825.147497362,5276357.772003546],[516825.172084152,5276359.661449487],[516822.37777667143,5276359.697833585],[516822.4662410746,5276365.477353575],[516825.12534370384,5276365.440578942],[516825.15012308984,5276367.263341645],[516825.1745171737,5276369.219470883],[516822.3651918377,5276369.255811574],[516822.42714236025,5276373.812718331],[516817.61973959376,5276373.8766322415]]]},"properties":{"ID_SOURCE":"w145338871","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1603}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5568273174,5276377.455149015],[516830.83722665,5276377.293461186],[516850.8329394467,5276377.05120354],[516863.07672941446,5276376.908818009],[516863.2218582942,5276389.045694441],[516858.9402833788,5276389.099982747],[516858.91667288885,5276386.877120212],[516857.0388087837,5276386.893912581],[516855.2961462762,5276386.911096842],[516855.28453331755,5276385.732982318],[516849.913767698,5276385.8063531],[516849.92579974787,5276386.839987199],[516840.048155175,5276386.955899514],[516830.73385098856,5276387.073456534],[516830.72226518113,5276385.884228195],[516825.3515001305,5276385.957621626],[516825.363664968,5276386.946800151],[516823.5083346368,5276386.96366843],[516821.735627507,5276386.980775943],[516821.7594126901,5276389.148068903],[516817.48534959333,5276389.202409378],[516817.44862642454,5276386.312671],[516814.60926460085,5276386.348928659],[516814.55992407823,5276382.625606113],[516817.6171126473,5276382.589977414],[516817.5563780236,5276377.610743305],[516817.5568273174,5276377.455149015]]]},"properties":{"ID_SOURCE":"w145338874","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1604}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516369.2358057413,5276065.9204368815],[516372.74294899567,5276066.800927519],[516372.765638332,5276066.152637221],[516369.2358057413,5276065.9204368815]]]},"properties":{"ID_SOURCE":"w145338876","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1605}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.4431589674,5276068.949901398],[516381.0954000779,5276069.065687508],[516381.7714447512,5276069.067588847],[516372.74294899567,5276066.800927519],[516372.6839617247,5276068.486339334],[516376.13867655554,5276068.718330577],[516379.4431589674,5276068.949901398]]]},"properties":{"ID_SOURCE":"w145338876","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1606}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.06180487905,5276122.356559032],[516443.81694680755,5276122.589438592],[516443.42693690845,5276127.700760136],[516430.6598405544,5276126.775613852],[516430.6629757204,5276125.664226485],[516430.5913090398,5276124.44148849],[516430.29429619346,5276123.218114822],[516430.1468869944,5276122.217442417],[516430.1493950449,5276121.32833253],[516430.3027609421,5276120.217368958],[516430.7565886174,5276119.107252973],[516431.13467397116,5276118.219202591],[516431.2905483527,5276116.2191291675],[516437.2240430564,5276116.458150096],[516437.46193525294,5276112.01323667],[516444.521539257,5276112.477722358],[516444.13341076847,5276116.9222113695],[516440.37826519454,5276116.689331614],[516440.14162572264,5276120.689690015],[516439.01489456027,5276120.686509845],[516439.0105031043,5276122.242452145],[516440.06180487905,5276122.356559032]]]},"properties":{"ID_SOURCE":"w145338878","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1607}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516424.0117833797,5276379.932969521],[516416.12501634983,5276379.91073393],[516416.20827332383,5276377.021337348],[516417.5606044925,5276376.914009641],[516417.6391628205,5276375.691694795],[516419.6671900976,5276375.697412022],[516419.6039845165,5276371.473926628],[516416.75003510783,5276371.354741615],[516416.8354854192,5276367.687373631],[516419.61432440113,5276367.806346915],[516419.7701888334,5276365.806272421],[516425.32849525736,5276365.821945555],[516425.3234802403,5276367.6001660125],[516428.77864263544,5276367.609911445],[516428.6797041557,5276376.056246802],[516427.32768604794,5276376.052433147],[516426.2783106121,5276375.271495726],[516425.7450145094,5276375.2699916335],[516425.30185296026,5276375.268741791],[516425.3747710034,5276376.0469250865],[516425.4498831204,5276376.047136924],[516425.514024717,5276379.937206081],[516424.0117833797,5276379.932969521]]]},"properties":{"ID_SOURCE":"w145338880","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1608}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.12152029225,5276077.588554969],[516521.3216640528,5276074.907587441],[516522.75738037267,5276071.91089022],[516522.5351848861,5276070.7988637155],[516524.2707366151,5276068.025296662],[516525.1730756688,5276067.694437778],[516526.9840610519,5276064.809945931],[516529.5342248448,5276066.150857842],[516537.87116714544,5276066.507941823],[516536.0585992636,5276069.948123933],[516535.7584505065,5276069.836132199],[516532.51300223306,5276075.272760919],[516536.18737569446,5276077.50598383],[516532.64178308897,5276082.830620794],[516528.44223089673,5276080.373630525],[516527.99216603464,5276080.1500741495],[516528.74647923105,5276079.040818427],[516528.0716971592,5276078.594345117],[516528.6003472773,5276077.595588656],[516526.7256014936,5276076.47887274],[516526.12152029225,5276077.588554969]]]},"properties":{"ID_SOURCE":"w145338883","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1609}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516815.86108190025,5276441.866827903],[516815.83774415485,5276439.543940489],[516811.1506700791,5276439.574864977],[516811.10620434396,5276434.162232595],[516812.24792939296,5276434.154414377],[516812.16384414834,5276421.650954073],[516820.02824715036,5276421.595863881],[516820.03973871947,5276422.818433895],[516825.6732637095,5276422.779136771],[516825.6621907332,5276421.412086321],[516833.59422679653,5276421.346095868],[516833.6570876381,5276430.782039244],[516833.6639241833,5276431.015452403],[516825.51407816826,5276431.080813434],[516825.4828498989,5276426.290601578],[516822.8088169546,5276426.305104832],[516819.9244718855,5276426.319001923],[516819.9551911652,5276431.287035796],[516817.25111597637,5276431.301454833],[516817.261645318,5276432.857441216],[516817.27310533193,5276434.091125129],[516820.63819147577,5276434.067501218],[516820.6908656109,5276441.836319387],[516815.86108190025,5276441.866827903]]]},"properties":{"ID_SOURCE":"w145338888","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1610}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.87856965297,5276661.985135263],[516841.9551259475,5276659.976164184],[516839.4665839829,5276663.414300152],[516835.34429558855,5276660.401608118],[516838.1485491861,5276656.875471443],[516838.9626775959,5276655.855339724],[516837.2390375496,5276654.516678972],[516836.3345219798,5276655.625461416],[516833.63607652904,5276653.7282848125],[516833.7115063372,5276653.617363096],[516830.8631631608,5276651.608614744],[516831.6171398993,5276650.610536111],[516829.59306219325,5276649.271009316],[516828.8238390934,5276650.346841974],[516826.3502262179,5276653.818368543],[516822.37814142625,5276650.806119801],[516825.0926466699,5276647.1463499535],[516822.5440898989,5276645.360751354],[516825.7108555113,5276641.146589521],[516834.2555786151,5276647.283969909],[516835.46213612106,5276645.620361564],[516840.7839230398,5276649.414500458],[516839.8784418745,5276650.856698822],[516848.4231358262,5276656.99410016],[516844.87856965297,5276661.985135263]]]},"properties":{"ID_SOURCE":"w145338893","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1611}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.5549465512,5276092.628576871],[516381.2388549352,5276098.184668406],[516373.35295619525,5276097.717936703],[516373.5209957135,5276091.383451327],[516371.26783449244,5276091.265978276],[516371.50817628816,5276085.931952605],[516373.23584099807,5276085.936808906],[516373.24146450113,5276083.936311773],[516371.13853215997,5276083.81926109],[516371.6092201097,5276076.707649218],[516376.41633009055,5276076.832302466],[516376.6429279369,5276076.388381145],[516381.2991809992,5276076.734893483],[516381.0653938012,5276079.735005385],[516381.2901164729,5276079.9579166155],[516381.0603927504,5276081.513225051],[516382.26224737806,5276081.516605262],[516382.02564659616,5276085.5169657115],[516381.5752639962,5276085.404559391],[516380.3734101729,5276085.40117932],[516380.13493553037,5276090.068372255],[516380.12805945316,5276092.513424331],[516381.5549465512,5276092.628576871]]]},"properties":{"ID_SOURCE":"w145338897","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1612}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517142.9940053299,5276368.5569937145],[517143.02153825003,5276374.5141645735],[517143.04404608737,5276379.6266587],[517146.23637548595,5276379.613828217],[517146.3958572737,5276417.290669763],[517143.1735038825,5276417.303411673],[517143.19206581166,5276421.20447132],[517143.21675167576,5276428.1285500815],[517115.6802996924,5276428.247611403],[517090.39725864795,5276428.351187149],[517080.4447942154,5276428.388674038],[517080.38060932443,5276414.41822076],[517105.3857973532,5276414.313785133],[517105.36779759784,5276410.212675908],[517105.26420463476,5276384.1056476515],[517105.23709020345,5276377.992882689],[517103.5620574436,5276377.999077338],[517102.08231618453,5276378.00584593],[517102.09901312285,5276382.55151003],[517090.3812717642,5276382.6060249],[517087.30912357953,5276382.619238594],[517087.28335978225,5276376.039690925],[517095.65855886874,5276375.997585206],[517095.6435206162,5276370.8851134395],[517102.0356997514,5276370.859424294],[517102.04638170067,5276372.337614086],[517105.5767197211,5276372.325753847],[517105.5664956544,5276370.691969763],[517111.47795697383,5276370.664879107],[517111.4687468048,5276368.686564821],[517142.9940053299,5276368.5569937145]]]},"properties":{"ID_SOURCE":"w145338899","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1613}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516804.7686613666,5276167.964387935],[516804.8347976775,5276171.07648939],[516811.29434730083,5276171.206269921],[516811.358876148,5276174.874065182],[516824.9539989864,5276175.135600706],[516824.6252886239,5276184.91494209],[516824.5851630126,5276185.8039435465],[516824.5453584517,5276186.581806259],[516817.59719628363,5276186.583967687],[516811.3251936286,5276186.543633131],[516811.41185655183,5276182.542855189],[516804.72729628877,5276182.3012855835],[516804.71543187153,5276186.413419077],[516801.8837406591,5276186.360793836],[516797.42963867565,5276186.28126283],[516797.2829352233,5276185.058303396],[516791.5745466677,5276184.930703848],[516791.4320072298,5276182.262940912],[516774.5767649354,5276182.047663175],[516774.81267154607,5276170.556501363],[516785.1553679233,5276170.797463643],[516785.239130436,5276167.796934116],[516804.7686613666,5276167.964387935]]]},"properties":{"ID_SOURCE":"w145338902","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1614}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.14455339086,5276088.232489511],[516400.12105915864,5276088.235238948],[516400.2027465446,5276085.901537119],[516399.15112453053,5276085.898576182],[516399.389614557,5276081.231384021],[516401.3426284356,5276081.236883135],[516402.2446453962,5276081.017143951],[516403.8981346683,5276080.688381628],[516405.17479237745,5276080.803116846],[516406.1506733024,5276081.028144747],[516407.3509627051,5276081.587223782],[516410.2044280738,5276081.928681255],[516410.12211039325,5276084.484660396],[516414.2528572186,5276084.718578986],[516414.0074651031,5276091.830822659],[516409.57626017544,5276091.596057727],[516409.6529415212,5276091.040575696],[516404.24491748854,5276090.914202519],[516404.007675924,5276095.136839635],[516397.5486609935,5276094.78523357],[516397.78714942874,5276090.118041283],[516399.06411809294,5276090.121636436],[516399.14455339086,5276088.232489511]]]},"properties":{"ID_SOURCE":"w145338904","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1615}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.91367436585,5276428.618896917],[516838.90286158706,5276427.162935397],[516845.2875294581,5276427.114715129],[516845.2980191803,5276428.681815453],[516852.07326502644,5276428.634732359],[516852.09623464977,5276431.079872578],[516855.6190889293,5276431.04561142],[516855.6607792567,5276437.402923904],[516854.57917597453,5276437.3997936305],[516854.6342170625,5276444.33507134],[516852.0277923832,5276444.3497568015],[516852.0473530576,5276447.972968239],[516845.7303080382,5276448.021376573],[516845.7185004887,5276446.909945235],[516843.47261084255,5276446.925677377],[516838.21466507,5276446.966043027],[516836.01384221076,5276446.981908342],[516835.9910908518,5276444.45897099],[516835.1723782537,5276444.456604291],[516835.1310833247,5276437.954811515],[516836.317874488,5276437.947128289],[516836.26345403993,5276430.789573305],[516836.25466471526,5276428.633437435],[516838.91367436585,5276428.618896917]]]},"properties":{"ID_SOURCE":"w145338905","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1616}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516477.60912386206,5276126.1302671805],[516482.1088109036,5276128.699209971],[516479.91820312635,5276133.027456872],[516477.7382887149,5276133.57698754],[516473.61292259453,5276131.453665292],[516470.23367812677,5276131.110689788],[516467.9805340359,5276130.993179279],[516468.06004854286,5276129.437449342],[516468.06413353805,5276127.992645768],[516467.84224407206,5276126.769482537],[516467.5458676044,5276125.32382947],[516467.69986898534,5276123.990589388],[516468.30424851726,5276122.769762316],[516468.83414138894,5276121.326445452],[516468.9136562359,5276119.770715552],[516472.3686514056,5276119.89162523],[516472.680428519,5276115.891480529],[516479.8899417132,5276116.467572715],[516479.5769018764,5276120.912271985],[516477.999792704,5276120.796670396],[516477.6880121693,5276124.796814852],[516476.56159617787,5276124.682488683],[516476.4823937355,5276126.127079761],[516477.60912386206,5276126.1302671805]]]},"properties":{"ID_SOURCE":"w145338908","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1617}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.6778472708,5276468.617399591],[516835.77843663236,5276468.653473103],[516835.7904708978,5276469.687107299],[516829.5559432066,5276469.780227488],[516829.5441968799,5276468.6465683915],[516820.37270230043,5276468.775667963],[516820.3349542344,5276466.241573337],[516819.0580036204,5276466.260113384],[516818.96315044357,5276460.091585071],[516820.53303548705,5276460.073891038],[516820.39529971033,5276450.548819456],[516823.0017856662,5276450.51189209],[516822.9900700989,5276449.367119166],[516829.41239745857,5276449.274534521],[516829.42452927225,5276450.274827035],[516836.17737706465,5276450.172090999],[516838.2805863266,5276450.144829554],[516838.5960853913,5276450.134627772],[516838.63276527205,5276453.035480475],[516839.42149647896,5276453.015533036],[516839.50897773704,5276459.128470548],[516838.53246971214,5276459.1478750575],[516838.5705633994,5276461.55971712],[516838.63339940924,5276465.805436129],[516838.6778472708,5276468.617399591]]]},"properties":{"ID_SOURCE":"w145338913","HEIGHT_WALL":15.0,"HEIGHT_ROOF":15.0,"NB_LEV":5,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1618}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516904.06889381906,5276324.069581078],[516908.18751463195,5276328.415984886],[516906.60498506034,5276330.189626094],[516907.3538538601,5276330.969777923],[516902.60852865706,5276335.512732162],[516902.00924007886,5276334.955294432],[516900.1564054042,5276336.694811046],[516895.15528857923,5276341.381510719],[516893.58275999926,5276339.709853627],[516892.6794746715,5276340.374071836],[516890.73267131404,5276338.256771146],[516888.33583520213,5276335.915886731],[516888.86387971026,5276335.13944001],[516887.44092848804,5276333.690497763],[516886.7143978483,5276332.977097095],[516882.1978601015,5276328.5628712475],[516883.705269877,5276326.789005684],[516883.0315101596,5276326.009074645],[516887.77779446647,5276321.132688245],[516888.60177977884,5276321.913055443],[516895.3812786334,5276315.264336178],[516897.1788296026,5276317.047786194],[516897.85678033816,5276316.38291491],[516902.3656109978,5276320.863814279],[516901.67237967585,5276321.61755246],[516902.97547239583,5276322.955010599],[516904.06889381906,5276324.069581078]]]},"properties":{"ID_SOURCE":"w145338916","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1619}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.2685430519,5276421.722388241],[516776.8462055179,5276421.615793016],[516776.7904989805,5276440.9539418705],[516772.35893282533,5276440.941177724],[516772.13904004084,5276439.051169395],[516771.4636783067,5276438.826945067],[516769.3644015333,5276437.487223557],[516769.2151388867,5276437.153374647],[516766.43601932225,5276437.145373238],[516766.4644952973,5276427.254021215],[516765.7130606857,5276427.3629976865],[516765.8764012784,5276422.806739934],[516762.7965088912,5276422.909014155],[516762.8006673837,5276421.46420995],[516753.5625871685,5276421.21534846],[516753.7249592568,5276416.992506787],[516756.7297429864,5276416.890011652],[516756.8218023441,5276410.999872225],[516771.39346756856,5276411.041816098],[516771.38034563995,5276415.59850622],[516773.33292761195,5276415.715269118],[516773.32428533223,5276418.716016289],[516773.3156430455,5276421.716763475],[516775.2685430519,5276421.722388241]]]},"properties":{"ID_SOURCE":"w145338918","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1620}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.04564726265,5276276.339287541],[517148.79393807903,5276276.305866844],[517148.8633777085,5276285.886315178],[517148.8953561646,5276290.331998192],[517148.90126402176,5276290.8766002245],[517145.8966690665,5276290.889982175],[517145.8733636879,5276288.600435308],[517145.33254816505,5276288.598843231],[517145.3159686704,5276286.576051502],[517143.27282166865,5276286.592265204],[517141.0118461291,5276286.607838534],[517141.01135549886,5276286.77454667],[517134.28851981217,5276286.821448709],[517134.2898276485,5276286.376893678],[517132.1340106839,5276286.392779822],[517129.5876046019,5276286.407517996],[517129.59736465866,5276288.19689618],[517126.0819328111,5276288.231013907],[517125.99018824653,5276276.005375154],[517129.61078627186,5276275.971566634],[517129.6380792825,5276279.461434038],[517133.85958227376,5276279.429395521],[517133.8603996491,5276279.15154863],[517140.9212544347,5276279.105640843],[517140.9197825526,5276279.605765248],[517145.0661721613,5276279.573513791],[517145.04564726265,5276276.339287541]]]},"properties":{"ID_SOURCE":"w145338919","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1621}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.9512591596,5276139.830577711],[516443.6938251961,5276139.593453319],[516443.3025613832,5276145.149329964],[516441.72514438035,5276145.144876916],[516441.4130762131,5276149.256162146],[516434.27840153227,5276148.791468155],[516434.44023448136,5276144.679758664],[516433.83931367006,5276144.678063129],[516433.5426161451,5276143.343550512],[516433.2456049142,5276142.120176648],[516433.4024201572,5276139.7866869895],[516433.78364037065,5276137.78724937],[516434.2384081278,5276136.343717409],[516434.31697279774,5276135.121403235],[516434.3955374964,5276133.899089063],[516439.0514276823,5276134.356786455],[516439.0495456165,5276135.023618882],[516440.0482957946,5276135.126463499],[516441.1521445056,5276135.251832876],[516441.15465424675,5276134.3627229715],[516442.50641472556,5276134.477678441],[516442.4347506528,5276133.254940282],[516443.33581987914,5276133.36862367],[516443.5617931477,5276133.146982377],[516449.2692966757,5276133.607656916],[516448.9512591596,5276139.830577711]]]},"properties":{"ID_SOURCE":"w145338921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1622}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517187.02803176583,5276576.295840338],[517188.75227131665,5276577.412326977],[517189.48427833733,5276576.247519906],[517190.63886764826,5276574.417121653],[517189.1399563549,5276573.301299538],[517193.13782677683,5276567.533832638],[517189.1652150776,5276564.743611431],[517193.1624351067,5276559.198422222],[517194.73645905155,5276560.314467104],[517195.6490938372,5276559.027940383],[517196.8483933449,5276557.319929149],[517195.3498069564,5276556.092966672],[517203.34493476467,5276544.780322005],[517204.91896069254,5276545.896369607],[517205.8319283199,5276544.498705696],[517206.8052470705,5276543.012308427],[517205.3811123797,5276542.007842922],[517209.4541302414,5276536.240609316],[517216.34947236563,5276541.262279149],[517204.05466630176,5276558.786030029],[517203.15531869826,5276558.116534661],[517197.87531549425,5276565.658444711],[517198.7749907485,5276566.216800466],[517196.2107598976,5276569.765701073],[517200.33325576654,5276572.667509604],[517190.15146788425,5276586.863337964],[517183.3315950717,5276581.730781521],[517187.02803176583,5276576.295840338]]]},"properties":{"ID_SOURCE":"w145338922","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1623}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516878.8984529734,5276344.779704896],[516878.9107699069,5276345.713314106],[516877.77650640823,5276345.732254938],[516877.7968892853,5276349.066505136],[516877.8582423119,5276351.222793202],[516877.9221465869,5276355.090640134],[516875.12783644965,5276355.126998927],[516875.1467313309,5276356.382932346],[516868.8294578893,5276356.475771365],[516868.810336317,5276355.297635111],[516864.0179078566,5276355.372668147],[516859.30810317554,5276355.447944297],[516859.27062828315,5276352.824938814],[516858.55699585873,5276352.8451010175],[516858.4938186032,5276348.721635169],[516858.45563553355,5276346.343135015],[516859.40211754583,5276346.323646835],[516859.248936014,5276336.965240561],[516861.4874212235,5276336.927264906],[516861.47519799345,5276335.960314121],[516868.12305355654,5276335.846196509],[516868.13521130563,5276336.835375059],[516877.8327679743,5276336.685646146],[516877.8698159784,5276339.4531321],[516878.816299194,5276339.433647073],[516878.8984529734,5276344.779704896]]]},"properties":{"ID_SOURCE":"w145338924","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1624}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516821.5108072135,5276352.993605566],[516817.5896497165,5276353.082307302],[516817.5697154581,5276352.182018177],[516817.5039097194,5276348.958776898],[516817.41701427044,5276345.2353460975],[516818.7090460099,5276345.205735133],[516818.5894090734,5276339.815114326],[516817.64292617474,5276339.8346091425],[516817.592303268,5276336.555841918],[516817.4683326608,5276332.66559459],[516817.47090000566,5276331.776484438],[516813.902790073,5276331.85509421],[516813.8504002863,5276329.187590291],[516812.80626912665,5276329.206803998],[516812.71327063587,5276324.994341131],[516812.6473334504,5276321.815555557],[516817.62015569955,5276321.707659101],[516822.26248169906,5276321.598812288],[516822.39537273557,5276327.600739637],[516822.488460471,5276331.779861061],[516826.912919609,5276331.681502681],[516827.0919623258,5276339.906357552],[516822.2018113475,5276340.0033706585],[516822.25509599934,5276342.359686153],[516822.31457570463,5276345.171692311],[516826.9192947383,5276345.073854649],[516827.09204583126,5276352.876360657],[516821.5108072135,5276352.993605566]]]},"properties":{"ID_SOURCE":"w145338925","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1625}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.99804703833,5276404.008195455],[516527.9738691112,5276404.233244021],[516528.8802568849,5276402.457581467],[516527.07978186005,5276401.674494142],[516529.04530522955,5276397.234484991],[516531.97151249455,5276398.354187327],[516532.27353723795,5276397.799346263],[516533.9985854296,5276398.693360734],[516533.7716723876,5276399.24841494],[516535.12179194606,5276399.91908602],[516537.37924886344,5276398.4806798315],[516538.4263960972,5276400.039608827],[516539.3264753614,5276400.486723565],[516537.966257481,5276403.372492587],[516540.0668619323,5276404.267575323],[516536.96897666017,5276410.7048796965],[516534.7184662273,5276409.698232783],[516534.4230678755,5276407.919159243],[516534.8768934637,5276406.809050874],[516533.9020186284,5276406.250584797],[516532.0125526445,5276410.357389225],[516530.36230386165,5276409.574727295],[516527.9432751749,5276415.0137061775],[516523.380700654,5276408.221239312],[516525.78869025514,5276406.67211605],[516526.99804703833,5276404.008195455]]]},"properties":{"ID_SOURCE":"w145338927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1626}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.0264814498,5276091.247111155],[516521.6490109898,5276091.912878175],[516523.67461486306,5276092.807741225],[516523.97665442387,5276092.252899962],[516524.8770978517,5276092.588873409],[516525.7832170841,5276090.924349858],[516531.5576703155,5276094.274925021],[516528.08563086175,5276100.155471716],[516524.1104905551,5276098.0325401295],[516521.46914623416,5276102.359492708],[516522.5939893683,5276103.029521207],[516520.555149248,5276106.80248525],[516511.7811177963,5276101.665182762],[516513.5182307849,5276098.335918748],[516512.8434498007,5276097.889447184],[516514.0522334167,5276095.447802527],[516514.58434588043,5276093.226518743],[516516.3902757837,5276092.12024319],[516518.2763651248,5276089.235961553],[516522.0264814498,5276091.247111155]]]},"properties":{"ID_SOURCE":"w145338935","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1627}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.82513065706,5276151.529340641],[516612.14417777275,5276151.629980571],[516611.9971175303,5276150.518164705],[516608.3161640834,5276150.618807052],[516608.33010806894,5276145.7287025545],[516608.33993223344,5276142.283401679],[516612.0208909455,5276142.182759335],[516612.3181816572,5276143.29500366],[516615.3982188049,5276143.192649565],[516615.1817505167,5276140.080122084],[516618.7131146392,5276139.756777939],[516621.1133114171,5276140.986162852],[516621.2587844014,5276142.653672619],[516620.958006721,5276142.763953943],[516621.3237505264,5276146.210326586],[516623.05139753025,5276146.215257029],[516623.1962354325,5276148.10504434],[516622.970573057,5276148.215539939],[516623.0393443222,5276150.43852909],[516622.0628488982,5276150.435742255],[516621.994394428,5276148.10161438],[516619.0649069764,5276148.093254896],[516619.13272838976,5276150.649660212],[516618.53180815093,5276150.64794562],[516618.45732732693,5276150.425453824],[516615.7525520465,5276150.640016443],[516615.82513065706,5276151.529340641]]]},"properties":{"ID_SOURCE":"w145338937","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1628}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.56807812303,5276108.52896779],[516579.06766476517,5276107.857859007],[516582.08747536154,5276102.531753069],[516584.41289601,5276103.649770153],[516585.7713069146,5276101.430845506],[516586.5963132556,5276101.877753344],[516588.4710394491,5276102.994488623],[516591.5457154851,5276104.781480301],[516590.0348560708,5276107.777946832],[516591.3035898776,5276110.6711911755],[516593.48415702226,5276109.8994255215],[516594.1782354632,5276111.47958572],[516595.0514508079,5276113.460359082],[516592.79513606447,5276114.454187627],[516593.24266286084,5276115.566858899],[516595.79342256807,5276116.685522544],[516593.82838850754,5276120.903230082],[516594.20143247675,5276121.793409968],[516595.0283351961,5276121.573486616],[516597.4890916407,5276127.9154575495],[516592.1505215784,5276129.789621086],[516590.8840084484,5276126.118405315],[516586.4477722217,5276127.661725493],[516583.83708929387,5276121.208192777],[516584.6668397883,5276119.988019352],[516586.025879991,5276117.546817247],[516583.71818561124,5276110.20503045],[516580.56807812303,5276108.52896779]]]},"properties":{"ID_SOURCE":"w145338938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1629}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516959.0391789594,5276645.712188606],[516964.3751310431,5276644.616332439],[516964.9679062775,5276647.396553388],[516966.7714848935,5276647.0683884835],[516966.9942203777,5276647.958155545],[516966.69378586946,5276647.957280235],[516968.32059310406,5276656.742061678],[516969.4478685125,5276656.523066845],[516970.4828702863,5276662.194211052],[516968.9046214474,5276662.523031366],[516969.57023404806,5276666.081443507],[516969.87066762004,5276666.082318968],[516969.77179604524,5276666.5043619815],[516953.2616828409,5276669.479276576],[516953.03862257337,5276668.700648838],[516953.6394894437,5276668.702398071],[516953.0476816798,5276665.588761707],[516951.61997507204,5276665.80688518],[516951.09440480755,5276663.160228869],[516950.5095236622,5276660.246664541],[516945.1735885517,5276661.342533403],[516943.0980364648,5276651.889614356],[516942.72249358863,5276651.88852176],[516942.72346361226,5276651.555105288],[516950.013201086,5276650.131501261],[516949.346927711,5276646.795369118],[516958.8157948785,5276645.044699497],[516959.0391789594,5276645.712188606]]]},"properties":{"ID_SOURCE":"w145338939","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1630}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.75377190317,5276433.69039205],[517258.4969816237,5276436.359948605],[517260.05192278075,5276443.92206032],[517257.27214723115,5276444.136102247],[517255.6882248245,5276446.354204241],[517254.9384295767,5276445.907423687],[517253.052417473,5276448.680330184],[517253.200005925,5276449.569885492],[517250.63470342907,5276453.452178047],[517250.7750497298,5276456.7867865935],[517250.02097604686,5276457.784810883],[517250.0871990908,5276460.785780601],[517250.9134206394,5276460.788227882],[517251.043561189,5276467.568138903],[517240.60280840175,5276467.648361309],[517240.5405286411,5276463.31372623],[517239.639196438,5276463.311058078],[517239.3041059325,5276449.639875659],[517242.6972714056,5276445.20433034],[517243.898722347,5276445.319027309],[517246.0851762909,5276442.547007556],[517245.7870348716,5276441.768146385],[517245.6371413819,5276441.656562763],[517247.8996962765,5276438.5513497675],[517248.6498221708,5276438.886990625],[517251.1390306769,5276435.337891131],[517257.75377190317,5276433.69039205]]]},"properties":{"ID_SOURCE":"w145338940","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1631}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.0286505661,5276356.110870862],[516722.9624734583,5276352.998769526],[516723.19929908734,5276348.998420724],[516723.1315263611,5276346.442013285],[516723.0090644684,5276336.772508826],[516723.0911976859,5276334.327671552],[516723.02916877536,5276329.770766324],[516729.8650650603,5276329.568119059],[516729.9318773445,5276332.457942826],[516731.5092438058,5276332.46247405],[516731.55553289206,5276334.652058864],[516731.64095088927,5276338.90895429],[516730.4391492019,5276338.905501861],[516730.5807543637,5276341.906680221],[516730.64788536465,5276344.685365282],[516731.4731653695,5276345.021155147],[516731.4356811818,5276347.610602227],[516731.3515733239,5276353.356282576],[516731.2871814142,5276357.468266155],[516730.3104013976,5276357.576599863],[516730.30178144167,5276360.577346772],[516730.21900696337,5276363.2444616],[516731.19514747756,5276363.358405428],[516731.19418965396,5276363.691821756],[516731.1469914224,5276367.048104882],[516731.1005594885,5276370.137654968],[516729.5228839885,5276370.244262606],[516729.56638701,5276370.788972066],[516722.9791752232,5276370.725598234],[516722.91875439684,5276368.22478166],[516722.9267323346,5276365.4463122655],[516723.0286505661,5276356.110870862]]]},"properties":{"ID_SOURCE":"w145338942","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1632}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.1802017203,5276297.231328528],[517141.87497917947,5276297.046398677],[517141.93275569123,5276302.936974032],[517144.9369518144,5276303.056956563],[517144.9764038291,5276315.17130269],[517141.9718868498,5276315.162458883],[517141.9263162392,5276317.885248033],[517141.88041855476,5276320.719175964],[517140.3781614974,5276320.714754661],[517140.50418314215,5276328.939465338],[517138.9973494571,5276330.490987097],[517140.34512650716,5276331.939769888],[517137.91198752617,5276334.3109998945],[517135.9007239256,5276336.261141185],[517134.7034990997,5276334.701662609],[517133.04709702363,5276336.030466422],[517124.85949083074,5276336.117526156],[517124.9300284821,5276337.673689742],[517121.21172441536,5276337.740555661],[517119.2962542784,5276337.768266981],[517119.212321369,5276340.76879291],[517107.11919379985,5276340.733259387],[517107.0532216604,5276337.621153278],[517101.4201004631,5276337.493470274],[517101.08141254453,5276324.933686976],[517107.2406619149,5276324.951775231],[517107.2380503392,5276325.84088535],[517128.7196533148,5276326.126302158],[517130.1526801007,5276324.1300017685],[517130.2902279482,5276302.902719057],[517129.1792080572,5276302.677171954],[517129.1802017203,5276297.231328528]]]},"properties":{"ID_SOURCE":"w145338943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1633}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.7677527793,5276700.074782072],[516995.20354109484,5276700.020483974],[516994.4846266261,5276696.717534543],[516992.9214397678,5276697.035278301],[516991.78082857985,5276691.530531162],[516989.54875722737,5276691.990805899],[516987.6356410279,5276683.527487967],[516986.96672446205,5276683.681132403],[516986.77368010377,5276682.91370486],[516994.1241246575,5276681.2680536555],[516993.28727171733,5276677.197895882],[517002.8845010654,5276675.203165086],[517003.7745723785,5276679.051200098],[517011.1397237159,5276677.51675305],[517011.2504706444,5276678.172801232],[517010.95715893933,5276678.305312166],[517012.57696421957,5276686.890034743],[517010.8709384248,5276687.25181232],[517011.15954224253,5276688.730814406],[517012.00320998434,5276693.034388337],[517010.47003191174,5276693.363329035],[517011.05562632374,5276696.021280305],[517011.3712098218,5276695.977746259],[517011.47415336076,5276696.733797471],[517008.8135123903,5276697.348408603],[517009.51804631343,5276700.429038285],[516998.4475080386,5276702.841788466],[516997.7717141675,5276700.20580314],[516994.9458712109,5276700.808824419],[516994.7677527793,5276700.074782072]]]},"properties":{"ID_SOURCE":"w145338944","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1634}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0301025402,5276660.920479226],[516861.2464178667,5276664.03301875],[516860.56979856984,5276664.253339246],[516856.49721599085,5276670.020816959],[516853.4989935947,5276667.900483809],[516854.25361545075,5276666.680130427],[516852.0045449383,5276665.228804828],[516851.34849690413,5276666.127138445],[516848.5357320651,5276669.997777457],[516844.8631388567,5276667.319798942],[516847.3520038901,5276663.770526428],[516844.87856965297,5276661.985135263],[516848.4231358262,5276656.99410016],[516848.7235698536,5276656.994969371],[516856.743451604,5276662.797445433],[516857.04388533067,5276662.798315072],[516858.0241556562,5276661.467475596],[516859.8127020269,5276661.139234097],[516861.0301025402,5276660.920479226]]]},"properties":{"ID_SOURCE":"w145338946","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1635}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.73268863297,5276311.860691237],[516732.7361051339,5276310.671506441],[516729.8442238768,5276310.674312818],[516726.8171392883,5276310.676732333],[516726.8158944614,5276311.11017352],[516726.81410701777,5276311.732550609],[516726.23573725903,5276311.730889583],[516723.2237077316,5276311.722240227],[516720.3393383239,5276311.725072892],[516720.3446666694,5276309.8690555],[516717.0096503737,5276309.859482127],[516717.01309779123,5276303.424504498],[516722.05321620224,5276303.427859214],[516724.83243143687,5276303.424725417],[516734.5220804062,5276303.4303304665],[516737.37640874187,5276303.427418473],[516741.8081114179,5276303.429041874],[516744.361955569,5276303.4363835305],[516753.82626548264,5276303.441372857],[516756.3050285546,5276303.437389803],[516761.3301244957,5276303.440735291],[516761.3261483479,5276310.0424211575],[516757.8258835427,5276310.032348849],[516757.82063918747,5276311.855024606],[516755.2893325975,5276311.8477418665],[516751.3233365985,5276311.847447606],[516751.3267568965,5276310.658262813],[516748.3973510506,5276310.649838084],[516745.5054697351,5276310.652636686],[516745.50198671845,5276311.864049237],[516744.9386395603,5276311.862429544],[516741.6862166742,5276311.864193466],[516736.2480068296,5276311.859677759],[516732.73268863297,5276311.860691237]]]},"properties":{"ID_SOURCE":"w145338948","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1636}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516391.1103407889,5276113.771985595],[516391.93629849626,5276113.885449633],[516391.5478974666,5276118.441080802],[516390.6465122068,5276118.43854417],[516390.48971359176,5276120.772034861],[516393.79416592675,5276121.00361391],[516393.5584970369,5276124.670557949],[516393.4830688703,5276124.781485268],[516390.32884938683,5276124.550329139],[516390.2509193193,5276125.550366392],[516391.22741882433,5276125.553114353],[516390.91225779126,5276130.7757894555],[516382.57602479134,5276130.196638117],[516382.8145000029,5276125.529444987],[516381.46273634164,5276125.414503377],[516381.85831850505,5276118.3026805855],[516384.26138731814,5276118.531719092],[516384.65791121067,5276111.086480352],[516383.53117821633,5276111.083310921],[516383.69266355014,5276107.082739078],[516379.8623938275,5276106.849687072],[516380.2589127729,5276099.404448185],[516386.86784220365,5276099.867596479],[516386.396824594,5276107.090346152],[516388.1993484596,5276107.184329217],[516391.1284808979,5276107.3259390155],[516391.3585191134,5276105.659492177],[516394.81321119546,5276105.891494561],[516394.42293049075,5276111.11395789],[516391.19296257704,5276111.104867354],[516391.1103407889,5276113.771985595]]]},"properties":{"ID_SOURCE":"w145338950","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1637}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.9805943173,5276502.172517679],[517227.1107613948,5276508.952428536],[517226.5095492299,5276509.061789924],[517226.9805943173,5276502.172517679]]]},"properties":{"ID_SOURCE":"w145338954","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1638}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516794.68273239717,5276669.953359428],[516796.6368314002,5276669.514436247],[516796.1800909575,5276671.624774202],[516794.68273239717,5276669.953359428]]]},"properties":{"ID_SOURCE":"w145338962","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1639}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7301105095,5276705.41738373],[516757.9224042862,5276707.190417573],[516757.5529414436,5276705.077699046],[516759.7301105095,5276705.41738373]]]},"properties":{"ID_SOURCE":"w145338964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1640}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.820187011,5276376.050240463],[516738.67667055526,5276373.715894393],[516741.0051474138,5276373.722587027],[516738.820187011,5276376.050240463]]]},"properties":{"ID_SOURCE":"w145338973","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1641}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517120.78024206817,5276193.224316435],[517119.3491466617,5276194.553786337],[517118.82171203423,5276195.107934606],[517117.69793465023,5276194.104374438],[517113.85697255534,5276197.538417996],[517111.8357396063,5276195.1985456105],[517110.7057575482,5276196.306622887],[517107.1116887236,5276192.4061759375],[517110.5767509245,5276189.082163351],[517111.62541596877,5276190.085501453],[517112.6799583104,5276189.088342403],[517111.6316197848,5276187.973865376],[517113.8912613316,5276185.868850156],[517119.28317874676,5276191.441680793],[517120.78024206817,5276193.224316435]]]},"properties":{"ID_SOURCE":"w145338980","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1642}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.8817973125,5276647.168240877],[517214.6791482967,5276648.951790297],[517212.951321494,5276649.057822822],[517212.8817973125,5276647.168240877]]]},"properties":{"ID_SOURCE":"w145338983","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1643}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516333.9822929634,5276502.933669749],[516335.02885198756,5276504.714839953],[516333.7566498249,5276503.044176574],[516333.9822929634,5276502.933669749]]]},"properties":{"ID_SOURCE":"w145338990","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1644}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.66891291726,5276166.062696697],[517259.3789755552,5276164.0702118995],[517260.15674505243,5276165.228369685],[517261.24861324474,5276166.854245214],[517256.66891291726,5276166.062696697]]]},"properties":{"ID_SOURCE":"w145338991","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1645}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516781.10702695005,5276102.879467578],[516783.92199508904,5276111.356419976],[516781.94456705544,5276112.006446141],[516781.49778041063,5276110.649255088],[516780.5128061236,5276110.9798362525],[516778.43763210566,5276111.662923895],[516776.6782319034,5276112.246896115],[516776.31339892093,5276111.12333479],[516774.3175862116,5276105.11604544],[516779.302554443,5276103.463309157],[516781.10702695005,5276102.879467578]]]},"properties":{"ID_SOURCE":"w145338995","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1646}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.1255282266,5276243.330112025],[516886.1192127271,5276245.508431576],[516886.11263945117,5276247.775662143],[516881.1554517287,5276247.650152419],[516878.1431706264,5276250.308774884],[516875.5605050536,5276247.278291703],[516872.82812426996,5276244.069552478],[516875.6531044966,5276241.243675059],[516878.02611576783,5276238.861047994],[516873.23363687954,5276233.734736569],[516878.8842545663,5276227.860706073],[516886.15033909376,5276234.772428129],[516886.0765140101,5276234.327655354],[516891.4843967348,5276234.454476274],[516891.54951870674,5276237.899995407],[516890.34511770285,5276238.785620047],[516891.3941337699,5276239.677779752],[516891.3087057025,5276243.234001978],[516886.1255282266,5276243.330112025]]]},"properties":{"ID_SOURCE":"w145338997","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1647}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.09797178453,5276238.709432776],[517051.0947181154,5276239.820820278],[517036.4484841748,5276239.444541673],[517036.45108487236,5276238.555431668],[517033.22118677676,5276238.545984924],[517033.3684893389,5276239.546673024],[517013.088386609,5276239.265119181],[517013.0844909088,5276240.59878419],[517007.3758358709,5276240.582111734],[517005.3526284618,5276238.909108709],[517005.51194217656,5276235.797662324],[517007.1689923309,5276234.246544953],[517006.16564540326,5276233.15444621],[517005.22219459637,5276232.129206335],[517003.41524087876,5276233.56874693],[517000.5612343272,5276233.449275999],[516998.23983699933,5276230.997427239],[516998.33019586006,5276225.774125263],[516999.4565825733,5276225.8885524245],[516999.63860021404,5276214.997393645],[516998.43709718244,5276214.882747229],[516998.4396920588,5276213.993637257],[516998.383390587,5276207.547370778],[517012.6551090745,5276207.589040175],[517012.86162319884,5276214.035745645],[517012.85902612173,5276214.924855615],[517012.3329020056,5276215.034458534],[517012.2431797464,5276220.035482742],[517014.04104941187,5276221.707829824],[517012.5335728286,5276223.481661524],[517012.1580023149,5276223.480564518],[517006.6749973252,5276223.353412243],[517006.8177615644,5276225.910042107],[517012.8090323254,5276232.040222791],[517015.0621274216,5276232.1579442015],[517015.22923882306,5276226.379168131],[517017.11196121364,5276224.717573171],[517018.5345824511,5276226.277685613],[517023.79191744654,5276226.515329154],[517023.71810275596,5276226.070554614],[517024.9947170736,5276226.185425816],[517031.00286759174,5276226.536410309],[517031.00741734204,5276224.980467838],[517031.01131712383,5276223.646802864],[517038.59816647583,5276223.557852887],[517038.66937904124,5276224.891737601],[517038.5149242408,5276226.336101845],[517044.749391785,5276226.354343496],[517051.05864802765,5276226.4839504715],[517051.09797178453,5276238.709432776]]]},"properties":{"ID_SOURCE":"w145338999","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1648}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.5745534381,5276548.6361868745],[516773.99844046624,5276549.751685181],[516775.50640072476,5276547.755513597],[516777.1652222329,5276545.537497545],[516784.5103012858,5276551.0045087915],[516783.07776889123,5276552.889755707],[516783.75183573394,5276553.558536683],[516778.85048396396,5276560.212797124],[516778.3256762783,5276559.877865921],[516777.6480875577,5276560.431612462],[516778.1719346586,5276561.099960034],[516778.1687327422,5276562.211348126],[516777.6413637473,5276562.765527458],[516776.73940678034,5276562.985208528],[516775.83809017943,5276562.98261212],[516775.1598617858,5276563.758636572],[516775.75945885835,5276564.204922664],[516770.7075858369,5276570.969896118],[516769.73308104614,5276570.300251493],[516768.60227658146,5276571.741811899],[516761.55732783506,5276566.386824028],[516762.76356116636,5276564.834339647],[516764.49748271063,5276562.616536148],[516762.8485877333,5276561.38925274],[516760.89989277377,5276559.938827502],[516762.5583853715,5276557.831946079],[516761.28471775044,5276556.716882902],[516767.5425100012,5276548.510556871],[516768.8161782405,5276549.625621402],[516770.77575638215,5276547.297329815],[516772.5745534381,5276548.6361868745]]]},"properties":{"ID_SOURCE":"w145339000","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1649}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.8682627871,5276212.216053325],[516888.3189482528,5276212.217360114],[516888.4085641628,5276207.216334315],[516894.79328039987,5276207.234851006],[516894.813751582,5276200.177540664],[516894.82380985457,5276196.710011829],[516894.8353510717,5276192.731244793],[516894.8455060484,5276189.230374376],[516889.58813274803,5276188.99284733],[516889.599090257,5276185.21413008],[516889.46465262596,5276179.767896093],[516893.52116676624,5276179.668520778],[516893.36674687365,5276181.112888685],[516895.92064482084,5276181.120296669],[516896.0744205412,5276179.8982063085],[516902.00847877923,5276179.915423455],[516902.07972323184,5276181.249306332],[516904.2580479067,5276181.255628094],[516904.33735583565,5276179.811042461],[516908.46866227937,5276179.8230343005],[516908.5921123022,5276189.047986015],[516910.92066315445,5276189.054746402],[516910.86838781787,5276207.059223007],[516902.60516849783,5276207.257516246],[516902.4819973702,5276223.816971651],[516900.5290308987,5276223.811304387],[516898.9513124408,5276223.9178662095],[516898.9464755107,5276225.584947446],[516888.7306394284,5276225.666455483],[516889.2806086989,5276217.3325740015],[516888.3047688973,5276217.107465006],[516888.30960277066,5276215.440383791],[516887.1106756437,5276214.436650365],[516887.8682627871,5276212.216053325]]]},"properties":{"ID_SOURCE":"w145339001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1650}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516924.13591451995,5276139.080276816],[516932.5488156339,5276139.104728114],[516932.0280147531,5276163.220523637],[516927.4691553918,5276162.996107157],[516927.3656310178,5276170.186543421],[516894.90240606095,5276169.614386531],[516895.07407404564,5276162.224096162],[516906.1153175598,5276162.47841347],[516906.08955903805,5276145.473968713],[516906.1018174619,5276141.250696784],[516904.3744913377,5276141.134543652],[516904.2977633999,5276141.690019322],[516902.26417144487,5276143.573492026],[516900.0797056432,5276145.678807013],[516894.22104999615,5276145.550671055],[516894.17236858583,5276136.437076942],[516892.3702479204,5276136.209570766],[516892.37891852885,5276133.219938832],[516892.3873312707,5276130.319217902],[516894.2658585101,5276130.102387022],[516894.29293698625,5276120.766733539],[516904.05761952454,5276120.906204268],[516906.9871209924,5276120.914707061],[516913.97285526106,5276120.934988893],[516914.1004942235,5276128.715136365],[516914.09500761906,5276130.604494817],[516912.59270166914,5276130.600132387],[516912.42536744114,5276136.490049023],[516909.5706663656,5276136.592900283],[516909.6396510978,5276138.704754301],[516914.74716146174,5276138.830724304],[516914.73941534624,5276141.498053925],[516921.4994565952,5276141.628829166],[516921.7322284879,5276139.073292962],[516924.13591451995,5276139.080276816]]]},"properties":{"ID_SOURCE":"w145339013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1651}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.73227031383,5276115.717451452],[516491.23457984196,5276115.721704803],[516491.16827512,5276112.609607583],[516489.8161958225,5276112.605779565],[516490.05444294645,5276108.049729485],[516493.1341815343,5276108.058449437],[516494.33760438766,5276107.506159122],[516496.06557754695,5276107.399913139],[516497.56663005915,5276107.848723049],[516498.0160643268,5276108.294554551],[516501.39657995006,5276108.192991202],[516501.31579684117,5276110.193275586],[516505.67218367866,5276110.316758763],[516505.6523420529,5276117.318498978],[516495.51207020617,5276117.17863253],[516495.4237351737,5276121.846246654],[516489.71590888815,5276121.49666565],[516489.73227031383,5276115.717451452]]]},"properties":{"ID_SOURCE":"w145339016","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1652}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.94978598016,5276432.784140047],[516887.9477212564,5276430.905872791],[516887.94591434574,5276428.9386945125],[516889.3429872998,5276428.94274582],[516889.3416320744,5276426.819973248],[516884.3992324758,5276426.82787047],[516884.39758167183,5276422.215567368],[516889.0395390401,5276422.206798862],[516889.029476553,5276415.31610717],[516884.5828039164,5276415.325441873],[516884.58077027526,5276413.436060793],[516884.58021878044,5276411.035441323],[516887.68984233064,5276411.044457386],[516887.68009557325,5276398.863516328],[516884.4427109562,5276398.8763578525],[516884.44164382806,5276396.653560485],[516884.4410599959,5276394.264054955],[516888.8952599026,5276394.2547418885],[516888.88455234986,5276387.58632806],[516884.43785854237,5276387.595662924],[516884.436759156,5276385.3839794705],[516884.435885302,5276383.094498885],[516887.9061260174,5276383.082332516],[516887.8992569678,5276380.270477901],[516892.4436020866,5276380.261428886],[516892.45085576904,5276382.939916977],[516893.9906526411,5276382.944383307],[516894.00464120513,5276398.837402914],[516892.87796364084,5276398.834134815],[516892.88524926594,5276401.501509108],[516893.80161326454,5276401.504167145],[516893.81263741327,5276408.061442362],[516893.00143085263,5276408.059089333],[516893.0082328219,5276410.8931718385],[516893.8344613242,5276410.895568443],[516893.8486108114,5276426.733019354],[516892.98482881807,5276426.730513806],[516892.9922754363,5276429.3423188245],[516894.0288133654,5276429.345325498],[516894.0338738219,5276432.779557543],[516887.94978598016,5276432.784140047]]]},"properties":{"ID_SOURCE":"w145339017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1653}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.3805132349,5276292.755204466],[516603.5644066999,5276289.196408526],[516607.17206065153,5276288.4287166],[516607.9881650952,5276291.987513049],[516604.3805132349,5276292.755204466]]]},"properties":{"ID_SOURCE":"w145339024","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1654}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516714.7056279539,5276586.590736155],[516717.1871097732,5276585.597601289],[516718.8261164909,5276590.27017506],[516716.56996442424,5276591.263956021],[516714.7056279539,5276586.590736155]]]},"properties":{"ID_SOURCE":"w145339035","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1655}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.2684971814,5276373.239420084],[517299.2327412356,5276377.354454929],[517297.6543963013,5276377.683186233],[517296.76493329706,5276373.6795134945],[517298.2684971814,5276373.239420084]]]},"properties":{"ID_SOURCE":"w145339036","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1656}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.62708829745,5276543.006703014],[516475.07428962825,5276544.230504786],[516470.5623492207,5276546.107117375],[516470.0400371499,5276544.883103524],[516474.62708829745,5276543.006703014]]]},"properties":{"ID_SOURCE":"w145339042","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1657}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.62649265316,5276584.830462674],[516758.0527124337,5276583.603396722],[516759.86237581586,5276581.1635303],[516761.4361563201,5276582.3905967325],[516759.62649265316,5276584.830462674]]]},"properties":{"ID_SOURCE":"w145339045","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1658}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.93085935875,5276605.1575463],[517220.81863853266,5276604.736306405],[517221.16734892176,5276611.2723569255],[517221.52996283286,5276618.186323931],[517213.6418733046,5276618.71870164],[517212.93085935875,5276605.1575463]]]},"properties":{"ID_SOURCE":"w145339046","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1659}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.82656602125,5276330.59547624],[517011.1089270179,5276330.627290348],[517011.1127701582,5276331.883180354],[517009.31003278727,5276331.8890291825],[517007.8077786942,5276331.884642067],[517007.82656602125,5276330.59547624]]]},"properties":{"ID_SOURCE":"w145339049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1660}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516601.60455633124,5276107.144074419],[516603.2466446569,5276110.816363014],[516599.03574005025,5276112.360315971],[516597.6189962338,5276108.688670703],[516601.60455633124,5276107.144074419]]]},"properties":{"ID_SOURCE":"w145339050","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1661}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517069.23561292206,5276224.1921451725],[517073.5171163621,5276224.204694433],[517073.57952446816,5276228.53932579],[517069.2225844643,5276228.637695088],[517069.23561292206,5276224.1921451725]]]},"properties":{"ID_SOURCE":"w145339051","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1662}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517292.7263202494,5276570.162631318],[517279.12685876305,5276571.6782223685],[517278.3250534531,5276563.451499444],[517284.5385739918,5276562.81421286],[517291.9993136639,5276562.047268312],[517292.7263202494,5276570.162631318]]]},"properties":{"ID_SOURCE":"w145339055","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1663}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.9938785768,5276196.215822712],[517000.05601747974,5276200.661591699],[516995.69970677496,5276200.53773855],[516995.78714484203,5276196.314685478],[516999.9938785768,5276196.215822712]]]},"properties":{"ID_SOURCE":"w145339057","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1664}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516911.82672541926,5276239.1813747985],[516911.8973213659,5276240.7375354245],[516910.01915176277,5276240.843221824],[516909.87376409187,5276239.175704387],[516911.82672541926,5276239.1813747985]]]},"properties":{"ID_SOURCE":"w145339060","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1665}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.89989277377,5276559.938827502],[516759.62590546376,5276558.934903493],[516761.28471775044,5276556.716882902],[516762.5583853715,5276557.831946079],[516760.89989277377,5276559.938827502]]]},"properties":{"ID_SOURCE":"w145339065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1666}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9484894918,5276472.395866921],[516538.307411951,5276468.390177551],[516541.2398948111,5276467.287108846],[516542.88128635,5276471.181660244],[516539.9484894918,5276472.395866921]]]},"properties":{"ID_SOURCE":"w145339066","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1667}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.9161430538,5276359.024367125],[517300.4923095203,5276357.9087399505],[517302.8297081723,5276354.9149104385],[517304.1784295954,5276356.030315008],[517301.9161430538,5276359.024367125]]]},"properties":{"ID_SOURCE":"w145339067","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1668}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516567.4406974566,5276337.239243653],[516567.3598439908,5276336.616631498],[516567.27163731307,5276335.938428589],[516568.6842607949,5276335.764623622],[516568.84577774856,5276337.076531235],[516567.4406974566,5276337.239243653]]]},"properties":{"ID_SOURCE":"w145339068","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1669}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.97824578144,5276278.252325465],[516971.04364387254,5276281.586707079],[516969.7667168838,5276281.582986424],[516969.6262046677,5276278.248385973],[516970.97824578144,5276278.252325465]]]},"properties":{"ID_SOURCE":"w145339071","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1670}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517236.0138219792,5276267.027539883],[517233.2047999571,5276272.0205153935],[517226.35597976367,5276284.181168794],[517223.7055665777,5276288.885654757],[517214.9317683557,5276283.969566982],[517226.7899767379,5276261.887823262],[517236.0138219792,5276267.027539883]]]},"properties":{"ID_SOURCE":"w145339073","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1671}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.5301723737,5276271.565737842],[516930.1356194126,5276271.576217162],[516929.98119268473,5276273.020584323],[516926.5259734621,5276273.010541685],[516926.5301723737,5276271.565737842]]]},"properties":{"ID_SOURCE":"w145339082","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1672}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.7836708937,5276636.215326576],[516537.49133972154,5276631.45203645],[516534.7062522997,5276625.642634844],[516543.806426912,5276621.445170362],[516548.9586257435,5276632.129222247],[516539.7836708937,5276636.215326576]]]},"properties":{"ID_SOURCE":"w145339095","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1673}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.5752639962,5276085.404559391],[516381.4640065946,5276087.57146886],[516381.3367883923,5276090.071752278],[516380.13493553037,5276090.068372255],[516380.3734101729,5276085.40117932],[516381.5752639962,5276085.404559391]]]},"properties":{"ID_SOURCE":"w145339109","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1674}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.73227031383,5276115.717451452],[516489.77435891586,5276114.117160013],[516489.8161958225,5276112.605779565],[516491.16827512,5276112.609607583],[516491.23457984196,5276115.721704803],[516489.73227031383,5276115.717451452]]]},"properties":{"ID_SOURCE":"w145339110","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1675}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516561.09299255005,5276432.556807063],[516566.0297959501,5276439.794927286],[516561.66480730247,5276442.783284447],[516557.4503615505,5276445.660933175],[516552.438757112,5276438.311467904],[516561.09299255005,5276432.556807063]]]},"properties":{"ID_SOURCE":"w145339120","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1676}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516444.26673191,5276341.069014235],[516445.7989969304,5276341.0844547115],[516449.8549814634,5276341.129251059],[516449.89656465803,5276342.363018743],[516444.26318599744,5276342.3248823825],[516444.26673191,5276341.069014235]]]},"properties":{"ID_SOURCE":"w145339121","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1677}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516986.32894031657,5276165.823705829],[516986.92791427224,5276166.4922908],[516984.6679873239,5276168.708493858],[516984.06901334,5276168.039909117],[516986.32894031657,5276165.823705829]]]},"properties":{"ID_SOURCE":"w145339127","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1678}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.4600710029,5276678.646159892],[517296.8876132131,5276686.427216163],[517290.04394165677,5276686.8514523925],[517283.14018463594,5276687.2755183345],[517282.5624076757,5276679.494017303],[517296.4600710029,5276678.646159892]]]},"properties":{"ID_SOURCE":"w145339134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1679}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517060.7946488022,5276164.552080686],[517058.4058008169,5276164.611767653],[517058.33719589404,5276162.388772921],[517060.8911022271,5276162.396253222],[517060.7946488022,5276164.552080686]]]},"properties":{"ID_SOURCE":"w145339135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1680}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.16097781085,5276362.926295954],[516773.98930703895,5276370.372161231],[516772.7123996234,5276370.3684837315],[516772.5836195732,5276362.921753161],[516774.16097781085,5276362.926295954]]]},"properties":{"ID_SOURCE":"w145339137","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1681}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.106626439,5276234.796740335],[516546.04193154303,5276231.128948064],[516547.16864138923,5276231.132148988],[516550.0226571945,5276231.251397724],[516546.106626439,5276234.796740335]]]},"properties":{"ID_SOURCE":"w145339138","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1682}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.27544143784,5276074.362645796],[516586.43078190007,5276080.8718918655],[516584.2676092105,5276075.53103018],[516601.0377991353,5276068.799286335],[516603.27544143784,5276074.362645796]]]},"properties":{"ID_SOURCE":"w145339140","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1683}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5186876564,5276165.015168298],[517003.3999323997,5276164.195307193],[517004.1562564213,5276164.997720922],[517004.83021348214,5276165.710982525],[517003.94896876364,5276166.530843414],[517002.5186876564,5276165.015168298]]]},"properties":{"ID_SOURCE":"w145339142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1684}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.44084810856,5276638.354898156],[517008.6863842957,5276638.010512135],[517009.07523690554,5276633.454917364],[517012.6801353627,5276633.576587145],[517012.44084810856,5276638.354898156]]]},"properties":{"ID_SOURCE":"w145339150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1685}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.8973907668,5276484.192545373],[516770.9052339006,5276489.29388101],[516758.0237864603,5276489.245686677],[516758.03881704184,5276484.02216325],[516770.8973907668,5276484.192545373]]]},"properties":{"ID_SOURCE":"w145339156","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1686}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516986.23275753425,5276173.047504784],[516987.206656188,5276173.939462597],[516986.076045639,5276175.269841449],[516985.0273564029,5276174.266526034],[516985.6602000361,5276173.62376138],[516986.23275753425,5276173.047504784]]]},"properties":{"ID_SOURCE":"w145339164","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1687}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517102.0470643067,5276075.361209519],[517103.3652123832,5276086.923606735],[517095.85134226544,5276087.679525575],[517095.3989001369,5276083.154812634],[517094.68373765773,5276076.006432273],[517102.0470643067,5276075.361209519]]]},"properties":{"ID_SOURCE":"w145339165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1688}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.4543481174,5276654.062193169],[516634.58540593705,5276657.71303719],[516633.9873950573,5276656.711071435],[516640.0062374013,5276653.171794868],[516640.4543481174,5276654.062193169]]]},"properties":{"ID_SOURCE":"w145339187","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1689}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516413.4386541291,5276453.58876388],[516411.1058250483,5276455.138145249],[516409.4602700991,5276452.6884356225],[516411.7930997158,5276451.139053598],[516413.4386541291,5276453.58876388]]]},"properties":{"ID_SOURCE":"w145339195","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1690}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.7446176896,5276311.457373111],[516835.67914262647,5276308.122993043],[516838.9167059667,5276308.065668788],[516838.982179177,5276311.400048896],[516835.7446176896,5276311.457373111]]]},"properties":{"ID_SOURCE":"w145339198","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1691}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517246.50189743465,5276555.466246303],[517243.9471760224,5276555.792100601],[517243.6631904144,5276550.234270851],[517246.14214610454,5276550.130471603],[517246.50189743465,5276555.466246303]]]},"properties":{"ID_SOURCE":"w145339207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1692}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516588.4710394491,5276102.994488623],[516586.5963132556,5276101.877753344],[516587.4276495766,5276100.101886688],[516589.37717530894,5276101.3299749],[516588.4710394491,5276102.994488623]]]},"properties":{"ID_SOURCE":"w145339212","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1693}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.8081114179,5276303.429041874],[516741.81146586855,5276302.2620848445],[516744.36531053286,5276302.2694265],[516744.361955569,5276303.4363835305],[516741.8081114179,5276303.429041874]]]},"properties":{"ID_SOURCE":"w145339215","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1694}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517225.79176289716,5276675.547061226],[517223.470358274,5276675.729132691],[517223.0987117431,5276671.871482588],[517225.5031644131,5276671.54517488],[517225.79176289716,5276675.547061226]]]},"properties":{"ID_SOURCE":"w145339217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1695}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516869.09666915133,5276183.821037245],[516873.37820191047,5276183.833439309],[516873.30450050905,5276191.123988522],[516873.2744320816,5276193.724569846],[516868.91811399756,5276193.600811544],[516868.97100453195,5276190.900270601],[516869.09666915133,5276183.821037245]]]},"properties":{"ID_SOURCE":"w145339222","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1696}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516655.3686021869,5276350.248864282],[516655.53919959336,5276351.005101987],[516655.73939696216,5276351.917019906],[516654.5366445642,5276352.246999452],[516654.01530676085,5276350.689553109],[516655.3686021869,5276350.248864282]]]},"properties":{"ID_SOURCE":"w145339223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1697}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.6710180425,5276361.152011207],[516689.2584319407,5276361.14865616],[516689.2370941336,5276368.594954136],[516685.90975009627,5276368.540964507],[516682.7251192288,5276368.487385566],[516682.6710180425,5276361.152011207]]]},"properties":{"ID_SOURCE":"w145339224","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1698}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516630.9159937305,5276627.583689729],[516625.006187861,5276619.231336073],[516627.7155059261,5276617.349695796],[516633.39934827544,5276625.923686236],[516630.9159937305,5276627.583689729]]]},"properties":{"ID_SOURCE":"w145339228","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1699}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516693.5826849343,5276356.693233713],[516696.96274180355,5276356.7029229365],[516696.8664494065,5276361.470539501],[516693.749383969,5276361.4282622235],[516693.5826849343,5276356.693233713]]]},"properties":{"ID_SOURCE":"w145339230","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1700}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.93246981147,5276271.554680221],[516964.2377866972,5276271.453166949],[516964.3083681817,5276273.009328327],[516960.8531489035,5276272.999265325],[516960.93246981147,5276271.554680221]]]},"properties":{"ID_SOURCE":"w145339231","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1701}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.4904845518,5276346.236513612],[516610.38638344395,5276346.563931361],[516610.1670682449,5276344.451652014],[516612.2708530987,5276344.235372953],[516612.4904845518,5276346.236513612]]]},"properties":{"ID_SOURCE":"w145339233","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1702}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516679.0084206257,5276179.150310319],[516675.92897395627,5276179.052581005],[516675.9784657722,5276177.50788151],[516679.0578814306,5276177.616724722],[516679.0084206257,5276179.150310319]]]},"properties":{"ID_SOURCE":"w145339234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1703}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.3647746608,5276404.223941571],[517290.7353842108,5276405.892138199],[517286.3759333175,5276406.879454983],[517285.8550990502,5276405.210812761],[517290.3647746608,5276404.223941571]]]},"properties":{"ID_SOURCE":"w145339235","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1704}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.70170036674,5276378.057622066],[516662.4251126563,5276377.9428299675],[516662.27965787705,5276376.27531851],[516663.63199404714,5276376.168047928],[516663.67404043576,5276377.223995266],[516663.70170036674,5276378.057622066]]]},"properties":{"ID_SOURCE":"w145339237","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1705}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.26779284474,5276133.264985712],[517284.5346259386,5276141.472307868],[517274.4151736185,5276134.329345261],[517280.29856389016,5276126.122458956],[517284.8634261265,5276129.39239729],[517290.26779284474,5276133.264985712]]]},"properties":{"ID_SOURCE":"w145339239","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1706}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.26887971465,5276216.088700837],[516648.91682434996,5276216.08483583],[516648.883428987,5276214.628810844],[516648.8499700677,5276213.195013619],[516650.20202610263,5276213.19887861],[516650.26887971465,5276216.088700837]]]},"properties":{"ID_SOURCE":"w145339243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1707}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516583.18498464586,5276297.473821843],[516587.31778969854,5276296.9298922615],[516587.9044507871,5276301.932848107],[516583.8467622961,5276302.476991143],[516583.18498464586,5276297.473821843]]]},"properties":{"ID_SOURCE":"w145339247","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1708}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.51120224,5276273.141986153],[516937.1914385768,5276273.26382699],[516937.1121235808,5276274.708412402],[516933.5066784682,5276274.697928759],[516933.51120224,5276273.141986153]]]},"properties":{"ID_SOURCE":"w145339249","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1709}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516985.0901306705,5276075.463537107],[516982.6113023103,5276075.45630915],[516982.5410469253,5276073.789009304],[516983.94555469614,5276073.848674362],[516985.16978396644,5276073.907814042],[516985.0901306705,5276075.463537107]]]},"properties":{"ID_SOURCE":"w145339257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1710}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.6733025292,5276318.583697973],[516544.83592716284,5276311.924053209],[516550.09572838445,5276311.2721591955],[516550.82790823875,5276317.942619768],[516545.6733025292,5276318.583697973]]]},"properties":{"ID_SOURCE":"w145339258","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1711}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.51249786915,5276227.956751105],[517287.2769857186,5276229.836522171],[517285.3342458403,5276226.385424752],[517288.41953106987,5276224.505206689],[517290.51249786915,5276227.956751105]]]},"properties":{"ID_SOURCE":"w145339259","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1712}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516739.25426600856,5276590.884555532],[516740.15366146545,5276591.553979178],[516735.9318879585,5276596.987692128],[516735.1072827768,5276596.42962378],[516739.25426600856,5276590.884555532]]]},"properties":{"ID_SOURCE":"w145339265","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1713}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.1196319812,5276074.896031558],[517017.6969735898,5276073.335919437],[517019.3540728688,5276071.784805811],[517020.701615162,5276073.34469883],[517019.1196319812,5276074.896031558]]]},"properties":{"ID_SOURCE":"w145339270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1714}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.82456568035,5276617.18499649],[516526.4183654347,5276608.2813135395],[516539.5043977974,5276602.316919383],[516543.8354735872,5276611.220398819],[516536.803558648,5276614.445706444],[516530.82456568035,5276617.18499649]]]},"properties":{"ID_SOURCE":"w145339271","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1715}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517054.1740260057,5276198.908198582],[517054.26834036096,5276192.351232707],[517056.1465284586,5276192.245592792],[517055.7517542982,5276198.801678791],[517054.1740260057,5276198.908198582]]]},"properties":{"ID_SOURCE":"w145339272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1716}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.8884261268,5276127.8098667115],[517109.98525461974,5276134.733114739],[517106.43819081207,5276140.39082023],[517100.8366804433,5276137.106864492],[517095.1901598518,5276133.800554143],[517098.8884261268,5276127.8098667115]]]},"properties":{"ID_SOURCE":"w145339274","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1717}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.14455339086,5276088.232489511],[516399.14796412573,5276087.021077353],[516399.15112453053,5276085.898576182],[516400.2027465446,5276085.901537119],[516400.12105915864,5276088.235238948],[516399.14455339086,5276088.232489511]]]},"properties":{"ID_SOURCE":"w145339279","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1718}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516927.29889621126,5276239.670880047],[516929.25185738684,5276239.676556299],[516929.3080719836,5276241.010395982],[516927.37013403006,5276241.004763371],[516927.29889621126,5276239.670880047]]]},"properties":{"ID_SOURCE":"w145339282","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1719}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516644.0974332858,5276430.570637369],[516647.5547824309,5276429.802541166],[516648.0713492682,5276433.027068954],[516644.53889058536,5276433.794950184],[516644.0974332858,5276430.570637369]]]},"properties":{"ID_SOURCE":"w145339285","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1720}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517006.5504874257,5276340.594324307],[517001.44283115026,5276340.579412101],[517001.4548350458,5276336.467277681],[517006.56249492767,5276336.48218989],[517006.5504874257,5276340.594324307]]]},"properties":{"ID_SOURCE":"w145339289","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1721}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516814.5950181684,5276308.028742481],[516814.5773997516,5276311.52959189],[516811.7831975983,5276311.521525614],[516811.8083256352,5276308.020697885],[516814.5950181684,5276308.028742481]]]},"properties":{"ID_SOURCE":"w145339301","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1722}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.49393148767,5276457.317624724],[516470.6796111519,5276451.527572661],[516473.1626799746,5276449.978640027],[516476.82677669456,5276455.768268703],[516474.49393148767,5276457.317624724]]]},"properties":{"ID_SOURCE":"w145339313","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1723}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516830.6766286683,5276092.353086232],[516831.13085609605,5276091.13186258],[516833.2369893569,5276090.137692102],[516833.68447222677,5276091.2503819065],[516832.66931686824,5276091.625322911],[516830.6766286683,5276092.353086232]]]},"properties":{"ID_SOURCE":"w145339315","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1724}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516954.2088142937,5276258.97631818],[516954.2881337157,5276257.531733022],[516957.51802117564,5276257.541136017],[516957.438700953,5276258.985721133],[516954.2088142937,5276258.97631818]]]},"properties":{"ID_SOURCE":"w145339323","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1725}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.21025683306,5276357.448921624],[516763.9617004057,5276357.339944816],[516763.9517835137,5276360.785246815],[516763.2006602698,5276360.783084844],[516763.21025683306,5276357.448921624]]]},"properties":{"ID_SOURCE":"w145339329","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1726}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516310.9906102125,5276478.863061379],[516313.44280439644,5276488.316801918],[516309.5342486067,5276489.30611186],[516306.7816054168,5276479.851531725],[516310.9906102125,5276478.863061379]]]},"properties":{"ID_SOURCE":"w145339335","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1727}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.3455078276,5276336.555048697],[516764.0212016595,5276336.668133246],[516764.0867172879,5276340.002512559],[516763.26047877286,5276340.000134384],[516763.3455078276,5276336.555048697]]]},"properties":{"ID_SOURCE":"w145339337","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1728}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.8678581019,5276233.841170495],[516605.3002152497,5276233.631526266],[516606.26782412664,5276236.746195434],[516601.3096718954,5276236.954340191],[516600.8678581019,5276233.841170495]]]},"properties":{"ID_SOURCE":"w145339343","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1729}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.83775619394,5276092.097335431],[516479.59847158956,5276092.04937312],[516479.64747165464,5276090.660266511],[516480.88675655477,5276090.708228831],[516480.8621777544,5276091.430566814],[516480.83775619394,5276092.097335431]]]},"properties":{"ID_SOURCE":"w145339357","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1730}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.06180487905,5276122.356559032],[516439.0105031043,5276122.242452145],[516439.01489456027,5276120.686509845],[516440.14162572264,5276120.689690015],[516440.10155844735,5276121.578693891],[516440.06180487905,5276122.356559032]]]},"properties":{"ID_SOURCE":"w145339364","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1731}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516743.1508104361,5276385.065004051],[516744.12726657296,5276385.067811281],[516744.1972661771,5276386.846247691],[516743.22081033804,5276386.843440448],[516743.1508104361,5276385.065004051]]]},"properties":{"ID_SOURCE":"w145339366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1732}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516971.8726272936,5276074.424751688],[516971.8017211463,5276072.979729427],[516972.44771911384,5276072.981611776],[516973.37915803946,5276072.984325984],[516973.45006379456,5276074.429348266],[516971.8726272936,5276074.424751688]]]},"properties":{"ID_SOURCE":"w145339376","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1733}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.738653627,5276391.394490513],[516663.7355691186,5276392.472536685],[516663.7332477862,5276393.283849786],[516662.5314573531,5276393.280411342],[516662.5365448377,5276391.502190849],[516663.738653627,5276391.394490513]]]},"properties":{"ID_SOURCE":"w145339399","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1734}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9458449956,5276413.634790798],[516861.00248358905,5276413.623373061],[516861.0217388928,5276409.566829255],[516864.9651030455,5276409.578246998],[516864.9458449956,5276413.634790798]]]},"properties":{"ID_SOURCE":"w145339404","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1735}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516758.62475981284,5276437.011751106],[516748.2590751366,5276437.093072404],[516748.36678662355,5276425.75713215],[516758.9575061281,5276425.787598199],[516758.62475981284,5276437.011751106]]]},"properties":{"ID_SOURCE":"w145339406","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1736}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.557471524,5276315.105698821],[516764.15837483003,5276315.107428415],[516764.2996433993,5276318.219746285],[516763.6990603037,5276318.106877908],[516763.557471524,5276315.105698821]]]},"properties":{"ID_SOURCE":"w145339417","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1737}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.60257824854,5276658.014799131],[517201.1336627775,5276657.691808532],[517201.20516026573,5276658.9145574225],[517197.67407647206,5276659.237547982],[517197.60257824854,5276658.014799131]]]},"properties":{"ID_SOURCE":"w145339425","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1738}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.49132136494,5276364.118965824],[516530.3442512383,5276363.007151673],[516534.5521170041,5276362.463397902],[516534.69855529093,5276363.797489716],[516530.49132136494,5276364.118965824]]]},"properties":{"ID_SOURCE":"w145339433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1739}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517294.54228186025,5276717.428257263],[517293.8920560095,5276708.757420999],[517299.00074361806,5276708.316921271],[517302.68198633404,5276708.005552393],[517303.2570914447,5276716.676166492],[517294.54228186025,5276717.428257263]]]},"properties":{"ID_SOURCE":"w145339436","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1740}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.0911976859,5276334.327671552],[516723.0090644684,5276336.772508826],[516721.9574876115,5276336.769489495],[516721.88939505897,5276334.324220889],[516723.0911976859,5276334.327671552]]]},"properties":{"ID_SOURCE":"w145339442","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1741}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516477.60912386206,5276126.1302671805],[516476.4823937355,5276126.127079761],[516476.56159617787,5276124.682488683],[516477.6880121693,5276124.796814852],[516477.6485051287,5276125.485768763],[516477.60912386206,5276126.1302671805]]]},"properties":{"ID_SOURCE":"w145339444","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1742}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.2067489602,5276309.184808479],[516983.293204752,5276305.295170807],[516984.87057873193,5276305.299770631],[516984.85923488665,5276309.189627331],[516983.2067489602,5276309.184808479]]]},"properties":{"ID_SOURCE":"w145339457","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1743}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517177.3112994618,5276346.241221923],[517171.9779825131,5276346.33663432],[517172.29277893173,5276315.996415829],[517177.7009087921,5276316.0123639535],[517177.3112994618,5276346.241221923]]]},"properties":{"ID_SOURCE":"w145339466","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1744}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.6551090745,5276207.589040175],[517014.15739522903,5276207.593428462],[517014.28879346803,5276214.039914561],[517012.86162319884,5276214.035745645],[517012.6551090745,5276207.589040175]]]},"properties":{"ID_SOURCE":"w145339473","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1745}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516786.5493315647,5276521.1137989415],[516781.5172645809,5276520.98815692],[516781.712640882,5276505.318018877],[516786.4445999127,5276505.331656236],[516786.5493315647,5276521.1137989415]]]},"properties":{"ID_SOURCE":"w145339475","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1746}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516981.95586162416,5276153.407765401],[516980.88515163807,5276152.226563099],[516982.21067567077,5276151.0301191835],[516983.2813856127,5276152.211321726],[516982.64873436716,5276152.787403387],[516981.95586162416,5276153.407765401]]]},"properties":{"ID_SOURCE":"w145339481","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1747}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.91641029704,5276392.141043464],[517301.5100422443,5276394.587881566],[517300.0779640309,5276396.250723786],[517298.57935751625,5276395.023735101],[517300.91641029704,5276392.141043464]]]},"properties":{"ID_SOURCE":"w145339485","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1748}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.00284796226,5276560.150770581],[516409.2388298845,5276557.937093668],[516413.12856347504,5276563.61617935],[516410.34324121574,5276565.831123986],[516406.00284796226,5276560.150770581]]]},"properties":{"ID_SOURCE":"w145339492","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1749}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.8694511488,5276691.103725653],[516835.12628640357,5276683.851466578],[516839.197231338,5276678.639668017],[516848.790183557,5276685.891499217],[516844.8694511488,5276691.103725653]]]},"properties":{"ID_SOURCE":"w145339508","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1750}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517100.5976526736,5276338.758048243],[517100.58721037756,5276342.314488804],[517096.90669429896,5276342.303683364],[517096.7672353575,5276338.635663045],[517100.5976526736,5276338.758048243]]]},"properties":{"ID_SOURCE":"w145339513","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1751}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.237328742,5276576.619165476],[517293.3073959539,5276576.832743955],[517293.0906477962,5276573.942465878],[517296.0205820287,5276573.728887289],[517296.237328742,5276576.619165476]]]},"properties":{"ID_SOURCE":"w145339518","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1752}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.3395547346,5276425.877620272],[516600.82089998334,5276434.781567596],[516595.8190901741,5276437.190157668],[516591.19334760617,5276439.421999839],[516586.6368798862,5276430.517845968],[516596.3395547346,5276425.877620272]]]},"properties":{"ID_SOURCE":"w145339533","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1753}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.97734718176,5276239.996961635],[516962.90482276503,5276239.107632861],[516964.47470327053,5276239.112205241],[516965.9844926524,5276239.116603001],[516966.05669285497,5276240.117070567],[516962.97734718176,5276239.996961635]]]},"properties":{"ID_SOURCE":"w145339535","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1754}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.10930430086,5276189.782597409],[516968.904233789,5276190.89048327],[516967.7814012244,5276189.553535872],[516968.29363710847,5276189.054899565],[516968.91135724244,5276188.445430936],[516970.10930430086,5276189.782597409]]]},"properties":{"ID_SOURCE":"w145339537","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1755}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516443.5653047086,5276078.68857918],[516442.13841533975,5276078.573411461],[516442.14280757,5276077.01746927],[516443.569697321,5276077.13263699],[516443.5672500078,5276077.999519069],[516443.5653047086,5276078.68857918]]]},"properties":{"ID_SOURCE":"w145339540","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1756}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.07057756523,5276598.914840215],[516747.4971185779,5276597.576638274],[516749.68295903574,5276594.915571019],[516751.2570576102,5276596.031495917],[516749.07057756523,5276598.914840215]]]},"properties":{"ID_SOURCE":"w145339547","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1757}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.2331309151,5276258.926927454],[516933.47777187184,5276258.804868231],[516933.4075050703,5276257.137568524],[516937.08775152406,5276257.259409266],[516937.2331309151,5276258.926927454]]]},"properties":{"ID_SOURCE":"w145339548","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1758}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516572.9112353868,5276238.762838204],[516572.98192186886,5276240.318994508],[516569.15016588225,5276240.641511528],[516568.8544528837,5276238.973575469],[516572.9112353868,5276238.762838204]]]},"properties":{"ID_SOURCE":"w145339553","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1759}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.4110365673,5276671.810239225],[516782.5036513788,5276673.919279489],[516781.45565829094,5276672.693722154],[516781.4569393532,5276672.249166842],[516783.4110365673,5276671.810239225]]]},"properties":{"ID_SOURCE":"w145339554","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1760}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.4859140658,5276369.53516734],[516753.48335645965,5276370.424277546],[516750.17841967224,5276370.414771524],[516750.2564086274,5276369.414738566],[516753.4859140658,5276369.53516734]]]},"properties":{"ID_SOURCE":"w145339556","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1761}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.76356116636,5276564.834339647],[516761.1897761652,5276563.607272898],[516762.8485877333,5276561.38925274],[516764.49748271063,5276562.616536148],[516762.76356116636,5276564.834339647]]]},"properties":{"ID_SOURCE":"w145339557","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1762}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.9873950573,5276656.711071435],[516628.870813592,5276659.9195113005],[516628.272801963,5276658.91754613],[516633.3887490936,5276655.931383394],[516633.9873950573,5276656.711071435]]]},"properties":{"ID_SOURCE":"w145339560","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1763}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.5220804062,5276303.4303304665],[516734.5254972639,5276302.241145684],[516737.30468116427,5276302.249131711],[516737.37640874187,5276303.427418473],[516734.5220804062,5276303.4303304665]]]},"properties":{"ID_SOURCE":"w145339561","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1764}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517056.0582766109,5276517.340139837],[517055.61607724125,5276514.4492112445],[517058.39678792265,5276513.901656746],[517058.83833486843,5276517.014863147],[517056.0582766109,5276517.340139837]]]},"properties":{"ID_SOURCE":"w145339562","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1765}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.12152029225,5276077.588554969],[516526.7256014936,5276076.47887274],[516528.6003472773,5276077.595588656],[516528.0716971592,5276078.594345117],[516527.02909904794,5276078.057916516],[516526.12152029225,5276077.588554969]]]},"properties":{"ID_SOURCE":"w145339565","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1766}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.2334780852,5276465.165278706],[516866.2288515798,5276473.776208694],[516864.21469652496,5276468.991367797],[516884.06879210443,5276460.491134204],[516886.2334780852,5276465.165278706]]]},"properties":{"ID_SOURCE":"w145339566","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1767}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.57944157236,5276211.321770827],[516621.4383528619,5276211.338487916],[516621.28368409007,5276212.894001695],[516615.5756369294,5276212.655435825],[516615.57944157236,5276211.321770827]]]},"properties":{"ID_SOURCE":"w145339567","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1768}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516431.7669368122,5276293.488190592],[516431.914968276,5276294.266585785],[516429.4359200896,5276294.370731794],[516426.9571854595,5276294.363740092],[516426.9600066232,5276293.363491201],[516431.7669368122,5276293.488190592]]]},"properties":{"ID_SOURCE":"w145339569","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1769}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.66237964673,5276337.146211291],[516775.65549704415,5276339.53569485],[516775.6502150476,5276341.369484565],[516774.4484138466,5276341.366023054],[516774.53569020407,5276337.142966115],[516775.66237964673,5276337.146211291]]]},"properties":{"ID_SOURCE":"w145339570","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1770}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.62958517805,5276462.721213016],[517265.10743221117,5276461.497127655],[517268.94172032294,5276460.2859583525],[517269.3133209612,5276461.620737397],[517267.4413755298,5276462.181999715],[517265.62958517805,5276462.721213016]]]},"properties":{"ID_SOURCE":"w145339574","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1771}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.9267323346,5276365.4463122655],[516722.91875439684,5276368.22478166],[516721.6421656298,5276368.109976582],[516721.7249361272,5276365.442861621],[516722.9267323346,5276365.4463122655]]]},"properties":{"ID_SOURCE":"w145339578","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1772}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.85580934695,5276349.809089012],[516694.42867253604,5276349.804998043],[516694.36694003403,5276345.136954287],[516695.86919051316,5276345.141260563],[516695.85580934695,5276349.809089012]]]},"properties":{"ID_SOURCE":"w145339581","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1773}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.13807009574,5276330.476475642],[516578.80862700794,5276330.803263279],[516578.6612488463,5276329.802586719],[516581.0654886405,5276329.587151636],[516581.13807009574,5276330.476475642]]]},"properties":{"ID_SOURCE":"w145339585","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1774}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.41557140806,5276234.833414604],[516947.4433247865,5276234.950454241],[516947.511324159,5276237.395725323],[516945.4006229702,5276237.389584017],[516945.41557140806,5276234.833414604]]]},"properties":{"ID_SOURCE":"w145339589","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1775}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.0628488982,5276150.435742255],[516619.13272838976,5276150.649660212],[516619.0649069764,5276148.093254896],[516621.994394428,5276148.10161438],[516622.0628488982,5276150.435742255]]]},"properties":{"ID_SOURCE":"w145339594","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1776}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.791189366,5276273.4232632015],[516957.47207233595,5276273.322839337],[516957.4681893303,5276274.656504424],[516953.93785759766,5276274.646226828],[516953.791189366,5276273.4232632015]]]},"properties":{"ID_SOURCE":"w145339595","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1777}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.66937904124,5276224.891737601],[517044.75329471636,5276225.020678521],[517044.749391785,5276226.354343496],[517038.5149242408,5276226.336101845],[517038.66937904124,5276224.891737601]]]},"properties":{"ID_SOURCE":"w145339599","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1778}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516900.52627091476,5276069.438292968],[516899.61623766826,5276069.82464132],[516898.7212277588,5276070.2110334],[516898.0490522239,5276068.875407395],[516899.85409570264,5276068.102666757],[516900.52627091476,5276069.438292968]]]},"properties":{"ID_SOURCE":"w145339602","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1779}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.3195140428,5276162.69264126],[517169.5412549084,5276163.915831632],[517167.8729839693,5276164.15542142],[517166.4602347516,5276164.3513089],[517166.2388208139,5276163.016979913],[517169.3195140428,5276162.69264126]]]},"properties":{"ID_SOURCE":"w145339603","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1780}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516455.2107974985,5276450.039029884],[516458.7262602135,5276455.2725287145],[516453.45843596366,5276458.814113713],[516449.9432846117,5276453.469479245],[516455.2107974985,5276450.039029884]]]},"properties":{"ID_SOURCE":"w145339604","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1781}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.51092869946,5276662.07298891],[516639.44745191,5276664.728730676],[516638.8494425941,5276663.726764408],[516642.9877106292,5276661.182375704],[516643.51092869946,5276662.07298891]]]},"properties":{"ID_SOURCE":"w145339607","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1782}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.74391012086,5276360.147089336],[516656.6162716282,5276360.477283288],[516656.02045847,5276358.697344377],[516657.37343432906,5276358.367794786],[516657.54387229437,5276359.179601949],[516657.74391012086,5276360.147089336]]]},"properties":{"ID_SOURCE":"w145339613","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1783}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.5745534381,5276548.6361868745],[516774.15730330616,5276546.75137007],[516775.50640072476,5276547.755513597],[516773.99844046624,5276549.751685181],[516772.5745534381,5276548.6361868745]]]},"properties":{"ID_SOURCE":"w145339614","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1784}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516518.01120495045,5276421.098210783],[516523.20399110124,5276417.556471117],[516524.9991008325,5276420.228916649],[516519.88142745546,5276423.770867784],[516518.01120495045,5276421.098210783]]]},"properties":{"ID_SOURCE":"w145339615","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1785}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.67932282126,5276613.7116255425],[516718.59262317914,5276619.276975154],[516713.77767365845,5276622.041647647],[516710.7898989137,5276616.253807267],[516715.67932282126,5276613.7116255425]]]},"properties":{"ID_SOURCE":"w145339616","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1786}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.1407663358,5276440.025125238],[517290.4047937825,5276441.344740081],[517289.8849536665,5276439.342681051],[517294.54581637814,5276438.022842738],[517295.1407663358,5276440.025125238]]]},"properties":{"ID_SOURCE":"w145339617","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1787}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516764.13878232747,5276478.482733146],[516758.05480701063,5276478.465223476],[516758.07047716546,5276473.019422547],[516764.078707468,5276473.258993603],[516764.13878232747,5276478.482733146]]]},"properties":{"ID_SOURCE":"w145339622","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1788}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.4402878488,5276463.609962823],[516644.30656143103,5276462.523898269],[516645.77447476395,5276474.531181486],[516636.9082191574,5276475.617243785],[516636.14497184986,5276469.346784297],[516635.4402878488,5276463.609962823]]]},"properties":{"ID_SOURCE":"w145339623","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1789}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.1822638936,5276318.570663134],[516654.2450872839,5276317.6150415605],[516656.1979585347,5276317.642854069],[516656.210311259,5276318.576462682],[516655.22633272194,5276318.57364874],[516654.1822638936,5276318.570663134]]]},"properties":{"ID_SOURCE":"w145339625","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1790}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.7621772565,5276525.929218821],[516450.32913138374,5276529.601254632],[516448.4488667784,5276530.485061333],[516446.80680153647,5276526.81281391],[516448.7621772565,5276525.929218821]]]},"properties":{"ID_SOURCE":"w145339626","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1791}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5676782188,5276109.634408768],[517004.1493231504,5276108.19421022],[517005.0481144268,5276109.085951612],[517003.3913539503,5276110.5259306375],[517002.5676782188,5276109.634408768]]]},"properties":{"ID_SOURCE":"w145339627","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1792}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516998.95150196913,5276285.702465033],[516998.97815554566,5276284.291068565],[516999.0048415706,5276282.868558227],[517002.0468019247,5276282.921893378],[517001.9934608432,5276285.755800163],[516998.95150196913,5276285.702465033]]]},"properties":{"ID_SOURCE":"w145339629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1793}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.31223967264,5276348.113480887],[516763.9131395751,5276348.115210464],[516763.97801528435,5276351.671867386],[516763.2272107492,5276351.55856664],[516763.31223967264,5276348.113480887]]]},"properties":{"ID_SOURCE":"w145339635","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1794}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.99117617006,5276302.676582416],[517076.00160331355,5276299.120142069],[517079.0812416151,5276299.129172086],[517079.0299815219,5276301.240676381],[517078.9956995068,5276302.685392169],[517075.99117617006,5276302.676582416]]]},"properties":{"ID_SOURCE":"w145339638","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1795}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5039097194,5276348.958776898],[516817.5697154581,5276352.182018177],[516814.75280655245,5276352.2405686295],[516814.686999255,5276349.01732738],[516817.5039097194,5276348.958776898]]]},"properties":{"ID_SOURCE":"w145339649","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1796}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.6409891206,5276191.088694231],[516958.45651978045,5276193.193987487],[516957.85754534334,5276192.525405418],[516960.0416910907,5276190.53125068],[516960.6409891206,5276191.088694231]]]},"properties":{"ID_SOURCE":"w145339652","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1797}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517248.0033555812,5276276.732189821],[517245.73777672776,5276280.837650939],[517242.4383818015,5276278.938506864],[517244.6285165385,5276274.943960834],[517248.0033555812,5276276.732189821]]]},"properties":{"ID_SOURCE":"w145339657","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1798}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516376.13867655554,5276068.718330577],[516379.4431589674,5276068.949901398],[516379.36022958555,5276071.728158342],[516375.9806327038,5276071.496376375],[516376.13867655554,5276068.718330577]]]},"properties":{"ID_SOURCE":"w145339659","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1799}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.8876132131,5276686.427216163],[517296.4600710029,5276678.646159892],[517310.43284680997,5276677.798558897],[517310.93580895185,5276685.468700671],[517304.4300557743,5276685.9161524745],[517296.8876132131,5276686.427216163]]]},"properties":{"ID_SOURCE":"w145339663","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1800}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.4683326608,5276332.66559459],[516817.592303268,5276336.555841918],[516814.79034516093,5276336.636663497],[516814.7349717848,5276335.002750102],[516814.6663726825,5276332.746416232],[516817.4683326608,5276332.66559459]]]},"properties":{"ID_SOURCE":"w145339666","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1801}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517029.4017953378,5276257.750870861],[517029.3926966029,5276260.862755974],[517026.3884766497,5276260.742833107],[517026.4723625422,5276257.742306332],[517027.8093857164,5276257.746215087],[517029.4017953378,5276257.750870861]]]},"properties":{"ID_SOURCE":"w145339668","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1802}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.35697633075,5276347.033884055],[516775.4836638599,5276347.0371292],[516775.4399293341,5276349.181999323],[516775.39542655327,5276351.593602511],[516774.3441724461,5276351.479434944],[516774.35697633075,5276347.033884055]]]},"properties":{"ID_SOURCE":"w145339670","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1803}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516555.7811183797,5276396.076774314],[516555.08232532116,5276396.1636996595],[516554.89142568427,5276394.618315464],[516555.56768535834,5276394.53132604],[516555.6854949033,5276395.365208532],[516555.7811183797,5276396.076774314]]]},"properties":{"ID_SOURCE":"w145339674","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1804}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517006.92690877523,5276263.131046093],[517004.5922222867,5276265.235883598],[517003.8433579193,5276264.455719334],[517006.1029308451,5276262.350662207],[517006.92690877523,5276263.131046093]]]},"properties":{"ID_SOURCE":"w145339687","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1805}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.98307237215,5276656.081367511],[516646.0855823886,5276654.745125225],[516647.9588666154,5276653.6724247085],[516649.17011591804,5276652.97570714],[516649.91738840076,5276654.311520414],[516646.98307237215,5276656.081367511]]]},"properties":{"ID_SOURCE":"w145339700","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1806}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516651.87771884125,5276336.45756192],[516650.6975608167,5276336.765378934],[516650.3113280208,5276335.241661132],[516651.5066041891,5276334.900545362],[516651.6847456027,5276335.645690531],[516651.87771884125,5276336.45756192]]]},"properties":{"ID_SOURCE":"w145339707","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1807}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517151.7167505023,5276069.394577287],[517153.8895529558,5276071.290350546],[517150.72322423966,5276075.170915296],[517148.62553826487,5276073.275364359],[517151.7167505023,5276069.394577287]]]},"properties":{"ID_SOURCE":"w145339722","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1808}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.3238100596,5276316.730594808],[516706.3928658032,5276318.84244685],[516704.7403828061,5276318.837707],[516704.6682025747,5276317.815014903],[516704.59589481127,5276316.836778313],[516706.3238100596,5276316.730594808]]]},"properties":{"ID_SOURCE":"w145339726","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1809}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.08753126045,5276614.559714278],[516738.0640589347,5276612.9979418125],[516739.7976373813,5276610.891269662],[516741.6708918263,5276612.452610879],[516740.08753126045,5276614.559714278]]]},"properties":{"ID_SOURCE":"w145339741","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1810}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.42762873217,5276383.937990368],[516423.92538842635,5276383.933753828],[516424.0117833797,5276379.932969521],[516425.514024717,5276379.937206081],[516425.42762873217,5276383.937990368]]]},"properties":{"ID_SOURCE":"w145339752","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1811}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.0264814498,5276091.247111155],[516523.1290756915,5276091.817050961],[516523.97665442387,5276092.252899962],[516523.67461486306,5276092.807741225],[516521.6490109898,5276091.912878175],[516522.0264814498,5276091.247111155]]]},"properties":{"ID_SOURCE":"w145339758","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1812}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.9367410138,5276212.5835429765],[517054.4341306908,5276212.690282655],[517054.3775657397,5276206.355154244],[517055.8047379124,5276206.35933333],[517055.9367410138,5276212.5835429765]]]},"properties":{"ID_SOURCE":"w145339765","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1813}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.5862104722,5276407.409071394],[517278.1073766196,5276408.966574099],[517273.8230419209,5276409.954123105],[517273.5272099003,5276408.397289109],[517277.5862104722,5276407.409071394]]]},"properties":{"ID_SOURCE":"w145339773","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1814}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516979.8083662509,5276238.156630529],[516979.7983220517,5276241.601931813],[516976.34340805945,5276241.480720918],[516976.35312627326,5276238.146558382],[516979.8083662509,5276238.156630529]]]},"properties":{"ID_SOURCE":"w145339774","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1815}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517249.6616656492,5276503.017631195],[517247.7458540468,5276503.178666702],[517244.5528349538,5276503.447060609],[517244.41248643957,5276500.112451974],[517249.5209908671,5276499.794161227],[517249.6616656492,5276503.017631195]]]},"properties":{"ID_SOURCE":"w145339797","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1816}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.16097781085,5276362.926295954],[516774.2488939568,5276358.48096132],[516775.22567467723,5276358.372634975],[516775.36309467943,5276362.818618641],[516774.16097781085,5276362.926295954]]]},"properties":{"ID_SOURCE":"w145339802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1817}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517081.4476094306,5276260.615087243],[517074.01136044535,5276260.593282932],[517073.954166075,5276254.480431307],[517081.6157639796,5276254.502896409],[517081.4476094306,5276260.615087243]]]},"properties":{"ID_SOURCE":"w145339808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1818}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.6936799623,5276233.466428232],[516892.2387596583,5276233.345267244],[516892.1729933541,5276230.122025626],[516895.5534463564,5276230.020691175],[516895.6936799623,5276233.466428232]]]},"properties":{"ID_SOURCE":"w145339813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1819}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516584.6668397883,5276119.988019352],[516580.56807812303,5276108.52896779],[516583.71818561124,5276110.20503045],[516586.025879991,5276117.546817247],[516584.6668397883,5276119.988019352]]]},"properties":{"ID_SOURCE":"w145339829","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1820}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.20775971754,5276268.77679256],[517316.2281522651,5276269.599408794],[517315.4436451674,5276280.822189774],[517300.6486216247,5276280.000244837],[517301.20775971754,5276268.77679256]]]},"properties":{"ID_SOURCE":"w145339831","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1821}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8920560095,5276708.757420999],[517294.54228186025,5276717.428257263],[517284.6257508971,5276718.176794087],[517283.9755103804,5276709.505958955],[517288.0097253775,5276709.20674242],[517293.8920560095,5276708.757420999]]]},"properties":{"ID_SOURCE":"w145339838","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1822}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.1294314409,5276177.052080336],[517254.44843944017,5276180.282001447],[517252.79229544825,5276181.499632317],[517250.4732870246,5276178.269711856],[517252.1294314409,5276177.052080336]]]},"properties":{"ID_SOURCE":"w145339851","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1823}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.58656096697,5276352.21551668],[516605.4131145696,5276352.1067335745],[516605.55700190156,5276354.32993738],[516604.88067341194,5276354.439148764],[516604.7336489059,5276353.316218844],[516604.58656096697,5276352.21551668]]]},"properties":{"ID_SOURCE":"w145339853","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1824}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.82626548264,5276303.441372857],[516753.8292387005,5276302.40778235],[516756.38308331254,5276302.415129277],[516756.3050285546,5276303.437389803],[516753.82626548264,5276303.441372857]]]},"properties":{"ID_SOURCE":"w145339856","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1825}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.36022958555,5276071.728158342],[516379.4431589674,5276068.949901398],[516381.0954000779,5276069.065687508],[516380.9373538713,5276071.843733178],[516379.36022958555,5276071.728158342]]]},"properties":{"ID_SOURCE":"w145339859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1826}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.9947170736,5276226.185425816],[517024.8487121747,5276224.740182963],[517031.00741734204,5276224.980467838],[517031.00286759174,5276226.536410309],[517024.9947170736,5276226.185425816]]]},"properties":{"ID_SOURCE":"w145339863","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1827}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516624.78831008566,5276116.657069926],[516625.90742832026,5276119.327615629],[516623.6514277123,5276120.210293507],[516622.60710689623,5276117.651101341],[516624.78831008566,5276116.657069926]]]},"properties":{"ID_SOURCE":"w145339864","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1828}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.9581498849,5276246.103512019],[516710.3196825707,5276246.101680176],[516710.3995155914,5276244.457042118],[516710.99320178357,5276244.358719779],[516710.9581498849,5276246.103512019]]]},"properties":{"ID_SOURCE":"w145339873","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1829}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.5243773496,5276252.372020749],[516590.50791520556,5276258.151236141],[516586.7525495835,5276258.029400496],[516586.84380520973,5276252.361537775],[516590.5243773496,5276252.372020749]]]},"properties":{"ID_SOURCE":"w145339874","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1830}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.98280703305,5276386.196045883],[516749.9121699192,5276384.63988696],[516756.9726994396,5276384.660197274],[516757.0436544386,5276386.105217509],[516749.98280703305,5276386.196045883]]]},"properties":{"ID_SOURCE":"w145339876","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1831}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516598.28452993964,5276086.018082235],[516597.67568554915,5276088.794838018],[516590.4563355466,5276091.663900704],[516587.681798964,5276089.988904057],[516598.28452993964,5276086.018082235]]]},"properties":{"ID_SOURCE":"w145339880","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1832}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.2685430519,5276421.722388241],[516773.3156430455,5276421.716763475],[516773.32428533223,5276418.716016289],[516775.35197779915,5276418.832996192],[516775.31029242935,5276420.266578337],[516775.2685430519,5276421.722388241]]]},"properties":{"ID_SOURCE":"w145339881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1833}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.2459878492,5276080.870250399],[516740.11829059606,5276081.2004281785],[516739.5979090052,5276079.309558667],[516740.6501712098,5276079.0903036175],[516740.94063186744,5276079.958027667],[516741.2459878492,5276080.870250399]]]},"properties":{"ID_SOURCE":"w145339884","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1834}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.2959859256,5276327.663730957],[516764.047433339,5276327.554754161],[516764.1877419052,5276331.0004883995],[516763.43661482143,5276330.998326408],[516763.2959859256,5276327.663730957]]]},"properties":{"ID_SOURCE":"w145339887","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1835}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.6320752299,5276443.855497638],[516773.2364437069,5276444.000046967],[516773.1762689579,5276449.245668025],[516761.57191093394,5276449.10111879],[516761.6320752299,5276443.855497638]]]},"properties":{"ID_SOURCE":"w145339891","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1836}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516729.3349891194,5276383.358206829],[516726.4807318983,5276383.350008792],[516726.41551461973,5276379.904490946],[516729.3448856046,5276379.912904702],[516729.3349891194,5276383.358206829]]]},"properties":{"ID_SOURCE":"w145339895","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1837}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.11668712634,5276072.9937920235],[516434.19525251637,5276071.771477966],[516435.32199313893,5276071.774657182],[516435.32011153834,5276072.441489542],[516434.11668712634,5276072.9937920235]]]},"properties":{"ID_SOURCE":"w145339900","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1838}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.599090257,5276185.21413008],[516889.58813274803,5276188.99284733],[516886.3585295837,5276188.872343358],[516886.36916278093,5276185.204764847],[516889.599090257,5276185.21413008]]]},"properties":{"ID_SOURCE":"w145339909","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1839}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516459.0488174855,5276527.18081824],[516460.25215079315,5276526.628520728],[516460.7672382854,5276527.7524874965],[516461.2226144267,5276528.742917906],[516460.0192814614,5276529.295215216],[516459.0488174855,5276527.18081824]]]},"properties":{"ID_SOURCE":"w145339912","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1840}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516322.697496363,5276616.597929573],[516321.7980571497,5276615.928570478],[516323.3055333292,5276614.043420827],[516324.2046611298,5276614.823918977],[516322.697496363,5276616.597929573]]]},"properties":{"ID_SOURCE":"w145339914","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1841}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.5425100012,5276548.510556871],[516769.27675820445,5276546.181616027],[516770.77575638215,5276547.297329815],[516768.8161782405,5276549.625621402],[516767.5425100012,5276548.510556871]]]},"properties":{"ID_SOURCE":"w145339919","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1842}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.1315263611,5276346.442013285],[516723.19929908734,5276348.998420724],[516721.77216206136,5276348.994323054],[516721.77950121695,5276346.4381312905],[516723.1315263611,5276346.442013285]]]},"properties":{"ID_SOURCE":"w145339927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1843}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516578.14227872144,5276485.7300872905],[516578.7349385473,5276488.6214065505],[516576.3298154476,5276489.170258893],[516575.73715448804,5276486.278939874],[516578.14227872144,5276485.7300872905]]]},"properties":{"ID_SOURCE":"w145339928","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1844}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516781.18479896506,5276532.101171507],[516781.2149020738,5276521.654124008],[516786.99839132803,5276521.670791958],[516786.89316773164,5276532.117622949],[516781.18479896506,5276532.101171507]]]},"properties":{"ID_SOURCE":"w145339929","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1845}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.08541060647,5276264.870442183],[516800.05734441924,5276264.864591884],[516800.0643971578,5276262.419539233],[516802.2426913836,5276262.4258229155],[516802.08541060647,5276264.870442183]]]},"properties":{"ID_SOURCE":"w145339936","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1846}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516930.25240802416,5276257.239535998],[516926.6472751037,5276257.117917872],[516926.5770063238,5276255.45061826],[516930.1818172167,5276255.683375093],[516930.25240802416,5276257.239535998]]]},"properties":{"ID_SOURCE":"w145339937","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1847}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516433.8088691983,5276102.222642119],[516432.5322167181,5276102.107900608],[516432.76571607665,5276099.21892934],[516433.8126320877,5276100.888977331],[516433.8088691983,5276102.222642119]]]},"properties":{"ID_SOURCE":"w145339938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1848}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.6949573406,5276453.846723315],[517307.17642421374,5276454.27565552],[517305.9886444854,5276454.616659145],[517305.54326160945,5276452.837099425],[517308.17446406465,5276452.066940161],[517308.6949573406,5276453.846723315]]]},"properties":{"ID_SOURCE":"w145339942","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1849}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.9624734583,5276352.998769526],[516723.0286505661,5276356.110870862],[516721.9022839126,5276355.996497086],[516721.8354680107,5276353.106673313],[516722.9624734583,5276352.998769526]]]},"properties":{"ID_SOURCE":"w145339945","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1850}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516998.4396920588,5276213.993637257],[516996.78750344226,5276213.87767587],[516996.9562187373,5276207.543205762],[516998.383390587,5276207.547370778],[516998.4396920588,5276213.993637257]]]},"properties":{"ID_SOURCE":"w145339948","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1851}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516900.5290308987,5276223.811304387],[516900.59898509784,5276225.589742334],[516898.9464755107,5276225.584947446],[516898.9513124408,5276223.9178662095],[516900.5290308987,5276223.811304387]]]},"properties":{"ID_SOURCE":"w145339949","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1852}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.2570914447,5276716.676166492],[517302.68198633404,5276708.005552393],[517311.54669648485,5276707.365059155],[517311.85951730557,5276710.777981322],[517312.3471117539,5276716.036344006],[517303.2570914447,5276716.676166492]]]},"properties":{"ID_SOURCE":"w145339953","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1853}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.3017242322,5276401.676447153],[517293.52210952475,5276403.344197893],[517290.3647746608,5276404.223941571],[517290.0696066397,5276402.444829184],[517293.3017242322,5276401.676447153]]]},"properties":{"ID_SOURCE":"w145339954","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1854}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.83895044867,5276113.267792247],[516989.4159698002,5276111.818825661],[516991.75136024825,5276109.49170499],[516993.17401664477,5276111.051810871],[516990.83895044867,5276113.267792247]]]},"properties":{"ID_SOURCE":"w145339960","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1855}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516473.91997456487,5276554.007532949],[516478.7326638324,5276552.020634249],[516479.180492564,5276553.022158738],[516474.3674895732,5276555.120195879],[516473.91997456487,5276554.007532949]]]},"properties":{"ID_SOURCE":"w145339963","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1856}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516591.55087812373,5276234.814878971],[516596.88523491344,5276234.385518599],[516597.1023424724,5276237.275768341],[516591.61807709665,5276237.5935618],[516591.55087812373,5276234.814878971]]]},"properties":{"ID_SOURCE":"w145339968","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1857}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3291203006,5276479.350491839],[516522.58400322945,5276477.236723719],[516526.3436438832,5276475.802575204],[516527.08875978045,5276477.9163438035],[516523.3291203006,5276479.350491839]]]},"properties":{"ID_SOURCE":"w145339969","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1858}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4339716028,5276489.391515131],[516734.5889388699,5276489.289440222],[516734.5867034031,5276490.067411804],[516731.4314172638,5276490.280625509],[516731.4339716028,5276489.391515131]]]},"properties":{"ID_SOURCE":"w145339973","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1859}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.3686753498,5276137.719861718],[517221.0826810887,5276134.393694421],[517224.60455288953,5276137.293740729],[517221.81543128873,5276140.6196843],[517227.0308250631,5276144.9028721005],[517224.1218502096,5276148.117320398],[517218.4941124783,5276143.566180893],[517221.3059296345,5276140.1847329885],[517218.3686753498,5276137.719861718]]]},"properties":{"ID_SOURCE":"w145339979","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1860}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.2222799789,5276501.201554797],[516778.6446389925,5276501.308149067],[516778.7290351847,5276498.085340308],[516780.30635681783,5276498.089884855],[516780.2222799789,5276501.201554797]]]},"properties":{"ID_SOURCE":"w145339983","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1861}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516587.5171980766,5276226.912474267],[516583.61095127114,5276227.012490365],[516583.4664191426,5276225.011565078],[516587.14795809815,5276224.688629619],[516587.5171980766,5276226.912474267]]]},"properties":{"ID_SOURCE":"w145339984","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1862}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.9072451642,5276330.367395415],[516774.70544169203,5276330.363933855],[516774.67258220195,5276315.69340019],[516775.9495016069,5276315.697078091],[516775.9431951581,5276317.886511791],[516775.9072451642,5276330.367395415]]]},"properties":{"ID_SOURCE":"w145339986","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1863}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.05321620224,5276303.427859214],[516722.05672624183,5276302.205332804],[516724.6853648431,5276302.324020259],[516724.83243143687,5276303.424725417],[516722.05321620224,5276303.427859214]]]},"properties":{"ID_SOURCE":"w145339987","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1864}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516991.6556098473,5276168.062036567],[516992.1978955891,5276167.563490024],[516992.8606893995,5276166.95415543],[516993.6843584312,5276167.845676025],[516992.5540694681,5276169.064914876],[516991.6556098473,5276168.062036567]]]},"properties":{"ID_SOURCE":"w145339994","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1865}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.56683235563,5276288.736152503],[516983.50144154794,5276285.401770694],[516984.85348100815,5276285.405713412],[516984.76864452,5276288.73965714],[516983.56683235563,5276288.736152503]]]},"properties":{"ID_SOURCE":"w145340007","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1866}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516773.72267903294,5276384.708414491],[516772.5170459854,5276386.038618699],[516770.6462866736,5276383.588158045],[516771.14356226317,5276383.056119439],[516771.7764876937,5276382.36887593],[516773.72267903294,5276384.708414491]]]},"properties":{"ID_SOURCE":"w145340021","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1867}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.8230419209,5276409.954123105],[517278.1073766196,5276408.966574099],[517277.5862104722,5276407.409071394],[517280.4427648834,5276406.639568106],[517280.2200676866,5276405.7497892985],[517282.1742926363,5276405.311028921],[517282.32253739156,5276405.978307359],[517285.8550990502,5276405.210812761],[517286.3759333175,5276406.879454983],[517290.7353842108,5276405.892138199],[517290.3647746608,5276404.223941571],[517293.52210952475,5276403.344197893],[517293.3017242322,5276401.676447153],[517295.1113385934,5276399.34788586],[517294.2864284072,5276398.900877229],[517296.9255754309,5276395.463382278],[517297.750155814,5276396.02153006],[517298.57935751625,5276395.023735101],[517300.0779640309,5276396.250723786],[517301.5100422443,5276394.587881566],[517300.91641029704,5276392.141043464],[517298.7668835222,5276382.465499843],[517297.7143243979,5276382.795792853],[517297.26992355456,5276380.682817669],[517298.3969349236,5276380.5750252195],[517297.6543963013,5276377.683186233],[517299.2327412356,5276377.354454929],[517298.2684971814,5276373.239420084],[517301.5006320538,5276372.471042597],[517301.27925733593,5276371.136707944],[517303.6844989838,5276370.588154815],[517304.0564277742,5276371.811797121],[517308.94235402066,5276370.603778608],[517313.46572034905,5276390.288960208],[517309.9324852835,5276391.278715618],[517311.41424251226,5276398.173784745],[517299.19759381923,5276414.47502896],[517294.1756740972,5276410.903642084],[517291.84556167206,5276411.452422145],[517292.8799653545,5276417.234760888],[517276.34453094134,5276420.853298491],[517273.8230419209,5276409.954123105]]]},"properties":{"ID_SOURCE":"w145340023","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1868}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9984406455,5276239.670006835],[516922.8901305849,5276239.513586845],[516921.4445331818,5276238.097912695],[516921.3745855287,5276236.3194744475],[516918.3703509881,5276236.199607338],[516918.29071739805,5276237.7553316625],[516917.0092615154,5276239.30756512],[516912.7280921852,5276239.183992132],[516912.65523736336,5276238.405802752],[516911.0551497923,5276238.456726477],[516909.50013059477,5276238.507781486],[516909.4230807087,5276239.174395924],[516902.43748826644,5276239.154119204],[516902.551950971,5276225.5954096215],[516904.73025906255,5276225.601731601],[516904.886293561,5276223.601670147],[516937.6350705993,5276224.030233138],[516937.7237591556,5276219.362624146],[516952.8213805269,5276219.517688635],[516953.1079268353,5276224.297529346],[516955.58636827715,5276224.415883651],[516957.38910641416,5276224.42113199],[516973.83876799536,5276224.580187612],[516973.71830930945,5276240.139393686],[516966.05669285497,5276240.117070567],[516965.9844926524,5276239.116603001],[516964.47470327053,5276239.112205241],[516962.90482276503,5276239.107632861],[516962.97734718176,5276239.996961635],[516955.99175557034,5276239.976620678],[516955.94058441615,5276231.752134461],[516953.9879440763,5276231.635310514],[516954.0565877824,5276233.858304164],[516952.8515293902,5276234.966193396],[516948.11935036053,5276234.952421361],[516948.1229077757,5276233.729895107],[516946.6807842538,5276233.70347093],[516945.27621770423,5276233.677156378],[516945.11479224736,5276234.943679209],[516940.2327085595,5276234.818337765],[516939.1092315375,5276233.703673296],[516939.04122858046,5276231.258402337],[516937.4641577736,5276231.142676223],[516937.2142530602,5276239.588565974],[516929.77765462594,5276239.678084633],[516929.7885903656,5276238.500035701],[516928.48918438854,5276238.47403087],[516926.9268797258,5276238.447262269],[516926.9984406455,5276239.670006835]]]},"properties":{"ID_SOURCE":"w145340026","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1869}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516954.2088142937,5276258.97631818],[516957.438700953,5276258.985721133],[516957.5057250184,5276261.764408699],[516959.1507130176,5276261.769198354],[516960.8858373497,5276261.774250959],[516960.9020197271,5276256.217313229],[516964.6580273955,5276256.117112622],[516964.7286089882,5276257.67327397],[516977.72294825397,5276257.8222775655],[516984.9888784794,5276264.734123623],[516984.7884149898,5276281.960192844],[516980.3570514915,5276281.836131963],[516980.4337465573,5276283.870212137],[516980.4969094137,5276285.393010226],[516983.50144154794,5276285.401770694],[516983.56683235563,5276288.736152503],[516983.293204752,5276305.295170807],[516983.2067489602,5276309.184808479],[516969.3866052065,5276308.92224619],[516969.53069093387,5276285.249908907],[516972.3098832135,5276285.258007053],[516972.32024698966,5276281.701566773],[516971.04364387254,5276281.586707079],[516970.97824578144,5276278.252325465],[516970.8480970048,5276271.3612847775],[516964.2377866972,5276271.453166949],[516960.93246981147,5276271.554680221],[516960.86091646,5276270.33193516],[516957.4808090943,5276270.322092901],[516957.47207233595,5276273.322839337],[516953.791189366,5276273.4232632015],[516937.1914385768,5276273.26382699],[516933.51120224,5276273.141986153],[516933.44449003175,5276270.2521600835],[516930.13917309424,5276270.353690837],[516930.1356194126,5276271.576217162],[516926.5301723737,5276271.565737842],[516923.52563317324,5276271.55700678],[516914.1847727111,5276280.754467255],[516904.1492584092,5276270.500479856],[516918.6104356445,5276256.983426885],[516926.6472751037,5276257.117917872],[516930.25240802416,5276257.239535998],[516930.3145991196,5276261.685304545],[516931.8243826313,5276261.689693462],[516933.61959785107,5276261.694912635],[516933.47777187184,5276258.804868231],[516937.2331309151,5276258.926927454],[516954.2088142937,5276258.97631818]]]},"properties":{"ID_SOURCE":"w145340028","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1870}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516748.3165812212,5276312.616778243],[516748.3973510506,5276310.649838084],[516751.3267568965,5276310.658262813],[516751.3233365985,5276311.847447606],[516751.62155080226,5276312.62628313],[516748.3165812212,5276312.616778243]]]},"properties":{"ID_SOURCE":"w145340039","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1871}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.1348096863,5276097.514587056],[517266.34193279874,5276095.739930126],[517269.58542074653,5276091.192818321],[517279.03056131356,5276097.778072674],[517274.50449966855,5276104.210750217],[517270.17945476674,5276101.119354857],[517265.1348096863,5276097.514587056]]]},"properties":{"ID_SOURCE":"w145340040","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1872}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517282.5879415028,5276443.099774469],[517283.18322484725,5276444.990916969],[517283.11555875547,5276445.012944113],[517278.29670688824,5276446.4212346375],[517277.7014221085,5276444.530092634],[517282.5879415028,5276443.099774469]]]},"properties":{"ID_SOURCE":"w145340047","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1873}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516413.1665898989,5276496.821332804],[516416.15785463195,5276501.497630539],[516409.00920531724,5276506.14535115],[516405.94313986314,5276501.357706669],[516405.9434529456,5276501.246567866],[516413.1665898989,5276496.821332804]]]},"properties":{"ID_SOURCE":"w145340049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1874}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.26962416584,5276167.904067435],[516685.0874343887,5276167.898160603],[516685.1227927953,5276171.2880213335],[516683.9510342829,5276171.273550777],[516683.2674262466,5276171.293820569],[516683.26962416584,5276167.904067435]]]},"properties":{"ID_SOURCE":"w145340050","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1875}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.74169116555,5276651.754134288],[517281.5887273293,5276653.262134636],[517280.86336554994,5276644.591077878],[517287.99302690936,5276643.989855934],[517297.31645791116,5276643.1951066535],[517297.38331389,5276645.973800211],[517297.74169116555,5276651.754134288]]]},"properties":{"ID_SOURCE":"w145340055","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1876}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.7730003394,5276088.1511097625],[517252.0020650358,5276093.252365389],[517247.58010644733,5276089.905078621],[517248.7862383781,5276088.463834247],[517251.57540017384,5276085.137903768],[517255.7730003394,5276088.1511097625]]]},"properties":{"ID_SOURCE":"w145340069","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1877}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516812.92877093604,5276099.414766988],[516813.7463813582,5276102.417897791],[516809.4622229198,5276103.294649536],[516809.3896731995,5276102.405322924],[516809.17074095143,5276100.181898022],[516809.02467911213,5276098.736661],[516812.4084146224,5276097.523890856],[516812.92877093604,5276099.414766988]]]},"properties":{"ID_SOURCE":"w145340085","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1878}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516729.8442238768,5276310.674312818],[516732.7361051339,5276310.671506441],[516732.73268863297,5276311.860691237],[516732.7682015904,5276312.572087239],[516729.76368378376,5276312.563456083],[516729.8442238768,5276310.674312818]]]},"properties":{"ID_SOURCE":"w145340087","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1879}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517013.7858695171,5276100.775992796],[517011.2247951925,5276103.213585201],[517003.9609640123,5276095.523737503],[517010.8143495687,5276089.431066938],[517014.3265361523,5276093.120048583],[517017.92859738466,5276096.89820672],[517013.7858695171,5276100.775992796]]]},"properties":{"ID_SOURCE":"w145340098","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1880}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.0825711721,5276098.35610536],[516442.0806887805,5276099.022937746],[516442.07912012294,5276099.5786314085],[516442.0033769783,5276099.800696826],[516441.1019888168,5276099.798152392],[516441.1814965001,5276098.242422183],[516442.0825711721,5276098.35610536]]]},"properties":{"ID_SOURCE":"w145340113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1881}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.7558953051,5276197.116372383],[516622.7528502893,5276198.1833043555],[516622.74923433375,5276199.450286076],[516622.07320472837,5276199.448356732],[516621.32206072134,5276199.446213108],[516621.4041527149,5276197.001375026],[516622.7558953051,5276197.116372383]]]},"properties":{"ID_SOURCE":"w145340114","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1882}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516989.4338395002,5276182.948273253],[516991.4554499082,5276185.17696425],[516986.4839490272,5276189.941469646],[516979.520652989,5276182.25252747],[516981.72721480264,5276180.302902055],[516984.64173585724,5276177.7107317485],[516989.4338395002,5276182.948273253]]]},"properties":{"ID_SOURCE":"w145340119","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1883}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.0753890971,5276411.912529097],[516995.22496380494,5276412.135245032],[517001.2377905388,5276410.8191176625],[517001.60686016694,5276413.0429896135],[516995.59468428924,5276414.136839036],[516995.0753890971,5276411.912529097]]]},"properties":{"ID_SOURCE":"w145340120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1884}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3549554954,5276337.869753061],[516524.1063969395,5276337.760745317],[516524.5573879519,5276337.650885211],[516524.62903192913,5276338.873624824],[516523.5771402256,5276338.981780086],[516523.3549554954,5276337.869753061]]]},"properties":{"ID_SOURCE":"w145340129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1885}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4731653695,5276345.021155147],[516730.64788536465,5276344.685365282],[516730.5807543637,5276341.906680221],[516732.0830056987,5276341.9109958345],[516731.9989530544,5276345.022665649],[516731.4731653695,5276345.021155147]]]},"properties":{"ID_SOURCE":"w145340130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1886}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.6064899209,5276207.850306603],[516951.3462681769,5276210.177661411],[516951.3355939814,5276213.845240047],[516949.98353792785,5276213.841305152],[516949.8514216569,5276207.617098169],[516953.6064899209,5276207.850306603]]]},"properties":{"ID_SOURCE":"w145340134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1887}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.97771007544,5276154.373845637],[517178.96044401976,5276153.829892636],[517181.6590108078,5276155.7272274615],[517182.2461604993,5276160.396827017],[517175.7839830609,5276161.15574498],[517174.97771007544,5276154.373845637]]]},"properties":{"ID_SOURCE":"w145340135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1888}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.0653775792,5276503.5730968695],[517283.81971345947,5276503.863540947],[517280.97977823886,5276504.110734822],[517280.8345039249,5276502.443207164],[517280.90895487915,5276502.665707625],[517286.9942258277,5276502.239208389],[517287.0653775792,5276503.5730968695]]]},"properties":{"ID_SOURCE":"w145340136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1889}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.4585400555,5276082.779420615],[516978.4601598776,5276082.223726995],[516979.73713057814,5276082.227449451],[516979.7309747853,5276084.339085201],[516978.37888865307,5276084.335143787],[516978.4585400555,5276082.779420615]]]},"properties":{"ID_SOURCE":"w145340149","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1890}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516423.9007373334,5276286.130786277],[516423.75740559114,5276283.685309836],[516427.5888112573,5276283.473835986],[516427.7315144427,5276286.141590057],[516423.9755372062,5276286.2421368575],[516423.9007373334,5276286.130786277]]]},"properties":{"ID_SOURCE":"w145340153","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1891}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.87330216554,5276219.409610847],[516955.6002806121,5276219.636917478],[516955.58636827715,5276224.415883651],[516953.1079268353,5276224.297529346],[516952.8213805269,5276219.517688635],[516953.87330216554,5276219.409610847]]]},"properties":{"ID_SOURCE":"w145340160","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1892}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.8882106922,5276642.68990681],[517276.5242070212,5276638.79893405],[517280.80672521406,5276638.367081174],[517282.3843390052,5276638.26062298],[517282.6732300868,5276642.151373209],[517276.8882106922,5276642.68990681]]]},"properties":{"ID_SOURCE":"w145340165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1893}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.2871814142,5276357.468266155],[516731.8880803421,5276357.469992431],[516731.9539333214,5276360.693232677],[516730.30178144167,5276360.577346772],[516730.3104013976,5276357.576599863],[516731.2871814142,5276357.468266155]]]},"properties":{"ID_SOURCE":"w145340172","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1894}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516757.0142588361,5276083.027246647],[516757.3115250099,5276084.139498331],[516753.77852066775,5276085.018452144],[516753.62988728215,5276084.462326389],[516753.4809341958,5276084.017339367],[516757.0142588361,5276083.027246647]]]},"properties":{"ID_SOURCE":"w145340179","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1895}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.78722865693,5276151.068237939],[516688.01416588476,5276150.5131898895],[516692.4402196184,5276152.526386621],[516691.0037983431,5276155.74532003],[516686.502631579,5276153.731909179],[516687.78722865693,5276151.068237939]]]},"properties":{"ID_SOURCE":"w145340187","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1896}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.602525208,5276153.284771935],[516685.22726859554,5276153.172557282],[516686.4367501761,5276150.508670565],[516687.78722865693,5276151.068237939],[516686.502631579,5276153.731909179],[516685.602525208,5276153.284771935]]]},"properties":{"ID_SOURCE":"w145340206","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1897}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516891.40163040214,5276470.181553619],[516894.7854905747,5276468.857692302],[516894.7690477847,5276474.525770717],[516868.8996856695,5276485.231335993],[516867.0351146534,5276480.669206731],[516891.40163040214,5276470.181553619]]]},"properties":{"ID_SOURCE":"w145340215","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1898}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516582.1441115197,5276082.637920553],[516567.17296965956,5276090.708511004],[516567.09816997516,5276090.59715862],[516564.40854004986,5276085.4770861585],[516579.5299233754,5276077.406916271],[516582.1441115197,5276082.637920553]]]},"properties":{"ID_SOURCE":"w145340229","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1899}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517116.2351705334,5276129.527912303],[517116.2345173363,5276129.750189761],[517113.0022730373,5276130.518670037],[517111.6678291365,5276124.513206233],[517114.9000765821,5276123.744725217],[517116.2351705334,5276129.527912303]]]},"properties":{"ID_SOURCE":"w145340241","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1900}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.07978186005,5276401.674494142],[516528.8802568849,5276402.457581467],[516527.9738691112,5276404.233244021],[516526.99804703833,5276404.008195455],[516526.2478755474,5276403.672647679],[516526.6486801279,5276402.717983781],[516527.07978186005,5276401.674494142]]]},"properties":{"ID_SOURCE":"w145340243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1901}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517061.40960443753,5276139.247374948],[517062.7314690056,5276139.306817014],[517064.5640191481,5276139.401097467],[517064.18202875915,5276141.589430156],[517062.0778275653,5276141.9166848585],[517060.50529232546,5276140.244983237],[517061.40960443753,5276139.247374948]]]},"properties":{"ID_SOURCE":"w145340250","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1902}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517243.1927025778,5276633.032017121],[517243.62788869074,5276638.256875921],[517228.37752233335,5276639.323137448],[517227.80295472697,5276630.430254459],[517232.17554012645,5276630.020860213],[517242.90411369555,5276629.030130154],[517243.1927025778,5276633.032017121]]]},"properties":{"ID_SOURCE":"w145340268","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1903}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.93384484365,5276174.652147025],[516683.9510342829,5276171.273550777],[516685.1227927953,5276171.2880213335],[516685.77629125695,5276171.289893432],[516690.2831772004,5276171.302806448],[516690.273495558,5276174.681424213],[516683.93384484365,5276174.652147025]]]},"properties":{"ID_SOURCE":"w145340273","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1904}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.34793885244,5276367.849543001],[516708.573275547,5276367.850189461],[516710.97718584357,5276367.745946795],[516710.9746347262,5276368.635057004],[516708.3457069767,5276368.627514434],[516708.34793885244,5276367.849543001]]]},"properties":{"ID_SOURCE":"w145340279","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1905}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516696.57362740434,5276204.218174295],[516694.17665807845,5276201.877370596],[516699.07311262505,5276197.001262104],[516699.44741018844,5276197.446893902],[516701.31953451777,5276199.452775766],[516696.57362740434,5276204.218174295]]]},"properties":{"ID_SOURCE":"w145340283","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1906}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.5944334747,5276144.956409338],[517297.1189968445,5276145.69963347],[517296.53787112463,5276146.620367324],[517293.4419200097,5276144.488405841],[517289.4164521179,5276141.709076454],[517289.2662217863,5276141.708630512],[517290.47334323166,5276139.933978463],[517297.5944334747,5276144.956409338]]]},"properties":{"ID_SOURCE":"w145340289","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1907}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.3367883923,5276090.071752278],[516381.7123674114,5276090.072808587],[516381.5549465512,5276092.628576871],[516380.12805945316,5276092.513424331],[516380.13493553037,5276090.068372255],[516381.3367883923,5276090.071752278]]]},"properties":{"ID_SOURCE":"w145340294","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1908}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516404.51353591715,5276502.242797072],[516410.2719903253,5276511.150195136],[516405.0793563652,5276514.692035665],[516404.5529579529,5276514.912832251],[516398.49436977325,5276505.893455016],[516404.51353591715,5276502.242797072]]]},"properties":{"ID_SOURCE":"w145340295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1909}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.92335913266,5276328.514374193],[516747.52198853117,5276327.729490667],[516749.1882124525,5276322.955275623],[516754.0654298941,5276324.747538632],[516752.1741839583,5276329.409965378],[516749.92335913266,5276328.514374193]]]},"properties":{"ID_SOURCE":"w145340297","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1910}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516693.5826849343,5276356.693233713],[516693.749383969,5276361.4282622235],[516690.4895732481,5276361.3966915095],[516690.5027590644,5276356.795546235],[516693.5826849343,5276356.693233713]]]},"properties":{"ID_SOURCE":"w145340302","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1911}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.92335913266,5276328.514374193],[516752.1741839583,5276329.409965378],[516754.72545896407,5276330.306421763],[516751.1689496699,5276339.409646108],[516746.4426080367,5276337.395539865],[516749.92335913266,5276328.514374193]]]},"properties":{"ID_SOURCE":"w145340304","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1912}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516972.5909987635,5276188.789571483],[516975.023741673,5276186.551639461],[516977.41128810385,5276184.358032586],[516984.44969888194,5276192.04719131],[516979.5549440142,5276196.2562279655],[516977.3086374184,5276193.804606725],[516972.5909987635,5276188.789571483]]]},"properties":{"ID_SOURCE":"w145340309","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1913}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516607.2630372961,5276361.892300015],[516607.1816497041,5276361.458623195],[516607.11503103614,5276361.113900226],[516608.1669203756,5276361.005760055],[516608.2394972642,5276361.895084454],[516607.26240347716,5276362.114577568],[516607.2630372961,5276361.892300015]]]},"properties":{"ID_SOURCE":"w145340324","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1914}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.8643134391,5276333.893210595],[516687.78442411334,5276335.560076935],[516686.2821711685,5276335.555772751],[516686.287265812,5276333.777552421],[516687.8646318855,5276333.782071824],[516687.8643134391,5276333.893210595]]]},"properties":{"ID_SOURCE":"w145340326","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1915}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516445.7912196681,5276647.063104779],[516443.15771078237,5276648.722764026],[516443.0829159876,5276648.611413126],[516437.8482142841,5276640.483436051],[516440.6322565662,5276638.71305967],[516445.7912196681,5276647.063104779]]]},"properties":{"ID_SOURCE":"w145340333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1916}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.64095088927,5276338.90895429],[516732.0168332051,5276338.798894454],[516732.0830056987,5276341.9109958345],[516730.5807543637,5276341.906680221],[516730.4391492019,5276338.905501861],[516731.64095088927,5276338.90895429]]]},"properties":{"ID_SOURCE":"w145340339","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1917}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516618.53180815093,5276150.64794562],[516618.60470344505,5276151.426131117],[516617.10224450956,5276151.477414261],[516615.82513065706,5276151.529340641],[516615.7525520465,5276150.640016443],[516618.45732732693,5276150.425453824],[516618.53180815093,5276150.64794562]]]},"properties":{"ID_SOURCE":"w145340355","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1918}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.28058505175,5276627.536977323],[516691.30831061304,5276626.089374006],[516690.26124529104,5276624.53041678],[516690.6377454764,5276624.198076627],[516691.1647820996,5276623.755028219],[516693.3343394492,5276626.762019669],[516692.28058505175,5276627.536977323]]]},"properties":{"ID_SOURCE":"w145340369","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1919}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516589.37717530894,5276101.3299749],[516587.4276495766,5276100.101886688],[516587.2026190347,5276099.990106209],[516584.2027383982,5276098.31446945],[516585.25973813154,5276096.428105398],[516583.3102098885,5276095.200018573],[516586.5566442332,5276089.430001715],[516587.681798964,5276089.988904057],[516590.4563355466,5276091.663900704],[516597.67568554915,5276088.794838018],[516598.28452993964,5276086.018082235],[516598.5887939902,5276084.68527374],[516605.2065956495,5276082.036785389],[516606.92253727745,5276086.15384392],[516607.7497624259,5276085.82278365],[516609.8381108678,5276091.052301263],[516607.05565754377,5276092.155763589],[516605.02943242167,5276091.483148973],[516603.88938914327,5276096.147763543],[516603.8884386868,5276096.481179734],[516603.3629453992,5276096.368542121],[516600.43691623467,5276095.137666045],[516597.95492958475,5276096.241989062],[516598.7755016371,5276098.244840841],[516594.8650519137,5276099.789653063],[516594.0438454785,5276098.009079294],[516591.7130424231,5276098.7804167885],[516590.86753621395,5276100.256165466],[516590.0522666272,5276101.665316617],[516589.37717530894,5276101.3299749]]]},"properties":{"ID_SOURCE":"w145340372","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1920}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.6990603037,5276318.106877908],[516764.2996433993,5276318.219746285],[516764.15837483003,5276315.107428415],[516763.557471524,5276315.105698821],[516763.55971073743,5276314.327727456],[516764.2357270479,5276314.329673253],[516764.32203653856,5276310.440032653],[516766.0499548666,5276310.333866862],[516766.066911403,5276304.443512319],[516767.7948315431,5276304.337347046],[516768.2471097364,5276303.782950739],[516768.622995018,5276303.672893265],[516769.37188564526,5276304.453027267],[516775.4557226575,5276304.581687093],[516775.6656961372,5276309.916996853],[516776.942296667,5276310.031813734],[516776.939735526,5276310.920923857],[516777.5409594219,5276310.811516065],[516777.5332757224,5276313.478846442],[516776.93045138684,5276314.143948064],[516776.85117662314,5276315.588535656],[516775.9495016069,5276315.697078091],[516774.67258220195,5276315.69340019],[516774.70544169203,5276330.363933855],[516775.9072451642,5276330.367395415],[516776.5829394791,5276330.480481418],[516776.65453066165,5276331.703224242],[516777.40213596914,5276332.9279144],[516777.4714858602,5276334.928628626],[516776.7181182932,5276335.704436307],[516776.49278034765,5276335.703787214],[516776.5637312007,5276337.148807586],[516775.66237964673,5276337.146211291],[516774.53569020407,5276337.142966115],[516774.4484138466,5276341.366023054],[516765.7356750666,5276341.229795739],[516765.7334355444,5276342.007767135],[516764.1557517447,5276342.114365408],[516764.0096853021,5276340.6691289805],[516763.25855946384,5276340.666967007],[516763.26047877286,5276340.000134384],[516764.0867172879,5276340.002512559],[516764.0212016595,5276336.668133246],[516763.3455078276,5276336.555048697],[516763.3477470282,5276335.777077305],[516763.9483283066,5276335.889945653],[516764.03623689426,5276331.444611073],[516763.4353352731,5276331.442881487],[516763.43661482143,5276330.998326408],[516764.1877419052,5276331.0004883995],[516764.047433339,5276327.554754161],[516763.2959859256,5276327.663730957],[516763.29854499677,5276326.774620808],[516764.12510529003,5276326.665860219],[516764.1462186595,5276319.33070155],[516763.6952216137,5276319.440543113],[516763.6990603037,5276318.106877908]]]},"properties":{"ID_SOURCE":"w145340383","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1921}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.5287825823,5276258.6596976705],[517119.54896461684,5276259.459962929],[517119.5616352829,5276260.260206107],[517116.4291682031,5276260.328797342],[517116.3540545731,5276260.328576597],[517110.59992598876,5276260.456150854],[517110.5800692339,5276259.544746875],[517110.5599512653,5276258.722253901],[517105.84245490126,5276258.83065043],[517105.5269449322,5276258.840837764],[517105.5596709144,5276260.485801613],[517097.36415416386,5276260.672903061],[517097.4106327723,5276262.751352106],[517094.3007014358,5276262.820021387],[517094.44703192986,5276269.266554164],[517093.38032216474,5276269.296765335],[517093.5186854602,5276275.898870366],[517093.72903568053,5276275.888373753],[517093.8144185443,5276280.067477592],[517090.1410809719,5276280.15672345],[517090.2407389143,5276284.591490481],[517102.6578513906,5276284.327862457],[517102.5853110656,5276280.893432232],[517100.72984778613,5276280.943553906],[517100.6765771185,5276278.6205774555],[517100.63078511204,5276276.308736943],[517100.9613168107,5276276.298593455],[517100.80882032344,5276269.396369477],[517099.84726946254,5276269.4268882265],[517099.8413243492,5276268.893400149],[517098.39153553406,5276268.922485707],[517098.37824207183,5276268.333406205],[517099.89563320804,5276268.304519119],[517106.03286539036,5276268.166945534],[517105.9863572737,5276266.099610271],[517107.87183811486,5276266.0606923895],[517110.34327002993,5276266.001268536],[517110.38941744785,5276268.190856464],[517116.9247844338,5276268.043350028],[517116.87818219565,5276266.0093562985],[517119.09419548017,5276265.960299484],[517121.2350952455,5276265.911022707],[517121.28169596446,5276267.94501648],[517127.65932514274,5276267.797058391],[517127.61942093424,5276266.04093354],[517129.72276397963,5276265.991549437],[517131.93877740443,5276265.942497513],[517131.9847205577,5276268.198768888],[517138.87312181346,5276268.052325533],[517138.86652618414,5276267.741114915],[517140.7895635389,5276267.702318208],[517143.31354193174,5276267.6541769635],[517143.3669920102,5276269.910470553],[517146.76238433504,5276269.831553913],[517146.6040010445,5276262.395840545],[517143.68185280694,5276262.465036295],[517143.6418225226,5276260.753366837],[517138.8191679673,5276260.861427125],[517138.8127358465,5276260.494647133],[517132.26984834264,5276260.64210694],[517132.22325138265,5276258.608113093],[517127.23534527945,5276258.715696891],[517127.2750862642,5276260.527391098],[517121.71625300904,5276260.655528674],[517121.6696850367,5276258.610421046],[517119.5287825823,5276258.6596976705]]]},"properties":{"ID_SOURCE":"w145340387","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1922}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516737.28923768434,5276568.984380702],[516728.8021678025,5276568.848855382],[516728.8238767993,5276561.291416276],[516731.03948633175,5276561.342236997],[516734.1563487923,5276561.41787614],[516734.0837938576,5276560.528549838],[516737.3138324016,5276560.42669231],[516737.28923768434,5276568.984380702]]]},"properties":{"ID_SOURCE":"w145340394","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1923}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.4609051296,5276170.539146926],[516656.5151910728,5276167.316252298],[516656.5693817131,5276164.126699312],[516656.64272719366,5276159.49238568],[516662.9746603319,5276159.5994087495],[516662.79285805457,5276170.635055953],[516659.73578214174,5276170.592969052],[516656.4609051296,5276170.539146926]]]},"properties":{"ID_SOURCE":"w145340401","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1924}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.3148455045,5276546.247690347],[516646.42158587504,5276542.450507434],[516651.1289310974,5276553.689076037],[516640.23997561546,5276558.225795059],[516638.5017615793,5276554.075317246],[516640.27651291183,5276553.324637939],[516639.0903319225,5276550.498299969],[516637.3148455045,5276546.247690347]]]},"properties":{"ID_SOURCE":"w145340409","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1925}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516989.3905898614,5276146.2720515635],[516986.9577274637,5276148.543319115],[516984.64537511393,5276150.70379942],[516983.61915087374,5276149.722777767],[516978.16778319434,5276143.872051493],[516977.60594231787,5276143.348057285],[516982.35148166993,5276138.80516501],[516989.3905898614,5276146.2720515635]]]},"properties":{"ID_SOURCE":"w145340410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1926}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.2304757219,5276104.453664931],[517022.7714930366,5276110.471398941],[517021.60418129235,5276111.501586479],[517020.5121803587,5276112.465310521],[517021.33520338085,5276113.579112401],[517019.07621713716,5276115.4618858155],[517012.7866420573,5276108.552851367],[517017.2304757219,5276104.453664931]]]},"properties":{"ID_SOURCE":"w145340420","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1927}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.10789369897,5276229.618760244],[517180.6144075908,5276229.743191536],[517180.68525971565,5276231.188216824],[517185.6424563575,5276231.313981463],[517185.47255250544,5276237.98186308],[517176.1587540177,5276237.843249116],[517176.10789369897,5276229.618760244]]]},"properties":{"ID_SOURCE":"w145340422","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1928}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.22741933283,5276585.004929495],[517241.15734584,5276584.791323317],[517241.08684278186,5276583.235157635],[517250.92815868335,5276582.597462598],[517251.4315376739,5276590.15645906],[517244.0617935659,5276590.645875364],[517238.5852016031,5276591.007536846],[517238.22741933283,5276585.004929495]]]},"properties":{"ID_SOURCE":"w145340425","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1929}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.3783753412,5276156.468280295],[517242.20892421016,5276153.461085539],[517250.0380015535,5276147.705002463],[517252.76106359,5276151.469589962],[517256.3967712376,5276156.503875327],[517249.62259938294,5276161.151676908],[517245.5074034312,5276155.693645137],[517244.3783753412,5276156.468280295]]]},"properties":{"ID_SOURCE":"w145340431","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1930}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.7946397715,5276171.213987815],[516670.9564024517,5276171.15854472],[516671.0134957539,5276166.957629282],[516673.7776575393,5276166.987769591],[516673.75840305723,5276168.465871847],[516674.8324810868,5276168.491174663],[516674.7946397715,5276171.213987815]]]},"properties":{"ID_SOURCE":"w145340432","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1931}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517009.42587351566,5276153.33232682],[517015.26666230743,5276159.573209172],[517010.37055960734,5276164.226774787],[517003.40661502886,5276156.760081832],[517005.4405597949,5276154.765505598],[517006.86385041283,5276156.103337493],[517007.7907178029,5276155.094672805],[517009.42587351566,5276153.33232682]]]},"properties":{"ID_SOURCE":"w145340433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1932}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516449.02716880164,5276644.849449745],[516449.9243914492,5276646.296800355],[516446.61396191345,5276648.287965118],[516440.6322565662,5276638.71305967],[516452.746741257,5276630.967492996],[516457.98111680715,5276639.2066221945],[516451.75096850976,5276643.13447836],[516449.02716880164,5276644.849449745]]]},"properties":{"ID_SOURCE":"w145340437","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1933}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516902.00847877923,5276179.915423455],[516902.08520602505,5276179.359947726],[516904.26385396696,5276179.255130748],[516904.33735583565,5276179.811042461],[516904.2580479067,5276181.255628094],[516902.07972323184,5276181.249306332],[516902.00847877923,5276179.915423455]]]},"properties":{"ID_SOURCE":"w145340443","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1934}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.4484841748,5276239.444541673],[517036.4449082128,5276240.667067926],[517034.74733448087,5276240.662102672],[517033.36523905344,5276240.658060529],[517033.3684893389,5276239.546673024],[517033.22118677676,5276238.545984924],[517036.45108487236,5276238.555431668],[517036.4484841748,5276239.444541673]]]},"properties":{"ID_SOURCE":"w145340448","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1935}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516469.43851244403,5276598.228459754],[516468.390754303,5276596.891820274],[516466.1255344864,5276598.452484897],[516462.44549766544,5276600.987180204],[516457.0596187109,5276593.192178321],[516465.71541564056,5276586.7705422],[516472.5242790568,5276596.014393047],[516469.43851244403,5276598.228459754]]]},"properties":{"ID_SOURCE":"w145340450","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1936}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.11479224736,5276234.943679209],[516945.27621770423,5276233.677156378],[516946.6807842538,5276233.70347093],[516948.1229077757,5276233.729895107],[516948.11935036053,5276234.952421361],[516947.4433247865,5276234.950454241],[516945.41557140806,5276234.833414604],[516945.11479224736,5276234.943679209]]]},"properties":{"ID_SOURCE":"w145340453","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1937}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516621.9299621588,5276591.77104321],[516622.3780804312,5276592.661440021],[516618.6929660211,5276594.318018653],[516614.43995465164,5276584.414448492],[516625.570111478,5276579.556064796],[516629.52584367,5276588.347396985],[516625.59251457104,5276590.125516184],[516621.9299621588,5276591.77104321]]]},"properties":{"ID_SOURCE":"w145340467","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1938}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516370.72102513135,5276633.181406043],[516369.6732507774,5276631.844784289],[516367.4748256748,5276633.705752115],[516361.69266892783,5276638.601878852],[516356.07699429436,5276632.362280622],[516366.7686823321,5276623.056583985],[516373.582346478,5276630.6332370285],[516370.72102513135,5276633.181406043]]]},"properties":{"ID_SOURCE":"w145340468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1939}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516322.8110251639,5276683.282069103],[516320.5110425571,5276689.232711249],[516318.04464360344,5276695.605218914],[516308.6670381053,5276691.689059537],[516314.5678098391,5276676.590587439],[516325.44697643135,5276680.73324478],[516324.1614141939,5276683.841552836],[516322.8110251639,5276683.282069103]]]},"properties":{"ID_SOURCE":"w145340470","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1940}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516647.0248967697,5276441.748543914],[516648.44207499037,5276453.111072135],[516636.6228082623,5276454.577683124],[516635.46256034327,5276445.294204096],[516638.53572096926,5276444.913994131],[516641.0378460404,5276444.598837925],[516640.77338390547,5276442.51976993],[516647.0248967697,5276441.748543914]]]},"properties":{"ID_SOURCE":"w145340476","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1941}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.38060234755,5276529.060900982],[516411.26403018396,5276532.269531371],[516409.0207477234,5276528.706740211],[516408.79635669896,5276528.372688906],[516412.55875493673,5276525.938217702],[516413.83813393896,5276525.052705867],[516416.38060234755,5276529.060900982]]]},"properties":{"ID_SOURCE":"w145340479","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1942}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517085.797206348,5276339.826007755],[517085.7048137286,5276345.716142109],[517079.6958114312,5276345.69851712],[517079.6334098588,5276341.363884887],[517080.9857623297,5276341.256711185],[517081.0651122526,5276339.812127493],[517085.797206348,5276339.826007755]]]},"properties":{"ID_SOURCE":"w145340489","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1943}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517192.86877385166,5276302.464730587],[517187.97884610214,5276302.4725256525],[517176.86952180817,5276302.473093067],[517164.1752787014,5276302.480124605],[517160.8702700485,5276302.4814995015],[517160.89744987444,5276293.256982466],[517166.75628006837,5276293.2742483085],[517166.75922828045,5276292.273999484],[517193.04885542335,5276292.351546981],[517192.86877385166,5276302.464730587]]]},"properties":{"ID_SOURCE":"w145340490","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1944}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.6411216746,5276083.422964819],[516847.14434509614,5276086.399153117],[516845.2061180089,5276081.281123165],[516848.81521911523,5276080.069025887],[516848.5179701768,5276078.956769501],[516853.4053313475,5276077.303814135],[516855.6411216746,5276083.422964819]]]},"properties":{"ID_SOURCE":"w145340493","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1945}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517165.4230368867,5276082.993995874],[517157.2563537128,5276075.8569940375],[517162.98514710827,5276069.094351078],[517166.3565277291,5276072.105057747],[517165.2258565024,5276073.435401758],[517167.2338236632,5276075.186212679],[517169.94604533445,5276077.561482526],[517165.4230368867,5276082.993995874]]]},"properties":{"ID_SOURCE":"w145340496","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1946}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516599.9990412304,5276644.055299111],[516595.9727778566,5276646.833430877],[516593.7526714116,5276648.371946675],[516594.6501743543,5276649.7081808485],[516591.9405653751,5276651.70097537],[516585.73219303205,5276642.68097242],[516594.9128709823,5276636.594441548],[516599.9990412304,5276644.055299111]]]},"properties":{"ID_SOURCE":"w145340497","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1947}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516544.49005647266,5276565.877255409],[516544.9372413556,5276567.101062633],[516541.3281897649,5276568.424487083],[516537.90218211926,5276558.189903903],[516548.4279717261,5276554.552193621],[516551.5573147579,5276563.452263346],[516546.96359619836,5276565.028507214],[516544.49005647266,5276565.877255409]]]},"properties":{"ID_SOURCE":"w145340504","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1948}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516893.52116676624,5276179.668520778],[516893.5227785363,5276179.11282707],[516894.7095903427,5276179.116269494],[516896.0015626882,5276179.120017219],[516896.0744205412,5276179.8982063085],[516895.92064482084,5276181.120296669],[516893.36674687365,5276181.112888685],[516893.52116676624,5276179.668520778]]]},"properties":{"ID_SOURCE":"w145340519","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1949}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.621782191,5276118.423359291],[517009.8396076474,5276114.545786709],[517016.42899196286,5276121.677973303],[517014.0948950421,5276123.560529213],[517012.9714104429,5276122.445850707],[517011.81919082504,5276123.453856356],[517010.9381010668,5276124.218146787],[517005.621782191,5276118.423359291]]]},"properties":{"ID_SOURCE":"w145340522","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1950}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.784861146,5276360.907147859],[516674.3981628508,5276364.795929754],[516676.0503145649,5276364.911799802],[516676.04745055793,5276365.912048787],[516670.9394990607,5276366.008565147],[516669.97290106723,5276362.560468145],[516674.784861146,5276360.907147859]]]},"properties":{"ID_SOURCE":"w145340523","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1951}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.7767123757,5276627.988929125],[516383.1246074021,5276629.437537065],[516380.564654364,5276631.653129974],[516372.7773966973,5276623.073474082],[516383.24348870275,5276613.878313064],[516389.68284872785,5276621.009373074],[516384.954217694,5276625.186033792],[516381.7767123757,5276627.988929125]]]},"properties":{"ID_SOURCE":"w145340524","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1952}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516639.94080895506,5276623.497299625],[516640.98788788903,5276625.056247772],[516637.7518542983,5276627.26979626],[516632.2936640596,5276618.585306245],[516643.8075746186,5276610.838420515],[516648.4443221011,5276617.853476952],[516641.70172446046,5276622.324250274],[516639.94080895506,5276623.497299625]]]},"properties":{"ID_SOURCE":"w145340527","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1953}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.81973907386,5276440.717592876],[516578.417149331,5276441.9418300325],[516574.80611490225,5276443.932066418],[516569.3523999701,5276433.580556692],[516579.808701351,5276428.053330167],[516584.51540411345,5276436.957906413],[516580.27983321535,5276439.335349909],[516577.81973907386,5276440.717592876]]]},"properties":{"ID_SOURCE":"w145340528","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1954}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.9169899081,5276508.031454986],[516605.63048986107,5276507.6918074],[516606.77812675084,5276513.507686415],[516595.90351498465,5276515.63279754],[516593.6527143329,5276504.2012223415],[516602.8138767127,5276502.40464103],[516603.45057488646,5276505.651735554],[516603.9169899081,5276508.031454986]]]},"properties":{"ID_SOURCE":"w145340530","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1955}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.66246391216,5276557.847549606],[516582.25089449476,5276559.583004556],[516578.94290138874,5276560.684983556],[516575.1740434486,5276549.538056626],[516588.6316921884,5276545.019646379],[516591.8120678301,5276554.4422399],[516585.03061028343,5276556.723515508],[516581.66246391216,5276557.847549606]]]},"properties":{"ID_SOURCE":"w145340532","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1956}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516586.808469918,5276467.850157522],[516596.30816161464,5276465.887820409],[516597.18243530806,5276470.113620383],[516597.85672740196,5276473.349707263],[516599.45757087204,5276473.009736765],[516600.1318613543,5276476.245823928],[516589.0238959238,5276478.525878567],[516586.808469918,5276467.850157522]]]},"properties":{"ID_SOURCE":"w145340537","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1957}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517072.11273681733,5276201.050178222],[517073.1343577337,5276201.030944892],[517073.152363656,5276202.575839484],[517073.16364001244,5276203.853979074],[517071.8115815715,5276203.850015905],[517071.0604379927,5276203.847814279],[517071.0685815919,5276201.069345686],[517072.11273681733,5276201.050178222]]]},"properties":{"ID_SOURCE":"w145340538","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1958}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516902.26417144487,5276143.573492026],[516904.2977633999,5276141.690019322],[516904.3744913377,5276141.134543652],[516906.1018174619,5276141.250696784],[516906.08955903805,5276145.473968713],[516904.21297161677,5276145.023963365],[516902.26417144487,5276143.573492026]]]},"properties":{"ID_SOURCE":"w145340543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1959}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.18131284905,5276702.787586663],[516462.38429603167,5276702.346428362],[516465.5919392864,5276710.13527778],[516461.6065129049,5276711.791106389],[516459.965136244,5276707.89657639],[516462.89748382807,5276706.793468139],[516461.18131284905,5276702.787586663]]]},"properties":{"ID_SOURCE":"w145340545","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1960}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.35219286405,5276371.319063318],[517250.2082228702,5276369.206981718],[517250.0616193538,5276367.984010293],[517250.66482164396,5276367.2078187],[517254.0392759008,5276369.10719035],[517251.92658622627,5276372.32398446],[517250.35219286405,5276371.319063318]]]},"properties":{"ID_SOURCE":"w145340546","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1961}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.767048109,5276496.827697093],[516643.8213333498,5276495.642143292],[516645.24028268276,5276506.382294427],[516634.59303786984,5276507.7855751775],[516634.1666031033,5276504.561305642],[516635.7595481711,5276504.354690229],[516635.164042102,5276499.840717091],[516634.767048109,5276496.827697093]]]},"properties":{"ID_SOURCE":"w145340550","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1962}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516511.90918057266,5276639.3592777075],[516514.9989104654,5276643.6913741],[516516.9216065666,5276646.375294232],[516518.05075795477,5276645.489379101],[516520.0704942264,5276648.38474101],[516510.58821910666,5276654.915093283],[516503.48031075724,5276645.225790053],[516511.90918057266,5276639.3592777075]]]},"properties":{"ID_SOURCE":"w145340552","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1963}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516495.5454952477,5276582.742790266],[516496.21612850693,5276584.634064899],[516493.1338091251,5276585.625592071],[516489.10936832166,5276574.500225283],[516499.4097687763,5276570.861788465],[516502.83867076685,5276580.096099726],[516498.0341999059,5276581.838494438],[516495.5454952477,5276582.742790266]]]},"properties":{"ID_SOURCE":"w145340556","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1964}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.23779169226,5276074.14962475],[516483.46037286695,5276073.144337894],[516484.21530751756,5276071.812798982],[516484.95028090815,5276072.226095653],[516486.8979953117,5276068.797394286],[516487.9479845124,5276069.378292434],[516485.8265905757,5276073.128806765],[516485.23779169226,5276074.14962475]]]},"properties":{"ID_SOURCE":"w145340559","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1965}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516888.3047688973,5276217.107465006],[516888.3756937034,5276218.552486533],[516887.1719336831,5276219.215834311],[516888.2212760396,5276219.996854659],[516888.29381211754,5276220.88618245],[516886.19126084563,5276220.657806898],[516886.20221626206,5276216.879089453],[516886.2157494133,5276212.211262058],[516887.8682627871,5276212.216053325],[516887.1106756437,5276214.436650365],[516888.30960277066,5276215.440383791],[516888.3047688973,5276217.107465006]]]},"properties":{"ID_SOURCE":"w145340565","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1966}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516504.7908608275,5276633.33755434],[516505.76948024565,5276632.562349935],[516507.5645308836,5276635.234791133],[516499.28650669503,5276640.879457674],[516492.47931235534,5276631.079880542],[516499.5537120139,5276626.098632408],[516502.9653553656,5276630.809509339],[516504.7908608275,5276633.33755434]]]},"properties":{"ID_SOURCE":"w145340566","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1967}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.0620686216,5276530.281592197],[516644.6752617223,5276527.99735327],[516647.25102258334,5276538.696355962],[516636.05191398197,5276541.365049068],[516635.29480800836,5276538.206518514],[516636.87319815846,5276537.833152296],[516636.2125923293,5276535.07500028],[516635.0620686216,5276530.281592197]]]},"properties":{"ID_SOURCE":"w145340568","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1968}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.1568574699,5276119.858054962],[516770.4361549446,5276114.829588012],[516772.44381893915,5276114.112961226],[516771.92971430375,5276112.655551376],[516773.06511089916,5276112.258718143],[516775.315226616,5276118.644614377],[516772.1568574699,5276119.858054962]]]},"properties":{"ID_SOURCE":"w145340574","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1969}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.9445336778,5276653.68460539],[516545.7721501352,5276651.280656264],[516543.58422422805,5276646.784395544],[516552.53447092505,5276642.47537906],[516557.61247429444,5276652.825809069],[516546.7820009719,5276658.018592858],[516545.0639784064,5276654.679519835],[516546.9445336778,5276653.68460539]]]},"properties":{"ID_SOURCE":"w145340577","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1970}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516378.4251916238,5276511.060544665],[516391.6696423066,5276502.206632659],[516395.33409937896,5276507.885071622],[516395.7077741339,5276508.552961716],[516382.3888465947,5276517.184375714],[516382.08934329805,5276516.850114159],[516378.4251916238,5276511.060544665]]]},"properties":{"ID_SOURCE":"w145340578","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1971}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.90423365426,5276706.872470948],[516428.75231116137,5276709.76449622],[516417.96540999564,5276712.901556956],[516414.67716130393,5276701.711631405],[516424.0057958772,5276698.992782522],[516425.4490659283,5276703.898114885],[516426.4459500797,5276707.29068827],[516427.90423365426,5276706.872470948]]]},"properties":{"ID_SOURCE":"w145340580","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1972}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516398.63051615073,5276617.589230991],[516399.45358546363,5276618.7029457595],[516396.89424733387,5276620.6962538315],[516389.93319861655,5276612.1189014185],[516401.0756331288,5276602.814536187],[516407.28840398724,5276610.389536268],[516402.41738884454,5276614.443528021],[516398.63051615073,5276617.589230991]]]},"properties":{"ID_SOURCE":"w145340581","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1973}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516712.2172260661,5276137.1458017565],[516710.51089434116,5276132.328559187],[516707.44091584464,5276123.684201528],[516714.17037604237,5276121.391803953],[516715.32490508875,5276124.79599037],[516716.51663956384,5276128.322537435],[516714.6444501427,5276128.9506605035],[516712.9752637923,5276129.512682879],[516715.22476865764,5276136.13194728],[516712.2172260661,5276137.1458017565]]]},"properties":{"ID_SOURCE":"w145340582","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1974}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.41007720213,5276390.0626334],[516578.4108721772,5276391.373254841],[516577.38366357936,5276382.812575481],[516581.629170566,5276382.235620999],[516585.3487041668,5276381.723855557],[516585.8656264011,5276384.837238713],[516589.7130391004,5276384.259156433],[516590.41007720213,5276390.0626334]]]},"properties":{"ID_SOURCE":"w145340585","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1975}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516626.24756656075,5276421.183918006],[516626.99455716833,5276422.6308665555],[516623.98533774086,5276424.289371625],[516618.5323255602,5276413.715538436],[516628.4613410312,5276408.742592888],[516633.16830286797,5276417.536069537],[516629.06853333185,5276419.691586121],[516626.24756656075,5276421.183918006]]]},"properties":{"ID_SOURCE":"w145340586","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1976}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.11756001617,5276193.169595673],[516840.6758714676,5276193.241234174],[516848.7654767111,5276193.342427871],[516855.9161828299,5276193.429801572],[516859.5065587247,5276193.473535201],[516863.5175435104,5276193.529602795],[516868.91811399756,5276193.600811544],[516873.2744320816,5276193.724569846],[516880.0420858773,5276193.799749511],[516885.9684573583,5276193.872497952],[516885.8862542609,5276196.317332554],[516870.96900753275,5276196.107394536],[516835.1856071729,5276195.614865164],[516835.11756001617,5276193.169595673]]]},"properties":{"ID_SOURCE":"w145340587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1977}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516462.15769500594,5276676.227952937],[516458.6767520253,5276672.117058231],[516457.06729425857,5276670.212020538],[516455.7122039351,5276671.319588448],[516452.2688390424,5276667.197689855],[516461.2280966282,5276659.665507059],[516469.6861213402,5276670.0254151365],[516462.15769500594,5276676.227952937]]]},"properties":{"ID_SOURCE":"w145340592","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1978}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516677.5002887559,5276149.705097958],[516680.14586579526,5276143.93341201],[516680.44568969874,5276144.156549947],[516687.797418264,5276147.511798322],[516686.9658987119,5276149.343220211],[516686.4367501761,5276150.508670565],[516685.22726859554,5276153.172557282],[516677.5002887559,5276149.705097958]]]},"properties":{"ID_SOURCE":"w145340596","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1979}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.5128061236,5276110.9798362525],[516781.49778041063,5276110.649255088],[516781.94456705544,5276112.006446141],[516783.92199508904,5276111.356419976],[516785.8371545224,5276116.674414445],[516782.8293332421,5276117.77714347],[516780.5128061236,5276110.9798362525]]]},"properties":{"ID_SOURCE":"w145340597","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1980}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.53803362144,5276140.862150645],[517025.728037038,5276139.776460164],[517026.7071985208,5276138.8679770585],[517025.60644878336,5276137.686678714],[517027.93377960473,5276135.548486336],[517034.6205075575,5276142.76989032],[517030.1240125398,5276146.902251577],[517024.53803362144,5276140.862150645]]]},"properties":{"ID_SOURCE":"w145340600","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1981}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516421.1939280671,5276606.761119545],[516421.71781169414,5276607.429435014],[516419.00824275735,5276609.422309774],[516412.4227589521,5276600.845989404],[516423.26167947304,5276592.65220814],[516429.3232734794,5276600.560224479],[516424.302643282,5276604.391496499],[516421.1939280671,5276606.761119545]]]},"properties":{"ID_SOURCE":"w145340601","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1982}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.79945962655,5276238.340730637],[516580.6568251824,5276235.67297286],[516582.91055957985,5276235.5682495665],[516582.98029413534,5276237.457822257],[516582.0038133147,5276237.455042103],[516582.07671230583,5276238.233227239],[516580.79945962655,5276238.340730637]]]},"properties":{"ID_SOURCE":"w145340608","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1983}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.707091166,5276514.283912312],[517145.73062654276,5276510.579419049],[517142.3130507869,5276508.035371946],[517142.6908929682,5276507.258505815],[517140.2932463963,5276505.250933063],[517145.1944041167,5276498.819253892],[517155.9857694905,5276507.186515328],[517150.707091166,5276514.283912312]]]},"properties":{"ID_SOURCE":"w145340614","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1984}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.98601893726,5276119.950240609],[516755.06880009937,5276119.564366495],[516755.5307431614,5276120.877143253],[516757.41796273424,5276120.24907654],[516759.36996549525,5276125.8227894725],[516756.4372693467,5276126.925748256],[516753.98601893726,5276119.950240609]]]},"properties":{"ID_SOURCE":"w145340618","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1985}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516786.44589287025,5276108.751911492],[516788.8449769497,5276115.571686974],[516785.8371545224,5276116.674414445],[516783.92199508904,5276111.356419976],[516785.77907854127,5276110.761617485],[516785.22783551266,5276109.159617877],[516786.44589287025,5276108.751911492]]]},"properties":{"ID_SOURCE":"w145340622","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1986}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.95172140555,5276561.945929143],[516655.6762102364,5276557.858704793],[516660.6057941624,5276567.541960992],[516650.2263630428,5276572.513563939],[516648.58221276436,5276569.619230738],[516650.3119584591,5276568.846197882],[516648.78117067565,5276565.707681375],[516646.95172140555,5276561.945929143]]]},"properties":{"ID_SOURCE":"w145340628","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1987}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.3181013553,5276684.2172127785],[517037.31062291126,5276686.773405833],[517032.1278369931,5276686.8693850655],[517032.15709154936,5276676.866890558],[517039.8935671247,5276676.778382975],[517040.0219951673,5276684.225123962],[517037.3181013553,5276684.2172127785]]]},"properties":{"ID_SOURCE":"w145340629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1988}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.06602898974,5276125.906039263],[517043.2285759874,5276132.570221365],[517038.25002914394,5276137.145724565],[517032.79883419385,5276131.25049168],[517034.0114732069,5276130.131527175],[517034.99814913067,5276129.223067437],[517034.28679633734,5276128.454123179],[517037.06602898974,5276125.906039263]]]},"properties":{"ID_SOURCE":"w145340631","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1989}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516610.4459319329,5276431.030261574],[516611.2674025821,5276432.699699924],[516607.6573018895,5276434.356499586],[516602.50344844523,5276424.228093191],[516613.710914045,5276418.703068765],[516618.11807832675,5276427.273398719],[516613.7479517816,5276429.417040654],[516610.4459319329,5276431.030261574]]]},"properties":{"ID_SOURCE":"w145340634","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1990}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.5511308796,5276096.03868152],[516642.9090684559,5276084.144905878],[516646.1396868999,5276083.931858513],[516646.0690177223,5276082.375701664],[516647.4249159009,5276081.045901218],[516650.9563176823,5276080.722576563],[516652.7559225661,5276081.839117774],[516652.82658996567,5276083.395274705],[516656.4331065415,5276083.072168132],[516656.7259423284,5276085.740356817],[516660.0313584137,5276085.638670695],[516660.0358088613,5276084.082728514],[516661.76728938636,5276082.754005676],[516664.69776368374,5276082.428970381],[516666.49577536643,5276084.101209477],[516666.5680291326,5276085.101672959],[516669.9488797384,5276084.889068674],[516670.244571995,5276086.557009514],[516683.6934939802,5276085.4841200765],[516683.54740062443,5276084.038886311],[516698.7994313817,5276082.860057046],[516713.1194628133,5276092.347998964],[516707.40906920965,5276092.887314506],[516707.19137282483,5276090.21933865],[516698.4005924749,5276090.9721073685],[516698.75641647953,5276097.86378528],[516693.12114538904,5276098.403330171],[516692.82673436945,5276096.290833208],[516685.16301936435,5276096.935712418],[516685.52554452856,5276101.493476219],[516647.28341170575,5276104.273680792],[516646.924986146,5276098.2711159345],[516643.6189423409,5276098.59508694],[516643.5511308796,5276096.03868152]]]},"properties":{"ID_SOURCE":"w145340635","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1991}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.77629125695,5276171.289893432],[516685.1227927953,5276171.2880213335],[516685.0874343887,5276167.898160603],[516690.3456621367,5276167.846542259],[516690.38092193793,5276171.269744647],[516690.2831772004,5276171.302806448],[516685.77629125695,5276171.289893432]]]},"properties":{"ID_SOURCE":"w145340637","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1992}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.19418965396,5276363.691821756],[516731.19514747756,5276363.358405428],[516730.21900696337,5276363.2444616],[516730.30178144167,5276360.577346772],[516731.9539333214,5276360.693232677],[516731.9453125097,5276363.6939795995],[516731.19418965396,5276363.691821756]]]},"properties":{"ID_SOURCE":"w145340638","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1993}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.95738518384,5276135.399521269],[516990.4914795466,5276129.382031658],[516990.11687554425,5276129.047519895],[516994.7863480456,5276124.837834885],[517001.52434747043,5276132.526136721],[516999.17468524666,5276134.597590615],[516997.0057552777,5276136.51397731],[516995.95738518384,5276135.399521269]]]},"properties":{"ID_SOURCE":"w145340639","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1994}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.1587732574,5276594.188236292],[516604.18672958843,5276597.83311204],[516604.78380104783,5276599.168491069],[516601.70020324615,5276600.6045160955],[516597.14926422323,5276589.810991536],[516607.978641518,5276585.0628568325],[516609.91940955404,5276589.302815153],[516612.1587732574,5276594.188236292]]]},"properties":{"ID_SOURCE":"w145340643","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1995}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.4125223566,5276615.834214726],[517291.31449095363,5276615.614613164],[517291.2033911241,5276612.557938975],[517291.0364936441,5276608.056281839],[517300.051242635,5276607.5273556635],[517300.69519868016,5276618.309828695],[517290.4780621569,5276619.057463333],[517290.4125223566,5276615.834214726]]]},"properties":{"ID_SOURCE":"w145340645","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1996}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517074.79789526836,5276555.960548177],[517081.81081693637,5276546.534234166],[517088.5563624077,5276551.444173118],[517086.0151493906,5276554.848707687],[517083.4286778503,5276558.319794461],[517081.5551709339,5276556.8694820795],[517079.6696031221,5276559.531306113],[517074.79789526836,5276555.960548177]]]},"properties":{"ID_SOURCE":"w145340646","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1997}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517180.77885511704,5276097.598569968],[517171.63799912366,5276089.680696335],[517177.3667958312,5276082.918067365],[517182.7390338271,5276087.535096286],[517184.1101784657,5276088.717222082],[517184.863960156,5276087.830328471],[517187.26176451077,5276089.837917871],[517180.77885511704,5276097.598569968]]]},"properties":{"ID_SOURCE":"w145340648","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1998}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516665.35302038875,5276588.449811899],[516674.15386499744,5276583.918274801],[516679.3068139802,5276594.269025407],[516668.7017683238,5276599.351089029],[516666.90932475316,5276595.789487632],[516668.6397013743,5276594.794182568],[516667.3250298434,5276592.256434069],[516665.35302038875,5276588.449811899]]]},"properties":{"ID_SOURCE":"w145340650","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1999}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.4914795466,5276129.382031658],[516995.95738518384,5276135.399521269],[516994.66199815227,5276136.562708091],[516993.6226518662,5276137.504362862],[516994.37088550953,5276138.506803078],[516992.4127025693,5276140.279324806],[516985.97192019207,5276133.7032969715],[516990.4914795466,5276129.382031658]]]},"properties":{"ID_SOURCE":"w145340668","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2000}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516378.9430712898,5276674.103937554],[516371.9361304754,5276681.864014206],[516372.98483263387,5276682.867219994],[516370.8001350197,5276685.195012014],[516362.4089466636,5276677.725068364],[516371.60089482693,5276667.526048989],[516375.4367859004,5276670.971051103],[516378.9430712898,5276674.103937554]]]},"properties":{"ID_SOURCE":"w145340674","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2001}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.44848438265,5276545.287587381],[516611.323737317,5276544.617540836],[516609.5737059533,5276547.235446622],[516607.09951542615,5276550.94045705],[516598.8529516835,5276545.471100946],[516604.9628410731,5276536.375062266],[516614.40895237285,5276542.6258269185],[516612.44848438265,5276545.287587381]]]},"properties":{"ID_SOURCE":"w145340677","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2002}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516744.9386395603,5276311.862429544],[516745.50198671845,5276311.864049237],[516745.5054697351,5276310.652636686],[516748.3973510506,5276310.649838084],[516748.3165812212,5276312.616778243],[516745.01193117234,5276312.496136464],[516744.9386395603,5276311.862429544]]]},"properties":{"ID_SOURCE":"w145340678","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2003}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516587.93970311026,5276606.0111510465],[516588.61188657244,5276607.346742369],[516585.527980596,5276608.893914777],[516580.82648332237,5276598.211113891],[516590.9792144777,5276593.6833006255],[516592.8755280316,5276597.711961165],[516595.23479239433,5276602.697743179],[516587.93970311026,5276606.0111510465]]]},"properties":{"ID_SOURCE":"w145340679","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2004}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.8472771201,5276513.44331253],[516643.6467330414,5276512.056979207],[516645.3363294047,5276522.708992377],[516634.8912453084,5276524.3462436665],[516634.374806668,5276521.07726106],[516636.02045140124,5276520.826340377],[516635.5481903408,5276517.868675062],[516634.8472771201,5276513.44331253]]]},"properties":{"ID_SOURCE":"w145340680","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2005}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.95500866266,5276488.517840442],[516635.5074685124,5276484.793381957],[516635.0894006649,5276481.269059179],[516644.10580535734,5276480.2056511985],[516645.3603406367,5276490.656368965],[516634.66083882557,5276491.937246675],[516634.271958199,5276488.713084487],[516635.95500866266,5276488.517840442]]]},"properties":{"ID_SOURCE":"w145340682","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2006}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516482.9520393269,5276281.963159623],[516482.9479504375,5276283.407963546],[516479.4924235492,5276283.509324858],[516479.1448436231,5276273.616912339],[516491.0888245886,5276273.317299966],[516491.290563267,5276281.653345188],[516485.8442172016,5276281.860205736],[516482.9520393269,5276281.963159623]]]},"properties":{"ID_SOURCE":"w145340687","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2007}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517010.9381010668,5276124.218146787],[517011.7614488391,5276125.220808598],[517009.39614029496,5276127.50337807],[517007.16643058194,5276129.652976825],[517000.3533198008,5276121.964449243],[517004.94768991554,5276117.754553149],[517005.621782191,5276118.423359291],[517010.9381010668,5276124.218146787]]]},"properties":{"ID_SOURCE":"w145340693","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2008}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516512.08596099174,5276577.010399696],[516512.60700080806,5276578.67897266],[516509.59946987143,5276579.781842904],[516505.6507959553,5276568.434400026],[516517.38019291,5276564.133206938],[516520.8074941019,5276573.923222807],[516515.22872252564,5276575.896800256],[516512.08596099174,5276577.010399696]]]},"properties":{"ID_SOURCE":"w145340701","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2009}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517053.4785263166,5276179.90127443],[517053.3406623045,5276175.677562471],[517056.1202324226,5276175.574561743],[517060.46451580606,5276179.810593393],[517060.7568358448,5276182.589941981],[517056.2499579439,5276182.576742275],[517053.4785263166,5276179.90127443]]]},"properties":{"ID_SOURCE":"w145340704","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2010}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.9600066232,5276293.363491201],[516426.9571854595,5276294.363740092],[516421.4739240063,5276294.348277347],[516421.2658189354,5276288.235009904],[516423.9007373334,5276286.130786277],[516423.9755372062,5276286.2421368575],[516427.7315144427,5276286.141590057],[516431.86274465726,5276286.153244015],[516431.78919915087,5276285.597338278],[516436.29662345775,5276285.387777441],[516436.2906642983,5276287.499413966],[516436.3500954807,5276293.056564195],[516436.2630639608,5276297.279625326],[516432.3571810303,5276297.2686039945],[516432.28144076833,5276297.490669604],[516431.83201620897,5276297.044843024],[516431.914968276,5276294.266585785],[516431.7669368122,5276293.488190592],[516426.9600066232,5276293.363491201]]]},"properties":{"ID_SOURCE":"w145340708","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2011}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1336627775,5276657.691808532],[517200.4081818678,5276649.020762026],[517201.46003083343,5276648.912729059],[517205.51688148873,5276648.591294106],[517206.1633059086,5276658.595785208],[517201.20516026573,5276658.9145574225],[517201.1336627775,5276657.691808532]]]},"properties":{"ID_SOURCE":"w145340709","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2012}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9984406455,5276239.670006835],[516926.9268797258,5276238.447262269],[516928.48918438854,5276238.47403087],[516929.7885903656,5276238.500035701],[516929.77765462594,5276239.678084633],[516929.25185738684,5276239.676556299],[516927.29889621126,5276239.670880047],[516926.9984406455,5276239.670006835]]]},"properties":{"ID_SOURCE":"w145340710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2013}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.87743278395,5276586.696636637],[517015.7301783533,5276592.241505661],[517012.65718851046,5276590.00973252],[517011.67719546804,5276591.22940712],[517008.64956131426,5276588.8977428125],[517004.85749615886,5276585.985921202],[517010.0595237749,5276579.332727664],[517011.6259037933,5276580.5042704865],[517019.87743278395,5276586.696636637]]]},"properties":{"ID_SOURCE":"w145340713","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2014}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.66606141155,5276135.731348239],[516724.8848492956,5276130.836088613],[516726.65194165247,5276130.185439086],[516726.092981248,5276128.65010673],[516727.43894981075,5276128.164957601],[516729.67386266513,5276134.62859023],[516726.66606141155,5276135.731348239]]]},"properties":{"ID_SOURCE":"w145340718","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2015}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516606.53989781404,5276523.298415293],[516605.8033739656,5276523.451910734],[516606.3738633178,5276526.209802204],[516607.2479618423,5276530.491173529],[516598.1017058145,5276532.343360063],[516595.64231768524,5276520.311034842],[516605.517605199,5276518.305327457],[516606.53989781404,5276523.298415293]]]},"properties":{"ID_SOURCE":"w145340719","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2016}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.9110310835,5276117.911203072],[516762.30234291696,5276124.830970901],[516759.36996549525,5276125.8227894725],[516757.41796273424,5276120.24907654],[516759.3879695881,5276119.565678823],[516758.9260272876,5276118.25290176],[516759.9110310835,5276117.911203072]]]},"properties":{"ID_SOURCE":"w145340720","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2017}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.52273153834,5276607.654278189],[516572.3024503038,5276611.079058287],[516572.9740041878,5276612.63692545],[516569.13838228094,5276614.404246755],[516564.21248032857,5276603.387401706],[516575.41766787303,5276598.529135834],[516577.2537450183,5276602.613189684],[516579.52273153834,5276607.654278189]]]},"properties":{"ID_SOURCE":"w145340725","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2018}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516507.2013660457,5276524.872031629],[516510.55769394356,5276533.217023379],[516497.2477809634,5276538.625149876],[516492.8455607688,5276528.276689207],[516499.4634410816,5276525.405802542],[516500.35846566875,5276527.631132276],[516503.3964121917,5276526.406089745],[516507.2013660457,5276524.872031629]]]},"properties":{"ID_SOURCE":"w145340730","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2019}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.25894905085,5276691.800742965],[516547.12938696094,5276694.362271249],[516537.19587691745,5276701.113577762],[516531.13768947317,5276692.0940589635],[516539.3408798961,5276686.33808519],[516542.205650476,5276690.525076018],[516543.7539465021,5276692.796724836],[516545.25894905085,5276691.800742965]]]},"properties":{"ID_SOURCE":"w145340731","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2020}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.33696618566,5276216.530062196],[516957.38910641416,5276224.42113199],[516955.58636827715,5276224.415883651],[516955.6002806121,5276219.636917478],[516953.87330216554,5276219.409610847],[516953.9571511145,5276216.409083314],[516957.33696618566,5276216.530062196]]]},"properties":{"ID_SOURCE":"w145340736","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2021}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.17619177676,5276664.145831394],[516433.20417321083,5276662.587132395],[516430.24717574933,5276664.434822155],[516425.0780443309,5276667.676634144],[516419.39519100473,5276658.658291768],[516431.88640317426,5276650.469185152],[516438.61574423517,5276661.268729025],[516434.17619177676,5276664.145831394]]]},"properties":{"ID_SOURCE":"w145340745","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2022}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516593.44312766456,5276488.12982429],[516602.9655119441,5276486.100878971],[516604.1959677301,5276491.850309523],[516605.4116207543,5276497.521900404],[516593.95023090445,5276499.956533404],[516593.0755478738,5276495.875214152],[516595.01457250724,5276495.469522175],[516593.44312766456,5276488.12982429]]]},"properties":{"ID_SOURCE":"w145340761","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2023}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516745.77984305884,5276129.006751267],[516743.92439213005,5276123.811195295],[516745.75154912646,5276123.171838187],[516745.2672930913,5276121.781200305],[516746.5380216279,5276121.3402951285],[516748.77230879257,5276128.015098654],[516745.77984305884,5276129.006751267]]]},"properties":{"ID_SOURCE":"w145340764","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2024}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516358.9090110873,5276693.719354116],[516360.33262889093,5276694.945890267],[516357.99741271965,5276697.38440394],[516349.3821496108,5276689.46929065],[516357.74443225376,5276680.490457033],[516361.3625717074,5276683.912610364],[516364.9357669719,5276687.290183801],[516358.9090110873,5276693.719354116]]]},"properties":{"ID_SOURCE":"w145340768","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2025}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.4780101886,5276590.482740645],[516482.45034261665,5276591.930308711],[516479.3655135281,5276593.810953705],[516473.08462493203,5276583.790610337],[516482.5644564276,5276578.149308077],[516487.72309929744,5276586.610528368],[516483.18601232814,5276589.420633496],[516481.4780101886,5276590.482740645]]]},"properties":{"ID_SOURCE":"w145340771","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2026}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516766.9063664702,5276114.597146554],[516768.06432898884,5276114.189263344],[516768.53378111025,5276115.502062747],[516770.4361549446,5276114.829588012],[516772.1568574699,5276119.858054962],[516769.2241558716,5276120.961007308],[516766.9063664702,5276114.597146554]]]},"properties":{"ID_SOURCE":"w145340775","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2027}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.8946269752,5276150.011772415],[517055.8344825122,5276144.899170682],[517054.86124027136,5276143.784923953],[517055.53857822495,5276143.34234858],[517056.7365148534,5276144.679532798],[517056.796333061,5276149.903273276],[517055.8946269752,5276150.011772415]]]},"properties":{"ID_SOURCE":"w145340776","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2028}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516678.300130347,5276132.703022092],[516683.01806694554,5276137.717817807],[516680.6824934411,5276140.156200781],[516676.93787267606,5276136.255590159],[516678.36888073257,5276134.926011889],[516677.2456526611,5276133.700259538],[516678.300130347,5276132.703022092]]]},"properties":{"ID_SOURCE":"w145340777","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2029}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.26666230743,5276159.573209172],[517009.42587351566,5276153.33232682],[517008.2276033374,5276152.106291072],[517010.374321322,5276150.078703964],[517013.048274708,5276147.56364305],[517020.3113789418,5276155.47578037],[517015.56582329323,5276160.018641876],[517015.26666230743,5276159.573209172]]]},"properties":{"ID_SOURCE":"w145340778","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2030}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516558.9441761684,5276501.45730691],[516562.3020241777,5276509.2466343045],[516551.5479702914,5276513.883928285],[516547.4437429604,5276504.425390849],[516551.7304091634,5276502.548197404],[516552.4764600002,5276504.328552963],[516554.82287623367,5276503.290509247],[516558.9441761684,5276501.45730691]]]},"properties":{"ID_SOURCE":"w145340781","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2031}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.9577909081,5276663.1745154485],[516524.0869399849,5276662.288601468],[516526.4061547434,5276665.518234641],[516517.6759289262,5276671.717290536],[516510.79400854855,5276661.8063395005],[516518.09402760776,5276656.714613711],[516521.22180230345,5276660.868997949],[516522.9577909081,5276663.1745154485]]]},"properties":{"ID_SOURCE":"w145340783","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2032}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517043.2285759874,5276132.570221365],[517037.06602898974,5276125.906039263],[517036.7742168642,5276125.51619682],[517039.3425111329,5276123.1786623895],[517041.5191666909,5276121.195630192],[517048.0324135952,5276128.661049143],[517043.43802069605,5276132.870911374],[517043.2285759874,5276132.570221365]]]},"properties":{"ID_SOURCE":"w145340789","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2033}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.3364870518,5276699.455163351],[516580.8186451935,5276698.570265338],[516584.903970909,5276696.136824478],[516589.01528162544,5276703.039198399],[516576.3765905208,5276710.227291784],[516571.74172857526,5276702.545458724],[516578.6633630765,5276698.452989393],[516579.3364870518,5276699.455163351]]]},"properties":{"ID_SOURCE":"w145340790","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2034}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.51576838526,5276076.65703624],[517271.670561467,5276071.971833312],[517275.74232184293,5276066.760342959],[517276.6566618438,5276067.463235031],[517277.6159394238,5276068.210716424],[517278.29462192,5276067.323612073],[517282.3419891116,5276070.3363914825],[517277.51576838526,5276076.65703624]]]},"properties":{"ID_SOURCE":"w145340795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2035}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.53803362144,5276140.862150645],[517030.1240125398,5276146.902251577],[517030.55073870963,5276147.392513904],[517025.353828608,5276152.156327095],[517018.6155586762,5276144.579136055],[517020.6268809207,5276142.617840917],[517023.51200921426,5276139.814438729],[517024.53803362144,5276140.862150645]]]},"properties":{"ID_SOURCE":"w145340796","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2036}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516487.04796895076,5276612.83758845],[516490.25033207156,5276617.192218178],[516492.2854600518,5276619.965360097],[516493.2637652643,5276619.301292427],[516495.1339347052,5276621.973942438],[516486.62994802126,5276627.840266286],[516479.52259554947,5276617.928715239],[516487.04796895076,5276612.83758845]]]},"properties":{"ID_SOURCE":"w145340798","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2037}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.73532960116,5276127.239594564],[517238.0121524776,5276122.262862331],[517235.1431382534,5276122.121004389],[517229.24611871305,5276117.180069006],[517232.1784355163,5276113.698957105],[517239.1545859276,5276119.498864973],[517243.9489725602,5276113.756020617],[517250.49807233,5276119.17680285],[517247.61668252526,5276123.213754925],[517244.73532960116,5276127.239594564]]]},"properties":{"ID_SOURCE":"w145340802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2038}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.4204377207,5276262.268975632],[517278.97888904467,5276259.51954745],[517276.685856254,5276255.144953765],[517285.036010884,5276250.946419266],[517290.2626302963,5276261.520207296],[517281.30959984456,5276266.3837838555],[517279.44231214473,5276262.821772299],[517280.4204377207,5276262.268975632]]]},"properties":{"ID_SOURCE":"w145340803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2039}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.1870534222,5276183.618978079],[516683.1225049812,5276185.174748375],[516683.02568237786,5276187.508403829],[516673.03608265484,5276187.257519566],[516673.2060370855,5276180.367347473],[516683.87199878384,5276180.509029687],[516683.7128556694,5276183.620484187],[516683.1870534222,5276183.618978079]]]},"properties":{"ID_SOURCE":"w145340804","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2040}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.8994838646,5276120.16548458],[516410.10444459214,5276120.082629203],[516406.41668455285,5276119.927758926],[516406.4961827375,5276118.372028213],[516410.70170795266,5276118.717294673],[516410.6287844529,5276117.939111888],[516411.98054930946,5276118.054060262],[516411.8994838646,5276120.16548458]]]},"properties":{"ID_SOURCE":"w145340805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2041}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.87084797036,5276687.502018275],[516600.7571434927,5276694.292619408],[516591.5784497238,5276699.712308407],[516586.94454895373,5276691.697046845],[516590.10446955904,5276689.816672554],[516590.9268588121,5276691.152692287],[516592.8530134477,5276689.968984987],[516596.87084797036,5276687.502018275]]]},"properties":{"ID_SOURCE":"w145340807","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2042}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516737.3138324016,5276560.42669231],[516740.54387106816,5276560.3248365745],[516740.6908958065,5276561.436656485],[516742.9818705536,5276561.398786612],[516746.0240066223,5276561.340849599],[516746.08665275556,5276565.675479162],[516743.1471504234,5276569.223498702],[516737.28923768434,5276568.984380702],[516737.3138324016,5276560.42669231]]]},"properties":{"ID_SOURCE":"w145340810","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2043}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517063.6984623697,5276575.822033236],[517068.9447306069,5276579.727299153],[517070.44366309844,5276580.843090288],[517069.11632858904,5276582.68411984],[517065.4662444201,5276587.7191679785],[517063.6668750787,5276586.6024978],[517061.3293662733,5276589.707562672],[517056.2336463745,5276585.691604692],[517063.6984623697,5276575.822033236]]]},"properties":{"ID_SOURCE":"w145340812","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2044}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516671.77373182547,5276460.301870441],[516677.75995424646,5276460.36346583],[516677.72045737127,5276463.664201936],[516677.7086496993,5276465.164554137],[516679.2108055493,5276465.191083946],[516679.1492195798,5276470.959058283],[516672.45671105385,5276470.984351197],[516671.65327894,5276470.893139448],[516671.77373182547,5276460.301870441]]]},"properties":{"ID_SOURCE":"w145340818","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2045}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.87743278395,5276586.696636637],[517019.9525422027,5276586.696856147],[517025.00469240185,5276579.932098083],[517033.99702825956,5276587.071338014],[517030.1521479841,5276591.950242709],[517027.7535231078,5276590.276132468],[517026.62233341107,5276591.828781774],[517023.4897148157,5276589.4412328955],[517019.87743278395,5276586.696636637]]]},"properties":{"ID_SOURCE":"w145340819","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2046}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.36916278093,5276185.204764847],[516886.3585295837,5276188.872343358],[516886.2689152814,5276193.873369042],[516885.9684573583,5276193.872497952],[516880.0420858773,5276193.799749511],[516873.2744320816,5276193.724569846],[516873.30450050905,5276191.123988522],[516873.37820191047,5276183.833439309],[516886.3727071771,5276183.98223868],[516886.36916278093,5276185.204764847]]]},"properties":{"ID_SOURCE":"w145340823","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2047}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.8255744459,5276202.42274308],[516622.06495814346,5276202.3379641725],[516621.96460226394,5276208.550384411],[516621.8136069239,5276211.450698475],[516621.4383528619,5276211.338487916],[516615.57944157236,5276211.321770827],[516612.6503029235,5276211.202275749],[516612.8255744459,5276202.42274308]]]},"properties":{"ID_SOURCE":"w145340828","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2048}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516765.7976703733,5276345.786701586],[516765.7334355444,5276342.007767135],[516765.7356750666,5276341.229795739],[516774.4484138466,5276341.366023054],[516774.35729642684,5276346.922745282],[516774.35697633075,5276347.033884055],[516765.7190386014,5276347.009011852],[516765.7976703733,5276345.786701586]]]},"properties":{"ID_SOURCE":"w145340829","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2049}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516373.9193650266,5276697.762569255],[516373.0155696464,5276698.64914584],[516370.8436875874,5276696.420245568],[516376.86889120936,5276690.54678173],[516378.9021227548,5276688.663124815],[516388.41363867844,5276698.359039599],[516381.10847107467,5276705.340288143],[516376.5029638901,5276700.481643239],[516373.9193650266,5276697.762569255]]]},"properties":{"ID_SOURCE":"w145340830","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2050}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517118.788082462,5276180.993093768],[517120.52094647364,5276179.219951966],[517124.2652438269,5276183.120848801],[517123.21102515334,5276184.006867009],[517125.38248664717,5276186.3471850185],[517121.76620511943,5276190.004163402],[517122.88965587306,5276191.118863092],[517120.78024206817,5276193.224316435],[517119.28317874676,5276191.441680793],[517113.8912613316,5276185.868850156],[517116.0006752742,5276183.763394343],[517117.27435754513,5276184.878534405],[517118.40434305865,5276183.770458411],[517117.2812166462,5276182.544620863],[517118.788082462,5276180.993093768]]]},"properties":{"ID_SOURCE":"w145340832","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2051}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.16778319434,5276143.872051493],[516983.61915087374,5276149.722777767],[516982.21067567077,5276151.0301191835],[516980.88515163807,5276152.226563099],[516981.95586162416,5276153.407765401],[516979.7566391196,5276155.412981934],[516973.2494541728,5276148.425557603],[516978.16778319434,5276143.872051493]]]},"properties":{"ID_SOURCE":"w145340833","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2052}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.4979184417,5276515.980232304],[516678.9300190825,5276516.025582875],[516678.88514644536,5276505.467181637],[516685.1193142669,5276505.485039049],[516685.1626258203,5276508.719328781],[516685.18073302176,5276510.26422267],[516686.6078305081,5276510.268311469],[516686.5161613529,5276516.04731395],[516682.4979184417,5276515.980232304]]]},"properties":{"ID_SOURCE":"w145340837","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2053}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516562.6941762543,5276609.05120901],[516552.76682121475,5276613.579712032],[516553.3639027952,5276614.915085799],[516550.13010807586,5276616.350711133],[516548.8614660468,5276613.457473245],[516545.5775074416,5276606.112920895],[516558.51334604557,5276600.148142631],[516560.5365753596,5276604.455002734],[516562.6941762543,5276609.05120901]]]},"properties":{"ID_SOURCE":"w145340842","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2054}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.7765466697,5276138.338035167],[516694.47558127705,5276139.517767079],[516692.1432681735,5276132.953843282],[516690.3311432628,5276133.593260249],[516688.93256656965,5276134.08938116],[516686.4064734528,5276126.991434225],[516692.95561269985,5276124.7096095625],[516696.00317309814,5276133.320553333],[516697.7765466697,5276138.338035167]]]},"properties":{"ID_SOURCE":"w145340844","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2055}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516971.93300774373,5276595.0033363495],[516971.5658822164,5276592.112632766],[516970.82968680415,5276586.998058582],[516984.05412949633,5276585.258374974],[516985.4549525987,5276594.264780842],[516979.398613931,5276595.114010015],[516975.31098295155,5276595.680020333],[516975.16400389385,5276594.568194334],[516971.93300774373,5276595.0033363495]]]},"properties":{"ID_SOURCE":"w145340846","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2056}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.5335728286,5276223.481661524],[517013.94130263606,5276224.997273456],[517015.22923882306,5276226.379168131],[517015.0621274216,5276232.1579442015],[517012.8090323254,5276232.040222791],[517006.8177615644,5276225.910042107],[517006.6749973252,5276223.353412243],[517012.1580023149,5276223.480564518],[517012.5335728286,5276223.481661524]]]},"properties":{"ID_SOURCE":"w145340848","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2057}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516696.51532750734,5276434.166007302],[516696.5275943874,5276429.887163988],[516696.54432194214,5276424.052377692],[516706.75980560255,5276423.970533366],[516706.71723159426,5276428.338201481],[516706.7397202572,5276430.97227692],[516703.5850407293,5276430.963228191],[516703.65090820706,5276434.18646845],[516696.51532750734,5276434.166007302]]]},"properties":{"ID_SOURCE":"w145340849","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2058}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516573.06146317127,5276238.763265674],[516572.84402751137,5276235.984155605],[516574.4217362683,5276235.877505467],[516574.3519989143,5276233.987932896],[516578.1831268961,5276233.887696793],[516578.55173698295,5276236.333818409],[516578.6208402384,5276238.44566855],[516573.06146317127,5276238.763265674]]]},"properties":{"ID_SOURCE":"w145340850","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2059}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.23573725903,5276311.730889583],[516726.81410701777,5276311.732550609],[516726.8158944614,5276311.11017352],[516726.8171392883,5276310.676732333],[516729.8442238768,5276310.674312818],[516729.76368378376,5276312.563456083],[516726.30848830816,5276312.553532167],[516726.23573725903,5276311.730889583]]]},"properties":{"ID_SOURCE":"w145340854","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2060}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.1944781963,5276526.806760082],[516519.38844864746,5276518.127066352],[516524.24669084116,5276515.984738782],[516534.8804160415,5276511.391508746],[516536.74618338863,5276515.620114875],[516534.3394977989,5276516.724678566],[516536.12983797805,5276521.064210095],[516523.1944781963,5276526.806760082]]]},"properties":{"ID_SOURCE":"w145340856","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2061}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.4235602682,5276492.118323116],[516683.5201754362,5276492.121464474],[516683.5396495066,5276495.81135865],[516683.5505326919,5276497.256206069],[516684.5570142206,5276497.259089426],[516684.5857784996,5276502.949525065],[516676.864229345,5276502.994092675],[516676.82018012024,5276492.146730802],[516682.4235602682,5276492.118323116]]]},"properties":{"ID_SOURCE":"w145340857","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2062}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517033.99702825956,5276587.071338014],[517039.0482189989,5276580.640008525],[517048.565651787,5276588.003086947],[517044.9464131702,5276592.77150274],[517044.7201093022,5276593.104259682],[517042.02267777367,5276590.873570176],[517040.8163750281,5276592.4259969415],[517037.8638299467,5276590.105651076],[517033.99702825956,5276587.071338014]]]},"properties":{"ID_SOURCE":"w145340858","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2063}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.66606141155,5276135.731348239],[516723.26731119596,5276136.955238914],[516720.91227150214,5276130.469035964],[516719.1301887275,5276131.108530231],[516717.76916659105,5276131.604752032],[516715.32490508875,5276124.79599037],[516721.836692042,5276122.447407135],[516724.8848492956,5276130.836088613],[516726.66606141155,5276135.731348239]]]},"properties":{"ID_SOURCE":"w145340860","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2064}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.5852016031,5276591.007536846],[517228.63874826353,5276591.644941628],[517223.56036934437,5276591.963339397],[517223.13370724954,5276583.848873494],[517233.95111420663,5276583.32517637],[517234.0987019883,5276584.21473138],[517238.15527063305,5276584.004457892],[517238.22741933283,5276585.004929495],[517238.5852016031,5276591.007536846]]]},"properties":{"ID_SOURCE":"w145340861","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2065}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516966.02005650825,5276082.498668978],[516951.6799746239,5276082.612512055],[516951.62549494975,5276075.5216429],[516957.6349374579,5276075.4835657105],[516960.6096285297,5276075.458885016],[516960.59826226823,5276074.2029737085],[516965.9617407844,5276074.151910202],[516965.96067248995,5276074.518667985],[516966.02005650825,5276082.498668978]]]},"properties":{"ID_SOURCE":"w145340867","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2066}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.6965743838,5276385.600337075],[516774.6214623781,5276385.600120734],[516773.9444940577,5276385.931590048],[516773.642765707,5276386.37527984],[516773.1908134233,5276386.818537006],[516772.5170459854,5276386.038618699],[516773.72267903294,5276384.708414491],[516774.6965743838,5276385.600337075]]]},"properties":{"ID_SOURCE":"w145340870","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2067}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.836692042,5276122.447407135],[516728.3786900476,5276120.043348102],[516730.89038254065,5276126.907878781],[516729.1308321686,5276127.547434723],[516727.43894981075,5276128.164957601],[516726.092981248,5276128.65010673],[516726.65194165247,5276130.185439086],[516724.8848492956,5276130.836088613],[516721.836692042,5276122.447407135]]]},"properties":{"ID_SOURCE":"w145340873","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2068}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516915.57037831744,5276639.006289835],[516915.887276741,5276641.096637808],[516910.57470249827,5276641.903642877],[516907.5990749046,5276642.350675981],[516906.4122810718,5276634.611903307],[516906.294300976,5276633.855810451],[516918.10673275654,5276632.056308758],[516919.0945604136,5276638.471942666],[516915.57037831744,5276639.006289835]]]},"properties":{"ID_SOURCE":"w145340874","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2069}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.5145778916,5276166.161693045],[517001.14605286194,5276172.057417559],[516996.3631953153,5276176.522388016],[516989.92310617457,5276169.724077852],[516991.6556098473,5276168.062036567],[516992.5540694681,5276169.064914876],[516993.6843584312,5276167.845676025],[516995.5145778916,5276166.161693045]]]},"properties":{"ID_SOURCE":"w145340875","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2070}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.50791520556,5276258.151236141],[516590.5243773496,5276252.372020749],[516592.5581468393,5276250.377300453],[516592.5647958208,5276248.043386567],[516598.8743527516,5276248.061364991],[516601.12079674867,5276250.512840151],[516600.8732811024,5276258.291910871],[516590.50791520556,5276258.151236141]]]},"properties":{"ID_SOURCE":"w145340877","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2071}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516894.37288275093,5276093.204328826],[516894.3132402408,5276087.869452113],[516902.5863040721,5276084.336984994],[516904.9729168282,5276090.234313323],[516919.56217322784,5276084.497412228],[516921.35333112377,5276088.503643406],[516936.31948041427,5276082.323320482],[516937.5274384579,5276085.39428774],[516939.0784070181,5276089.333142193],[516937.80014514114,5276089.773983551],[516939.14350317064,5276092.778661134],[516940.27153291006,5276092.337383134],[516942.13617351436,5276096.899532895],[516934.5404368767,5276099.989354521],[516933.79380354506,5276098.431228453],[516925.9720804333,5276101.74268355],[516923.4355851261,5276095.73377122],[516915.8395342536,5276098.934755935],[516915.81952241034,5276105.825357049],[516915.89237861475,5276106.603546303],[516915.6660634856,5276106.93630803],[516914.8381780889,5276107.489602072],[516904.2342995978,5276111.793264396],[516904.237525112,5276110.681877102],[516901.003363917,5276112.117307333],[516898.3901197069,5276106.663881541],[516894.55471068353,5276108.208710683],[516894.43381456414,5276098.094650677],[516895.86262512277,5276097.543096875],[516894.37288275093,5276093.204328826]]]},"properties":{"ID_SOURCE":"w145340878","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2072}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517246.790487916,5276559.46813298],[517252.1249282664,5276558.928234314],[517252.3361002781,5276563.7078704275],[517252.71164888964,5276563.708982975],[517252.99970784533,5276567.888692115],[517253.4321247181,5276574.047117097],[517245.09331479575,5276574.5781172095],[517244.31153618847,5276559.571931944],[517246.790487916,5276559.46813298]]]},"properties":{"ID_SOURCE":"w145340881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2073}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.4361534763,5276466.023461445],[516726.91957317555,5276465.928068187],[516726.96292583155,5276469.140130322],[516726.9809583127,5276470.707252034],[516728.4831764227,5276470.711566798],[516728.61647866573,5276476.602354399],[516722.60793142585,5276476.473958718],[516721.25593646866,5276476.470076772],[516721.4361534763,5276466.023461445]]]},"properties":{"ID_SOURCE":"w145340901","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2074}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516897.0251113974,5276654.800981086],[516896.5093478744,5276651.354152069],[516896.06740254816,5276648.35209633],[516908.0896218744,5276646.719892749],[516909.2678028349,5276654.836516116],[516906.630299391,5276655.240075571],[516900.7766677294,5276656.145544558],[516900.3314996623,5276654.254876706],[516897.0251113974,5276654.800981086]]]},"properties":{"ID_SOURCE":"w145340905","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2075}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516390.4344471359,5276540.768627366],[516389.9856638759,5276540.100526188],[516391.1896135092,5276539.325936798],[516395.25337610114,5276536.558883584],[516395.7766432904,5276537.449474243],[516397.87064923457,5276540.678420934],[516392.7534718403,5276544.109345215],[516390.4344471359,5276540.768627366]]]},"properties":{"ID_SOURCE":"w145340906","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2076}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.92199508904,5276111.356419976],[516781.10702695005,5276102.879467578],[516787.3178900074,5276100.707913823],[516788.532088676,5276104.245654405],[516789.6941214169,5276107.638763342],[516787.8895534067,5276108.255943883],[516786.44589287025,5276108.751911492],[516785.22783551266,5276109.159617877],[516785.77907854127,5276110.761617485],[516783.92199508904,5276111.356419976]]]},"properties":{"ID_SOURCE":"w145340909","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2077}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516688.5475384418,5276200.305283572],[516690.6066234345,5276202.600660803],[516691.8420609111,5276203.982333048],[516692.6705483633,5276203.206729813],[516694.99208484765,5276205.6584563395],[516691.5269524236,5276209.0938543985],[516688.81519557734,5276211.75343552],[516682.97315651696,5276205.846296984],[516688.5475384418,5276200.305283572]]]},"properties":{"ID_SOURCE":"w145340915","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2078}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517223.470358274,5276675.729132691],[517225.79176289716,5276675.547061226],[517237.33876741567,5276674.614312157],[517237.96904946025,5276682.4404196525],[517231.74857850996,5276682.933253015],[517227.6391416107,5276683.265628006],[517227.7188673162,5276684.243894093],[517224.18041798216,5276684.522390805],[517223.470358274,5276675.729132691]]]},"properties":{"ID_SOURCE":"w145340929","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2079}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516691.5269524236,5276209.0938543985],[516694.22278403427,5276211.991211969],[516693.69507308234,5276212.656537398],[516694.9305713885,5276214.0159825785],[516696.5404931512,5276215.77660415],[516691.2668932515,5276221.207332314],[516685.42550299875,5276215.077913702],[516688.81519557734,5276211.75343552],[516691.5269524236,5276209.0938543985]]]},"properties":{"ID_SOURCE":"w145340947","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2080}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.3580005194,5276171.215600691],[516683.2674262466,5276171.293820569],[516683.9510342829,5276171.273550777],[516683.93384484365,5276174.652147025],[516683.91452412086,5276176.15247702],[516683.8952989121,5276177.619465391],[516679.0578814306,5276177.616724722],[516675.9784657722,5276177.50788151],[516675.29482668004,5276177.53926611],[516675.3580005194,5276171.215600691]]]},"properties":{"ID_SOURCE":"w145340948","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2081}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.50293789245,5276551.090502597],[517121.6138564258,5276548.429353903],[517119.81513897487,5276547.090388844],[517121.7909264959,5276544.406615028],[517124.71689276857,5276540.436414552],[517131.5368655295,5276545.568901776],[517124.37396903895,5276554.883575571],[517123.0249330065,5276553.87935107],[517119.50293789245,5276551.090502597]]]},"properties":{"ID_SOURCE":"w145340957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2082}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.86156171677,5276566.396145998],[517073.1847487064,5276568.181192549],[517077.4568739679,5276571.30563195],[517074.553357904,5276575.320377837],[517072.47943891987,5276578.18170358],[517070.9801803454,5276577.177050733],[517068.9447306069,5276579.727299153],[517063.6984623697,5276575.822033236],[517070.86156171677,5276566.396145998]]]},"properties":{"ID_SOURCE":"w145340960","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2083}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516560.63958416146,5276565.589737603],[516558.47973147535,5276559.137492942],[516556.8412193121,5276554.242687237],[516567.21649213997,5276550.715722627],[516570.41965346655,5276560.060571411],[516566.0963853038,5276561.615341803],[516563.0513120615,5276562.70696375],[516563.6471322065,5276564.486893703],[516560.63958416146,5276565.589737603]]]},"properties":{"ID_SOURCE":"w145340961","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2084}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.43732122966,5276548.1922605205],[516697.4649700194,5276548.309213435],[516697.4567807124,5276551.165480799],[516697.4509494133,5276553.1993209915],[516699.25358558825,5276553.204489678],[516699.3875521996,5276558.872999691],[516691.42591683764,5276558.8501753425],[516691.45617771894,5276548.2919885125],[516695.43732122966,5276548.1922605205]]]},"properties":{"ID_SOURCE":"w145340962","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2085}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516676.93787267606,5276136.255590159],[516670.49673149735,5276129.67991209],[516675.69368777523,5276124.804644369],[516680.78593640315,5276130.265068428],[516679.4375534611,5276131.594882713],[516678.300130347,5276132.703022092],[516677.2456526611,5276133.700259538],[516678.36888073257,5276134.926011889],[516676.93787267606,5276136.255590159]]]},"properties":{"ID_SOURCE":"w145340963","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2086}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.0027122569,5276349.305057677],[517161.4758642451,5276316.186812168],[517166.884649071,5276315.980472727],[517166.46921705775,5276354.989294],[517162.788381375,5276355.089585676],[517162.71326896537,5276355.089364331],[517162.7299718989,5276349.421287115],[517161.0027122569,5276349.305057677]]]},"properties":{"ID_SOURCE":"w145340964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2087}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.1954257455,5276687.207484216],[517244.64174318523,5276678.881473555],[517251.08734681905,5276678.456004726],[517250.81408383173,5276674.35413662],[517257.31226877397,5276673.928830416],[517257.513547796,5276676.974657421],[517258.1316476113,5276686.367802383],[517251.63347647805,5276686.79310765],[517245.1954257455,5276687.207484216]]]},"properties":{"ID_SOURCE":"w145340965","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2088}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516745.77984305884,5276129.006751267],[516742.62928480556,5276130.120204589],[516740.2820308832,5276123.545104435],[516738.7631351063,5276124.08532346],[516736.5374525672,5276124.868019145],[516734.15295119624,5276118.181674887],[516741.0405861895,5276115.745281187],[516743.92439213005,5276123.811195295],[516745.77984305884,5276129.006751267]]]},"properties":{"ID_SOURCE":"w145340966","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2089}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517203.6539356513,5276287.603854497],[517206.5233438754,5276282.499903461],[517213.7975134657,5276286.522428257],[517213.41964770167,5276287.299289563],[517215.32447006635,5276288.338519025],[517229.0933380521,5276295.792253544],[517226.3757862515,5276300.340944129],[517208.7531009279,5276290.508551618],[517203.6539356513,5276287.603854497]]]},"properties":{"ID_SOURCE":"w145340967","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2090}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516973.9911678581,5276533.104492986],[516970.5972869465,5276537.873611258],[516969.0895808534,5276539.75859366],[516966.61613068025,5276537.973151174],[516966.088741484,5276538.527313466],[516961.3295472146,5276534.979206759],[516954.546709278,5276529.93593971],[516959.8244862561,5276523.060642971],[516973.9911678581,5276533.104492986]]]},"properties":{"ID_SOURCE":"w145340969","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2091}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517091.0850754668,5276585.571501407],[517094.8323913051,5276588.360994287],[517087.8939553439,5276598.009791176],[517085.81071067223,5276596.36992424],[517082.7907174182,5276594.004901684],[517082.49847564904,5276593.770650933],[517084.534578573,5276590.998129568],[517083.03565139254,5276589.882334773],[517086.60234649054,5276585.113788333],[517088.03506752686,5276583.195274129],[517091.0850754668,5276585.571501407]]]},"properties":{"ID_SOURCE":"w145340970","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2092}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.4476048942,5276133.164074187],[516702.1436367559,5276129.481612459],[516700.90672902315,5276125.98828074],[516707.44091584464,5276123.684201528],[516710.51089434116,5276132.328559187],[516712.2172260661,5276137.1458017565],[516709.12683463295,5276138.237217866],[516706.89142225496,5276131.940301237],[516705.3123758386,5276132.50258436],[516703.4476048942,5276133.164074187]]]},"properties":{"ID_SOURCE":"w145340977","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2093}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517042.96208691545,5276526.52639938],[517035.24264163716,5276520.724546939],[517037.1275512254,5276518.2849863],[517039.90077910625,5276520.293615364],[517044.9530095337,5276513.528875118],[517053.49769165326,5276519.666576057],[517047.9183838059,5276526.8743250575],[517045.66247897124,5276525.189511538],[517044.62069139443,5276524.419598129],[517042.96208691545,5276526.52639938]]]},"properties":{"ID_SOURCE":"w145340979","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2094}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.10789369897,5276229.618760244],[517176.1587540177,5276237.843249116],[517168.4223475765,5276237.709299538],[517168.3727867442,5276229.040255772],[517171.22712011455,5276229.048670186],[517171.44689196337,5276230.9386932505],[517172.798944172,5276230.942679565],[517172.9531044874,5276229.60945754],[517176.10789369897,5276229.618760244]]]},"properties":{"ID_SOURCE":"w145340980","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2095}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.58010644733,5276089.905078621],[517242.52925038815,5276096.002807698],[517229.7135455804,5276111.524441007],[517220.7213660682,5276104.16262798],[517233.4609604982,5276088.974169004],[517236.4006739231,5276085.537537054],[517240.01939480496,5276081.102659067],[517248.7862383781,5276088.463834247],[517247.58010644733,5276089.905078621]]]},"properties":{"ID_SOURCE":"w145340981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2096}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.87330409273,5276381.089249704],[516494.9884055601,5276381.645057851],[516495.2745434024,5276384.046485186],[516490.87146874383,5276384.567486577],[516486.49095995055,5276385.0774412025],[516485.46386681375,5276376.427867439],[516489.8443820108,5276375.917912031],[516489.8884108678,5276376.2847976005],[516498.1610882979,5276375.307969193],[516498.87330409273,5276381.089249704]]]},"properties":{"ID_SOURCE":"w145340985","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2097}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.00347881654,5276506.033481069],[516769.7678374289,5276506.061589475],[516769.7543963527,5276510.729419077],[516768.6280604965,5276510.615036163],[516768.61526032165,5276515.060588199],[516760.87921569793,5276514.927179045],[516760.97072912904,5276511.837758162],[516761.04542934836,5276509.370671343],[516759.84366282116,5276509.367212761],[516760.00347881654,5276506.033481069]]]},"properties":{"ID_SOURCE":"w145340987","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2098}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517263.03295058414,5276249.102925636],[517260.90403226216,5276245.106699823],[517259.2980099922,5276242.09005389],[517266.5204732807,5276238.221570475],[517266.8189520654,5276238.889293689],[517269.0759942171,5276237.673448403],[517270.95252416644,5276238.123571512],[517273.71624737844,5276243.355334609],[517270.2550781715,5276245.345585574],[517264.1538919049,5276248.517207629],[517263.03295058414,5276249.102925636]]]},"properties":{"ID_SOURCE":"w145340989","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2099}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.8964585728,5276089.074826678],[517301.8031733583,5276093.62236513],[517299.6162330992,5276096.505501554],[517299.6903585624,5276096.839140827],[517296.317410711,5276094.384050276],[517296.9206472205,5276093.607863725],[517288.90074214526,5276087.693648832],[517293.65350018226,5276080.817096763],[517299.16254057206,5276084.867827235],[517304.8964585728,5276089.074826678]]]},"properties":{"ID_SOURCE":"w145340992","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2100}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.3246404779,5276170.749210978],[516960.6989198449,5276171.194859591],[516958.64246174874,5276173.18938584],[516955.5765559197,5276176.181231245],[516950.1854387424,5276170.2751364885],[516955.1569264161,5276165.510600288],[516955.7562275057,5276166.068043307],[516958.9945793294,5276163.1878398005],[516963.33764753497,5276167.868353685],[516960.3246404779,5276170.749210978]]]},"properties":{"ID_SOURCE":"w145340993","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2101}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.97315651696,5276205.846296984],[516678.2536843005,5276201.387194374],[516675.1962680936,5276193.598664158],[516683.5438439164,5276190.177239804],[516684.96083181584,5276193.73776787],[516683.9833885538,5276194.068386875],[516684.900292315,5276196.516085898],[516685.6979674135,5276198.630024535],[516688.5475384418,5276200.305283572],[516682.97315651696,5276205.846296984]]]},"properties":{"ID_SOURCE":"w145340995","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2102}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517068.243085077,5276511.596570852],[517069.4958564388,5276519.824584308],[517066.33992181823,5276520.2598941615],[517066.4124265917,5276521.149224663],[517062.5950993403,5276521.727080077],[517057.0194117812,5276522.56652315],[517056.0582766109,5276517.340139837],[517058.83833486843,5276517.014863147],[517058.39678792265,5276513.901656746],[517058.323305227,5276513.345742751],[517068.243085077,5276511.596570852]]]},"properties":{"ID_SOURCE":"w145340996","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2103}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.6019536271,5276561.51973853],[517040.07569733175,5276563.1940725],[517034.87329592597,5276569.958377981],[517028.95263387257,5276565.49547218],[517031.2150252251,5276562.390174796],[517027.01732865116,5276559.48826665],[517030.48537830426,5276555.052817074],[517034.78696224064,5276558.38847662],[517037.9794532451,5276560.85400439],[517037.6019536271,5276561.51973853]]]},"properties":{"ID_SOURCE":"w145340997","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2104}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.46301023726,5276106.496668371],[516770.4361549446,5276114.829588012],[516768.53378111025,5276115.502062747],[516768.06432898884,5276114.189263344],[516766.9063664702,5276114.597146554],[516765.0866839952,5276115.247632528],[516763.40991326416,5276115.831846582],[516761.1893499014,5276109.612749567],[516760.9061814555,5276108.822843187],[516767.46301023726,5276106.496668371]]]},"properties":{"ID_SOURCE":"w145341002","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2105}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.86156171677,5276566.396145998],[517068.31304418645,5276564.610439979],[517074.79789526836,5276555.960548177],[517079.6696031221,5276559.531306113],[517081.39289013913,5276560.98117729],[517079.18360227486,5276563.89767346],[517076.9441423901,5276566.858537904],[517075.14509461087,5276565.630725419],[517073.1847487064,5276568.181192549],[517070.86156171677,5276566.396145998]]]},"properties":{"ID_SOURCE":"w145341004","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2106}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517125.0086314618,5276134.666126894],[517125.2310362819,5276135.667038037],[517119.14180211147,5276137.316232998],[517116.8380527343,5276128.862845856],[517122.8518529822,5276127.324566394],[517122.6291207044,5276126.434794087],[517125.7111051497,5276125.676991301],[517135.1074249234,5276123.359579192],[517137.18711219577,5276131.367755595],[517125.0086314618,5276134.666126894]]]},"properties":{"ID_SOURCE":"w145341005","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2107}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.1987808469,5276313.079136292],[516638.2086231996,5276309.6338345185],[516636.8565895596,5276309.629972259],[516636.88611419266,5276299.294067049],[516645.2984652616,5276299.429242759],[516645.3244753006,5276306.09769748],[516645.3405447308,5276310.987889065],[516645.2593967971,5276313.099310968],[516643.90736395563,5276313.095447069],[516638.1987808469,5276313.079136292]]]},"properties":{"ID_SOURCE":"w145341008","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2108}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516676.3134550907,5276223.16501222],[516676.2284764133,5276226.610098447],[516669.91921413527,5276226.480897529],[516670.0035528951,5276223.258088723],[516669.4780723134,5276223.145445092],[516669.48567450006,5276220.489228943],[516669.50224662083,5276214.698900063],[516676.78832454485,5276214.719757617],[516676.8392537653,5276223.166517716],[516676.3134550907,5276223.16501222]]]},"properties":{"ID_SOURCE":"w145341012","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2109}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.98071891523,5276212.449815496],[517155.1267047752,5276212.330268847],[517154.95552610647,5276219.442706056],[517152.9277711106,5276219.325594177],[517153.02383305336,5276212.212935702],[517150.1694914565,5276212.204530228],[517150.1721094907,5276211.315420271],[517157.9085512839,5276211.449345516],[517157.98071891523,5276212.449815496]]]},"properties":{"ID_SOURCE":"w145341013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2110}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516863.5893772487,5276373.665022897],[516858.75950442336,5276373.706609853],[516858.68503834936,5276363.1036663465],[516861.24643203925,5276363.088853307],[516863.9205263762,5276363.063253751],[516866.7973917634,5276363.049356626],[516866.8195832188,5276365.76122972],[516868.1566458829,5276365.742874132],[516868.1776456937,5276368.8659607135],[516868.20890392317,5276373.633944694],[516863.5893772487,5276373.665022897]]]},"properties":{"ID_SOURCE":"w145341016","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2111}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.7730003394,5276088.1511097625],[517257.4219269976,5276089.378531733],[517266.34193279874,5276095.739930126],[517265.1348096863,5276097.514587056],[517261.6649935628,5276102.394449694],[517257.7000020165,5276099.470840271],[517254.0947719402,5276096.815034564],[517255.07489829615,5276095.595401384],[517252.0020650358,5276093.252365389],[517255.7730003394,5276088.1511097625]]]},"properties":{"ID_SOURCE":"w145341017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2112}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517069.4958564388,5276519.824584308],[517068.243085077,5276511.596570852],[517078.76375426556,5276509.849177945],[517079.3538817307,5276513.518520433],[517082.2093795291,5276513.082336369],[517083.8104217852,5276522.922901037],[517080.89283334,5276526.604183062],[517077.2651584163,5276523.98176013],[517076.80099102407,5276520.901827838],[517076.602136474,5276519.556453719],[517072.72462117026,5276520.167467944],[517072.65211734676,5276519.278137362],[517069.4958564388,5276519.824584308]]]},"properties":{"ID_SOURCE":"w145341018","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2113}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517101.4242536637,5276517.695458526],[517093.5543074549,5276512.004226442],[517095.66588059074,5276509.120790905],[517098.5138769171,5276511.240807171],[517103.49139937584,5276504.364758302],[517111.8858129837,5276510.502103767],[517106.6068651345,5276517.710679421],[517104.34336462617,5276516.059162738],[517103.23408171645,5276515.255698666],[517101.4242536637,5276517.695458526]]]},"properties":{"ID_SOURCE":"w145341020","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2114}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517111.5951743709,5276558.291346937],[517113.5552138666,5276555.8520315355],[517111.98182639154,5276554.513731032],[517114.2738857707,5276551.553034575],[517116.3623340949,5276548.869590002],[517117.7415143985,5276549.840559615],[517119.50293789245,5276551.090502597],[517123.0249330065,5276553.87935107],[517116.6912071379,5276562.196214416],[517115.2670617406,5276561.191770941],[517111.5951743709,5276558.291346937]]]},"properties":{"ID_SOURCE":"w145341024","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2115}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5350048466,5276111.894195056],[516761.1893499014,5276109.612749567],[516763.40991326416,5276115.831846582],[516763.6404682047,5276116.632715634],[516761.7306161923,5276117.294057101],[516759.9110310835,5276117.911203072],[516758.9260272876,5276118.25290176],[516759.3879695881,5276119.565678823],[516757.41796273424,5276120.24907654],[516754.5350048466,5276111.894195056]]]},"properties":{"ID_SOURCE":"w145341025","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2116}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516809.17074095143,5276100.181898022],[516809.3896731995,5276102.405322924],[516807.21003632084,5276102.84359163],[516807.8067923021,5276104.290129151],[516806.3763884279,5276105.397398185],[516804.11907216377,5276106.724561137],[516802.7650676394,5276107.387492854],[516801.2614734228,5276107.827714075],[516800.3597658013,5276107.936252769],[516799.30782704393,5276108.044358302],[516797.52043769567,5276102.704499972],[516795.9593536531,5276097.031875875],[516806.86043409316,5276093.840270916],[516806.5618951357,5276093.172571569],[516810.7722278355,5276091.851045984],[516812.4084146224,5276097.523890856],[516809.02467911213,5276098.736661],[516809.17074095143,5276100.181898022]]]},"properties":{"ID_SOURCE":"w145341028","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2117}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.1221276677,5276658.992667148],[516885.75399710814,5276656.43538525],[516885.2385493169,5276652.877418413],[516896.5093478744,5276651.354152069],[516897.0251113974,5276654.800981086],[516897.7616849959,5276659.804407527],[516895.46252740955,5276660.086700053],[516889.87239443866,5276660.781778909],[516889.57840715337,5276658.55813107],[516886.1221276677,5276658.992667148]]]},"properties":{"ID_SOURCE":"w145341029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2118}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517094.8323913051,5276588.360994287],[517091.0850754668,5276585.571501407],[517093.0457496546,5276582.909901419],[517091.32221111923,5276581.548937771],[517093.83271948365,5276578.366594827],[517096.37340491917,5276575.139885651],[517099.5208276983,5276577.594201127],[517103.1182520786,5276580.27211942],[517096.10631474137,5276589.364991823],[517094.8323913051,5276588.360994287]]]},"properties":{"ID_SOURCE":"w145341031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2119}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.4396282992,5276158.6440572115],[516962.9902333824,5276158.198189671],[516968.1122956015,5276153.3229633635],[516973.8038702442,5276159.229950162],[516970.76893435046,5276161.899572764],[516968.3816727025,5276163.993157436],[516967.85716370464,5276163.547070683],[516965.37189838104,5276165.762624728],[516960.95371531224,5276161.081890604],[516963.4396282992,5276158.6440572115]]]},"properties":{"ID_SOURCE":"w145341032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2120}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516694.7574757959,5276339.914508547],[516697.31162252586,5276339.810690836],[516697.22121594404,5276345.145136541],[516695.86919051316,5276345.141260563],[516694.36694003403,5276345.136954287],[516693.91594632773,5276345.24680125],[516693.92550318164,5276341.912638092],[516694.15657506464,5276339.912786106],[516694.7574757959,5276339.914508547]]]},"properties":{"ID_SOURCE":"w145341033","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2121}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.7765466697,5276138.338035167],[516696.00317309814,5276133.320553333],[516692.95561269985,5276124.7096095625],[516699.62513293314,5276122.361453603],[516700.90672902315,5276125.98828074],[516702.1436367559,5276129.481612459],[516700.0834061116,5276130.198112702],[516698.5419493968,5276130.749391469],[516700.84436946205,5276137.257662301],[516697.7765466697,5276138.338035167]]]},"properties":{"ID_SOURCE":"w145341034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2122}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.65090820706,5276434.18646845],[516703.7151818094,5276437.965402674],[516704.84153293475,5276438.079772985],[516704.82272492413,5276444.63696153],[516697.46150466136,5276444.726991658],[516697.47224281053,5276440.98161446],[516697.4796671049,5276438.392080682],[516696.50353854866,5276438.278142463],[516696.51532750734,5276434.166007302],[516703.65090820706,5276434.18646845]]]},"properties":{"ID_SOURCE":"w145341035","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2123}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517288.10130726104,5276534.139610405],[517281.264308965,5276534.786157182],[517281.048212663,5276531.673602164],[517280.2220011611,5276531.671150582],[517279.8094051281,5276526.435242846],[517279.2083803869,5276518.887068785],[517287.54793319874,5276518.13383977],[517288.4860957446,5276531.028838877],[517287.80977452477,5276531.1379709635],[517288.10130726104,5276534.139610405]]]},"properties":{"ID_SOURCE":"w145341036","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2124}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.1870786678,5276691.110719722],[516615.9343539589,5276692.446528708],[516609.76535077754,5276695.985401796],[516603.8606549354,5276685.854847291],[516607.2462256004,5276683.863985914],[516608.5921499593,5276685.979479322],[516611.36066236976,5276684.398077537],[516615.9647963607,5276681.777200762],[516619.92649883893,5276688.456890137],[516615.1870786678,5276691.110719722]]]},"properties":{"ID_SOURCE":"w145341037","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2125}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516898.1218683828,5276561.557911486],[516901.1272255585,5276561.233213381],[516901.5685301667,5276564.457546704],[516910.3602378458,5276563.149391661],[516911.75698477257,5276573.600583734],[516902.9656151015,5276574.797597841],[516902.5529043923,5276572.073476201],[516902.30220887996,5276570.461222275],[516899.521862744,5276570.897712447],[516898.1218683828,5276561.557911486]]]},"properties":{"ID_SOURCE":"w145341039","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2126}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516932.1806521488,5276575.771584197],[516939.75023026107,5276581.461724694],[516937.7893026891,5276584.234514927],[516935.3161851818,5276582.337946779],[516929.8879485395,5276589.323968283],[516921.71878723416,5276583.187539307],[516927.07287924795,5276575.867875521],[516929.4488444137,5276577.597448073],[516930.29580510943,5276578.211178875],[516932.1806521488,5276575.771584197]]]},"properties":{"ID_SOURCE":"w145341040","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2127}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516845.2061180089,5276081.281123165],[516847.14434509614,5276086.399153117],[516848.2620816111,5276089.514296545],[516845.17879712407,5276090.72791483],[516843.68772970815,5276086.83371479],[516843.25167205976,5276086.965821391],[516842.63514354965,5276087.164089958],[516839.50469741353,5276078.708424969],[516843.79048551735,5276077.276001679],[516845.2061180089,5276081.281123165]]]},"properties":{"ID_SOURCE":"w145341043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2128}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516694.7574757959,5276339.914508547],[516694.15657506464,5276339.912786106],[516693.92550318164,5276341.912638092],[516687.6166845584,5276341.672278911],[516687.69625532243,5276340.116551329],[516687.78442411334,5276335.560076935],[516687.8643134391,5276333.893210595],[516691.25157629,5276334.014056766],[516694.69892914343,5276334.135077154],[516694.7574757959,5276339.914508547]]]},"properties":{"ID_SOURCE":"w145341047","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2129}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.17932001816,5276570.506685514],[517111.25195732794,5276572.849647863],[517104.6168515059,5276581.4990581805],[517103.1182520786,5276580.27211942],[517099.5208276983,5276577.594201127],[517101.5566179849,5276574.932824561],[517099.7575778621,5276573.705004441],[517101.84614216036,5276570.977099078],[517104.4323253856,5276567.60604533],[517108.17932001816,5276570.506685514]]]},"properties":{"ID_SOURCE":"w145341050","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2130}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516942.00622427446,5276528.899186887],[516950.4758813098,5276535.036518111],[516945.499536274,5276541.5792811755],[516942.8758596565,5276539.793411687],[516942.4235829088,5276540.347794635],[516939.44821301807,5276538.10523062],[516934.4042626074,5276534.322924293],[516937.5705227418,5276530.331101293],[516939.8193012068,5276531.893598352],[516942.00622427446,5276528.899186887]]]},"properties":{"ID_SOURCE":"w145341051","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2131}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5350048466,5276111.894195056],[516757.41796273424,5276120.24907654],[516755.5307431614,5276120.877143253],[516755.06880009937,5276119.564366495],[516753.98601893726,5276119.950240609],[516752.0536025325,5276120.6226343],[516750.32418995915,5276121.228928641],[516749.92917846586,5276120.149738047],[516747.8504270943,5276114.242244983],[516754.5350048466,5276111.894195056]]]},"properties":{"ID_SOURCE":"w145341056","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2132}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516874.2575637766,5276658.069158312],[516885.75399710814,5276656.43538525],[516886.1221276677,5276658.992667148],[516887.0814570764,5276664.885856226],[516883.73761858727,5276665.398517593],[516878.5903417639,5276666.194916991],[516878.14613362786,5276663.970834341],[516874.989969838,5276664.517386592],[516874.623122933,5276661.515550083],[516874.2575637766,5276658.069158312]]]},"properties":{"ID_SOURCE":"w145341058","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2133}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516420.8416285172,5276412.043394281],[516413.48043597635,5276412.111555669],[516413.598082654,5276397.0191203095],[516421.78527389385,5276397.042199686],[516421.7741804486,5276400.976512649],[516421.7689784351,5276402.821416477],[516423.6467727267,5276402.826711534],[516423.6320424436,5276408.050234447],[516420.7774843252,5276408.153324984],[516420.8416285172,5276412.043394281]]]},"properties":{"ID_SOURCE":"w145341062","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2134}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5186876564,5276165.015168298],[517003.94896876364,5276166.530843414],[517006.0083639488,5276168.681851933],[517001.7676237892,5276172.703842097],[517001.14605286194,5276172.057417559],[516995.5145778916,5276166.161693045],[516994.7207926963,5276165.325829234],[516998.96153329435,5276161.303833983],[517002.5186876564,5276165.015168298]]]},"properties":{"ID_SOURCE":"w145341063","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2135}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516842.63514354965,5276087.164089958],[516841.3191700104,5276087.660413231],[516840.6047661077,5276087.9361967705],[516841.6464259395,5276091.384537925],[516840.14250328694,5276091.935887838],[516839.6905232521,5276092.379139706],[516838.9454701356,5276090.265332247],[516835.3688220896,5276080.252424358],[516839.50469741353,5276078.708424969],[516842.63514354965,5276087.164089958]]]},"properties":{"ID_SOURCE":"w145341065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2136}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.98480952985,5276594.239177568],[517278.71785260853,5276590.548544538],[517278.33553444024,5276585.2349283835],[517287.57597574947,5276584.595512559],[517288.3754553154,5276593.60020874],[517290.55428606697,5276593.3843977405],[517290.987783062,5276599.164953902],[517277.01449205406,5276600.123740713],[517276.73087022227,5276594.4547700705],[517278.98480952985,5276594.239177568]]]},"properties":{"ID_SOURCE":"w145341067","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2137}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.40256154514,5276391.311168368],[516564.1679246222,5276389.298872815],[516563.896774624,5276386.919712491],[516574.81421447155,5276385.661552237],[516575.7085656122,5276393.399419391],[516564.9564494136,5276394.63582019],[516565.32299959706,5276397.804343683],[516561.0101261951,5276398.303320664],[516560.2625040366,5276391.7884095],[516564.40256154514,5276391.311168368]]]},"properties":{"ID_SOURCE":"w145341068","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2138}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.53301771346,5276528.664118092],[517308.3957342559,5276529.25417036],[517302.53565521975,5276529.73688604],[517301.8089869534,5276521.510383511],[517302.109428029,5276521.511276093],[517301.81790181994,5276518.509635996],[517308.5794809976,5276517.974028878],[517308.8710037507,5276520.975669321],[517314.9562577866,5276520.549199334],[517315.53301771346,5276528.664118092]]]},"properties":{"ID_SOURCE":"w145341069","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2139}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.46301023726,5276106.496668371],[516773.9671353153,5276104.214805],[516774.3175862116,5276105.11604544],[516776.31339892093,5276111.12333479],[516774.28319875523,5276111.839895346],[516773.06511089916,5276112.258718143],[516771.92971430375,5276112.655551376],[516772.44381893915,5276114.112961226],[516770.4361549446,5276114.829588012],[516767.46301023726,5276106.496668371]]]},"properties":{"ID_SOURCE":"w145341070","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2140}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516653.86661644635,5276192.5373797],[516648.60860209365,5276192.52234768],[516648.76931466936,5276188.855198495],[516647.86794021324,5276188.852622031],[516647.8759136626,5276186.063039528],[516647.89271825337,5276180.18379995],[516654.9531775386,5276180.315124739],[516654.9287067888,5276188.872808069],[516653.8019887188,5276188.869586318],[516653.86661644635,5276192.5373797]]]},"properties":{"ID_SOURCE":"w145341071","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2141}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516875.1173554576,5276568.715290208],[516876.4432415473,5276577.721451566],[516873.2125657392,5276578.045509538],[516873.4550173764,5276579.913359713],[516873.72673980414,5276582.048030102],[516865.1603975124,5276583.356892936],[516863.5369534461,5276573.3496148335],[516872.0278784739,5276572.151670806],[516871.660701856,5276569.260973744],[516875.1173554576,5276568.715290208]]]},"properties":{"ID_SOURCE":"w145341072","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2142}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517236.4006739231,5276085.537537054],[517233.4609604982,5276088.974169004],[517228.3655749426,5276084.73578691],[517231.07961084944,5276081.409624483],[517225.2343716352,5276076.724468194],[517227.6847472279,5276073.653145781],[517232.77392119734,5276067.299896105],[517240.6426921013,5276073.547004794],[517233.25336959714,5276082.972011291],[517236.4006739231,5276085.537537054]]]},"properties":{"ID_SOURCE":"w145341074","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2143}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516853.4053313475,5276077.303814135],[516854.45824150136,5276076.862302192],[516853.78895088995,5276074.52643279],[516859.72922864236,5276072.431970859],[516862.1149244426,5276078.6626975695],[516860.4607646308,5276079.213607325],[516860.87020261533,5276080.492898576],[516861.2051679458,5276081.549694964],[516855.6411216746,5276083.422964819],[516853.4053313475,5276077.303814135]]]},"properties":{"ID_SOURCE":"w145341076","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2144}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.7814012244,5276189.553535872],[516968.904233789,5276190.89048327],[516970.10930430086,5276189.782597409],[516971.99202548416,5276188.120987961],[516972.5909987635,5276188.789571483],[516977.3086374184,5276193.804606725],[516972.1118122125,5276198.568467568],[516965.7474814753,5276191.548125305],[516967.7814012244,5276189.553535872]]]},"properties":{"ID_SOURCE":"w145341079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2145}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.72428456316,5276312.328846117],[516690.5550448526,5276312.339822805],[516690.55663732294,5276311.784128973],[516695.88933845964,5276311.910553209],[516695.96030964266,5276313.3555724975],[516698.9645083429,5276313.475324986],[516698.8677269587,5276321.0325458],[516694.8642128538,5276321.021068416],[516686.774560523,5276320.997885177],[516686.72428456316,5276312.328846117]]]},"properties":{"ID_SOURCE":"w145341083","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2146}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.17932001816,5276570.506685514],[517104.4323253856,5276567.60604533],[517102.9333959316,5276566.490245458],[517104.7432096277,5276564.050485915],[517103.0947126405,5276562.711967195],[517105.83905512444,5276559.196896879],[517108.37230983033,5276555.947943177],[517111.5951743709,5276558.291346937],[517115.2670617406,5276561.191770941],[517108.17932001816,5276570.506685514]]]},"properties":{"ID_SOURCE":"w145341090","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2147}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.22240795614,5276451.068121091],[517273.823939021,5276460.300437065],[517269.3133209612,5276461.620737397],[517268.94172032294,5276460.2859583525],[517265.10743221117,5276461.497127655],[517261.46421374625,5276448.927535245],[517266.8771629606,5276447.276484708],[517268.2153246664,5276451.9483222645],[517271.22240795614,5276451.068121091]]]},"properties":{"ID_SOURCE":"w145341095","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2148}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516913.2679867197,5276544.708638124],[516915.1528373226,5276542.269038057],[516917.77619840065,5276544.166033848],[516922.978808983,5276537.290485506],[516931.37336367165,5276543.427570753],[516926.09499265003,5276550.525170985],[516924.0866986438,5276548.918922115],[516923.0225924768,5276548.071167814],[516921.06230761996,5276550.62168593],[516913.2679867197,5276544.708638124]]]},"properties":{"ID_SOURCE":"w145341097","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2149}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516681.736394427,5276611.391502696],[516680.4576299114,5276612.054678212],[516679.4799386039,5276612.496436843],[516678.8901737204,5276611.2388687655],[516678.2855140744,5276609.936802206],[516678.136250721,5276609.602955543],[516678.8886150524,5276609.160551345],[516679.7911977476,5276608.718577493],[516680.2424891474,5276608.497590617],[516681.736394427,5276611.391502696]]]},"properties":{"ID_SOURCE":"w145341098","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2150}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.85087504645,5276196.155146128],[516833.5314830729,5276196.165782581],[516833.4838398453,5276199.655430634],[516833.4239955626,5276204.767682689],[516832.8662802749,5276244.398480049],[516824.1540393985,5276244.039888198],[516824.1569287303,5276243.039639419],[516826.0121443718,5276243.078340619],[516830.6163982117,5276243.169441587],[516830.6493700758,5276239.557497237],[516830.8603297159,5276218.54159361],[516830.87159873074,5276217.241291957],[516830.93295020144,5276211.606687669],[516830.9429062476,5276208.161386503],[516830.94624633976,5276207.005543534],[516830.95318345027,5276204.604946605],[516830.95896437566,5276202.604449174],[516830.977712736,5276201.3152831355],[516831.00483968365,5276199.726064193],[516831.04949460295,5276197.270006453],[516829.84766363876,5276197.266533581],[516829.85087504645,5276196.155146128]]]},"properties":{"ID_SOURCE":"w145341099","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2151}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.0405861895,5276115.745281187],[516747.5747686263,5276113.452360846],[516747.8504270943,5276114.242244983],[516749.92917846586,5276120.149738047],[516748.1696878505,5276120.767060496],[516746.5380216279,5276121.3402951285],[516745.2672930913,5276121.781200305],[516745.75154912646,5276123.171838187],[516743.92439213005,5276123.811195295],[516741.0405861895,5276115.745281187]]]},"properties":{"ID_SOURCE":"w145341111","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2152}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516857.97577624145,5276600.340471974],[516867.44372486806,5276598.9230702445],[516867.9604762072,5276602.036479904],[516869.39570610644,5276601.818357669],[516871.5673284676,5276601.491229384],[516872.96896528295,5276610.275330381],[516863.20027551195,5276611.802991963],[516861.6484059552,5276603.01845839],[516858.49221077503,5276603.565019604],[516857.97577624145,5276600.340471974]]]},"properties":{"ID_SOURCE":"w145341113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2153}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516388.72309787094,5276668.463327282],[516382.9628921312,5276660.222781011],[516383.33905971766,5276660.001559854],[516382.0675309204,5276658.10860774],[516386.73332574713,5276654.898683267],[516387.9300580003,5276656.680286197],[516389.52532957675,5276655.628948399],[516397.0350841417,5276650.704371254],[516402.64506262675,5276658.944508236],[516388.72309787094,5276668.463327282]]]},"properties":{"ID_SOURCE":"w145341118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2154}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.6950320301,5276528.357414285],[517145.16350462975,5276534.828445533],[517143.27790058166,5276537.490248968],[517139.8306881263,5276534.812748177],[517134.6281453011,5276541.576964582],[517126.38434754807,5276535.328888833],[517131.58754014515,5276528.342387538],[517133.611100752,5276529.8487273045],[517134.8851939287,5276530.797163818],[517136.6950320301,5276528.357414285]]]},"properties":{"ID_SOURCE":"w145341121","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2155}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516341.94998879405,5276634.656554511],[516348.7686634626,5276640.4549573725],[516346.2813413978,5276643.559886826],[516349.8781325813,5276646.570755844],[516345.507794827,5276651.559774285],[516342.0609098222,5276648.660468308],[516340.85505576344,5276650.124128658],[516339.04627580714,5276652.3196196575],[516332.2276055027,5276646.521228061],[516341.94998879405,5276634.656554511]]]},"properties":{"ID_SOURCE":"w145341124","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2156}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516336.2829002875,5276593.185547418],[516341.00231297803,5276597.644375801],[516335.4277054335,5276603.519140105],[516338.94848250353,5276606.863207893],[516333.29846502293,5276612.84890239],[516320.0377982541,5276600.808638814],[516325.83865533344,5276594.601075046],[516330.6328724024,5276599.1712444],[516336.2829002875,5276593.185547418]]]},"properties":{"ID_SOURCE":"w145341126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2157}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516688.0323321238,5276537.390483916],[516690.0603033196,5276537.396295433],[516694.0414542475,5276537.296566472],[516693.9783639869,5276540.963996363],[516693.95168941724,5276542.408736256],[516695.3787790326,5276542.412827223],[516695.43732122966,5276548.1922605205],[516691.45617771894,5276548.2919885125],[516688.0011221452,5276548.28208699],[516688.0323321238,5276537.390483916]]]},"properties":{"ID_SOURCE":"w145341127","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2158}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516499.2253662568,5276317.796206828],[516495.4684636372,5276318.23012379],[516495.611764314,5276320.675602199],[516490.7879469947,5276321.217640139],[516485.0925073205,5276321.868354564],[516484.2147453022,5276313.530395672],[516493.9828877432,5276312.335514466],[516493.4690570205,5276308.1107522715],[516497.90198301576,5276307.678748896],[516499.2253662568,5276317.796206828]]]},"properties":{"ID_SOURCE":"w145341128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2159}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516719.81402363325,5276455.460531965],[516723.4947867622,5276455.3599604815],[516725.7481198606,5276455.366431411],[516725.6415065097,5276458.489151028],[516725.58449219447,5276460.033829238],[516726.93585256225,5276460.2599897655],[516726.91957317555,5276465.928068187],[516721.4361534763,5276466.023461445],[516719.78371222963,5276466.018717228],[516719.81402363325,5276455.460531965]]]},"properties":{"ID_SOURCE":"w145341129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2160}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516670.1818092707,5276449.650130074],[516674.7635909636,5276449.663246592],[516676.1152738855,5276449.77825652],[516676.2106597219,5276453.190518506],[516676.2518121009,5276454.557654684],[516677.7543526086,5276454.450817563],[516677.75995424646,5276460.36346583],[516671.77373182547,5276460.301870441],[516670.22638081916,5276460.319669069],[516670.1818092707,5276449.650130074]]]},"properties":{"ID_SOURCE":"w145341130","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2161}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.6397947854,5276417.173895139],[516673.57280512684,5276424.831228451],[516662.90716354677,5276424.734019502],[516662.9738847996,5276417.1655971315],[516666.70686741313,5276417.198506683],[516666.7056588236,5276417.620834066],[516668.4407047055,5276417.636913539],[516670.38606302533,5276417.653595514],[516670.38752637827,5276417.142357103],[516673.6397947854,5276417.173895139]]]},"properties":{"ID_SOURCE":"w145341132","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2162}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.57280512684,5276424.831228451],[516673.6397947854,5276417.173895139],[516676.3891655481,5276417.081741309],[516676.3949582388,5276417.681912254],[516677.9122759651,5276417.664029199],[516679.78261816717,5276417.647157586],[516679.77673033584,5276417.080328269],[516684.0056405228,5276417.04798544],[516684.0887965503,5276424.7279767655],[516673.57280512684,5276424.831228451]]]},"properties":{"ID_SOURCE":"w145341133","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2163}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.99994430726,5276092.573410235],[516827.744223117,5276093.344870398],[516827.29673927824,5276092.232181045],[516824.2141026968,5276093.22353297],[516822.6491900899,5276088.884566461],[516826.0332552416,5276087.560665499],[516825.36299138254,5276085.558215529],[516827.01971462497,5276084.118186012],[516829.99994430726,5276092.573410235]]]},"properties":{"ID_SOURCE":"w145341136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2164}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516494.4680380542,5276422.16510978],[516498.63746538915,5276419.265060188],[516499.235524196,5276420.267011559],[516500.6569757586,5276422.271552915],[516499.3775610046,5276423.157045616],[516500.34991726966,5276424.604616235],[516497.4149022752,5276426.59681579],[516495.99408025347,5276424.369997639],[516494.4680380542,5276422.16510978]]]},"properties":{"ID_SOURCE":"w145341142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2165}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516624.4445740503,5276631.78852205],[516625.41686408705,5276633.236114175],[516622.63244533585,5276635.117541164],[516612.6094005774,5276620.529636151],[516618.6301699447,5276616.32350471],[516621.9210095193,5276621.223044529],[516625.006187861,5276619.231336073],[516630.9159937305,5276627.583689729],[516626.83750875713,5276630.228283408],[516624.4445740503,5276631.78852205]]]},"properties":{"ID_SOURCE":"w145341143","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2166}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517208.2384958115,5276187.569423524],[517206.9743457479,5276185.7763394],[517205.7248498034,5276186.650651872],[517200.8472827935,5276190.070462241],[517199.3811093508,5276188.010047844],[517196.7930724672,5276184.3014536975],[517196.6060078346,5276184.056394026],[517204.56971291965,5276178.467357076],[517203.52247324475,5276176.986105649],[517207.50434844097,5276174.186033613],[517214.0644842665,5276183.485584049],[517208.2384958115,5276187.569423524]]]},"properties":{"ID_SOURCE":"w145341147","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2167}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.82056079607,5276512.423488431],[517251.0430657663,5276515.913936351],[517248.6540632405,5276516.073569889],[517248.86220563215,5276519.341695653],[517241.90561039286,5276519.78788288],[517241.0582649214,5276506.626425483],[517248.54074780236,5276506.14845275],[517248.7990650314,5276510.228047387],[517248.9499172318,5276512.551315389],[517250.82056079607,5276512.423488431]]]},"properties":{"ID_SOURCE":"w145341148","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2168}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1531162342,5276274.726487868],[517199.37289469823,5276274.732344461],[517197.7654340988,5276274.73871172],[517197.77504199196,5276276.572545541],[517191.88601832866,5276276.599615354],[517165.5505969351,5276276.744217963],[517161.26900096354,5276276.776056455],[517161.21043305966,5276266.062014903],[517174.4007016229,5276265.989755293],[517174.4046080308,5276267.212303732],[517201.10812933685,5276267.068828042],[517201.1531162342,5276274.726487868]]]},"properties":{"ID_SOURCE":"w145341150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2169}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7844929818,5276529.927891156],[516759.79440794094,5276526.482588242],[516760.92106074735,5276526.485830653],[516760.8908943744,5276523.918416218],[516760.8619434207,5276520.928674345],[516768.5983000783,5276520.950944693],[516768.5854998852,5276525.3964968],[516769.1863814968,5276525.398226966],[516769.1732608185,5276529.954917905],[516759.7844929818,5276529.927891156]]]},"properties":{"ID_SOURCE":"w145341152","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2170}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.64173585724,5276177.7107317485],[516983.1443029672,5276176.039269993],[516985.0273564029,5276174.266526034],[516986.076045639,5276175.269841449],[516987.206656188,5276173.939462597],[516988.93883366376,5276172.388559236],[516994.5562266637,5276177.961931268],[516989.4338395002,5276182.948273253],[516984.64173585724,5276177.7107317485]]]},"properties":{"ID_SOURCE":"w145341154","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2171}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.2006602698,5276360.783084844],[516763.9517835137,5276360.785246815],[516763.9617004057,5276357.339944816],[516763.21025683306,5276357.448921624],[516763.21281591547,5276356.559811433],[516763.88882732484,5276356.561757201],[516763.97609588655,5276352.33870002],[516763.22529143875,5276352.225399279],[516763.2272107492,5276351.55856664],[516763.97801528435,5276351.671867386],[516763.9131395751,5276348.115210464],[516763.31223967264,5276348.113480887],[516763.3141589901,5276347.446648258],[516763.9904913576,5276347.337455262],[516763.9201773253,5276345.670157486],[516765.7976703733,5276345.786701586],[516765.7190386014,5276347.009011852],[516774.35697633075,5276347.033884055],[516774.3441724461,5276351.479434944],[516775.39542655327,5276351.593602511],[516776.0714385419,5276351.595549694],[516776.1423892726,5276353.040570098],[516776.5914631188,5276353.597562133],[516776.9647841739,5276354.37661538],[516777.1853191169,5276356.0443460895],[516776.35684192,5276356.819937465],[516776.43131402,5276357.042431376],[516776.13086452876,5276357.041565931],[516776.05223072064,5276358.263876082],[516775.22567467723,5276358.372634975],[516774.2488939568,5276358.48096132],[516774.16097781085,5276362.926295954],[516772.5836195732,5276362.921753161],[516772.7123996234,5276370.3684837315],[516773.98930703895,5276370.372161231],[516773.74252452503,5276377.817810268],[516773.13490606804,5276380.149993994],[516772.1533281591,5276381.925402348],[516771.7764876937,5276382.36887593],[516771.14356226317,5276383.056119439],[516770.6462866736,5276383.588158045],[516770.57085461554,5276383.699080536],[516768.5396299333,5276384.804628894],[516766.5093658797,5276385.576761627],[516764.1799340148,5276385.903475123],[516760.5739183227,5276386.11537592],[516757.0436544386,5276386.105217509],[516756.9726994396,5276384.660197274],[516749.9121699192,5276384.63988696],[516749.98280703305,5276386.196045883],[516749.98056958226,5276386.974017337],[516748.02765794366,5276386.968401077],[516748.0266991472,5276387.301817413],[516747.72465325514,5276387.8566473285],[516747.04672800255,5276388.5215361025],[516746.3704007418,5276388.630731058],[516745.24499945523,5276388.1829364095],[516744.72145241156,5276387.4034532495],[516744.6479381016,5276386.847543396],[516744.1972661771,5276386.846247691],[516744.12726657296,5276385.067811281],[516743.1508104361,5276385.065004051],[516738.71920181555,5276385.052265606],[516738.66612972965,5276377.383474038],[516737.9917177749,5276376.825837302],[516738.820187011,5276376.050240463],[516741.0051474138,5276373.722587027],[516744.6105309346,5276373.732951651],[516744.6949095624,5276370.5101430835],[516749.50177062646,5276370.635104895],[516749.5052865018,5276369.412578361],[516750.2564086274,5276369.414738566],[516750.17841967224,5276370.414771524],[516753.48335645965,5276370.424277546],[516753.4859140658,5276369.53516734],[516754.3121483884,5276369.537544138],[516754.4598150536,5276370.427086501],[516758.13999304635,5276370.5488143535],[516758.2106281657,5276372.104973349],[516765.27149283333,5276372.01415491],[516765.36612058623,5276365.234905816],[516763.9389875138,5276365.230797804],[516763.87475179776,5276361.451863258],[516763.1987409566,5276361.44991749],[516763.2006602698,5276360.783084844]]]},"properties":{"ID_SOURCE":"w145341162","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2172}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516563.4883828253,5276337.717016715],[516564.4663605341,5276345.110586284],[516559.3191937313,5276345.7850153865],[516559.0250634393,5276343.561385671],[516549.54226067493,5276344.801424318],[516548.2187502499,5276334.761751447],[516553.3809479773,5276334.087355227],[516558.873800669,5276333.358333831],[516559.2634924589,5276336.315757023],[516563.2384678975,5276335.793589667],[516563.4883828253,5276337.717016715]]]},"properties":{"ID_SOURCE":"w145341166","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2173}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516704.7403828061,5276318.837707],[516706.3928658032,5276318.84244685],[516706.3238100596,5276316.730594808],[516706.41326881695,5276311.729565763],[516713.6241125105,5276311.7502542315],[516713.6030628213,5276319.085412848],[516710.8989998414,5276319.077653628],[516710.81463940593,5276322.300462377],[516704.8056138866,5276322.28322424],[516704.7403828061,5276318.837707]]]},"properties":{"ID_SOURCE":"w145341169","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2174}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.9109585862,5276147.123309944],[516656.9194870865,5276154.647488472],[516655.4697679829,5276154.6433427185],[516655.4770682107,5276157.34405705],[516649.3326339671,5276157.3376037935],[516649.3333506945,5276154.459088969],[516650.4225179277,5276154.462202473],[516650.42129713675,5276152.261633961],[516650.42098420265,5276147.115867426],[516651.94601089903,5276147.053543425],[516656.9109585862,5276147.123309944]]]},"properties":{"ID_SOURCE":"w145341170","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2175}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516869.09666915133,5276183.821037245],[516868.97100453195,5276190.900270601],[516868.91811399756,5276193.600811544],[516863.5175435104,5276193.529602795],[516859.5065587247,5276193.473535201],[516855.9161828299,5276193.429801572],[516848.7654767111,5276193.342427871],[516840.6758714676,5276193.241234174],[516835.11756001617,5276193.169595673],[516833.5251328657,5276193.164993061],[516831.6622935592,5276193.159609427],[516831.66614765755,5276191.825944496],[516829.11225447344,5276191.818564676],[516827.7601933753,5276191.814658166],[516827.85521617753,5276184.924273083],[516827.9354684188,5276183.146270221],[516869.09666915133,5276183.821037245]]]},"properties":{"ID_SOURCE":"w145341174","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2176}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.4258190121,5276310.435157834],[516569.1589265336,5276316.772204441],[516569.3801548171,5276318.217649506],[516565.3975923156,5276318.762019071],[516565.6169247857,5276320.8742966065],[516561.03355666634,5276321.383618412],[516556.90099266055,5276321.84976948],[516555.9469567534,5276313.95614108],[516564.43724562036,5276313.091164646],[516564.2179124069,5276310.978887181],[516568.4258190121,5276310.435157834]]]},"properties":{"ID_SOURCE":"w145341175","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2177}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516727.80475401296,5276419.251934143],[516727.8076269578,5276418.251685077],[516732.0141948473,5276418.15262912],[516732.0870713467,5276418.9308164045],[516733.3941723845,5276418.879001954],[516734.79140733706,5276418.827446788],[516734.7933234326,5276418.160614081],[516738.5485831826,5276418.2825454585],[516738.3756813245,5276426.172967465],[516727.6350588643,5276426.030968582],[516727.80475401296,5276419.251934143]]]},"properties":{"ID_SOURCE":"w145341176","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2178}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516465.67933436437,5276373.715661284],[516465.46606510767,5276372.103533153],[516470.0344564532,5276371.560752098],[516470.40118552034,5276374.684813868],[516478.9217633465,5276373.697545235],[516479.83846291,5276381.546599757],[516475.2400336191,5276382.089288123],[516470.7994347681,5276382.599084566],[516470.5060584304,5276380.097612322],[516466.44843573053,5276380.641837062],[516465.67933436437,5276373.715661284]]]},"properties":{"ID_SOURCE":"w145341178","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2179}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517204.5787715509,5276681.385875555],[517204.1946850875,5276676.6501855515],[517213.6531151637,5276675.9001573725],[517213.81250576087,5276677.878916886],[517217.388512726,5276677.600524897],[517218.0837897503,5276686.315940681],[517213.42596812587,5276686.680046264],[517208.82823360816,5276687.044333128],[517208.66884159506,5276685.065573727],[517204.8899819768,5276685.365599696],[517204.5787715509,5276681.385875555]]]},"properties":{"ID_SOURCE":"w145341185","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2180}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.4433229589,5276251.470691096],[517266.46907475195,5276255.559215397],[517266.39462000964,5276255.336715215],[517267.44785929227,5276254.784139056],[517265.4236441223,5276250.943817561],[517264.1538919049,5276248.517207629],[517270.2550781715,5276245.345585574],[517273.71591776295,5276243.466473356],[517275.73410218535,5276246.80665104],[517272.8000492073,5276248.353905122],[517274.4433229589,5276251.470691096]]]},"properties":{"ID_SOURCE":"w145341187","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2181}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.3166578448,5276526.815835304],[516689.879966363,5276526.937531172],[516690.00557766075,5276530.283196637],[516689.1793661639,5276530.280828907],[516689.2573054855,5276531.914806107],[516689.3209871243,5276533.282007132],[516689.996659493,5276533.395083176],[516690.0603033196,5276537.396295433],[516688.0323321238,5276537.390483916],[516682.39876044233,5276537.485483325],[516682.3166578448,5276526.815835304]]]},"properties":{"ID_SOURCE":"w145341188","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2182}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.2304757219,5276104.453664931],[517016.93098727375,5276104.119370913],[517013.7858695171,5276100.775992796],[517017.92859738466,5276096.89820672],[517018.3805907086,5276096.454968648],[517021.5253834079,5276099.909487958],[517028.33881733264,5276107.486901315],[517026.1244409796,5276109.525397975],[517023.89497809985,5276111.586079311],[517022.7714930366,5276110.471398941],[517017.2304757219,5276104.453664931]]]},"properties":{"ID_SOURCE":"w145341189","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2183}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.6710180425,5276361.152011207],[516682.7251192288,5276368.487385566],[516679.02978885215,5276368.4101178665],[516676.1155618765,5276368.357316933],[516676.04745055793,5276365.912048787],[516676.0503145649,5276364.911799802],[516674.3981628508,5276364.795929754],[516674.784861146,5276360.907147859],[516675.1607409508,5276360.797084357],[516675.3100109688,5276361.130930796],[516682.6710180425,5276361.152011207]]]},"properties":{"ID_SOURCE":"w145341191","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2184}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.65886569035,5276320.995297646],[516435.97091994947,5276320.95154708],[516435.9856608941,5276315.728024892],[516437.33769300935,5276315.731840523],[516437.20628680324,5276309.063090409],[516442.91455961374,5276309.190342942],[516442.9064016315,5276312.079950927],[516446.1961915999,5276312.144809467],[516450.04181727004,5276312.211239766],[516450.07688929955,5276321.069169426],[516439.65886569035,5276320.995297646]]]},"properties":{"ID_SOURCE":"w145341192","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2185}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516830.863430188,5276331.83739931],[516830.77304630174,5276326.724712083],[516833.67259179236,5276326.666408165],[516833.6214958951,5276323.554348997],[516837.8581152321,5276323.47768393],[516840.2242972178,5276323.44006925],[516841.3660761777,5276323.421142813],[516841.5337310353,5276332.979641573],[516837.57506760827,5276333.0459935265],[516833.67649443087,5276333.112521854],[516833.6503040815,5276331.778769788],[516830.863430188,5276331.83739931]]]},"properties":{"ID_SOURCE":"w145341193","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2186}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.5991968046,5276203.860901217],[516956.4012498125,5276202.523737293],[516958.7369145326,5276200.085464424],[516958.13826443284,5276199.305743573],[516960.41283634934,5276197.211826533],[516963.5610682983,5276194.320249112],[516968.8773589149,5276200.114998975],[516963.75533687696,5276204.990224873],[516963.0815736042,5276204.21028473],[516960.3700134714,5276206.758600955],[516957.5991968046,5276203.860901217]]]},"properties":{"ID_SOURCE":"w145341194","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2187}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.4591439988,5276383.372138076],[516699.0645214799,5276383.382474518],[516699.14409482566,5276381.826746982],[516700.9618064588,5276381.831959142],[516703.7259299311,5276381.83988616],[516706.1067906644,5276381.913398913],[516706.0308125049,5276390.070834495],[516698.97028969065,5276390.050585923],[516698.96487242175,5276391.939945186],[516695.5097240795,5276391.93003943],[516695.4591439988,5276383.372138076]]]},"properties":{"ID_SOURCE":"w145341198","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2188}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517259.09370585,5276640.525486645],[517258.73528944195,5276634.7451551445],[517262.04106522957,5276634.421533673],[517261.9722156196,5276632.309673512],[517266.13410197693,5276632.033047972],[517271.58812457795,5276631.671345638],[517272.0153743635,5276639.5635382375],[517262.77469261194,5276640.314117407],[517262.847165754,5276641.203450601],[517259.16585017013,5276641.525958607],[517259.09370585,5276640.525486645]]]},"properties":{"ID_SOURCE":"w145341199","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2189}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.82656602125,5276330.59547624],[517001.4723542305,5276330.465784249],[517001.6631336481,5276316.573877093],[517022.09319330216,5276316.855830894],[517028.60916862584,5276323.320981999],[517028.55652725266,5276341.325462216],[517014.5107988062,5276341.17327258],[517014.4662059015,5276330.726008999],[517011.1089270179,5276330.627290348],[517007.82656602125,5276330.59547624]]]},"properties":{"ID_SOURCE":"w145341202","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2190}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516966.02005650825,5276082.498668978],[516965.96067248995,5276074.518667985],[516971.8726272936,5276074.424751688],[516973.45006379456,5276074.429348266],[516973.37915803946,5276072.984325984],[516978.5624889338,5276072.888293248],[516978.4851051405,5276073.666045341],[516978.4601598776,5276082.223726995],[516978.4585400555,5276082.779420615],[516966.02005650825,5276082.498668978]]]},"properties":{"ID_SOURCE":"w145341206","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2191}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.8031733583,5276093.62236513],[517304.8964585728,5276089.074826678],[517305.87692711496,5276087.744063311],[517308.4252520014,5276089.641010336],[517308.95304449915,5276088.975740536],[517312.1085177152,5276091.307938327],[517317.27272981044,5276095.113153863],[517312.2939475941,5276102.211294501],[517303.67380425637,5276096.072995582],[517304.2770415775,5276095.296809788],[517301.8031733583,5276093.62236513]]]},"properties":{"ID_SOURCE":"w145341207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2192}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.774560523,5276320.997885177],[516679.3909688374,5276320.976735165],[516674.30582990125,5276320.962174428],[516674.3876246536,5276318.628475342],[516674.4032157858,5276313.182675746],[516677.8580925626,5276313.303707636],[516677.86254809395,5276311.7477649],[516683.64624555595,5276311.764329715],[516683.5692224356,5276312.430947151],[516686.72428456316,5276312.328846117],[516686.774560523,5276320.997885177]]]},"properties":{"ID_SOURCE":"w145341208","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2193}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517204.5787715509,5276681.385875555],[517201.8141987498,5276681.577760364],[517201.8862210235,5276682.622687191],[517196.98811698385,5276682.963868212],[517192.15010008577,5276683.305230735],[517191.59476644784,5276675.512691715],[517200.97782572894,5276674.8513322845],[517200.88392723387,5276673.584061279],[517203.9865896715,5276673.359832853],[517204.1946850875,5276676.6501855515],[517204.5787715509,5276681.385875555]]]},"properties":{"ID_SOURCE":"w145341211","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2194}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.2750568855,5276502.1659109825],[517273.7814289126,5276502.488966968],[517273.7159721239,5276501.766364303],[517270.6731390615,5276502.046303339],[517266.9015365986,5276502.390767074],[517265.838794767,5276490.962447922],[517270.7599273271,5276490.510252542],[517271.0874443333,5276494.045468487],[517273.49918752455,5276493.819227688],[517273.27356354316,5276491.38459753],[517276.24129164487,5276491.104437031],[517276.3578750623,5276492.316206369],[517277.2750568855,5276502.1659109825]]]},"properties":{"ID_SOURCE":"w145341213","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2195}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.3651101278,5276147.854270886],[517297.1189968445,5276145.69963347],[517297.5944334747,5276144.956409338],[517290.47334323166,5276139.933978463],[517290.3231128544,5276139.933532494],[517295.45338697237,5276132.391263979],[517302.72504283173,5276137.303008425],[517304.38517209666,5276134.75172703],[517307.75875356013,5276136.984545012],[517300.3651101278,5276147.854270886]]]},"properties":{"ID_SOURCE":"w145341217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2196}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517040.603091387,5276562.639916875],[517042.563750044,5276559.978300024],[517046.33355181845,5276555.0991838435],[517048.6567508107,5276556.884220549],[517049.32763577293,5276556.063750355],[517050.91817982856,5276554.112347244],[517058.263643927,5276559.357426847],[517052.3823019297,5276567.1199859725],[517045.41108995496,5276562.320568118],[517043.4510812798,5276564.7599064065],[517040.603091387,5276562.639916875]]]},"properties":{"ID_SOURCE":"w145341219","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2197}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.794799036,5276209.43326149],[516650.2879426624,5276209.420375863],[516650.25191559654,5276203.629896758],[516650.2372923692,5276200.862477523],[516652.7911813988,5276200.869778919],[516661.5044498512,5276200.894697995],[516661.2635283956,5276206.339852016],[516660.287042327,5276206.337058751],[516658.93307741155,5276207.000023909],[516658.7758554968,5276209.444646697],[516654.794799036,5276209.43326149]]]},"properties":{"ID_SOURCE":"w145341221","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2198}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.16484131094,5276444.558365523],[516716.26993832923,5276434.111534993],[516717.09616347885,5276434.113906533],[516723.7059646633,5276434.132883078],[516723.76958697126,5276438.1340951305],[516723.0181545904,5276438.243077102],[516723.0514977709,5276439.71021695],[516723.0846494563,5276441.244040069],[516723.68585887883,5276441.134626731],[516723.67596554966,5276444.579929191],[516716.16484131094,5276444.558365523]]]},"properties":{"ID_SOURCE":"w145341222","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2199}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.67596554966,5276444.579929191],[516723.59159929317,5276447.802738409],[516723.06582088803,5276447.801228642],[516723.02376558573,5276449.368177743],[516722.9814550024,5276451.024037883],[516723.5823442767,5276451.025763324],[516723.4947867622,5276455.3599604815],[516719.81402363325,5276455.460531965],[516716.0587875316,5276455.338612601],[516716.16484131094,5276444.558365523],[516723.67596554966,5276444.579929191]]]},"properties":{"ID_SOURCE":"w145341225","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2200}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516711.39269472566,5276222.93213811],[516711.23098683794,5276226.932702111],[516707.8508546365,5276226.923004786],[516707.9352143819,5276223.700196476],[516699.89832535904,5276223.566007413],[516699.84551761247,5276215.786079524],[516704.1196745279,5276215.742766313],[516707.8079408111,5276215.697775517],[516707.80539030116,5276216.58688551],[516711.41118993156,5276216.4860906],[516711.39269472566,5276222.93213811]]]},"properties":{"ID_SOURCE":"w145341229","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2201}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516662.69450080284,5276310.03725495],[516666.4501495848,5276310.048000885],[516666.5265347032,5276309.603660764],[516671.8595563773,5276309.618924224],[516671.85605686624,5276310.841450656],[516674.55980543804,5276310.960330505],[516674.4032157858,5276313.182675746],[516674.3876246536,5276318.628475342],[516668.26592613664,5276318.6109523475],[516662.59490480996,5276318.594725128],[516662.69450080284,5276310.03725495]]]},"properties":{"ID_SOURCE":"w145341233","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2202}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.3580005194,5276171.215600691],[516674.7946397715,5276171.213987815],[516674.8324810868,5276168.491174663],[516673.75840305723,5276168.465871847],[516673.7776575393,5276166.987769591],[516673.76867960114,5276164.876090503],[516683.27077155025,5276164.881072162],[516683.27344425564,5276166.570402541],[516683.26962416584,5276167.904067435],[516683.2674262466,5276171.293820569],[516675.3580005194,5276171.215600691]]]},"properties":{"ID_SOURCE":"w145341234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2203}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516519.47852828365,5276671.72240366],[516524.8222559083,5276667.847674187],[516528.2649384169,5276672.191893461],[516529.16813073016,5276671.52761861],[516531.55484175246,5276674.790787407],[516533.7320674613,5276677.764399162],[516535.1622794699,5276676.6570626255],[516537.18231193454,5276679.441291824],[516529.35528557486,5276684.976056846],[516522.7706806182,5276676.17733243],[516519.47852828365,5276671.72240366]]]},"properties":{"ID_SOURCE":"w145341237","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2204}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.35321085516,5276466.071238974],[516706.41396032204,5276465.98034944],[516706.86430729605,5276466.092781026],[516706.9097677424,5276476.428904357],[516699.2481442923,5276476.518070265],[516699.26057268423,5276472.183657267],[516699.86145976756,5276472.185380268],[516699.895296518,5276470.862914767],[516699.94549395994,5276469.073709409],[516699.2694956266,5276469.07177103],[516699.35321085516,5276466.071238974]]]},"properties":{"ID_SOURCE":"w145341246","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2205}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.6805126607,5276499.041971895],[517223.5340564024,5276499.272689859],[517223.4543442899,5276500.828410845],[517227.0593211016,5276500.95021312],[517226.9805943173,5276502.172517679],[517226.5095492299,5276509.061789924],[517225.5331136853,5276509.058901767],[517224.4107304122,5276507.610765139],[517222.03743753996,5276507.53706256],[517220.2799845521,5276507.487409828],[517220.6805126607,5276499.041971895]]]},"properties":{"ID_SOURCE":"w145341247","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2206}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.2532031125,5276387.820869112],[516594.79268180573,5276388.819240966],[516594.8732465634,5276389.541878466],[516590.41007720213,5276390.0626334],[516589.7130391004,5276384.259156433],[516593.6502703529,5276383.792472281],[516593.3494356062,5276381.290972317],[516597.44443616876,5276380.813626256],[516602.35096455883,5276380.227456713],[516602.8351083202,5276384.29654925],[516603.2532031125,5276387.820869112]]]},"properties":{"ID_SOURCE":"w145341248","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2207}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.2066591496,5276182.73529361],[516607.8490675126,5276182.714604775],[516607.8458034095,5276183.859333848],[516602.94085162843,5276183.834235871],[516602.95786737907,5276180.500094943],[516599.38995344273,5276180.478811456],[516599.4256912755,5276173.210380432],[516602.6105245009,5276173.230571928],[516602.6224395269,5276171.685764813],[516602.0515673639,5276171.684137563],[516602.0839821745,5276165.582663435],[516605.9523962674,5276165.593691301],[516605.91557297914,5276173.239993945],[516606.67423183355,5276173.242156992],[516607.4328906891,5276173.244320136],[516607.43602794217,5276172.1440465795],[516611.2593371377,5276172.166063351],[516611.2233309667,5276179.523405319],[516611.2066591496,5276182.73529361]]]},"properties":{"ID_SOURCE":"w145341257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2208}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516659.73578214174,5276170.592969052],[516659.60336901067,5276177.494362691],[516652.8959454072,5276177.364041655],[516652.9494031611,5276174.430107699],[516652.9671588703,5276173.474357464],[516647.0558832217,5276173.368547475],[516647.10065126844,5276170.845805367],[516647.1094333487,5276170.4012718685],[516656.4609051296,5276170.539146926],[516659.73578214174,5276170.592969052]]]},"properties":{"ID_SOURCE":"w145341298","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2209}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516653.86661644635,5276192.5373797],[516654.31698559935,5276192.649807127],[516654.2323374253,5276195.983754733],[516652.9557096037,5276195.868964835],[516652.7911813988,5276200.869778919],[516650.2372923692,5276200.862477523],[516644.4534848548,5276200.845946145],[516644.4648232963,5276196.8782928735],[516644.47698749724,5276192.621678886],[516648.60860209365,5276192.52234768],[516653.86661644635,5276192.5373797]]]},"properties":{"ID_SOURCE":"w145341299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2210}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516363.2680664688,5276585.814947959],[516357.697171169,5276590.356025095],[516360.54227199074,5276593.587068373],[516355.5735087431,5276597.685280383],[516352.80289234035,5276594.676728055],[516352.4267217231,5276594.8979511745],[516347.18654155463,5276588.659416587],[516358.1026869244,5276579.687753485],[516361.02196553315,5276583.252424358],[516363.2680664688,5276585.814947959]]]},"properties":{"ID_SOURCE":"w145341308","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2211}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.1610882979,5276375.307969193],[516497.94807994977,5276373.606928828],[516501.9153870719,5276373.129153897],[516502.2238672,5276375.597328661],[516510.9625265891,5276374.521813071],[516511.9319818519,5276382.29322467],[516507.84443785215,5276382.792879886],[516503.2008451268,5276383.368760073],[516502.8556601056,5276380.6004041005],[516498.87330409273,5276381.089249704],[516498.1610882979,5276375.307969193]]]},"properties":{"ID_SOURCE":"w145341309","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2212}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5068044968,5276370.134745798],[516534.69855529093,5276363.797489716],[516534.5521170041,5276362.463397902],[516538.53433106485,5276362.030146062],[516539.04843965557,5276366.1437739],[516548.06411990995,5276365.391405624],[516549.0923222587,5276373.618663134],[516544.2913297543,5276374.0718097165],[516539.85100254044,5276374.481528638],[516539.2636767835,5276369.700854698],[516535.5068044968,5276370.134745798]]]},"properties":{"ID_SOURCE":"w145341311","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2213}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516698.5579004369,5276455.288407075],[516696.6046931219,5276455.393946795],[516696.5423269278,5276450.948179816],[516697.4436608405,5276450.950763911],[516697.450766508,5276448.472368882],[516697.46150466136,5276444.726991658],[516704.82272492413,5276444.63696153],[516704.8787092717,5276451.305504383],[516703.9022642566,5276451.302703706],[516703.8907887826,5276455.3037001835],[516698.5579004369,5276455.288407075]]]},"properties":{"ID_SOURCE":"w145341319","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2214}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.7262602135,5276455.2725287145],[516455.2107974985,5276450.039029884],[516457.39278995077,5276448.711519242],[516456.5703354741,5276447.37551903],[516459.8818244145,5276445.050943908],[516462.62008831836,5276448.881888567],[516463.1732091883,5276449.839253365],[516467.6126243535,5276447.073312449],[516471.80124898156,5276453.308979794],[516461.8674180204,5276460.060412989],[516458.7262602135,5276455.2725287145]]]},"properties":{"ID_SOURCE":"w145341323","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2215}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517139.1620102541,5276506.803560414],[517136.8998668048,5276509.797676986],[517134.034553827,5276513.567998161],[517130.66210638575,5276511.001862716],[517130.20980947267,5276511.556231101],[517127.5044364933,5276509.469960647],[517123.68991051894,5276506.535767976],[517126.85696957144,5276502.321770121],[517130.82932680764,5276505.223087172],[517133.0911419197,5276502.340107061],[517139.1620102541,5276506.803560414]]]},"properties":{"ID_SOURCE":"w145341338","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2216}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516756.51179958193,5276790.218875004],[516758.01972421433,5276788.2115844125],[516757.28524455987,5276787.66488594],[516760.037263055,5276783.982965525],[516763.0576072566,5276786.236682484],[516768.8588430596,5276790.432240269],[516784.59417213954,5276769.472156537],[516770.8862185781,5276759.318943511],[516770.3433344397,5276760.050902521],[516761.00211219443,5276772.338294838],[516747.11415508634,5276762.084594029],[516746.2896703551,5276761.49318224],[516740.1071457761,5276769.733090808],[516738.75020335964,5276771.4740845235],[516736.1943969709,5276774.834273478],[516756.51179958193,5276790.218875004]]]},"properties":{"ID_SOURCE":"w146255123","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2217}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516641.0212486999,5276710.633940361],[516639.12989868957,5276715.407544977],[516638.44980093907,5276716.850418482],[516636.86079074984,5276720.958049224],[516625.4545774944,5276717.369002348],[516626.0595642178,5276715.9259129],[516620.80741489964,5276714.0215446185],[516623.7588258641,5276706.250187084],[516629.0116159792,5276707.932280317],[516629.54054457694,5276706.822393288],[516641.0212486999,5276710.633940361]]]},"properties":{"ID_SOURCE":"w146259605","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2218}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516031.60331127886,5277617.491933038],[516033.77484332904,5277617.042239892],[516034.6389688443,5277616.855682108],[516034.4239756618,5277615.843717388],[516038.1358975285,5277615.064849094],[516043.44828688545,5277613.956973912],[516041.8471878017,5277606.339482613],[516029.78717286524,5277608.873594352],[516031.25491963245,5277615.834990004],[516031.60331127886,5277617.491933038]]]},"properties":{"ID_SOURCE":"w147733318","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2219}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.6094331704,5277062.656235037],[517238.6393403624,5277062.385037347],[517238.4446299623,5277052.048453409],[517217.42245869956,5277052.230762986],[517217.6094331704,5277062.656235037]]]},"properties":{"ID_SOURCE":"w156350962","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2220}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.57108332566,5277080.592570804],[517224.91956923646,5277094.808390994],[517228.5700949458,5277094.641367381],[517228.60375565256,5277080.72675527],[517224.57108332566,5277080.592570804]]]},"properties":{"ID_SOURCE":"w156350964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2221}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515330.34358018084,5277047.0122428695],[515327.48935724195,5277047.115868646],[515327.2818923599,5277040.335802238],[515331.4134636849,5277040.013260081],[515331.48534830083,5277041.235985799],[515339.14707697916,5277040.811605393],[515339.3606763779,5277045.257755205],[515338.5339528567,5277045.477856746],[515338.8153367004,5277052.702677115],[515330.627900222,5277053.1256737495],[515330.34358018084,5277047.0122428695]]]},"properties":{"ID_SOURCE":"w167333729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2222}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.80598102853,5276995.974814463],[515281.3700200273,5276991.98051492],[515277.24599886755,5276989.4134812765],[515281.0926446736,5276983.199753622],[515289.3401052013,5276988.556107031],[515287.75649798964,5276990.997021762],[515291.6554929299,5276993.452332272],[515287.0548843428,5277000.775470276],[515283.1558924037,5276998.320162817],[515282.92999683745,5276998.541849251],[515278.80598102853,5276995.974814463]]]},"properties":{"ID_SOURCE":"w167333943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2223}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515206.99290592025,5277087.2547713155],[515219.8148777121,5277095.179188898],[515215.441489814,5277101.8361397125],[515212.89206248155,5277100.273522857],[515209.87546940916,5277105.044648361],[515203.5772912612,5277101.027171582],[515206.4428048901,5277096.589067328],[515205.392816986,5277096.030626939],[515207.2016698086,5277093.590277974],[515204.05257467995,5277091.581540224],[515206.99290592025,5277087.2547713155]]]},"properties":{"ID_SOURCE":"w167333947","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2224}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515210.17252455314,5276272.387510339],[515206.8637618165,5276273.823684262],[515205.5943780321,5276270.930742294],[515206.4974803048,5276270.2662629485],[515205.1535623589,5276267.150847439],[515218.1644574304,5276260.961015285],[515232.05855570326,5276290.449312006],[515220.85420171847,5276295.199020089],[515217.56751845655,5276288.188640959],[515215.3869124815,5276289.072060135],[515210.68119361944,5276278.946071136],[515212.7866893062,5276278.062454008],[515210.17252455314,5276272.387510339]]]},"properties":{"ID_SOURCE":"w167334306","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2225}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515386.32081853424,5276838.661877653],[515386.24130759935,5276840.328762267],[515378.34929717076,5276842.530708049],[515378.1260334573,5276841.752140917],[515373.4659355704,5276843.0735119805],[515372.2748005218,5276839.069340219],[515372.7260240009,5276838.848252099],[515371.75873917603,5276835.400369646],[515375.89280608995,5276834.188747869],[515375.67012862343,5276833.1879031025],[515390.5526099963,5276828.892771747],[515392.7852328767,5276836.678448132],[515386.32081853424,5276838.661877653]]]},"properties":{"ID_SOURCE":"w167334405","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2226}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515354.76783331804,5276870.2533917865],[515353.5611603613,5276872.139584134],[515345.3141785345,5276866.560863224],[515347.5007401425,5276863.343575931],[515352.5249174299,5276866.357590287],[515356.0680768592,5276861.365648595],[515363.7159691763,5276866.275966151],[515364.99863217276,5276864.056557463],[515367.9230651461,5276865.842508995],[515367.243300401,5276867.285530511],[515366.56558896124,5276867.950579976],[515361.5910187947,5276874.605833844],[515354.76783331804,5276870.2533917865]]]},"properties":{"ID_SOURCE":"w167334423","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2227}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515392.4224124489,5276973.934967667],[515391.44664309977,5276973.710109062],[515387.0908828351,5276973.58745773],[515382.5101028537,5276973.353075549],[515383.2107053798,5276964.019194172],[515384.93810895155,5276964.023757901],[515386.014826819,5276954.468591389],[515393.82423891575,5276955.04492965],[515392.96812110307,5276966.378912647],[515394.39481227024,5276966.493823933],[515394.16274105496,5276969.049422812],[515392.8108611616,5276969.04584901],[515392.4224124489,5276973.934967667]]]},"properties":{"ID_SOURCE":"w167334442","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2228}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515399.85845731327,5276888.488227246],[515399.9332688706,5276888.599564748],[515402.8573848572,5276890.496672826],[515405.55647668557,5276892.282047403],[515409.5303000372,5276894.848774],[515400.7857409368,5276907.0510025425],[515399.58640844346,5276906.158713416],[515397.9273336227,5276908.710538279],[515393.8035980053,5276906.032283554],[515395.46237792977,5276903.591596413],[515394.6376889204,5276903.033717812],[515399.916221499,5276895.045619778],[515396.91700144013,5276893.148314572],[515399.85845731327,5276888.488227246]]]},"properties":{"ID_SOURCE":"w167334686","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2229}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515401.29545554845,5276884.713279404],[515399.8690383801,5276884.487227608],[515398.67175834166,5276882.81696656],[515398.7545052098,5276879.927554347],[515393.43170367775,5276876.245872524],[515399.76320852083,5276867.704859926],[515399.01362056454,5276867.147179372],[515401.6523162404,5276863.375409663],[515410.64912982594,5276869.400753522],[515409.5950027596,5276870.3982208185],[515403.1860288938,5276879.828135142],[515410.38263601775,5276884.959600041],[515407.8935671486,5276888.954041122],[515402.12161634007,5276884.715464533],[515401.29545554845,5276884.713279404]]]},"properties":{"ID_SOURCE":"w167334755","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2230}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515355.0193147325,5276888.814376596],[515357.96015290066,5276884.376545963],[515364.18335530517,5276888.393989917],[515361.0174913005,5276892.720084183],[515355.0193147325,5276888.814376596]]]},"properties":{"ID_SOURCE":"w167336104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2231}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515317.6142273136,5277089.5452405615],[515317.4950121753,5277077.764120534],[515330.8639374958,5277077.577025069],[515330.8323345792,5277089.580027772],[515317.6142273136,5277089.5452405615]]]},"properties":{"ID_SOURCE":"w167336415","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2232}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515364.56155618536,5276915.846482748],[515369.9917130995,5276907.303059467],[515379.6638503379,5276913.552417918],[515373.9329713484,5276922.206177994],[515364.56155618536,5276915.846482748]]]},"properties":{"ID_SOURCE":"w167336511","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2233}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515392.4224124489,5276973.934967667],[515392.8108611616,5276969.04584901],[515394.16274105496,5276969.049422812],[515393.77399739623,5276974.049680276],[515392.4224124489,5276973.934967667]]]},"properties":{"ID_SOURCE":"w167336601","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2234}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515344.80900183745,5277001.260799205],[515344.17448993435,5277014.040189457],[515333.1359789119,5277013.344273772],[515333.9206747092,5277000.565277938],[515344.80900183745,5277001.260799205]]]},"properties":{"ID_SOURCE":"w167336790","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2235}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515285.63311472855,5277056.008154112],[515285.6564550351,5277047.117041415],[515297.7492749688,5277046.704240446],[515297.72474826185,5277056.0399087705],[515285.63311472855,5277056.008154112]]]},"properties":{"ID_SOURCE":"w167336879","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2236}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515284.10906693747,5276978.539804559],[515288.8604815982,5276970.994781051],[515297.7830155439,5276976.686337778],[515292.9567815223,5276984.120017943],[515284.10906693747,5276978.539804559]]]},"properties":{"ID_SOURCE":"w167337006","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2237}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515411.60897698184,5276620.228237965],[515414.3305489142,5276613.567064358],[515426.7848097565,5276618.823604123],[515423.9884114464,5276625.37343423],[515411.60897698184,5276620.228237965]]]},"properties":{"ID_SOURCE":"w167337067","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2238}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515253.26825382706,5277025.471012597],[515259.1487688345,5277016.928665491],[515265.1474593397,5277020.611997454],[515259.040754473,5277029.4871648345],[515253.26825382706,5277025.471012597]]]},"properties":{"ID_SOURCE":"w167337092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2239}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.80598102853,5276995.974814463],[515274.75706570985,5276993.407979631],[515277.24599886755,5276989.4134812765],[515281.3700200273,5276991.98051492],[515278.80598102853,5276995.974814463]]]},"properties":{"ID_SOURCE":"w167337424","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2240}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515349.09260930563,5276857.790789324],[515351.34226959577,5276859.130395317],[515350.13500953995,5276861.238866094],[515347.80936517916,5276860.232479231],[515349.09260930563,5276857.790789324]]]},"properties":{"ID_SOURCE":"w167337560","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2241}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515339.11969533615,5277022.695766066],[515347.75545427116,5277023.163080242],[515347.12328133185,5277035.053359381],[515338.487539992,5277034.586046093],[515339.11969533615,5277022.695766066]]]},"properties":{"ID_SOURCE":"w167337686","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2242}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515211.35845580883,5277083.598565003],[515218.3004604511,5277071.169061032],[515226.84942783916,5277076.081556321],[515219.53189621255,5277088.510068691],[515211.35845580883,5277083.598565003]]]},"properties":{"ID_SOURCE":"w167337732","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2243}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515242.708058359,5277042.892287077],[515249.7936907096,5277033.019409241],[515255.41656144965,5277036.812886749],[515248.1053227642,5277046.796306702],[515242.708058359,5277042.892287077]]]},"properties":{"ID_SOURCE":"w167338116","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2244}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515385.47867458686,5277015.260575378],[515386.18808738695,5277002.592526754],[515393.92233089334,5277003.168666881],[515392.9118983876,5277016.05819825],[515385.47867458686,5277015.260575378]]]},"properties":{"ID_SOURCE":"w167338256","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2245}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515354.1177448014,5277088.307706697],[515354.8150655078,5277080.19634839],[515367.9557445589,5277081.120133085],[515367.18330275314,5277089.231291665],[515354.1177448014,5277088.307706697]]]},"properties":{"ID_SOURCE":"w167338292","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2246}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515337.62988307315,5276961.009325413],[515352.7989490893,5276961.8272778485],[515352.0898976625,5276974.384190685],[515336.9211570027,5276973.455101116],[515337.62988307315,5276961.009325413]]]},"properties":{"ID_SOURCE":"w167338301","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2247}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515369.91250833607,5276937.310558524],[515379.2363699753,5276933.223008837],[515383.7159449862,5276943.34855098],[515374.39268320386,5276947.213815749],[515369.91250833607,5276937.310558524]]]},"properties":{"ID_SOURCE":"w167338342","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2248}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.195128983,5277085.662927032],[515288.93630723923,5277085.13542206],[515288.91792258644,5277092.137173722],[515278.4774602272,5277092.554328038],[515278.195128983,5277085.662927032]]]},"properties":{"ID_SOURCE":"w167338410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2249}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515342.7140231991,5276884.225216003],[515346.3886291676,5276886.346552347],[515348.3390287862,5276887.240810012],[515346.67821374413,5276890.459482643],[515341.12890151056,5276887.221810324],[515342.7140231991,5276884.225216003]]]},"properties":{"ID_SOURCE":"w167338874","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2250}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515346.3886291676,5276886.346552347],[515342.7140231991,5276884.225216003],[515340.6891017456,5276883.108484612],[515344.9149273824,5276875.562122646],[515350.6892725137,5276878.911531333],[515346.3886291676,5276886.346552347]]]},"properties":{"ID_SOURCE":"w167338881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2251}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515254.8360973313,5277057.705624167],[515247.3729331387,5277068.3554852605],[515239.35114840127,5277062.888641219],[515247.9463848784,5277050.130080614],[515252.07008454006,5277052.80823273],[515250.4873835225,5277054.915741042],[515254.8360973313,5277057.705624167]]]},"properties":{"ID_SOURCE":"w167338918","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2252}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515269.159142738,5277008.730571464],[515274.363178487,5277000.408745228],[515281.63660254714,5277004.873415666],[515274.09617763053,5277016.301017088],[515265.0246393264,5277010.164546832],[515266.6847927021,5277007.168128283],[515269.159142738,5277008.730571464]]]},"properties":{"ID_SOURCE":"w167338946","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2253}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515461.30732624885,5276601.021679048],[515454.2090166633,5276615.339847933],[515446.6333249236,5276611.429862714],[515467.46083291573,5276574.809071392],[515473.611545678,5276577.9373196885],[515471.8769411743,5276580.600061695],[515461.30732624885,5276601.021679048]]]},"properties":{"ID_SOURCE":"w167338962","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2254}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515310.5376069686,5277038.846935077],[515315.26883741585,5277038.970516935],[515314.48711015086,5277050.638126874],[515304.34815330873,5277050.611469431],[515304.0673107966,5277043.164373031],[515310.22638060775,5277042.958284724],[515310.5376069686,5277038.846935077]]]},"properties":{"ID_SOURCE":"w167338996","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2255}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515316.26046075247,5276947.505179084],[515321.9164167533,5276938.740025631],[515329.18958944705,5276943.315893835],[515321.3468190594,5276955.409475835],[515312.64958927187,5276949.718475711],[515314.6107877114,5276946.500583252],[515316.26046075247,5276947.505179084]]]},"properties":{"ID_SOURCE":"w167338998","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2256}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515221.4630635116,5276981.821037437],[515224.2526727522,5276977.71616299],[515225.8269574584,5276978.831675772],[515230.19986722944,5276972.3970116135],[515237.02331567387,5276976.638169571],[515229.9364744163,5276986.955617765],[515221.4630635116,5276981.821037437]]]},"properties":{"ID_SOURCE":"w167339017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2257}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515202.821539837,5276297.263572999],[515200.6406494529,5276298.258136476],[515197.3278399925,5276272.465119814],[515201.3132021881,5276270.8084273115],[515211.3934312228,5276293.84062878],[515202.821539837,5276297.263572999]]]},"properties":{"ID_SOURCE":"w167339048","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2258}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515260.9956838682,5277085.951242251],[515262.266024785,5277088.39964479],[515269.4037143239,5277087.306961274],[515271.1083457862,5277095.9803267615],[515262.3935080816,5277097.068873962],[515258.06346617686,5277087.166094333],[515260.9956838682,5277085.951242251]]]},"properties":{"ID_SOURCE":"w167339123","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2259}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515302.2385815895,5277081.72503518],[515302.2441309816,5277079.61339582],[515309.9794487792,5277079.744869068],[515310.0340962133,5277087.524790529],[515296.2905559863,5277087.377530542],[515296.2303429746,5277081.7092486145],[515302.2385815895,5277081.72503518]]]},"properties":{"ID_SOURCE":"w167339135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2260}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515276.4584073152,5276888.830028044],[515282.2701125132,5276877.95359227],[515290.67026750755,5276882.421229536],[515282.4440939965,5276897.514626494],[515273.2192525455,5276892.489139588],[515275.48320238665,5276888.382911176],[515276.4584073152,5276888.830028044]]]},"properties":{"ID_SOURCE":"w167339197","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2261}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515243.07958199625,5277101.797287072],[515243.4571322786,5277101.0202977],[515248.18482083763,5277102.477492186],[515245.83713976975,5277109.917703302],[515235.4811210005,5277106.778685898],[515237.75194223376,5277100.005107635],[515243.07958199625,5277101.797287072]]]},"properties":{"ID_SOURCE":"w167339201","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2262}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515414.50482259446,5276859.852948459],[515420.17925783567,5276844.197281082],[515427.3069715855,5276846.994651341],[515420.1221630934,5276865.758222477],[515411.04318862414,5276862.399998216],[515412.10320036876,5276859.1797537105],[515414.50482259446,5276859.852948459]]]},"properties":{"ID_SOURCE":"w167339246","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2263}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515374.35096287605,5277048.350808326],[515374.82065794844,5277041.1279692035],[515386.53416214004,5277042.1591668585],[515385.8986814221,5277055.271970304],[515372.7588269083,5277054.014728542],[515372.9982211419,5277048.680655806],[515374.35096287605,5277048.350808326]]]},"properties":{"ID_SOURCE":"w167339277","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2264}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515345.9643344385,5277075.838567758],[515346.1837853826,5277078.0619398225],[515350.5397611912,5277078.073421828],[515350.36523677147,5277087.297555672],[515337.97237799247,5277087.598316965],[515338.00311733776,5277075.928731039],[515345.9643344385,5277075.838567758]]]},"properties":{"ID_SOURCE":"w167339300","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2265}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515341.7717633265,5276899.782284674],[515343.5824909287,5276896.675145287],[515351.6070456299,5276901.141881268],[515345.7215926794,5276911.46235612],[515339.0468927362,5276907.777161316],[515343.1219022526,5276900.452679883],[515341.7717633265,5276899.782284674]]]},"properties":{"ID_SOURCE":"w167339372","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2266}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515294.2826739215,5276962.562405954],[515301.59789337905,5276951.134239322],[515308.87077417393,5276955.821221126],[515307.13635648874,5276958.484013379],[515302.1362162462,5276966.350673376],[515301.6309427291,5276967.138437193],[515294.2826739215,5276962.562405954]]]},"properties":{"ID_SOURCE":"w167339390","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2267}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.966845591,5276925.9906852655],[515337.11744984327,5276927.443798221],[515334.09656884713,5276933.770802909],[515323.29462516314,5276928.741083056],[515320.65074631333,5276934.513388464],[515315.47786344815,5276930.943311679],[515318.196843755,5276925.171201534],[515320.764742027,5276919.732114145],[515333.966845591,5276925.9906852655]]]},"properties":{"ID_SOURCE":"w167339786","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2268}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515302.1362162462,5276966.350673376],[515307.13635648874,5276958.484013379],[515310.14279000816,5276960.4924311815],[515310.3648892573,5276961.7155514145],[515308.1778004137,5276965.155130813],[515306.975252172,5276965.48538851],[515306.52550171316,5276965.150787276],[515304.71539917926,5276968.035660645],[515302.1362162462,5276966.350673376]]]},"properties":{"ID_SOURCE":"w167339921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2269}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.3672531719,5276982.559194302],[515338.69907029544,5276982.795516173],[515338.69321509294,5276985.018294099],[515346.0522581291,5276985.482242489],[515345.4987039203,5276996.039052252],[515336.8631973045,5276995.460602633],[515337.4038555209,5276989.793903564],[515333.123795828,5276989.449212602],[515333.3672531719,5276982.559194302]]]},"properties":{"ID_SOURCE":"w167340039","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2270}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515394.7416549124,5277090.971183214],[515394.12085164705,5277098.527040974],[515376.7773950528,5277096.480699802],[515376.94315615005,5277090.590733958],[515384.52737148287,5277091.055326356],[515384.8392353101,5277086.721702431],[515388.593500172,5277087.065042203],[515388.3590861694,5277090.509753097],[515394.7416549124,5277090.971183214]]]},"properties":{"ID_SOURCE":"w167340053","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2271}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515245.06322824437,5276946.540366744],[515250.64513713395,5276937.330392123],[515252.219718901,5276938.334773069],[515254.55815889576,5276934.451010792],[515260.25710082054,5276937.911272269],[515257.8432623872,5276941.905974378],[515257.4683208753,5276941.682712639],[515252.0371968283,5276950.670796449],[515245.06322824437,5276946.540366744]]]},"properties":{"ID_SOURCE":"w167340189","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2272}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515385.0498505867,5276978.583349862],[515384.27003166894,5276989.472977368],[515380.8155331887,5276989.352711883],[515380.5805331683,5276993.019700355],[515371.6446087625,5276992.440405652],[515372.5033222484,5276980.106169091],[515380.46290976845,5276980.682886078],[515380.6198702199,5276978.127088242],[515385.0498505867,5276978.583349862]]]},"properties":{"ID_SOURCE":"w167340233","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2273}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515378.5159931608,5277035.3584642615],[515379.3697253766,5277024.913589216],[515384.5510009741,5277025.260695354],[515384.93209881935,5277023.150048359],[515392.14058898774,5277023.724797171],[515391.44262255164,5277032.058428226],[515387.3125105145,5277031.8252332825],[515386.62453699094,5277036.380142219],[515378.5159931608,5277035.3584642615]]]},"properties":{"ID_SOURCE":"w167340268","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2274}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515506.5118116054,5276605.365174154],[515508.61161166785,5276606.593301425],[515505.1412053949,5276612.3633207055],[515501.66991845553,5276618.466758588],[515486.5224382316,5276609.201869594],[515493.53892493056,5276597.439733246],[515495.56421279476,5276598.445378307],[515497.6016259869,5276594.894332148],[515508.6246342482,5276601.703192971],[515506.5118116054,5276605.365174154]]]},"properties":{"ID_SOURCE":"w167340487","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2275}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516328.160293198,5277561.190231442],[516326.86342273565,5277563.042630068],[516325.67212490586,5277564.739729221],[516326.12177060934,5277565.074409719],[516322.95524178696,5277569.511125304],[516322.28061766404,5277569.064674426],[516321.428659649,5277570.262596454],[516320.24490569416,5277571.9486038815],[516323.5426160953,5277574.291786325],[516322.69050277624,5277575.545277671],[516321.5820019268,5277577.175925894],[516322.1067435148,5277577.510816626],[516318.563495567,5277582.391037941],[516317.9639691698,5277581.944798048],[516317.20237896114,5277583.0540621],[516314.6538068204,5277586.725649184],[516313.6660252678,5277588.156585457],[516314.1904548738,5277588.6026144745],[516312.5317928999,5277590.9319039285],[516317.3286203588,5277594.279542425],[516316.3183104982,5277595.710415122],[516315.2175117467,5277597.274402244],[516315.81703676487,5277597.720641869],[516312.3492139709,5277602.48993855],[516311.52471167024,5277601.931929063],[516310.6349011164,5277603.240886505],[516309.48870505963,5277604.927001389],[516301.5440610336,5277599.347756939],[516309.3091840523,5277588.588938021],[516303.9876054099,5277584.906417035],[516315.373587584,5277568.378474706],[516312.150967316,5277566.035507336],[516321.19778641826,5277553.502058017],[516328.160293198,5277561.190231442]]]},"properties":{"ID_SOURCE":"w188736211","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2276}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516756.81474360847,5276794.565311747],[516752.18515822693,5276800.820274783],[516749.9217006159,5276799.157781216],[516742.3001276249,5276793.301025846],[516738.4093175929,5276798.613435779],[516722.9023292213,5276818.607383708],[516725.20337200403,5276820.258860795],[516714.1657835096,5276834.864277684],[516725.0106371621,5276842.908593142],[516729.496692101,5276836.919931521],[516730.98060132214,5276838.03559258],[516733.57431359944,5276834.542142363],[516732.1576802395,5276833.5378137315],[516739.4714498097,5276823.656279419],[516740.96987058985,5276824.949808352],[516745.78092674847,5276818.261913052],[516741.34386044234,5276815.0372157395],[516743.89179019,5276811.799260015],[516746.5457988083,5276808.239305124],[516757.0222575284,5276813.80420345],[516762.8398559032,5276799.261636802],[516756.81474360847,5276794.565311747]]]},"properties":{"ID_SOURCE":"w191378073","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2277}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.8398559032,5276799.261636802],[516756.81474360847,5276794.565311747],[516763.0576072566,5276786.236682484],[516768.8588430596,5276790.432240269],[516769.79010329506,5276798.281389898],[516769.84248593723,5276798.348224614],[516765.53724123986,5276798.90264084],[516764.39517186425,5276799.054948558],[516762.8398559032,5276799.261636802]]]},"properties":{"ID_SOURCE":"w191378075","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2278}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.9217006159,5276799.157781216],[516752.18515822693,5276800.820274783],[516756.81474360847,5276794.565311747],[516763.0576072566,5276786.236682484],[516760.037263055,5276783.982965525],[516757.28524455987,5276787.66488594],[516758.01972421433,5276788.2115844125],[516756.51179958193,5276790.218875004],[516754.8152137307,5276792.536814526],[516754.046087155,5276793.590429456],[516749.9217006159,5276799.157781216]]]},"properties":{"ID_SOURCE":"w191378076","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2279}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.438001557,5277391.878772268],[515979.19350894564,5277393.067691808],[515978.7560307001,5277388.287479796],[515981.5356106823,5277387.96168949],[515981.1698773814,5277384.404212037],[515988.45662630635,5277383.646239138],[515988.16294415167,5277381.200357094],[515994.09730272536,5277380.6609572405],[515994.6101734063,5277385.33023772],[515990.8539980895,5277385.764479267],[515991.0291382136,5277387.620994949],[515991.438001557,5277391.878772268]]]},"properties":{"ID_SOURCE":"w340436078","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2280}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515989.81834194367,5277161.2592804795],[515989.6043284271,5277157.146521671],[515990.8813681562,5277157.038888951],[515990.6658291111,5277153.481824735],[515994.6468497844,5277153.270479632],[515994.50519383507,5277150.158177269],[516004.9462214674,5277149.520029064],[516005.1599189749,5277153.74392733],[516002.23032720375,5277153.9581547715],[516002.3363827386,5277156.359065057],[516002.512622491,5277160.549518388],[515989.81834194367,5277161.2592804795]]]},"properties":{"ID_SOURCE":"w340436079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2281}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515908.0248913796,5277301.182480078],[515906.97531082877,5277300.512773819],[515903.9561247212,5277306.061514867],[515897.6571230187,5277302.598979277],[515904.6763501609,5277289.837074992],[515908.1258024974,5277291.735874859],[515909.9376239515,5277288.2954924535],[515915.4117459428,5277291.311227244],[515912.31683936843,5277297.082036509],[515910.7421643633,5277296.18861499],[515909.49675459677,5277298.474691186],[515908.0248913796,5277301.182480078]]]},"properties":{"ID_SOURCE":"w340436080","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2282}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.89196691266,5277104.502782046],[516002.44135065685,5277104.501543611],[516002.5805601217,5277108.502957248],[515994.7735472662,5277107.147829443],[515994.77537902974,5277106.480995973],[515993.498328143,5277106.588627854],[515993.49741233385,5277106.922044595],[515991.4705557302,5277106.583058446],[515991.18967941054,5277099.469343077],[516002.756728339,5277099.0565625895],[516002.83759661496,5277102.424319277],[516002.89196691266,5277104.502782046]]]},"properties":{"ID_SOURCE":"w340436081","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2283}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516036.59115396446,5277139.826799865],[516032.38481568027,5277140.0374959335],[516032.31216153887,5277139.148177807],[516030.9676780353,5277139.200045892],[516029.68327636487,5277139.2520796945],[516029.6823584756,5277139.585496449],[516024.34918061085,5277139.9042360205],[516023.7820060924,5277127.677301747],[516026.7116119262,5277127.463085124],[516026.6392626515,5277126.462628172],[516035.87808544043,5277126.043505859],[516036.59115396446,5277139.826799865]]]},"properties":{"ID_SOURCE":"w340436085","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2284}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.1805322246,5277148.158171221],[515953.94768512424,5277148.168647194],[515936.15327989176,5277149.109061801],[515935.9416613635,5277144.107193778],[515937.9697248772,5277144.001604962],[515937.5467943133,5277133.886729994],[515942.7445753217,5277133.645338017],[515942.5414457876,5277128.2878458975],[515949.0387471465,5277127.961105956],[515949.28684079146,5277133.352063419],[515951.36744950333,5277133.257737157],[515951.68765914085,5277139.738061919],[515951.8657628049,5277143.261680008],[515953.89352241234,5277143.267235656],[515954.1805322246,5277148.158171221]]]},"properties":{"ID_SOURCE":"w340436087","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2285}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515968.3501831486,5277376.255832734],[515957.7575401694,5277377.560467947],[515957.34597059386,5277374.280715985],[515957.0226920693,5277371.668044811],[515953.7925102022,5277371.992612114],[515953.13062500703,5277366.87836802],[515957.11210754915,5277366.444719599],[515957.26047858916,5277367.111965002],[515961.3924646263,5277366.567592208],[515961.32010742463,5277365.56713571],[515969.4335797194,5277364.589125796],[515970.46180164703,5277373.038570492],[515967.90751291317,5277373.364983986],[515968.3501831486,5277376.255832734]]]},"properties":{"ID_SOURCE":"w340436089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2286}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515875.2901403201,5277369.432983595],[515869.7373369813,5277367.750748839],[515869.35036218213,5277369.20562525],[515869.0544760419,5277370.305102646],[515868.7543818484,5277370.193144934],[515867.01104574924,5277376.078802275],[515859.8072744629,5277373.947518751],[515861.6266115305,5277367.728647006],[515862.0015025091,5277367.951947909],[515865.6389774104,5277355.958762338],[515874.04345081386,5277358.426745784],[515873.28548752406,5277360.98089431],[515877.6376155629,5277362.326438612],[515875.2901403201,5277369.432983595]]]},"properties":{"ID_SOURCE":"w340436092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2287}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515915.07744518295,5277358.661020923],[515910.95092496293,5277357.204925362],[515909.6648198532,5277360.646744252],[515901.3366780763,5277357.734358613],[515902.62338600296,5277354.0702599995],[515903.3737737271,5277354.294589186],[515903.74446306366,5277353.306457638],[515904.13023314613,5277352.29613935],[515901.2043875683,5277351.176749989],[515903.096143345,5277345.958347008],[515911.2744057585,5277348.759185647],[515910.8964782462,5277349.647271129],[515917.49885745824,5277351.99925312],[515915.07744518295,5277358.661020923]]]},"properties":{"ID_SOURCE":"w340436093","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2288}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515930.2410335626,5277328.139049027],[515920.791250246,5277323.434216629],[515922.5431719053,5277319.9269903265],[515923.53315355483,5277320.418712789],[515924.1523469428,5277319.186754686],[515924.5827571924,5277318.332155567],[515920.3678532804,5277316.23120109],[515922.48974249285,5277312.002577867],[515927.6646518251,5277314.572947054],[515928.1101437374,5277313.696161496],[515932.31753672735,5277315.797101021],[515931.8795847459,5277316.662792915],[515935.1645224755,5277318.294423361],[515930.2410335626,5277328.139049027]]]},"properties":{"ID_SOURCE":"w340436094","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2289}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.25160203734,5277022.227392276],[516004.24699797266,5277021.373977898],[516004.1025942196,5277019.261926013],[516011.1632690234,5277018.947917244],[516011.88221778534,5277030.619566664],[516011.8819121729,5277030.730705561],[516005.1213607511,5277031.156678063],[516005.04900644044,5277030.156221538],[516000.07622744533,5277030.475974406],[515996.78607631923,5277030.689214122],[515996.85843203904,5277031.6896705385],[515992.0508828566,5277032.009884183],[515991.8255719257,5277032.0092653865],[515991.25160203734,5277022.227392276]]]},"properties":{"ID_SOURCE":"w340436095","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2290}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.37919796957,5277175.301839482],[516027.1793568095,5277175.810168896],[516026.089537657,5277162.47039743],[516030.3712674348,5277162.148764683],[516030.66371969884,5277165.039203714],[516033.01493032963,5277164.85673988],[516034.79524398997,5277164.717160691],[516034.57789573004,5277161.826928269],[516038.3339126577,5277161.503853669],[516038.6965647304,5277166.172722724],[516038.1705451992,5277166.282413565],[516038.4617688344,5277169.617408703],[516043.82477734156,5277169.365448232],[516044.01456051326,5277171.3553729905],[516044.37919796957,5277175.301839482]]]},"properties":{"ID_SOURCE":"w340436096","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2291}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515923.4590751039,5277342.012970069],[515923.30796395923,5277342.345976149],[515920.9826103236,5277341.339358964],[515919.84851837705,5277344.1147525385],[515911.52187654946,5277340.646657683],[515913.72918530036,5277335.384664639],[515914.3187908135,5277333.9859149335],[515911.01835028885,5277332.53207748],[515912.9076907805,5277328.20278942],[515916.4334327095,5277329.657243825],[515915.828988585,5277330.989268877],[515919.2793244571,5277332.554658678],[515919.80836554646,5277331.333567587],[515926.7847406968,5277334.242281495],[515923.4590751039,5277342.012970069]]]},"properties":{"ID_SOURCE":"w340436097","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2292}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.84584408434,5277121.2847579075],[516000.89256845036,5277121.501669444],[516001.2485340446,5277128.615591942],[516001.9244556266,5277128.6174494745],[516001.92384475993,5277128.839727307],[515988.779094503,5277129.47045618],[515988.2081820834,5277118.577192713],[515992.94055707473,5277118.2567697335],[515992.9390307741,5277118.812464303],[515998.1220210255,5277118.49328324],[515997.691253628,5277111.268015796],[516002.8715018303,5277111.949089164],[516002.5607062981,5277115.726986583],[516002.7105717055,5277118.583690119],[516002.84584408434,5277121.2847579075]]]},"properties":{"ID_SOURCE":"w340436098","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2293}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515947.7653076292,5277313.205380153],[515949.61713163,5277308.876001208],[515947.95185833005,5277308.160145031],[515949.4106364209,5277304.752149654],[515950.4383207078,5277305.188410066],[515952.17682903976,5277301.103229057],[515955.50740871154,5277302.52383039],[515955.6963773636,5277302.079789113],[515959.6720856972,5277303.768896272],[515959.24124273314,5277304.779087322],[515962.60933817655,5277306.210909554],[515960.175455573,5277311.916822147],[515957.9925424407,5277310.999492547],[515955.78715952253,5277310.059874235],[515953.4213015186,5277315.610380366],[515947.7653076292,5277313.205380153]]]},"properties":{"ID_SOURCE":"w340436099","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2294}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515899.36237567844,5277393.182559464],[515899.43929567095,5277392.515930766],[515897.11153040326,5277392.398434703],[515897.18996744265,5277391.176111166],[515893.06012874225,5277390.942556753],[515893.21669780277,5277388.609048543],[515889.91294662264,5277388.377751454],[515890.226992435,5277383.377318021],[515901.56513660174,5277384.075112346],[515901.4172274424,5277385.986312774],[515901.25350936956,5277388.186433497],[515904.78255737456,5277388.418352474],[515904.2356125116,5277396.196643833],[515900.9318660457,5277395.965340474],[515899.284545203,5277394.182605048],[515899.36237567844,5277393.182559464]]]},"properties":{"ID_SOURCE":"w340436100","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2295}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.5294215951,5277061.877587022],[515981.5300316691,5277061.655309213],[515984.5347723037,5277061.441277452],[515984.24717296194,5277056.772618823],[515981.24273496174,5277056.875511831],[515980.88429967477,5277050.6507026395],[515991.70102109294,5277050.013561011],[515991.7700198755,5277052.236545322],[515995.37559285824,5277052.024169288],[515995.627219469,5277056.114803004],[515993.86192481633,5277056.243321585],[515993.93367014325,5277057.466055814],[515997.52403610444,5277057.320323197],[515997.7544734942,5277060.921883965],[515981.5294215951,5277061.877587022]]]},"properties":{"ID_SOURCE":"w340436101","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2296}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.734450973,5277165.275211357],[515954.73353736685,5277165.608628123],[515936.78174503986,5277166.44858353],[515936.57043198706,5277161.335576424],[515938.5233875404,5277161.229782261],[515938.24092860625,5277154.67176358],[515936.28797085927,5277154.777557842],[515936.00307562825,5277149.108650704],[515936.15327989176,5277149.109061801],[515953.94768512424,5277148.168647194],[515954.1659151024,5277153.492839383],[515949.20856923907,5277153.701537749],[515949.3151032838,5277155.935738634],[515949.4220025605,5277158.036572825],[515954.37934474216,5277157.827874649],[515954.734450973,5277165.275211357]]]},"properties":{"ID_SOURCE":"w340436102","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2297}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515940.7394441584,5277396.941085121],[515930.1476358483,5277397.956809203],[515929.40272956726,5277390.241669345],[515932.3323821354,5277389.9607220795],[515932.20085341315,5277388.626684625],[515936.01691904006,5277388.259253069],[515935.8853302795,5277386.947443325],[515940.35494171997,5277386.515119579],[515940.0482887819,5277383.313453943],[515943.8868881441,5277382.946089223],[515944.61718255613,5277390.505595207],[515940.7259883893,5277390.883929405],[515940.77706667327,5277391.428654247],[515940.21367198584,5277391.482681639],[515940.359701319,5277393.005696645],[515940.7394441584,5277396.941085121]]]},"properties":{"ID_SOURCE":"w340436103","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2298}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516053.37011408113,5277046.849062126],[516054.2722748032,5277046.518130189],[516055.6882082727,5277050.523065134],[516049.2231887128,5277052.728037179],[516048.2551151489,5277049.724595855],[516048.25634038675,5277049.280040246],[516047.7382799191,5277049.223042575],[516047.1300953336,5277049.165796575],[516042.54449965013,5277050.709117365],[516041.2039668349,5277046.593253635],[516043.30870092363,5277045.932213839],[516041.89245162794,5277042.038420859],[516048.73330424743,5277039.723336766],[516050.07505874254,5277043.394646591],[516051.9541781065,5277042.844127773],[516053.37011408113,5277046.849062126]]]},"properties":{"ID_SOURCE":"w340436104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2299}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.01143970306,5277107.358461034],[515937.0469848299,5277107.956458836],[515936.67190665286,5277099.564381532],[515939.79660786263,5277099.417338957],[515939.6269183536,5277095.560325325],[515944.69702842156,5277095.329699412],[515944.86659284454,5277099.231168764],[515947.37532993074,5277099.126899441],[515947.1418576833,5277093.880464081],[515951.1979288702,5277093.702636564],[515951.5021159183,5277100.549678161],[515947.64885737165,5277100.716946942],[515947.7052563945,5277102.061892327],[515947.75478434947,5277103.173425432],[515949.79782200896,5277103.090109633],[515950.01143970306,5277107.358461034]]]},"properties":{"ID_SOURCE":"w340436105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2300}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515942.2207905686,5277511.441369855],[515942.74677711766,5277511.3316703625],[515943.256937478,5277517.001198069],[515928.14992719545,5277518.760312667],[515925.3788876802,5277491.278970126],[515927.0313415142,5277491.172350625],[515925.3496946768,5277474.496778963],[515925.9507821691,5277474.387283373],[515925.3664149095,5277468.38413526],[515941.9679449718,5277466.651332995],[515942.04060842877,5277467.540650434],[515946.0971193588,5277467.107200206],[515946.24731542036,5277467.107611583],[515947.2709853649,5277477.224138166],[515938.85758647113,5277478.090217412],[515939.2377503071,5277481.870011759],[515941.4165682732,5277503.459328946],[515942.2207905686,5277511.441369855]]]},"properties":{"ID_SOURCE":"w340436106","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2301}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516063.1517378081,5277170.963577326],[516058.3296164245,5277171.161441811],[516058.2315542447,5277168.59384273],[516054.28833760635,5277168.716336744],[516054.3338302266,5277171.283790806],[516044.01456051326,5277171.3553729905],[516043.82477734156,5277169.365448232],[516043.3944766091,5277164.718620369],[516049.8008247221,5277164.680705803],[516051.9712093463,5277164.708916741],[516051.9936137725,5277162.030510142],[516052.0115448886,5277160.974731801],[516061.61745629786,5277160.867853932],[516061.7216467785,5277166.658523206],[516063.01343027607,5277166.650972769],[516063.1517378081,5277170.963577326]]]},"properties":{"ID_SOURCE":"w340436107","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2302}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515963.57663236477,5277282.107343178],[515960.20076940535,5277280.76441104],[515960.5033037378,5277279.987261901],[515959.4681056896,5277279.5509791495],[515958.40292822605,5277279.092386462],[515958.0249890726,5277279.980468812],[515952.47364624776,5277277.742460815],[515955.4986798359,5277270.08210516],[515958.64924841694,5277271.424416999],[515959.48083797144,5277269.4261803925],[515963.9816925279,5277271.32789535],[515964.208609248,5277270.739476699],[515967.5394167995,5277272.082287556],[515963.57663236477,5277282.107343178]]]},"properties":{"ID_SOURCE":"w340436108","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2303}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515953.05730436207,5277127.760949142],[515952.53900640167,5277127.7928710515],[515949.0387471465,5277127.961105956],[515942.5414457876,5277128.2878458975],[515937.2760070094,5277128.551280838],[515936.53479011724,5277113.989945158],[515938.4802512838,5277113.884130397],[515938.45176177047,5277113.317239705],[515944.4232700894,5277113.022397237],[515944.3806431931,5277112.133162537],[515944.82380945486,5277112.112148133],[515945.0942559433,5277117.569850318],[515947.1223288786,5277117.464264673],[515947.1295347473,5277117.575424159],[515947.25780970143,5277120.09864776],[515947.4216876635,5277123.333263281],[515952.8223465555,5277123.059093987],[515953.05730436207,5277127.760949142]]]},"properties":{"ID_SOURCE":"w340436109","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2304}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515980.75235966925,5277290.26766411],[515976.62641696754,5277288.589244341],[515977.45831527805,5277286.479871296],[515975.82286561746,5277285.841886875],[515974.3074542365,5277285.24868816],[515972.719065367,5277289.356502343],[515965.2172611507,5277286.335153209],[515966.7299355572,5277282.449408946],[515972.88176664733,5277284.800217703],[515973.6385637212,5277282.6906381],[515970.03740210977,5277281.3470821455],[515971.7015014453,5277277.017195408],[515975.8277587268,5277278.584472691],[515976.58394773334,5277276.697171374],[515980.78499936813,5277278.37579719],[515981.3140582195,5277277.154711752],[515985.2898067966,5277278.83272242],[515980.75235966925,5277290.26766411]]]},"properties":{"ID_SOURCE":"w340436110","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2305}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515956.62831835996,5277186.730374629],[515949.2665607788,5277187.36592914],[515941.161116144,5277188.066140675],[515937.92344494903,5277188.346240785],[515937.55858415534,5277184.455350501],[515941.54019012203,5277184.021691279],[515941.3954638439,5277182.020779377],[515943.57402200875,5277181.804464849],[515943.27584317606,5277178.247176097],[515943.0650473006,5277175.690384471],[515946.52064274007,5277175.366428123],[515949.90113677713,5277175.042268095],[515951.70936501614,5277172.935566267],[515956.1415909392,5277172.503151539],[515956.65177052165,5277178.172677358],[515955.9007529453,5277178.170619262],[515956.13346447865,5277180.94975097],[515956.62831835996,5277186.730374629]]]},"properties":{"ID_SOURCE":"w340436111","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2306}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515995.69249066676,5277073.3638704745],[515996.368723982,5277073.254588445],[515996.6581446534,5277077.256414377],[515984.71492745343,5277077.890454001],[515984.49999152403,5277074.111112655],[515985.5517400473,5277074.002860233],[515985.04798587103,5277065.999415761],[515984.0713391168,5277066.107874441],[515983.99684608256,5277065.885390468],[515989.78070857836,5277065.567851237],[515989.9251162434,5277067.679902909],[515992.85475091543,5277067.465669211],[515992.7103443054,5277065.353617461],[515997.8933821053,5277065.034436108],[515998.2524089241,5277071.036968718],[515995.62349369255,5277071.140886043],[515995.65826696315,5277072.152353241],[515995.69249066676,5277073.3638704745]]]},"properties":{"ID_SOURCE":"w340436112","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2307}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516035.463870323,5277107.370886055],[516030.22078582784,5277107.689868497],[516030.2909929406,5277109.468297849],[516024.5819683985,5277109.897142369],[516024.43206897867,5277109.785590082],[516024.07582451636,5277102.782805224],[516023.2493886296,5277102.891670695],[516022.8913072812,5277096.555719451],[516027.4731906611,5277096.346050082],[516027.5464579643,5277097.013090271],[516028.29503856314,5277097.904268861],[516031.07445394964,5277097.689640938],[516031.0060828135,5277095.244378152],[516034.7618363952,5277095.032440094],[516035.05414883414,5277100.701372477],[516035.14780358697,5277102.146447185],[516035.463870323,5277107.370886055]]]},"properties":{"ID_SOURCE":"w340436113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2308}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515926.8041810391,5277272.226338206],[515925.45541112387,5277271.111251168],[515921.3489371699,5277276.034626521],[515920.1810505361,5277277.431794204],[515918.9070772011,5277276.428052962],[515916.94443825533,5277280.090299808],[515911.91939069325,5277277.631489787],[515914.7862713691,5277272.860315105],[515914.18698594865,5277272.302978211],[515922.47509529296,5277262.434197983],[515924.3483565246,5277263.995277848],[515926.98508766905,5277261.0017160745],[515931.1061986137,5277264.458323555],[515928.54426345276,5277267.563227876],[515929.2937491901,5277268.120977174],[515928.9170299972,5277268.5645056255],[515929.51631440374,5277269.12184404],[515926.8041810391,5277272.226338206]]]},"properties":{"ID_SOURCE":"w340436114","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2309}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515928.9182404744,5277350.474526742],[515930.27885059465,5277347.255195515],[515929.0784736336,5277346.807352155],[515930.9678230325,5277342.478069837],[515932.99308014393,5277343.372729996],[515934.5045018173,5277339.931532907],[515937.95513164153,5277341.385794868],[515938.40877195843,5277340.275638818],[515939.0840604477,5277340.499767022],[515942.3093898668,5277341.953414794],[515941.855748931,5277343.063570544],[515945.3063750779,5277344.517836876],[515942.96337502304,5277349.957270253],[515940.4127291338,5277348.950028358],[515940.0424288442,5277349.793676939],[515939.73257340747,5277350.504123277],[515936.882137444,5277349.273782623],[515935.2193010084,5277353.159123876],[515928.9182404744,5277350.474526742]]]},"properties":{"ID_SOURCE":"w340436115","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2310}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515939.3132622729,5277366.507105026],[515939.38623176585,5277367.285283331],[515939.8976262022,5277372.510253584],[515932.9863661818,5277373.269314828],[515932.69448498805,5277370.156601925],[515930.974255311,5277370.3186044125],[515929.31410515384,5277370.4807717865],[515929.60598813614,5277373.593484517],[515923.4463309814,5277374.132333922],[515922.8616463299,5277368.240325995],[515924.88993553363,5277368.023593802],[515924.45210670587,5277363.354525126],[515928.5086887938,5277362.921062551],[515928.3606184037,5277362.142678939],[515933.31869845977,5277361.600546287],[515933.1724535337,5277360.155328811],[515937.1539391124,5277359.721666741],[515937.8109714847,5277366.614132252],[515939.3132622729,5277366.507105026]]]},"properties":{"ID_SOURCE":"w340436116","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2311}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515986.69147790514,5277370.082336845],[515987.2925773468,5277369.972847574],[515987.4433862742,5277369.750982092],[515987.9580944578,5277373.753428142],[515980.67072313005,5277374.733679599],[515980.15539995214,5277370.953512117],[515976.47401078825,5277371.499108033],[515975.8863299003,5277366.71848426],[515976.86292611726,5277366.61002427],[515976.42178417824,5277363.163480126],[515979.9529798429,5277362.6174719315],[515980.1007382898,5277363.506995829],[515986.1108237802,5277362.745516018],[515985.8901028841,5277361.077813071],[515990.6228912282,5277360.535110618],[515991.3580120935,5277366.316399009],[515986.32452591456,5277366.969414996],[515986.47863359377,5277368.281287724],[515986.69147790514,5277370.082336845]]]},"properties":{"ID_SOURCE":"w340436117","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2312}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515941.30368145637,5277306.06362496],[515941.1827909874,5277306.330029441],[515940.1776362498,5277305.893832346],[515938.938236135,5277308.724503703],[515939.4108189333,5277308.9258490475],[515939.1765483032,5277309.458678655],[515932.1104551207,5277306.394108932],[515933.6219465291,5277302.930684009],[515932.50426206493,5277302.449724382],[515933.4111209428,5277300.385006123],[515933.9325970227,5277299.186123603],[515932.9874598462,5277298.772319964],[515934.76344708406,5277294.709464365],[515935.7536145276,5277295.134505511],[515935.98791582923,5277294.590561883],[515940.66115427646,5277296.614984521],[515941.0465997403,5277295.726921591],[515945.05220453115,5277297.471670448],[515941.30368145637,5277306.06362496]]]},"properties":{"ID_SOURCE":"w340436118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2313}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516001.90437916777,5277299.883780148],[515995.81759986526,5277301.200732139],[515991.3572888055,5277295.487009087],[515990.4293117163,5277294.29526476],[515987.8707147817,5277296.177614765],[515983.89162267186,5277295.722130654],[515984.7363376686,5277288.944922957],[515984.88653832814,5277288.945335317],[515984.88531783613,5277289.389891093],[515987.438118503,5277289.619179727],[515988.0529594924,5277284.5084380675],[515998.5636544339,5277285.759847101],[515998.64119788725,5277284.870941911],[515998.8664990339,5277284.871560994],[515998.0983941973,5277291.0932782665],[515999.97529093106,5277291.320715266],[515999.5891002896,5277295.209546454],[516000.8654990982,5277295.324193859],[516001.90437916777,5277299.883780148]]]},"properties":{"ID_SOURCE":"w340436119","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2314}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.9597745419,5277030.724398038],[516050.9281568224,5277033.616700656],[516052.50686489034,5277033.0653539235],[516052.73033742595,5277033.732808461],[516041.0031500615,5277037.701520912],[516041.0037623991,5277037.4792431155],[516041.9059238574,5277037.148309265],[516040.1926246168,5277032.031161242],[516039.21535882744,5277032.361888479],[516039.051600251,5277031.827966643],[516038.84320803155,5277031.138326232],[516034.9411844808,5277029.90504241],[516037.2129665144,5277023.131774689],[516040.36426285916,5277024.251852167],[516041.10978924105,5277026.254421268],[516044.71813641116,5277025.041825675],[516044.04771487036,5277023.039463056],[516048.5582289084,5277021.49593647],[516051.5384832976,5277030.173051044],[516049.9597745419,5277030.724398038]]]},"properties":{"ID_SOURCE":"w340436120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2315}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515956.7905100884,5277204.279787623],[515945.575159112,5277205.238206422],[515945.24535956915,5277202.258757597],[515939.1606211896,5277202.797796313],[515938.65194808785,5277196.572577199],[515940.60489186755,5277196.46678375],[515940.2427717684,5277191.575642901],[515941.44500568474,5277191.356654821],[515941.161116144,5277188.066140675],[515949.2665607788,5277187.36592914],[515949.41155819804,5277189.266816225],[515950.0874727263,5277189.2686677575],[515950.59704768466,5277195.160471043],[515949.99593093,5277195.269964106],[515950.1118615312,5277196.815124376],[515950.21331978193,5277198.16019343],[515950.8895377419,5277198.050906129],[515951.0348692542,5277199.829540467],[515956.3682924738,5277199.399594921],[515956.7905100884,5277204.279787623]]]},"properties":{"ID_SOURCE":"w340436121","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2316}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516071.34535073163,5277108.403386315],[516055.976526858,5277109.383472698],[516055.3284592774,5277099.279081883],[516056.03454797657,5277099.23657296],[516056.0489249588,5277099.470006091],[516055.5531547035,5277099.501980962],[516055.6251929298,5277100.6135771535],[516059.63641603553,5277100.357903686],[516059.5860511194,5277099.557558534],[516062.84612472163,5277099.344271492],[516068.18691361905,5277099.003360057],[516068.15831396775,5277098.4809242785],[516068.6991767287,5277098.437960945],[516068.6273863299,5277097.237453458],[516073.795379703,5277096.9182982575],[516073.8170208192,5277097.240663293],[516073.4865071202,5277097.261978861],[516073.96193648933,5277104.598515266],[516071.11502230255,5277104.77959448],[516071.34535073163,5277108.403386315]]]},"properties":{"ID_SOURCE":"w340436122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2317}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.6584310408,5277029.033621653],[516074.1413129159,5277031.45794001],[516074.0665160622,5277031.346593792],[516074.89357671386,5277031.015457723],[516071.8400942773,5277021.671290428],[516062.3681273394,5277024.868206888],[516060.43198325194,5277018.861320296],[516063.13817333034,5277017.979667092],[516062.91500795196,5277017.201073276],[516064.34320730646,5277016.760454293],[516064.6414763441,5277017.539255367],[516068.0245223303,5277016.326052609],[516067.80105085945,5277015.658597501],[516069.6804875745,5277014.996945513],[516067.81822488183,5277009.434819389],[516068.0438433781,5277009.324302229],[516068.342112311,5277010.103103483],[516071.1234422794,5277009.210547355],[516074.50615697296,5277008.119601149],[516074.282992724,5277007.341006905],[516074.6588193564,5277007.230904657],[516081.6584310408,5277029.033621653]]]},"properties":{"ID_SOURCE":"w340436123","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2318}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.5997250952,5277106.854133846],[516042.61425721465,5277107.168302728],[516042.4637456587,5277107.2790278],[516042.31997054006,5277104.944696825],[516039.8412751344,5277105.049007993],[516039.98505124234,5277107.383338908],[516035.47827871516,5277107.593205246],[516035.463870323,5277107.370886055],[516035.14780358697,5277102.146447185],[516038.57310081157,5277101.933601573],[516038.5016716062,5277100.59972778],[516038.28768990183,5277096.486967502],[516041.21731198987,5277096.272758156],[516041.07537312474,5277093.271593795],[516045.3568483824,5277093.061110897],[516045.8825683889,5277093.062559613],[516046.16858493723,5277098.286916224],[516045.19224865857,5277098.284225739],[516045.3351040364,5277100.951973496],[516046.31159300514,5277100.899094552],[516049.2410600234,5277100.740458698],[516049.5997250952,5277106.854133846]]]},"properties":{"ID_SOURCE":"w340436124","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2319}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515894.7171689724,5277444.183042372],[515892.36060389754,5277454.623750564],[515886.7315755778,5277453.38585008],[515886.5032483523,5277454.496625062],[515886.2031588412,5277454.384666424],[515871.9429857318,5277451.233859018],[515872.24792348745,5277449.567593347],[515855.9612879314,5277445.966741808],[515858.1663832994,5277435.970165943],[515862.36947295954,5277436.870734123],[515862.90091524704,5277434.760525944],[515869.8057310346,5277436.3353],[515870.1854644259,5277434.78037793],[515870.3356613161,5277434.780787346],[515869.9559278843,5277436.335709405],[515883.69075311034,5277439.373938624],[515884.07049002254,5277437.819017445],[515884.2203836181,5277437.93056619],[515883.9157450575,5277439.485692241],[515890.89564803825,5277441.060696233],[515890.36419614987,5277443.170901898],[515893.2161126461,5277443.845525182],[515894.7171689724,5277444.183042372]]]},"properties":{"ID_SOURCE":"w340436125","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2320}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515892.9991492734,5277413.281488637],[515891.02170827467,5277422.389554281],[515889.2430542315,5277421.951254669],[515887.79459121136,5277421.602768473],[515887.41454900557,5277423.268828342],[515881.260102179,5277421.9183598375],[515881.6401427076,5277420.252299575],[515880.25914633623,5277419.948455213],[515876.94178688707,5277419.205885211],[515875.56079002883,5277418.902041965],[515875.18105419644,5277420.45696365],[515874.80556104705,5277420.45593981],[515868.87640432594,5277419.106098714],[515869.25644148333,5277417.44003766],[515867.9655016413,5277417.158669645],[515864.28033722413,5277416.348420584],[515863.1019843704,5277416.089588386],[515862.79704755486,5277417.7558544455],[515856.7927866732,5277416.405821066],[515857.17342593614,5277414.517481303],[515855.1094221487,5277414.067300998],[515851.4692527386,5277413.279410558],[515853.3703254455,5277404.615683116],[515859.14960556576,5277405.853960251],[515858.9978942748,5277406.409245954],[515861.85013515473,5277406.972714819],[515862.00184670405,5277406.41742919],[515862.30224194867,5277406.418247599],[515892.9991492734,5277413.281488637]]]},"properties":{"ID_SOURCE":"w340436126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2321}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515922.31439386326,5277128.954907566],[515918.2582570581,5277129.166096829],[515918.11625576724,5277126.164935453],[515922.0975961358,5277125.842401806],[515922.31439386326,5277128.954907566]]]},"properties":{"ID_SOURCE":"w340436127","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2322}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516053.70282393025,5277144.097264428],[516051.149655505,5277143.979085852],[516051.15517023223,5277141.978585333],[516053.70864595653,5277141.9856249895],[516053.70282393025,5277144.097264428]]]},"properties":{"ID_SOURCE":"w340436128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2323}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516046.31159300514,5277100.899094552],[516045.3351040364,5277100.951973496],[516045.19224865857,5277098.284225739],[516046.16858493723,5277098.286916224],[516046.24736955954,5277099.676380265],[516046.31159300514,5277100.899094552]]]},"properties":{"ID_SOURCE":"w340436129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2324}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516010.8042518793,5277012.945384312],[516005.7716802394,5277013.153828242],[516005.70176973956,5277011.264260577],[516010.6595446834,5277010.944471184],[516010.8042518793,5277012.945384312]]]},"properties":{"ID_SOURCE":"w340436130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2325}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.57310081157,5277101.933601573],[516035.14780358697,5277102.146447185],[516035.05414883414,5277100.701372477],[516038.5016716062,5277100.59972778],[516038.57310081157,5277101.933601573]]]},"properties":{"ID_SOURCE":"w340436131","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2326}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516051.9712093463,5277164.708916741],[516049.8008247221,5277164.680705803],[516049.82727658877,5277163.258189711],[516049.8456055649,5277162.057930766],[516051.9936137725,5277162.030510142],[516051.9712093463,5277164.708916741]]]},"properties":{"ID_SOURCE":"w340436132","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2327}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515995.37559285824,5277052.024169288],[515991.7700198755,5277052.236545322],[515991.70102109294,5277050.013561011],[515995.23149203346,5277049.800978625],[515995.37559285824,5277052.024169288]]]},"properties":{"ID_SOURCE":"w340436134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2328}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515931.98898722423,5277188.852356485],[515928.1202505441,5277189.208533151],[515927.7556872826,5277185.206504568],[515931.6244265985,5277184.850327654],[515931.98898722423,5277188.852356485]]]},"properties":{"ID_SOURCE":"w340436135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2329}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515908.1258024974,5277291.735874859],[515904.6763501609,5277289.837074992],[515906.4881701527,5277286.396691525],[515909.9376239515,5277288.2954924535],[515908.1258024974,5277291.735874859]]]},"properties":{"ID_SOURCE":"w340436136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2330}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516068.4718461536,5277180.814126281],[516068.10676534363,5277177.034366595],[516070.43553387676,5277176.818514023],[516070.72520470864,5277180.709205496],[516068.4718461536,5277180.814126281]]]},"properties":{"ID_SOURCE":"w340436137","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2331}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515949.90113677713,5277175.042268095],[515946.52064274007,5277175.366428123],[515946.37591793574,5277173.365516121],[515951.70936501614,5277172.935566267],[515949.90113677713,5277175.042268095]]]},"properties":{"ID_SOURCE":"w340436138","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2332}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515943.57402200875,5277181.804464849],[515941.3954638439,5277182.020779377],[515941.54019012203,5277184.021691279],[515937.55858415534,5277184.455350501],[515943.27584317606,5277178.247176097],[515943.57402200875,5277181.804464849]]]},"properties":{"ID_SOURCE":"w340436139","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2333}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515997.52403610444,5277057.320323197],[515993.93367014325,5277057.466055814],[515993.86192481633,5277056.243321585],[515995.627219469,5277056.114803004],[515997.46749539993,5277056.030946854],[515997.49579628865,5277056.664521135],[515997.52403610444,5277057.320323197]]]},"properties":{"ID_SOURCE":"w340436140","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2334}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515934.828558404,5277188.593391526],[515931.98898722423,5277188.852356485],[515931.6244265985,5277184.850327654],[515934.4639997102,5277184.591362514],[515934.5878098145,5277186.003176278],[515934.828558404,5277188.593391526]]]},"properties":{"ID_SOURCE":"w340436141","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2335}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515907.7303166042,5277491.453001076],[515906.75374265504,5277491.561472632],[515906.7534390045,5277491.672611615],[515907.4852852018,5277498.676419247],[515908.4621616567,5277498.456808833],[515909.11860365025,5277505.571550537],[515908.1420320384,5277505.680021861],[515908.79847354075,5277512.794763608],[515909.85014141165,5277512.686497617],[515910.0654110913,5277516.354699759],[515909.68931670144,5277516.575951619],[515909.2387323541,5277516.574720325],[515909.6026784015,5277520.799027826],[515911.6309139879,5277520.582291086],[515911.63030649355,5277520.804569054],[515901.4891304977,5277521.888259827],[515900.9035290108,5277516.329669705],[515894.593830795,5277516.868139201],[515894.15659662965,5277511.976793771],[515893.10492893413,5277512.085062596],[515892.37488752697,5277504.414422759],[515893.3514590406,5277504.305948793],[515892.47486215224,5277495.301231254],[515894.5782036137,5277495.08469356],[515894.2124244482,5277491.527221078],[515890.30977002217,5277490.6274496],[515890.61319435155,5277489.516879678],[515885.50958050415,5277488.391554039],[515885.2061570929,5277489.502124222],[515881.3782945311,5277488.713702619],[515880.92225119256,5277490.712975161],[515876.1187244509,5277489.699616131],[515876.4221461179,5277488.589045476],[515872.5194870302,5277487.689285937],[515872.7475073301,5277486.689649339],[515866.3678309542,5277485.338582081],[515866.13981169893,5277486.338218925],[515862.23714954517,5277485.438466286],[515862.46516816306,5277484.438829293],[515858.78749489185,5277483.650831781],[515859.39524056576,5277481.096271789],[515856.16784923436,5277480.420642351],[515857.07931535435,5277476.644371486],[515856.17874586536,5277476.419639131],[515857.9271879259,5277468.644615108],[515862.3555479832,5277469.54579703],[515862.5835672232,5277468.546160064],[515868.96295996086,5277470.008362076],[515868.73524260183,5277470.896859818],[515876.2401914544,5277472.695557194],[515876.46821296244,5277471.695920761],[515883.3729812811,5277473.270711108],[515883.2200565821,5277474.270552147],[515898.4558328709,5277477.646331248],[515898.6838580101,5277476.646695671],[515902.58682412724,5277477.435333748],[515902.3587983464,5277478.434969176],[515907.2145947878,5277479.559632435],[515906.7810712283,5277481.558964502],[515907.7303166042,5277491.453001076]]]},"properties":{"ID_SOURCE":"w340436142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2336}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516031.07445394964,5277097.689640938],[516028.29503856314,5277097.904268861],[516027.5464579643,5277097.013090271],[516027.4731906611,5277096.346050082],[516027.47563799884,5277095.456938806],[516029.23335008835,5277095.350637536],[516031.0060828135,5277095.244378152],[516031.07445394964,5277097.689640938]]]},"properties":{"ID_SOURCE":"w340436143","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2337}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515917.97413928754,5277068.260741543],[515918.1164461229,5277071.150763731],[515917.9659360246,5277071.261492011],[515912.3325934368,5277071.468374129],[515912.1902837402,5277068.578352086],[515912.4155932491,5277068.578967803],[515917.97413928754,5277068.260741543]]]},"properties":{"ID_SOURCE":"w340436145","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2338}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515938.11654308863,5277529.323643373],[515938.2630864694,5277530.657722386],[515930.6004340153,5277531.637008369],[515929.93179821735,5277526.244897623],[515929.6363354237,5277524.443624138],[515943.91698706447,5277522.782276181],[515944.18173700664,5277524.827973892],[515944.65243691317,5277528.452421103],[515938.11654308863,5277529.323643373]]]},"properties":{"ID_SOURCE":"w340436146","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2339}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516048.7962098312,5277071.39833799],[516046.45692983666,5277064.512340471],[516044.1771756846,5277057.826559557],[516052.3714028329,5277054.959510281],[516055.20234688657,5277063.3027964365],[516059.93844913976,5277061.648760979],[516061.7265187703,5277066.877261181],[516048.7962098312,5277071.39833799]]]},"properties":{"ID_SOURCE":"w340436147","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2340}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515997.58652276755,5277195.856198719],[516002.3781531471,5277195.813795907],[516007.222354688,5277195.771541562],[516007.3098913818,5277204.907471169],[516005.507426889,5277204.913630092],[516005.5192698818,5277206.069516247],[516005.52403044084,5277207.069787254],[516007.64949133625,5277207.042288375],[516007.6836134624,5277211.021185945],[516005.6182656374,5277211.037736075],[515998.4458438339,5277211.106935948],[515998.4450803981,5277211.3847832745],[515992.3691690874,5277211.44588962],[515992.37002380955,5277211.134700616],[515992.3046898652,5277204.844010289],[515998.0050704489,5277204.792985999],[515998.00565064367,5277204.581822035],[515998.9744894754,5277204.573370119],[515998.95165594976,5277201.9504088545],[515998.58365883393,5277201.949397699],[515998.56030597433,5277199.515372622],[515997.6215068939,5277199.523907146],[515997.58652276755,5277195.856198719]]]},"properties":{"ID_SOURCE":"w340436148","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2341}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516000.80342514755,5277326.1097442685],[515999.5732901146,5277320.09370117],[515997.7773941025,5277320.455527686],[515995.6959354228,5277320.88325409],[515993.3911620164,5277309.651804141],[515997.2084132611,5277308.8731985055],[515997.46042503125,5277310.085314598],[516002.84064380743,5277308.9887018865],[516006.13102932606,5277325.024104024],[516000.80342514755,5277326.1097442685]]]},"properties":{"ID_SOURCE":"w340436149","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2342}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516000.2276142488,5277144.839190892],[515990.6884153924,5277145.257544692],[515989.9721869544,5277132.585645598],[515998.3851765897,5277132.05305629],[515998.59887959587,5277136.276954187],[515994.09182579437,5277136.597991428],[515994.1988619707,5277138.643256953],[515994.30614229816,5277140.599611353],[516000.01482898026,5277140.281876122],[516000.2276142488,5277144.839190892]]]},"properties":{"ID_SOURCE":"w340436150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2343}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515974.50428071775,5277325.737451331],[515973.5410937191,5277320.955797921],[515975.9080523877,5277320.484391068],[515974.56697851606,5277313.834552263],[515981.6378246069,5277312.420253379],[515983.4900325458,5277321.638826062],[515981.3710254136,5277322.066454501],[515980.18380638125,5277322.2965894425],[515980.62833538087,5277324.509491299],[515974.50428071775,5277325.737451331]]]},"properties":{"ID_SOURCE":"w340436151","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2344}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.6096173099,5277080.908840515],[515950.3840038305,5277081.019362225],[515950.4566712742,5277081.908679219],[515946.77601557004,5277082.120877348],[515946.4947788768,5277075.118303443],[515950.17513455235,5277075.017244036],[515950.31468523364,5277078.90751725],[515950.5396898997,5277079.019273348],[515950.6096173099,5277080.908840515]]]},"properties":{"ID_SOURCE":"w340436152","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2345}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515975.7309372905,5277354.926125795],[515966.4456244798,5277356.000939135],[515966.2474580072,5277354.322184853],[515965.8363181361,5277350.886837869],[515965.5719940774,5277348.685545196],[515964.6855145441,5277348.7942541875],[515964.2155125918,5277344.914186797],[515967.9792526084,5277344.468834736],[515968.06723849196,5277345.247054573],[515974.48287908407,5277344.486674975],[515975.7309372905,5277354.926125795]]]},"properties":{"ID_SOURCE":"w340436153","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2346}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.6540127332,5277347.562698949],[515979.4656309832,5277337.6985930195],[515986.6119763007,5277336.128911764],[515988.85975479346,5277346.237691067],[515987.05596083455,5277346.7439809],[515986.6565903244,5277347.231899392],[515986.15171429736,5277347.852895971],[515987.4131481205,5277353.413349249],[515978.84845017805,5277354.612375387],[515978.0471287233,5277348.31966404],[515981.6540127332,5277347.562698949]]]},"properties":{"ID_SOURCE":"w340436156","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2347}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516015.81991089566,5277373.830003906],[516009.9606424697,5277374.369588141],[516009.30155723664,5277368.25508691],[516006.37207316904,5277368.469312097],[516006.2329592845,5277367.168594019],[516006.0057426528,5277365.134111083],[516005.0294511363,5277365.13142723],[516004.5184199266,5277359.795312226],[516013.9085981137,5277358.820873839],[516014.35919468844,5277358.822113206],[516015.81991089566,5277373.830003906]]]},"properties":{"ID_SOURCE":"w340436157","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2348}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515495.42472828017,5277412.876625356],[515491.95983690437,5277416.757296231],[515480.484516221,5277411.169785446],[515480.7109944794,5277410.72582861],[515476.0610761967,5277408.379531812],[515475.8343027871,5277408.9346277965],[515470.20927799697,5277406.141184845],[515476.8374714125,5277398.82357678],[515480.6568768728,5277402.83476212],[515480.8073700758,5277402.724022516],[515483.27853862086,5277405.397947837],[515483.1280454383,5277405.508687377],[515486.57224398816,5277409.40773913],[515490.8859576199,5277411.097425246],[515495.42472828017,5277412.876625356]]]},"properties":{"ID_SOURCE":"w340439541","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2349}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515436.0741341577,5277738.46966502],[515435.45892863965,5277732.588737952],[515445.4192726509,5277731.559327397],[515447.13941093604,5277731.386067713],[515446.87579394475,5277728.851380597],[515445.15565491794,5277729.024640357],[515444.3355584831,5277721.120424326],[515455.32498740795,5277719.993734998],[515456.1524015212,5277727.964655948],[515455.108290816,5277728.073023761],[515455.35715089145,5277730.50764626],[515457.2425569811,5277730.312600361],[515457.8576817442,5277736.215757566],[515451.0071124141,5277736.93109419],[515436.0741341577,5277738.46966502]]]},"properties":{"ID_SOURCE":"w340439543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2350}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515452.2832572467,5277454.172639432],[515452.80678608944,5277449.3283354],[515454.946496038,5277449.556294463],[515455.3699214341,5277445.645298933],[515461.2935239475,5277446.283409431],[515461.4089752552,5277445.227888305],[515465.8760840485,5277445.706540056],[515465.6912426017,5277447.4398293095],[515472.73351095105,5277448.192062931],[515472.025329051,5277454.691856989],[515465.0506568513,5277453.939803733],[515464.973551208,5277454.6953492975],[515461.08455768245,5277454.273803292],[515458.5619374828,5277454.011483333],[515458.46960648336,5277454.844786388],[515452.2832572467,5277454.172639432]]]},"properties":{"ID_SOURCE":"w340439544","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2351}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515603.34553410043,5277661.073265892],[515602.62559315364,5277655.103128538],[515608.8530442723,5277654.36407119],[515609.21302669245,5277657.343583286],[515612.6234980177,5277656.930397186],[515612.2855095155,5277654.150995513],[515616.0640706874,5277653.694342624],[515616.3504743157,5277656.106844775],[515618.99470353377,5277655.79163289],[515619.36204113933,5277658.82673529],[515622.9978586534,5277658.391931899],[515623.5342749008,5277662.783394039],[515615.43629737344,5277663.761925664],[515615.50984269753,5277664.34004996],[515605.8869243524,5277665.503442389],[515605.3212016432,5277660.834053836],[515603.9314578765,5277661.008152429],[515603.34553410043,5277661.073265892]]]},"properties":{"ID_SOURCE":"w340439545","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2352}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515604.4897019244,5277665.666406818],[515604.19593328214,5277663.198315589],[515603.9314578765,5277661.008152429],[515605.3212016432,5277660.834053836],[515605.8869243524,5277665.503442389],[515604.4897019244,5277665.666406818]]]},"properties":{"ID_SOURCE":"w340439558","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2353}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515447.13941093604,5277731.386067713],[515445.4192726509,5277731.559327397],[515445.27279872657,5277730.1585771935],[515445.15565491794,5277729.024640357],[515446.87579394475,5277728.851380597],[515447.13941093604,5277731.386067713]]]},"properties":{"ID_SOURCE":"w340439560","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2354}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515544.98443172296,5277696.304053844],[515544.54335752846,5277692.746402141],[515549.35092868615,5277692.203541902],[515549.8673919152,5277695.650255539],[515544.98443172296,5277696.304053844]]]},"properties":{"ID_SOURCE":"w340439564","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2355}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515458.5619374828,5277454.011483333],[515461.08455768245,5277454.273803292],[515460.99219681276,5277455.118220207],[515459.76094094483,5277454.9815829275],[515458.46960648336,5277454.844786388],[515458.5619374828,5277454.011483333]]]},"properties":{"ID_SOURCE":"w340439566","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2356}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515593.9569061842,5277720.552367102],[515594.57374068396,5277714.552469135],[515598.1773990985,5277714.89554298],[515597.560263146,5277721.006579598],[515593.9569061842,5277720.552367102]]]},"properties":{"ID_SOURCE":"w340439574","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2357}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515622.9978586534,5277658.391931899],[515619.36204113933,5277658.82673529],[515618.99470353377,5277655.79163289],[515622.6380324735,5277655.356849424],[515622.9978586534,5277658.391931899]]]},"properties":{"ID_SOURCE":"w340439576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2358}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.3699214341,5277445.645298933],[515454.946496038,5277449.556294463],[515452.80678608944,5277449.3283354],[515453.23021006305,5277445.41733972],[515455.3699214341,5277445.645298933]]]},"properties":{"ID_SOURCE":"w340439577","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2359}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515589.5515172767,5277683.086450071],[515589.844457721,5277685.865729874],[515587.0650426868,5277686.191706969],[515586.77210093493,5277683.41242731],[515589.5515172767,5277683.086450071]]]},"properties":{"ID_SOURCE":"w340439580","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2360}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515590.87891432433,5277720.21070362],[515591.49574568606,5277714.210805338],[515594.57374068396,5277714.552469135],[515593.9569061842,5277720.552367102],[515590.87891432433,5277720.21070362]]]},"properties":{"ID_SOURCE":"w340439581","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2361}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515460.495103367,5277704.5145740155],[515457.03955601645,5277699.292941308],[515456.2170516228,5277697.9570798855],[515463.96542057744,5277692.865225684],[515468.2287141727,5277699.32266044],[515460.495103367,5277704.5145740155]]]},"properties":{"ID_SOURCE":"w340439582","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2362}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515457.03955601645,5277699.292941308],[515460.495103367,5277704.5145740155],[515461.52725180774,5277706.084386445],[515457.7660129124,5277708.519473977],[515453.27831464715,5277701.728031721],[515457.03955601645,5277699.292941308]]]},"properties":{"ID_SOURCE":"w340439584","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2363}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516647.3272231901,5276230.861866866],[516647.3433114489,5276227.861142018],[516650.3177954621,5276227.880758534],[516650.30173744453,5276230.870369504],[516647.3272231901,5276230.861866866]]]},"properties":{"ID_SOURCE":"w340441044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2364}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.4355512477,5276094.128881857],[517067.13326901064,5276090.596076785],[517063.2538647537,5276094.319003878],[517063.0516707761,5276094.1072461605],[517063.2022604631,5276093.985433665],[517061.0305765985,5276091.700708685],[517059.6077382097,5276090.207269482],[517057.9175345473,5276090.235661198],[517057.9749327648,5276088.590962074],[517058.14828507963,5276088.391418338],[517055.28767892375,5276085.371156112],[517055.084117552,5276085.626181313],[517052.11850884114,5276082.550043371],[517058.2881116858,5276076.555452343],[517064.3242600074,5276082.785841182],[517067.7664041878,5276079.606217921],[517067.40705252666,5276079.193948125],[517067.6105495312,5276078.961151102],[517071.0256097391,5276082.460944977],[517068.47949394735,5276084.90967012],[517070.6363171496,5276087.138784461],[517074.06616582425,5276090.716421319],[517070.4355512477,5276094.128881857]]]},"properties":{"ID_SOURCE":"w340458103","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2365}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517073.18240030896,5276084.701174128],[517070.6363171496,5276087.138784461],[517068.47949394735,5276084.90967012],[517071.0256097391,5276082.460944977],[517073.18240030896,5276084.701174128]]]},"properties":{"ID_SOURCE":"w340458104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2366}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516948.2559050773,5276182.861647405],[516941.4866524642,5276175.584532561],[516943.40715367236,5276173.845226042],[516946.23137091997,5276173.886784344],[516950.1854387424,5276170.2751364885],[516955.5765559197,5276176.181231245],[516952.14971464436,5276179.305395358],[516948.2559050773,5276182.861647405]]]},"properties":{"ID_SOURCE":"w340458105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2367}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.26602563716,5276189.481960549],[517199.3811093508,5276188.010047844],[517196.7930724672,5276184.3014536975],[517194.6780208811,5276185.762253459],[517197.26602563716,5276189.481960549]]]},"properties":{"ID_SOURCE":"w342041926","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2368}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517240.706688881,5276168.660550784],[517237.9328229983,5276164.29566403],[517240.36350740166,5276162.791358306],[517243.0179123028,5276166.911385191],[517240.706688881,5276168.660550784]]]},"properties":{"ID_SOURCE":"w342041927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2369}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517242.49244455755,5276176.945745458],[517239.41012003535,5276172.746654339],[517244.1452364755,5276169.248656606],[517247.1374217638,5276173.447483299],[517242.49244455755,5276176.945745458]]]},"properties":{"ID_SOURCE":"w342041928","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2370}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.17518141225,5276169.659947425],[517276.6076202427,5276167.566621497],[517277.96993512043,5276166.648202968],[517276.04647223535,5276164.286335498],[517279.18680745567,5276161.58384198],[517281.83891727746,5276163.936758443],[517285.12816591974,5276161.679268807],[517288.595690637,5276157.566276993],[517282.6813878658,5276153.414327445],[517279.59836899,5276157.0505626965],[517277.64606691594,5276159.345363113],[517276.3800199257,5276158.196868622],[517270.85277413647,5276162.837230372],[517274.17518141225,5276169.659947425]]]},"properties":{"ID_SOURCE":"w342049830","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2371}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.37644594756,5276434.512684896],[516501.4542319284,5276432.498662402],[516497.4149022752,5276426.59681579],[516495.99408025347,5276424.369997639],[516492.35942843603,5276426.749206982],[516490.408135242,5276426.176869256],[516488.34611633734,5276427.571391027],[516483.94363449153,5276430.548586111],[516483.3226003329,5276429.702166827],[516480.41012717993,5276431.694438725],[516480.57452311524,5276431.994981063],[516485.28672197775,5276439.0101173725],[516496.4469464646,5276431.550903713],[516498.37644594756,5276434.512684896]]]},"properties":{"ID_SOURCE":"w342465974","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2372}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516493.64502171235,5276421.029154192],[516494.4680380542,5276422.16510978],[516495.99408025347,5276424.369997639],[516492.35942843603,5276426.749206982],[516490.408135242,5276426.176869256],[516490.4016409399,5276423.1649655625],[516493.64502171235,5276421.029154192]]]},"properties":{"ID_SOURCE":"w342465975","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2373}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516344.67308319703,5276729.521939073],[516344.64828067826,5276727.654722194],[516347.8404776213,5276727.61922676],[516347.8577683615,5276729.486422569],[516344.67308319703,5276729.521939073]]]},"properties":{"ID_SOURCE":"w342485234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2374}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.2807567564,5276990.9849905465],[517312.51472675375,5276988.073821805],[517314.49701632257,5276988.235311607],[517314.26304533955,5276991.146480271],[517312.2807567564,5276990.9849905465]]]},"properties":{"ID_SOURCE":"w359386742","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2375}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.2702275256,5276914.280452905],[517276.69373355195,5276908.235701899],[517278.6460750914,5276908.3748625005],[517278.2226000225,5276914.408499486],[517276.2702275256,5276914.280452905]]]},"properties":{"ID_SOURCE":"w359398526","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2376}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.7677351302,5277061.408178474],[517287.95507745934,5277059.019227458],[517289.67454783234,5277059.1577006765],[517289.48720479914,5277061.546651635],[517287.7677351302,5277061.408178474]]]},"properties":{"ID_SOURCE":"w360372711","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2377}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.8677928511,5277083.358600519],[517288.1630836809,5277080.025281002],[517289.6347077344,5277080.163018378],[517289.3394490695,5277083.485223936],[517287.8677928511,5277083.358600519]]]},"properties":{"ID_SOURCE":"w360372712","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2378}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.7635186642,5277496.030374454],[517279.46213830437,5277496.362899804],[517275.86384685786,5277494.196106389],[517278.65090645745,5277491.359194578],[517281.57279122894,5277493.70180579],[517279.7635186642,5277496.030374454]]]},"properties":{"ID_SOURCE":"w387152184","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2379}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.3584427139,5277511.345713579],[517271.90917656256,5277510.899820942],[517265.99427194946,5277504.880719199],[517268.37411330594,5277502.609408553],[517269.83512790286,5277501.2244928535],[517272.62857788196,5277496.231482159],[517279.9005194883,5277500.4763789615],[517280.50031098694,5277500.811579042],[517277.10343733215,5277506.691914877],[517272.3584427139,5277511.345713579]]]},"properties":{"ID_SOURCE":"w387152186","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2380}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.6149855075,5277615.626851687],[517242.53439735953,5277616.173426837],[517242.39210490935,5277613.505646277],[517245.14197493275,5277613.058117362],[517245.6149855075,5277615.626851687]]]},"properties":{"ID_SOURCE":"w387173657","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2381}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.84525912296,5277621.959549602],[517242.89243206225,5277622.064905373],[517242.67866466485,5277618.174373476],[517244.63149302686,5277618.069017633],[517244.84525912296,5277621.959549602]]]},"properties":{"ID_SOURCE":"w387173658","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2382}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.36245371436,5277575.181611436],[517287.17630674475,5277579.296206583],[517290.70782856364,5277578.639854236],[517291.592813446,5277584.088340864],[517287.76090860565,5277584.743800679],[517287.6877921829,5277584.076743783],[517284.59232896543,5277584.567682611],[517284.60731527966,5277584.578841103],[517281.0008991541,5277585.168290848],[517281.5897949337,5277589.171077564],[517279.63629640965,5277589.498699001],[517280.15273525147,5277592.612150829],[517273.69114278903,5277593.704374978],[517272.4369250511,5277586.143136327],[517275.2171457862,5277585.59568563],[517274.55446773674,5277581.148120836],[517280.64059121226,5277580.054783098],[517280.05136393086,5277576.16313552],[517286.36245371436,5277575.181611436]]]},"properties":{"ID_SOURCE":"w387394614","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2383}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517155.98558130657,5277526.894638601],[517155.826544245,5277529.894948325],[517157.6661322723,5277530.000395374],[517159.80604373943,5277530.128956163],[517159.9654104238,5277527.017507566],[517170.92797650956,5277527.605529314],[517170.13603201264,5277541.495686434],[517159.1734920206,5277540.907666101],[517159.5715799957,5277533.240183442],[517155.74194955855,5277533.117757315],[517155.73670959414,5277534.895980928],[517148.07745061495,5277534.651136235],[517148.1600769277,5277532.09516099],[517144.70593168866,5277531.973848108],[517144.94758793106,5277526.417562815],[517155.98558130657,5277526.894638601]]]},"properties":{"ID_SOURCE":"w387399151","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2384}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517084.78955924936,5277374.423586465],[517095.63322274474,5277364.45282477],[517101.99610420235,5277371.473325399],[517111.108269777,5277362.942325403],[517121.06348252535,5277374.1967221685],[517126.6361935937,5277368.989536419],[517139.2119855874,5277382.919031716],[517127.69173604547,5277393.110002169],[517123.8737803335,5277388.986595031],[517115.8162890928,5277396.409276545],[517118.8852170041,5277399.863636559],[517113.23744335887,5277405.0706091495],[517106.3502259127,5277397.603995353],[517109.58862615685,5277394.501593572],[517098.2104591872,5277381.909358108],[517094.59590984037,5277385.232941558],[517084.78955924936,5277374.423586465]]]},"properties":{"ID_SOURCE":"w387511001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2385}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517105.30896138964,5277419.717778871],[517102.2250186653,5277421.3758178735],[517099.61092794576,5277416.477983467],[517102.694872502,5277414.819943088],[517105.30896138964,5277419.717778871]]]},"properties":{"ID_SOURCE":"w387511002","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2386}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.45106820005,5277254.937219527],[516978.462411162,5277251.04735704],[516981.9173743506,5277250.946292971],[516981.98112988047,5277254.836374498],[516978.45106820005,5277254.937219527]]]},"properties":{"ID_SOURCE":"w396429780","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2387}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.4664992241,5277309.132957835],[516945.43259852676,5277305.298533329],[516948.9549248711,5277305.264329847],[516948.9963332607,5277309.098776243],[516945.4664992241,5277309.132957835]]]},"properties":{"ID_SOURCE":"w396429781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2388}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.2629666239,5277277.627784703],[516908.27426277724,5277273.737922054],[516911.7292110635,5277273.63681637],[516911.7930131074,5277277.526897153],[516908.2629666239,5277277.627784703]]]},"properties":{"ID_SOURCE":"w396429782","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2389}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.0888400894,5277073.8824572535],[516830.02566442493,5277073.904053678],[516830.0008336633,5277069.50284478],[516834.0565342102,5277069.470112727],[516834.0888400894,5277073.8824572535]]]},"properties":{"ID_SOURCE":"w396523216","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2390}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516833.34398742137,5277170.460821068],[516829.28838934033,5277170.482439565],[516829.256048838,5277166.0812082905],[516833.31168211607,5277166.0484758755],[516833.34398742137,5277170.460821068]]]},"properties":{"ID_SOURCE":"w396523217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2391}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516020.4281736209,5277410.352107497],[516016.048723295,5277410.7735037645],[516016.20199756575,5277412.385452595],[516012.9868851202,5277412.698914453],[516013.08924172085,5277413.710568208],[516010.30982498865,5277413.980773961],[516010.63866153726,5277417.293644465],[516013.410566837,5277417.023418215],[516013.62233102805,5277419.213454859],[516013.9875530512,5277422.94875694],[516021.58210139547,5277422.21390025],[516020.4281736209,5277410.352107497]]]},"properties":{"ID_SOURCE":"w397413795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2392}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.2421809946,5277474.35140308],[516035.22262504767,5277473.109031757],[516034.4415742503,5277464.938103997],[516029.84431832563,5277465.381117839],[516029.7786272577,5277464.691870111],[516029.71290557226,5277464.013736274],[516030.8396826805,5277463.905698891],[516030.28488023055,5277458.113786869],[516024.17023911,5277458.697109253],[516024.73988365236,5277464.555745412],[516025.88918997743,5277464.447769079],[516025.94764703646,5277465.036971014],[516026.02057302586,5277465.82626445],[516021.460867498,5277466.26938827],[516022.2421809946,5277474.35140308]]]},"properties":{"ID_SOURCE":"w397413796","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2393}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.0300554005,5277562.502122716],[516162.6891264104,5277567.152382966],[516160.58796003397,5277566.590850849],[516160.3071404589,5277567.657013883],[516159.92010584974,5277569.111871567],[516154.5846455353,5277567.685588184],[516153.4691596544,5277571.850237295],[516170.8863818383,5277576.477551327],[516171.8652543275,5277572.834883269],[516168.9086060426,5277572.048692157],[516169.720567477,5277569.01682938],[516168.4223510047,5277568.6686903145],[516170.2195311107,5277565.117206551],[516165.0300554005,5277562.502122716]]]},"properties":{"ID_SOURCE":"w397413797","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2394}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515911.3623408433,5277371.54308232],[515911.00468095206,5277367.763352079],[515904.14632269973,5277368.400338359],[515903.95662013063,5277366.365962055],[515899.8175545019,5277366.754760547],[515899.65707064414,5277365.020541608],[515895.0147174127,5277365.452425053],[515895.5912227257,5277371.6000291975],[515895.7224871616,5277373.034090833],[515895.22671079414,5277373.077193212],[515895.5842592001,5277376.90137808],[515902.0970590686,5277376.2967798645],[515901.7396059615,5277372.4392529065],[515911.3623408433,5277371.54308232]]]},"properties":{"ID_SOURCE":"w397413798","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2395}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.1744541304,5277475.863164372],[516018.9521267781,5277474.620199342],[516018.17065586976,5277466.593754464],[516013.6710605671,5277467.025935777],[516013.6053064676,5277466.3589160275],[516013.53967462596,5277465.647440685],[516014.69649032364,5277465.539482798],[516014.13397876086,5277459.814235063],[516008.056859629,5277460.408791548],[516008.6119284174,5277466.1117902445],[516009.7537243171,5277466.003790076],[516009.82680529665,5277466.73751382],[516009.8852333925,5277467.337829489],[516005.3781295091,5277467.769996559],[516006.1744541304,5277475.863164372]]]},"properties":{"ID_SOURCE":"w397413799","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2396}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.89772915473,5277478.780250866],[516004.765387471,5277477.581957839],[516004.0065795965,5277469.500007317],[515999.4243798502,5277469.931972557],[515999.3734605043,5277469.331677629],[515999.300530951,5277468.542384531],[516000.3521780304,5277468.44524877],[515999.81953919446,5277462.775654463],[515993.75750536635,5277463.348039345],[515994.29002791847,5277469.062088681],[515995.4919013667,5277468.954250765],[515995.5575353716,5277469.665725899],[515995.6159649053,5277470.266041428],[515991.13893412275,5277470.687188147],[515991.89772915473,5277478.780250866]]]},"properties":{"ID_SOURCE":"w397413800","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2397}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515885.72429406596,5277340.887404965],[515882.95763414854,5277339.223874241],[515884.4287484917,5277336.782812389],[515880.85231266246,5277334.639172456],[515879.4112391707,5277337.080317133],[515876.1871037216,5277335.182148442],[515872.006946012,5277342.372609258],[515870.9122787296,5277341.713900507],[515867.36660304817,5277347.572416866],[515877.12732848024,5277351.166612809],[515879.8054258658,5277346.750553169],[515878.8681966283,5277346.19229812],[515879.3283652863,5277345.437802624],[515879.89418882586,5277344.494657701],[515882.5633692172,5277346.102351185],[515885.72429406596,5277340.887404965]]]},"properties":{"ID_SOURCE":"w397413801","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2398}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515993.1849896416,5277176.9170052],[515993.20752017386,5277176.917067087],[516000.604922827,5277176.981846513],[516000.5189848205,5277175.458995596],[516000.42623902287,5277173.680504521],[516006.82589151064,5277173.342446963],[516006.311188703,5277163.8719242485],[516001.3161153569,5277164.147158364],[516001.4664075405,5277166.848267598],[515993.5944762627,5277167.282312605],[515993.6873769024,5277169.005234084],[515988.79748175247,5277169.269653848],[515989.0192496598,5277173.293522187],[515988.5233667298,5277176.103996476],[515989.1764470674,5277176.216929599],[515993.1849896416,5277176.9170052]]]},"properties":{"ID_SOURCE":"w397413802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2399}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515891.32574758044,5277310.994976256],[515885.83341727837,5277320.160133822],[515884.5362807439,5277319.38973035],[515881.48848028545,5277324.427162014],[515888.48553222377,5277328.024952895],[515890.7262191473,5277324.2856573695],[515892.4507252493,5277325.312850244],[515893.9219077318,5277322.849563035],[515894.8441496767,5277323.396665584],[515895.5985771679,5277322.142845707],[515897.9154010603,5277323.52730462],[515903.99619881227,5277313.38573567],[515899.83488588396,5277310.907067275],[515897.556455938,5277314.712940085],[515891.32574758044,5277310.994976256]]]},"properties":{"ID_SOURCE":"w397413803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2400}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515957.28633141785,5277401.52091662],[515958.1708101757,5277410.358954916],[515960.98029606475,5277410.07769273],[515963.8348414951,5277409.79655545],[515964.0322143358,5277411.764271109],[515970.2671478267,5277411.147873409],[515970.0843090625,5277409.35802108],[515971.5716916592,5277409.2065054085],[515974.3736384126,5277408.936342981],[515976.32675568026,5277408.741650467],[515976.5095925481,5277410.531502994],[515982.8497280411,5277409.893179483],[515982.6743724723,5277408.114461264],[515983.9589279629,5277407.984619931],[515985.53642984363,5277407.833355234],[515985.71178455005,5277409.612073541],[515988.9719869417,5277409.287606469],[515988.774744519,5277407.2754343655],[515990.69782332686,5277407.0806641765],[515994.51391128276,5277406.702157075],[515993.63687483623,5277397.908589399],[515987.950299263,5277398.470898027],[515988.00879139296,5277399.048985618],[515985.11669001926,5277399.330007962],[515985.05816709145,5277398.763034302],[515965.8199410108,5277400.677421147],[515965.87849626725,5277401.233280716],[515963.046476203,5277401.514478775],[515962.9954305676,5277400.958639822],[515957.28633141785,5277401.52091662]]]},"properties":{"ID_SOURCE":"w397413805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2401}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515911.7411557791,5277406.053023056],[515912.64093526785,5277414.813298116],[515915.5856551351,5277414.5101557],[515918.18479969696,5277414.250525851],[515918.37507295166,5277416.07373875],[515924.71522612224,5277415.4242380615],[515924.5543255536,5277413.845612841],[515925.8163488052,5277413.715697056],[515929.33948214725,5277413.358573902],[515930.79682312027,5277413.206965629],[515930.9652318852,5277414.785611575],[515937.2678081519,5277414.147135703],[515937.1068501041,5277412.590737921],[515938.50408206705,5277412.450081017],[515940.10414154595,5277412.287751797],[515940.26512923284,5277413.833035766],[515943.48777724145,5277413.508440427],[515943.3122880332,5277411.774178995],[515945.44570112746,5277411.557741896],[515948.9838872325,5277411.189557861],[515948.06938556733,5277402.340324801],[515942.41282805405,5277402.91387407],[515942.478773674,5277403.514209553],[515939.57162663195,5277403.806327281],[515939.5131601751,5277403.2171262875],[515920.3123923868,5277405.17622184],[515920.3561752924,5277405.643128703],[515917.55419920787,5277405.924431025],[515917.5028758133,5277405.468617544],[515911.7411557791,5277406.053023056]]]},"properties":{"ID_SOURCE":"w397413808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2402}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515963.69375132996,5277480.425515954],[515988.53563316114,5277477.937468259],[515987.29284466937,5277465.597536089],[515985.1519399228,5277465.813937214],[515985.45175541827,5277468.759965447],[515985.9325352639,5277468.70571562],[515986.0056497237,5277469.42832516],[515986.0714679787,5277470.073116802],[515979.8140358822,5277470.700549554],[515979.7483084549,5277470.022416294],[515979.6825810114,5277469.344283033],[515980.12578124495,5277469.30104357],[515979.8259935911,5277466.343901719],[515975.3789392208,5277466.787370804],[515975.678729108,5277469.744512422],[515976.1895174775,5277469.70145812],[515976.2552758218,5277470.36847744],[515976.32851345104,5277471.046631269],[515970.0109746384,5277471.68502359],[515969.9451241391,5277471.051346031],[515969.87197722425,5277470.339850593],[515970.3227175915,5277470.285517084],[515970.0229250151,5277467.328375744],[515964.33638911246,5277467.901821238],[515964.6288271217,5277470.8033722015],[515966.07113509544,5277470.651731589],[515966.13692506374,5277471.307636897],[515966.2099809874,5277472.052473983],[515962.88219640707,5277472.387882336],[515963.69375132996,5277480.425515954]]]},"properties":{"ID_SOURCE":"w397413811","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2403}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.96312690707,5277158.336966431],[515979.10167916736,5277158.351340977],[515979.12342395884,5277161.374402082],[515981.9849007167,5277161.348913661],[515981.96312690707,5277158.336966431]]]},"properties":{"ID_SOURCE":"w397413812","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2404}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516072.96501421166,5277084.846228644],[516076.164860778,5277084.688352649],[516075.98707571934,5277081.075819789],[516072.7947374749,5277081.233716614],[516072.96501421166,5277084.846228644]]]},"properties":{"ID_SOURCE":"w397413813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2405}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515982.2452878643,5277192.346507927],[515982.27447989746,5277195.39181761],[515986.3150951168,5277195.347340172],[515986.2859051947,5277192.302030464],[515982.2452878643,5277192.346507927]]]},"properties":{"ID_SOURCE":"w397413814","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2406}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516249.76525638456,5277346.237613967],[516247.36144895654,5277346.4531851625],[516247.7480013951,5277350.566437112],[516250.14432820666,5277350.339731225],[516249.76525638456,5277346.237613967]]]},"properties":{"ID_SOURCE":"w397413815","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2407}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.231751488,5277105.888411121],[516080.7257133919,5277105.695246646],[516080.26144594594,5277099.759101404],[516077.76748151536,5277099.952266084],[516078.231751488,5277105.888411121]]]},"properties":{"ID_SOURCE":"w397413817","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2408}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516226.96903385577,5277336.649353121],[516227.4139155152,5277341.39626309],[516224.0560625917,5277341.709210785],[516224.7415277225,5277349.057462652],[516234.8751856691,5277348.107680217],[516235.414931093,5277353.843999811],[516245.04526077054,5277352.948401501],[516244.848383823,5277350.83619565],[516247.7480013951,5277350.566437112],[516247.36144895654,5277346.4531851625],[516249.76525638456,5277346.237613967],[516250.2986186312,5277346.183532674],[516250.16719267936,5277344.838374073],[516252.1804208157,5277344.643941729],[516252.3043363494,5277345.989079417],[516262.7234449951,5277345.017914252],[516262.5702991071,5277343.383731164],[516266.1835541268,5277343.049291243],[516266.3367300598,5277344.672360536],[516273.7810904305,5277343.981868556],[516273.6570244901,5277342.692299882],[516279.0055486229,5277342.196008631],[516279.129644465,5277343.474463524],[516289.8943139923,5277342.470971194],[516289.6974218289,5277340.36987772],[516291.9359830313,5277340.164975575],[516291.6077993308,5277336.674266911],[516292.98249747383,5277336.544745889],[516292.1220086176,5277327.362188943],[516279.4943377881,5277328.538291636],[516279.58917079365,5277329.538815149],[516274.6462982183,5277329.99178386],[516274.85048870684,5277332.170695034],[516266.94788030174,5277332.904361319],[516266.86039990606,5277331.959428466],[516257.1323712636,5277332.865832044],[516257.2273321646,5277333.82189961],[516241.6925476303,5277335.267817113],[516241.590322253,5277334.222817694],[516234.52154513,5277334.881056157],[516234.6237407744,5277335.937169345],[516226.96903385577,5277336.649353121]]]},"properties":{"ID_SOURCE":"w397413818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2409}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.16724443773,5277358.331947912],[516037.5679393721,5277355.062787],[516037.1832078955,5277352.961185077],[516034.0349164607,5277353.541555027],[516035.01147646765,5277358.901182749],[516038.16724443773,5277358.331947912]]]},"properties":{"ID_SOURCE":"w397413819","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2410}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515966.4456244798,5277356.000939135],[515966.2474580072,5277354.322184853],[515963.76835221617,5277354.615464428],[515963.50417991576,5277352.358602363],[515958.6962576015,5277352.91223491],[515959.1586002777,5277356.847850791],[515966.4456244798,5277356.000939135]]]},"properties":{"ID_SOURCE":"w397413820","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2411}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515944.10481777333,5277319.81928603],[515940.1584339525,5277329.366501819],[515946.137192038,5277331.827948641],[515947.58875767456,5277328.308793174],[515952.77236952336,5277330.434649566],[515954.0424817551,5277327.3595576715],[515955.2672308345,5277324.395481532],[515944.10481777333,5277319.81928603]]]},"properties":{"ID_SOURCE":"w397413821","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2412}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515998.79934177955,5277082.452523345],[515991.02499159914,5277082.8646125095],[515991.33948139206,5277088.678084947],[515983.87627061876,5277090.65810855],[515984.0834824115,5277094.515226594],[515999.3917615594,5277093.7126075765],[515999.1203874664,5277088.61054747],[515998.79934177955,5277082.452523345]]]},"properties":{"ID_SOURCE":"w397413822","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2413}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515960.2707426561,5277394.960734896],[515973.1387926633,5277393.68457445],[515972.7585836388,5277389.927006174],[515970.56505185476,5277390.154382375],[515970.07530177926,5277385.262887896],[515961.4590295108,5277386.117264588],[515961.75861765485,5277389.152202363],[515961.97794273164,5277391.331143679],[515959.9271609589,5277391.536687287],[515960.2707426561,5277394.960734896]]]},"properties":{"ID_SOURCE":"w397413823","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2414}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516010.4701708389,5277429.407420161],[516011.4286235544,5277438.62354614],[516013.26154416346,5277438.4396494785],[516014.60620297655,5277438.298866261],[516014.76707841357,5277439.8774940865],[516021.02460873325,5277439.227871054],[516020.8637655549,5277437.638129153],[516022.3361226367,5277437.48658513],[516024.25171340094,5277437.280691467],[516023.30072941276,5277428.086811815],[516010.4701708389,5277429.407420161]]]},"properties":{"ID_SOURCE":"w397413824","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2415}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516016.1835117035,5277386.345345657],[516012.4573444223,5277386.790769806],[516012.3472327685,5277385.8680066215],[516006.96830530075,5277386.520054681],[516007.5632545642,5277391.378499723],[516007.9525399132,5277394.55816838],[516011.520963458,5277394.123421543],[516012.28478431905,5277400.382693088],[516017.81395856815,5277399.708835378],[516016.1835117035,5277386.345345657]]]},"properties":{"ID_SOURCE":"w397413825","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2416}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516086.93658615055,5277064.979682176],[516083.0268902952,5277066.535952475],[516084.25010964373,5277069.6067884],[516076.4608609833,5277072.686076505],[516079.2802091818,5277079.7734635845],[516083.640973947,5277078.051727078],[516087.06944989885,5277076.694179234],[516088.79235446814,5277081.033389938],[516092.7095524848,5277079.477144252],[516086.93658615055,5277064.979682176]]]},"properties":{"ID_SOURCE":"w397413827","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2417}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516063.69317544124,5277075.429333238],[516061.86020165554,5277070.145138599],[516053.15492219897,5277073.144133238],[516054.97294358345,5277078.406055949],[516055.1250520686,5277080.4403328085],[516055.28451751766,5277082.5301998425],[516057.3277480374,5277082.380238412],[516057.6478111377,5277086.148758668],[516070.08789585775,5277085.082794904],[516069.21460178815,5277074.955553282],[516063.69317544124,5277075.429333238]]]},"properties":{"ID_SOURCE":"w397413828","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2418}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.3781531471,5277195.813795907],[515997.58652276755,5277195.856198719],[515990.0986559868,5277195.924542288],[515989.9816598111,5277183.832214582],[516001.9307045004,5277183.731673629],[516001.9190745219,5277182.49799028],[516007.17637706076,5277182.445757186],[516007.24740285584,5277189.392187806],[516002.3205536856,5277189.445328986],[516002.33841083845,5277191.145816487],[516002.3781531471,5277195.813795907]]]},"properties":{"ID_SOURCE":"w397413829","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2419}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0301025402,5276660.920479226],[516860.36764077,5276656.250691424],[516863.5985943086,5276655.815487571],[516863.89355716633,5276657.705717589],[516873.8881398377,5276655.956432478],[516874.2575637766,5276658.069158312],[516874.623122933,5276661.515550083],[516871.69260547037,5276661.951618215],[516872.2789831032,5276666.954606239],[516867.6882515957,5276667.4970063],[516867.10090438265,5276662.827435219],[516866.8866307718,5276661.604277263],[516864.2565477208,5276662.041219302],[516864.4776890107,5276663.486676562],[516861.2464178667,5276664.03301875],[516861.0301025402,5276660.920479226]]]},"properties":{"ID_SOURCE":"w400596000","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2420}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516941.0273708155,5276586.533412434],[516943.08581212536,5276583.805362878],[516939.75023026107,5276581.461724694],[516937.7893026891,5276584.234514927],[516941.0273708155,5276586.533412434]]]},"properties":{"ID_SOURCE":"w400600045","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2421}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.81513897487,5276547.090388844],[517118.38377341797,5276545.985897636],[517116.2424195531,5276548.780325757],[517116.3623340949,5276548.869590002],[517117.7415143985,5276549.840559615],[517119.50293789245,5276551.090502597],[517121.6138564258,5276548.429353903],[517119.81513897487,5276547.090388844]]]},"properties":{"ID_SOURCE":"w400603334","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2422}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517048.2857715979,5276583.545563108],[517050.0279259873,5276581.116702555],[517052.3515039206,5276582.768374263],[517050.61685999227,5276585.197256116],[517048.2857715979,5276583.545563108]]]},"properties":{"ID_SOURCE":"w400613445","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2423}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516799.7787776995,5277553.718648327],[516812.12359147577,5277551.542599633],[516809.8255242501,5277538.565936669],[516810.26288468955,5277537.944816016],[516810.8811843963,5277537.07971006],[516811.6832476644,5277537.59326965],[516818.56003978127,5277527.943959624],[516806.6740278165,5277519.4518885575],[516799.8270278971,5277529.190210337],[516801.0036493646,5277530.027154998],[516797.39186938736,5277535.084712843],[516796.63303516974,5277535.204777407],[516799.7787776995,5277553.718648327]]]},"properties":{"ID_SOURCE":"w435781590","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2424}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.70774063695,5277566.652460375],[517148.88434745267,5277569.2069212645],[517146.411910791,5277572.344899467],[517143.1751617761,5277569.812490804],[517145.70774063695,5277566.652460375]]]},"properties":{"ID_SOURCE":"w435781591","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2425}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.6640488283,5277558.064963021],[516831.8242341644,5277548.06527406],[516836.4039948995,5277548.478620162],[516838.9967211449,5277558.2219749335],[516834.6640488283,5277558.064963021]]]},"properties":{"ID_SOURCE":"w435781592","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2426}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516987.15406893403,5277654.321641245],[516990.4214277051,5277656.665114818],[516992.3290673127,5277654.025551798],[516989.0541982457,5277651.682055253],[516987.15406893403,5277654.321641245]]]},"properties":{"ID_SOURCE":"w435784884","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2427}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516609.33237363776,5277190.0782949645],[516609.16506452323,5277185.543312856],[516614.06226501625,5277185.357232719],[516614.2295703245,5277189.892214979],[516609.33237363776,5277190.0782949645]]]},"properties":{"ID_SOURCE":"w435813578","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2428}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516669.4973297549,5277423.34384193],[516670.1337268749,5277424.023617266],[516672.11260749,5277422.706719115],[516671.2290532606,5277421.792842112],[516669.4973297549,5277423.34384193]]]},"properties":{"ID_SOURCE":"w435819542","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2429}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.5869031086,5277406.126620921],[516573.1128014712,5277405.641948887],[516572.5395703788,5277403.873193423],[516571.051347561,5277404.313516895],[516571.5869031086,5277406.126620921]]]},"properties":{"ID_SOURCE":"w435819543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2430}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516258.24517404864,5276969.286250527],[516256.66769942973,5276966.692290082],[516260.9638319606,5276963.959133807],[516262.6089925861,5276966.519942521],[516258.24517404864,5276969.286250527]]]},"properties":{"ID_SOURCE":"w437557214","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2431}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516093.4597656727,5276968.361700074],[516092.0617168763,5276968.757939384],[516091.34767165856,5276968.9560176525],[516092.9465069243,5276974.717474479],[516095.02843438333,5276974.1675299965],[516093.4597656727,5276968.361700074]]]},"properties":{"ID_SOURCE":"w437562169","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2432}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516089.4591602032,5277059.874223377],[516085.75263820216,5277061.286571587],[516084.30610342504,5277057.492710142],[516088.01259677013,5277056.091474906],[516089.4591602032,5277059.874223377]]]},"properties":{"ID_SOURCE":"w437582717","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2433}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516095.6548060893,5277076.328915905],[516093.65638889105,5277071.133165579],[516095.3405118155,5277070.482096041],[516093.6179468275,5277066.020630671],[516102.8279250986,5277062.489621298],[516106.22083716094,5277071.279045901],[516101.7098236079,5277073.01146403],[516099.454333206,5277073.872117457],[516099.789900285,5277074.739935368],[516095.6548060893,5277076.328915905]]]},"properties":{"ID_SOURCE":"w437582718","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2434}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515952.8223465555,5277123.059093987],[515952.73688233824,5277121.358421668],[515952.65847158333,5277119.824478306],[515947.25780970143,5277120.09864776],[515947.4216876635,5277123.333263281],[515952.8223465555,5277123.059093987]]]},"properties":{"ID_SOURCE":"w437630186","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2435}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515951.36744950333,5277133.257737157],[515952.75702542847,5277133.1948602535],[515952.53900640167,5277127.7928710515],[515949.0387471465,5277127.961105956],[515949.28684079146,5277133.352063419],[515951.36744950333,5277133.257737157]]]},"properties":{"ID_SOURCE":"w437630188","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2436}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.1315156938,5277554.319955337],[517285.77713590744,5277549.739936899],[517292.8829962324,5277549.194225395],[517298.23870110343,5277548.776690132],[517298.5930711567,5277553.356709344],[517286.1315156938,5277554.319955337]]]},"properties":{"ID_SOURCE":"w438287281","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2437}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.41561592894,5277557.277121761],[517286.1315156938,5277554.319955337],[517298.5930711567,5277553.356709344],[517298.832139988,5277556.302628608],[517294.49746291025,5277556.823222227],[517286.41561592894,5277557.277121761]]]},"properties":{"ID_SOURCE":"w438287282","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2438}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517309.8518900829,5277691.703868796],[517308.1336885614,5277688.675752659],[517310.4129069613,5277687.39330555],[517312.1311076846,5277690.421422356],[517309.8518900829,5277691.703868796]]]},"properties":{"ID_SOURCE":"w438289155","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2439}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.35906745127,5277744.385466203],[517264.2110827069,5277741.525763957],[517259.3541438978,5277743.478540203],[517260.5464294135,5277746.593994809],[517265.35906745127,5277744.385466203]]]},"properties":{"ID_SOURCE":"w438291366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2440}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.1716129067,5277097.072873033],[516685.96700017335,5277106.108987814],[516695.68400416,5277093.489130312],[516683.8886061441,5277084.452996053],[516674.1716129067,5277097.072873033]]]},"properties":{"ID_SOURCE":"w497190606","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2441}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.01516287745,5277751.881747486],[516365.88105948985,5277756.435553215],[516364.1466737017,5277758.99800935],[516357.25030385563,5277754.599715878],[516359.01516287745,5277751.881747486]]]},"properties":{"ID_SOURCE":"w511310931","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2442}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516353.76459907193,5277752.389352845],[516357.34022969037,5277754.66665249],[516355.7336011374,5277757.196128116],[516352.0829707798,5277754.885276806],[516353.76459907193,5277752.389352845]]]},"properties":{"ID_SOURCE":"w511310932","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2443}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516349.0649783172,5277663.675406129],[516348.04564560315,5277662.972362368],[516346.2964395198,5277665.456984015],[516345.284616336,5277664.75396182],[516344.3120154195,5277666.129365723],[516341.7409334434,5277669.800878135],[516340.97941243654,5277670.887911413],[516342.03632350604,5277671.579945444],[516338.54518309137,5277676.638125203],[516337.4958756373,5277675.912771168],[516336.56849154626,5277677.23273332],[516334.7437939247,5277679.861628452],[516329.7970436749,5277676.446870275],[516331.41786020977,5277674.217505246],[516329.98634436936,5277673.213230682],[516332.80654190487,5277669.07562449],[516331.88461402303,5277668.450654749],[516333.77699336346,5277665.788606686],[516334.27913521964,5277666.145663171],[516338.6069265481,5277659.989544105],[516338.0447079735,5277659.632318646],[516344.21248608985,5277650.7584407255],[516345.4942505849,5277651.60670245],[516347.59812665323,5277648.511807173],[516347.1109408058,5277648.177019522],[516350.48139047704,5277643.318557816],[516350.95365103136,5277643.619961863],[516352.97427189385,5277640.7582284575],[516359.79499764834,5277645.400810535],[516358.62617310206,5277647.120194258],[516357.7287554954,5277648.462465205],[516358.7405800338,5277649.165489542],[516355.43029696576,5277653.990773589],[516354.3358676686,5277653.287517768],[516352.9708611406,5277655.339771166],[516352.2845254135,5277656.3936721925],[516353.58127539174,5277657.2530917935],[516352.01304377796,5277659.471484374],[516350.1054788685,5277662.189053833],[516349.0649783172,5277663.675406129]]]},"properties":{"ID_SOURCE":"w511310934","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2444}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516348.05916500377,5277684.900299504],[516347.49698063044,5277684.531959216],[516344.6560508041,5277682.679060342],[516346.5411091409,5277679.950311875],[516349.8766384887,5277682.171362319],[516348.05916500377,5277684.900299504]]]},"properties":{"ID_SOURCE":"w511310935","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2445}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516374.83284527814,5277676.173266287],[516374.2596198944,5277677.06077308],[516376.0733942994,5277678.321755585],[516378.8764560123,5277680.285703168],[516382.75882350584,5277682.986212558],[516383.76312948717,5277683.689220167],[516384.41160733294,5277682.746356138],[516389.2084428481,5277686.049599012],[516388.5069912135,5277687.136795244],[516389.6387698841,5277687.906846664],[516391.32518870104,5277689.056335544],[516386.9293079395,5277695.378934056],[516384.1186528818,5277693.448303094],[516383.78692067135,5277693.91415704],[516381.20874608296,5277692.095321661],[516378.8855182256,5277690.410572581],[516379.2850547741,5277689.867111205],[516376.42182788946,5277687.936336093],[516374.5522147261,5277690.509522572],[516368.1369742376,5277685.90140456],[516370.57946636446,5277682.562961728],[516368.12866338354,5277680.844516291],[516367.83472936344,5277681.221565495],[516362.581202009,5277677.416927239],[516362.89769571414,5277677.028827192],[516359.7946516437,5277674.919562497],[516359.2520599634,5277675.59599106],[516355.22715156886,5277672.839527062],[516352.16576068924,5277677.287636688],[516352.7729090122,5277677.689445695],[516349.8766384887,5277682.171362319],[516346.5411091409,5277679.950311875],[516356.1247522109,5277666.084743854],[516358.4858876198,5277667.64733635],[516359.18705487525,5277666.660161648],[516360.10156428436,5277667.251772911],[516360.99360733747,5277667.821093207],[516361.65707108943,5277666.8893827805],[516366.37871215533,5277670.23685125],[516367.12816658925,5277670.772429674],[516367.8218878926,5277669.763007091],[516372.78360953485,5277673.188953721],[516372.0823469784,5277674.209468503],[516372.89926117845,5277674.789693347],[516374.83284527814,5277676.173266287]]]},"properties":{"ID_SOURCE":"w511310936","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2446}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516402.6334300159,5277673.484145091],[516399.202345455,5277678.531343974],[516397.11119290214,5277677.102863144],[516396.10685607896,5277676.410967139],[516395.3376910094,5277677.542427794],[516390.55593355314,5277674.216994404],[516391.3552614468,5277673.041162099],[516390.31343812187,5277672.326933579],[516385.95123823965,5277669.347218918],[516386.63022544305,5277668.237731191],[516385.52093988925,5277667.478857698],[516382.5753178797,5277665.470049849],[516383.216663305,5277664.393797772],[516379.70027683274,5277659.727141945],[516379.1541429781,5277658.992082154],[516378.288761731,5277659.623144845],[516375.221785476,5277655.3689737115],[516373.6808173546,5277653.230753745],[516372.02764216077,5277650.9366228115],[516373.6378778447,5277649.807524584],[516372.3212571371,5277648.003355634],[516370.5857246121,5277645.620081626],[516368.2143451582,5277642.357015325],[516369.380673514,5277641.526745548],[516368.38571169606,5277640.16804149],[516366.2536356987,5277637.261296479],[516365.1090742757,5277635.691006669],[516364.07807411265,5277636.466087744],[516360.6517391793,5277631.810810904],[516361.8782389995,5277630.9473667685],[516361.003021087,5277629.733482391],[516358.85607450583,5277626.771128444],[516363.7474347761,5277623.183942941],[516365.37086396635,5277625.37796186],[516366.52217609214,5277624.547649305],[516369.536982928,5277628.668300985],[516369.79315294727,5277628.368943614],[516371.70100533694,5277630.897183727],[516371.3022780814,5277631.151684183],[516375.438858275,5277636.931477852],[516375.8452199548,5277636.632543206],[516377.65556747833,5277639.1160551105],[516378.36300030403,5277638.573459878],[516382.7990442256,5277644.676407061],[516381.3465376622,5277645.794832594],[516385.78279187105,5277651.819984838],[516383.89366831764,5277653.315056464],[516386.6985555898,5277657.301758729],[516385.3891396421,5277658.276104178],[516386.62349297025,5277659.957790707],[516391.82539249945,5277663.428885526],[516390.64895861724,5277665.18158344],[516394.76403283124,5277667.9160978915],[516395.4652375275,5277666.917813642],[516400.24699822936,5277670.243251019],[516399.5304609484,5277671.352631396],[516402.6334300159,5277673.484145091]]]},"properties":{"ID_SOURCE":"w511310937","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2447}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.6018542644,5277734.042036863],[516336.5556702083,5277732.64704581],[516335.7787963308,5277733.856290625],[516331.656512627,5277731.0217713555],[516331.21139653435,5277731.754045952],[516324.7210106769,5277727.167992595],[516324.11000126763,5277728.144310297],[516320.8800574426,5277725.767974532],[516320.68384532497,5277726.111958113],[516318.1728457695,5277724.43782077],[516315.76725774753,5277722.663954042],[516316.02357663604,5277722.309024769],[516313.16056297475,5277720.300483372],[516312.79848864384,5277720.877396206],[516307.5294133561,5277717.261701638],[516310.1605599844,5277713.579228351],[516307.31283916207,5277711.470706838],[516309.5972126755,5277708.265163472],[516306.9666729189,5277706.36841639],[516308.36159594543,5277704.34957796],[516307.4848214647,5277703.691396555],[516309.2266457427,5277701.15117262],[516310.65790912276,5277702.244353341],[516312.6559926165,5277699.371428748],[516312.27369299316,5277699.125849779],[516315.63713547663,5277694.067296389],[516316.0421195687,5277694.257369207],[516318.0854212895,5277691.329003277],[516317.3207591006,5277690.860072462],[516320.1780505728,5277686.878159936],[516321.59476378775,5277687.804592699],[516323.3518984458,5277685.164390027],[516328.3284960425,5277688.645910437],[516326.43544084847,5277691.552466173],[516325.47755619,5277693.039054387],[516326.37710814417,5277693.608390462],[516323.8810510972,5277697.313463169],[516322.6970726799,5277699.088381589],[516323.8065472854,5277699.780559736],[516320.42057244654,5277704.839045304],[516319.1763636038,5277703.9908942655],[516318.11319410894,5277705.532758513],[516315.92643823137,5277708.738572141],[516314.6147998621,5277707.834663148],[516313.9209365782,5277708.899661609],[516312.78211390215,5277710.641366623],[516314.52843019064,5277711.857685023],[516315.5852123103,5277712.594169916],[516316.3244127393,5277711.429272811],[516318.9254699965,5277713.125889723],[516318.5479706868,5277713.847240815],[516320.30942840636,5277715.019147457],[516321.4787579972,5277715.7892909115],[516322.2254063753,5277714.6466434095],[516327.20989398565,5277717.983703414],[516326.31236976746,5277719.370434922],[516327.63148202683,5277720.285481542],[516329.07049610716,5277721.2897766875],[516331.2196136529,5277718.117204304],[516333.2282567178,5277719.512088093],[516335.9788712524,5277721.43141207],[516337.56779240584,5277722.536155889],[516337.00214908365,5277723.401459664],[516339.18303889764,5277724.96353875],[516338.3687408758,5277726.128222223],[516339.5379098838,5277726.953938838],[516342.49828469154,5277729.051678521],[516338.6018542644,5277734.042036863]]]},"properties":{"ID_SOURCE":"w511310938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2448}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516352.1932044063,5277696.926131813],[516353.79919221107,5277694.630047338],[516363.01020035567,5277701.124271222],[516362.11285243224,5277702.444313788],[516364.7211288101,5277704.240997372],[516364.4044802438,5277704.684666838],[516367.1625698672,5277706.615140523],[516364.62131037714,5277710.364524819],[516367.50680854503,5277712.384268761],[516365.3879256989,5277715.479114901],[516368.79026279174,5277717.967100002],[516366.65676850465,5277720.9174227575],[516367.22630138596,5277721.341355551],[516358.9719442183,5277732.521055919],[516358.4022869206,5277732.14157953],[516354.19589652633,5277737.864579867],[516354.5703389391,5277738.232393437],[516352.70869795955,5277740.650013547],[516351.8693251346,5277740.047500373],[516348.9819999228,5277744.029313315],[516347.5806357747,5277742.991776918],[516345.77941804164,5277745.287315031],[516340.8628303072,5277741.850403489],[516343.0714296252,5277738.889168147],[516343.99855586805,5277737.658118137],[516343.0916902111,5277737.022074788],[516346.4768861477,5277732.241449691],[516347.458565923,5277732.9777295515],[516348.36316563975,5277731.746616982],[516351.0091009319,5277728.153115418],[516351.76288842293,5277727.143859586],[516350.92363840196,5277726.496890961],[516352.69548162894,5277723.9678781815],[516351.87857236987,5277723.387656117],[516353.0394644577,5277721.8127305],[516355.3762382446,5277718.674036065],[516356.4993662201,5277717.176802972],[516357.42125249456,5277717.812890584],[516359.23049243196,5277715.339554823],[516360.4745681127,5277716.232170063],[516361.0475377024,5277715.433573082],[516362.59304198105,5277713.281802855],[516361.0789680054,5277712.266174476],[516356.9495776104,5277709.287135577],[516356.38405502756,5277710.107981856],[516354.59265871556,5277708.902638203],[516351.4445717696,5277706.793251242],[516349.18094906,5277705.27539124],[516345.0135008672,5277702.4740778385],[516344.14402130595,5277701.8937093],[516343.4201763031,5277702.9363921145],[516338.4356225766,5277699.621546116],[516339.13706334593,5277698.534343854],[516338.00528012234,5277697.764302251],[516337.3381815904,5277697.317870576],[516338.06972284184,5277696.208524683],[516336.0760294902,5277694.835909237],[516344.6560508041,5277682.679060342],[516347.49698063044,5277684.531959216],[516346.1016336183,5277686.695268962],[516345.59946306085,5277686.349325339],[516342.4169359769,5277691.152747632],[516346.2544743416,5277693.775308913],[516346.8804164413,5277692.83237745],[516349.46629813284,5277694.584535285],[516349.17233480443,5277694.972699336],[516352.1932044063,5277696.926131813]]]},"properties":{"ID_SOURCE":"w511310939","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2449}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.44947718084,5277647.337520978],[516290.91621797753,5277645.552193635],[516295.06209974474,5277639.98457485],[516297.45261590055,5277641.79173235],[516293.44947718084,5277647.337520978]]]},"properties":{"ID_SOURCE":"w511321011","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2450}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516366.39091137395,5277505.616508609],[516370.7968560057,5277506.440216932],[516370.22496823524,5277509.517182924],[516367.09146993235,5277526.223807767],[516362.6780300549,5277525.400081083],[516365.8190883402,5277508.671247225],[516366.39091137395,5277505.616508609]]]},"properties":{"ID_SOURCE":"w511510942","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2451}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516367.09146993235,5277526.223807767],[516370.22496823524,5277509.517182924],[516376.13955604786,5277510.634101137],[516372.9910531338,5277527.329566731],[516367.09146993235,5277526.223807767]]]},"properties":{"ID_SOURCE":"w511510943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2452}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516356.793400002,5277524.316602577],[516362.6780300549,5277525.400081083],[516365.8190883402,5277508.671247225],[516359.8893834103,5277507.587638997],[516356.793400002,5277524.316602577]]]},"properties":{"ID_SOURCE":"w511510944","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2453}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516108.097040633,5276759.548412974],[516115.1271261343,5276756.833826623],[516117.4315433435,5276762.763950243],[516110.39395318244,5276765.478513041],[516108.097040633,5276759.548412974]]]},"properties":{"ID_SOURCE":"w512044889","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2454}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516122.49334104086,5276771.068983972],[516115.62599546823,5276752.978659571],[516124.0769432823,5276749.7901155595],[516130.93675578386,5276767.880429079],[516122.49334104086,5276771.068983972]]]},"properties":{"ID_SOURCE":"w512044890","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2455}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516447.35248264484,5277195.186592137],[516442.5598645678,5277192.916917967],[516444.8943147721,5277188.033359183],[516449.6793944251,5277190.31412793],[516447.35248264484,5277195.186592137]]]},"properties":{"ID_SOURCE":"w512044891","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2456}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.3207391258,5277193.637946984],[516424.7871167557,5277196.845561056],[516415.63695009885,5277192.485304164],[516417.17053720914,5277189.288801605],[516426.3207391258,5277193.637946984]]]},"properties":{"ID_SOURCE":"w512044892","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2457}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516438.7591583956,5277185.126399674],[516436.43225373916,5277189.998868196],[516433.1308340789,5277196.891331703],[516426.3207391258,5277193.637946984],[516417.17053720914,5277189.288801605],[516415.63695009885,5277192.485304164],[516409.90683159156,5277189.757340717],[516429.33802621067,5277149.03494262],[516441.0832688713,5277154.647313241],[516438.7591583956,5277185.126399674]]]},"properties":{"ID_SOURCE":"w512044893","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2458}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.5598645678,5277192.916917967],[516438.352282289,5277190.915634955],[516436.43225373916,5277189.998868196],[516438.7591583956,5277185.126399674],[516444.8943147721,5277188.033359183],[516442.5598645678,5277192.916917967]]]},"properties":{"ID_SOURCE":"w512044894","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2459}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516435.05837101274,5277197.808118592],[516433.1308340789,5277196.891331703],[516436.43225373916,5277189.998868196],[516438.352282289,5277190.915634955],[516435.05837101274,5277197.808118592]]]},"properties":{"ID_SOURCE":"w512044895","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2460}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516069.0396945243,5277473.035560016],[516062.05104658596,5277474.661144677],[516062.28850843094,5277475.695400138],[516056.00624563027,5277477.156231176],[516054.48074682814,5277477.518785768],[516054.24322238436,5277476.506758419],[516047.33722113835,5277478.121474623],[516045.2959812991,5277469.42471478],[516052.2095327072,5277467.798902963],[516051.9645589369,5277466.764627223],[516059.79489420407,5277464.930186466],[516060.0399279793,5277465.942234741],[516066.9910367551,5277464.316544045],[516069.0396945243,5277473.035560016]]]},"properties":{"ID_SOURCE":"w512044896","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2461}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515946.5765771688,5277250.919393355],[515947.6404822066,5277251.844767385],[515943.94903867505,5277256.035741095],[515940.1355078872,5277252.702220362],[515938.57608406857,5277254.4650736945],[515934.4251048149,5277259.177152413],[515930.44677472976,5277255.687591343],[515932.4808208467,5277253.381449699],[515932.12121899676,5277253.058160367],[515943.54964595777,5277240.074976377],[515950.64471759397,5277246.296008161],[515946.5765771688,5277250.919393355]]]},"properties":{"ID_SOURCE":"w512044897","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2462}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515915.3440152885,5277283.120040707],[515910.5152634018,5277280.28389322],[515911.91939069325,5277277.631489787],[515916.94443825533,5277280.090299808],[515915.3440152885,5277283.120040707]]]},"properties":{"ID_SOURCE":"w512044898","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2463}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515952.49627888796,5277214.659588771],[515955.2156459335,5277214.411418444],[515955.5647721731,5277218.557888429],[515952.3722083781,5277218.826990067],[515952.46703860327,5277219.84973573],[515946.84061791963,5277220.3233382],[515946.6951334948,5277218.600273377],[515943.2021043634,5277218.890785088],[515943.47130563273,5277222.059005544],[515936.72560642526,5277222.629578808],[515936.24569553626,5277216.8712254455],[515941.2636766899,5277216.440402779],[515940.3468536196,5277205.679563585],[515945.575159112,5277205.238206422],[515956.7905100884,5277204.279787623],[515957.0669711766,5277207.536940377],[515954.6406180179,5277207.741456841],[515954.91738467215,5277210.887470574],[515952.19053631113,5277211.124506574],[515952.49627888796,5277214.659588771]]]},"properties":{"ID_SOURCE":"w512044899","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2464}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516012.0009250653,5277347.946155161],[516006.5085494424,5277348.87574127],[516005.4739898637,5277342.749094539],[516004.82031752024,5277342.858437422],[516004.2943756768,5277342.945903526],[516004.13907986146,5277342.0674722865],[516001.3966599593,5277342.526721778],[515999.8372235946,5277333.364517349],[516005.06664133683,5277332.47865796],[516005.43624365225,5277334.624671956],[516009.6212550616,5277333.924883336],[516012.0009250653,5277347.946155161]]]},"properties":{"ID_SOURCE":"w512044900","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2465}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515868.37853239337,5277395.120774774],[515866.2394841759,5277394.648158081],[515866.7488562241,5277392.37118054],[515868.887905237,5277392.843797418],[515868.62178731844,5277394.043381819],[515868.37853239337,5277395.120774774]]]},"properties":{"ID_SOURCE":"w512044901","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2466}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515868.37853239337,5277395.120774774],[515866.9948304977,5277401.318603922],[515856.1570299767,5277398.9106866205],[515859.00796210876,5277386.17071789],[515861.4472286162,5277386.710833655],[515862.46606152924,5277382.123536163],[515867.19448951236,5277383.1700205775],[515866.8447630107,5277384.736138478],[515869.7718705196,5277385.388727015],[515868.8823970767,5277389.353993044],[515867.4938828109,5277389.0501312725],[515866.7488562241,5277392.37118054],[515866.2394841759,5277394.648158081],[515868.37853239337,5277395.120774774]]]},"properties":{"ID_SOURCE":"w512044902","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2467}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515869.7718705196,5277385.388727015],[515866.8447630107,5277384.736138478],[515867.19448951236,5277383.1700205775],[515870.12159777194,5277383.822609285],[515869.7718705196,5277385.388727015]]]},"properties":{"ID_SOURCE":"w512044903","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2468}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515861.4472286162,5277386.710833655],[515859.00796210876,5277386.17071789],[515860.026793188,5277381.5834199805],[515862.46606152924,5277382.123536163],[515861.4472286162,5277386.710833655]]]},"properties":{"ID_SOURCE":"w512044904","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2469}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515920.00316201797,5277391.927512752],[515921.1600209149,5277391.808422368],[515922.48212806124,5277391.678670148],[515922.5842576223,5277392.779233413],[515926.5355588827,5277392.389937541],[515927.1202676066,5277398.270832181],[515911.7808466375,5277399.7737331325],[515911.38627725496,5277395.760508249],[515915.9235298425,5277395.306122683],[515915.65304632514,5277392.604686297],[515911.5439773602,5277393.01578634],[515911.00318800507,5277387.546230648],[515919.48421128513,5277386.713637481],[515920.00316201797,5277391.927512752]]]},"properties":{"ID_SOURCE":"w512044905","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2470}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515993.2664731603,5277434.328085933],[515992.8307800081,5277434.371345029],[515993.14500245545,5277437.539692713],[515993.54696123156,5277441.57517196],[515993.9826233202,5277441.543026809],[515994.2236393625,5277444.022106668],[515978.7265531757,5277445.546625667],[515976.6808012521,5277424.768981631],[515992.17794214055,5277423.244457114],[515993.2664731603,5277434.328085933]]]},"properties":{"ID_SOURCE":"w512044908","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2471}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515936.57651439,5277447.209334497],[515937.0046963138,5277447.166050634],[515937.2532766035,5277449.634034758],[515921.75622102217,5277451.158705345],[515920.56521557126,5277439.052323868],[515920.39710864733,5277437.362539195],[515919.7101464626,5277430.425537187],[515935.20725662383,5277428.900861081],[515936.2958949013,5277439.984479105],[515935.8677428754,5277440.016649122],[515936.57651439,5277447.209334497]]]},"properties":{"ID_SOURCE":"w512044911","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2472}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515920.56521557126,5277439.052323868],[515918.980183691,5277439.214699515],[515918.8121067006,5277437.513800996],[515920.39710864733,5277437.362539195],[515920.56521557126,5277439.052323868]]]},"properties":{"ID_SOURCE":"w512044913","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2473}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515965.039209424,5277444.386564843],[515965.4673613009,5277444.354396968],[515965.7158991834,5277446.833496224],[515950.2038086657,5277448.358049927],[515948.15786474105,5277427.61375774],[515963.6700099221,5277426.089198509],[515964.75859461183,5277437.172821928],[515964.33795205137,5277437.205010445],[515964.5862164695,5277439.784134694],[515965.039209424,5277444.386564843]]]},"properties":{"ID_SOURCE":"w512044914","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2474}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515301.6149735216,5277730.468276622],[515309.02240219136,5277726.453376684],[515307.0792920615,5277722.891793777],[515308.0644355672,5277722.36091315],[515307.27225973475,5277720.90289885],[515302.25625422556,5277723.62375087],[515298.8796537226,5277725.45979691],[515301.6149735216,5277730.468276622]]]},"properties":{"ID_SOURCE":"w512883031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2475}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515308.2719368924,5277694.854360282],[515311.3707061995,5277693.0175889535],[515312.94039489893,5277695.8002123125],[515313.9867557431,5277697.6923411405],[515310.9782774751,5277699.462664669],[515308.2719368924,5277694.854360282]]]},"properties":{"ID_SOURCE":"w512883032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2476}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515315.5236459315,5277707.232178292],[515318.9534136178,5277705.174002204],[515321.0318395538,5277708.680375194],[515317.53466325544,5277710.671688829],[515315.5236459315,5277707.232178292]]]},"properties":{"ID_SOURCE":"w512883033","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2477}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515319.47093431733,5277713.9776356425],[515322.90806267667,5277711.975051136],[515321.0318395538,5277708.680375194],[515317.53466325544,5277710.671688829],[515319.47093431733,5277713.9776356425]]]},"properties":{"ID_SOURCE":"w512883034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2478}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515337.92158823524,5277745.434324529],[515335.5785691897,5277742.605200957],[515339.94356556894,5277739.004657681],[515342.29406412167,5277741.844916694],[515337.92158823524,5277745.434324529]]]},"properties":{"ID_SOURCE":"w512883035","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2479}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515334.39700999716,5277743.580118764],[515332.57026705856,5277741.463651074],[515333.25164984714,5277739.364903496],[515330.5641570314,5277736.168113364],[515338.74500136805,5277729.332337031],[515338.5428900844,5277729.087296952],[515341.4478984663,5277726.683218093],[515345.8864516351,5277732.218564592],[515343.1848731769,5277734.367555864],[515344.1129406984,5277735.548083809],[515341.78739353747,5277737.486901243],[515339.94356556894,5277739.004657681],[515335.5785691897,5277742.605200957],[515334.39700999716,5277743.580118764]]]},"properties":{"ID_SOURCE":"w512883036","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2480}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515356.6071998447,5277750.3737364905],[515353.4636129403,5277746.43109586],[515355.4201717048,5277744.880299085],[515353.54899565584,5277742.530313982],[515360.30670047563,5277737.157860018],[515359.07171647233,5277735.60975838],[515364.0835434755,5277731.6330643995],[515370.34082373406,5277739.462709854],[515367.26297505776,5277741.91077404],[515356.6071998447,5277750.3737364905]]]},"properties":{"ID_SOURCE":"w512883037","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2481}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515774.97949981806,5277652.055582676],[515767.284048397,5277648.5782870315],[515758.60608483513,5277669.604673392],[515759.3800489547,5277669.428944749],[515760.3439535424,5277673.988287059],[515760.56562907744,5277675.322565114],[515761.61213653267,5277679.882131309],[515763.3479208627,5277679.486727655],[515774.97949981806,5277652.055582676]]]},"properties":{"ID_SOURCE":"w512921407","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2482}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515988.0529594924,5277284.5084380675],[515988.1680515541,5277283.619635859],[515998.64119788725,5277284.870941911],[515998.5636544339,5277285.759847101],[515988.0529594924,5277284.5084380675]]]},"properties":{"ID_SOURCE":"w513947049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2483}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515894.8441496767,5277323.396665584],[515895.8188399916,5277323.988367387],[515896.8309890087,5277324.613513559],[515897.379218036,5277324.615010429],[515897.9154010603,5277323.52730462],[515895.5985771679,5277322.142845707],[515894.8441496767,5277323.396665584]]]},"properties":{"ID_SOURCE":"w513950435","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2484}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515880.85231266246,5277334.639172456],[515877.635686297,5277332.741023457],[515876.1871037216,5277335.182148442],[515879.4112391707,5277337.080317133],[515880.85231266246,5277334.639172456]]]},"properties":{"ID_SOURCE":"w513950436","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2485}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515380.9321037927,5277303.45603995],[515380.9422561693,5277302.455809222],[515386.6647691887,5277302.5153851],[515386.6546452,5277303.504501927],[515380.9321037927,5277303.45603995]]]},"properties":{"ID_SOURCE":"w520983188","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2486}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515370.77783009777,5277312.2426046245],[515381.1264648516,5277312.325503717],[515381.11710516707,5277313.025659285],[515388.5669078163,5277313.089800396],[515388.55625477247,5277314.278967351],[515395.2025153306,5277314.3298792625],[515395.25713916746,5277307.872805373],[515388.6334306327,5277307.810839064],[515388.61350510776,5277309.666819878],[515387.7123045676,5277309.664438051],[515386.59334326774,5277309.650366916],[515386.6546452,5277303.504501927],[515380.9321037927,5277303.45603995],[515370.8463037137,5277303.373835145],[515370.77783009777,5277312.2426046245]]]},"properties":{"ID_SOURCE":"w520983189","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2487}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515577.8127584226,5277077.287769549],[515569.0140312181,5277078.820192613],[515566.4322735265,5277064.098393227],[515567.18363254244,5277063.978148256],[515566.59177972574,5277060.62014696],[515574.57152151223,5277059.230011121],[515575.1263236347,5277062.398976642],[515575.82511078834,5277062.278592163],[515577.3564080055,5277071.007155319],[515576.73275472556,5277071.116626633],[515577.8127584226,5277077.287769549]]]},"properties":{"ID_SOURCE":"w520994557","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2488}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515475.8938899397,5276911.806857918],[515491.95903640206,5276920.262849165],[515494.4449569818,5276914.645796043],[515478.70015138056,5276907.168678651],[515478.39819424367,5276907.745802275],[515477.5105641185,5276908.26579936],[515475.8938899397,5276911.806857918]]]},"properties":{"ID_SOURCE":"w521011697","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2489}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515741.11388215265,5277151.04582165],[515745.4299152796,5277146.3673945675],[515741.7664937252,5277143.001069259],[515747.5061140755,5277136.7927643275],[515744.38207208546,5277133.928025023],[515745.27089413255,5277132.963512781],[515742.04945627437,5277130.009599607],[515741.14561384195,5277130.97407173],[515737.4222483402,5277127.552017378],[515734.33397995005,5277130.900091129],[515733.01542164024,5277129.696219117],[515730.16820497846,5277132.778211055],[515736.22148569993,5277138.340439957],[515736.8316162878,5277137.675250524],[515738.77195859555,5277139.458730697],[515740.99699713755,5277141.498602554],[515736.2817511215,5277146.609398916],[515741.11388215265,5277151.04582165]]]},"properties":{"ID_SOURCE":"w521011700","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2490}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.5081499401,5276735.87860551],[515676.2740840083,5276736.731058689],[515681.01602431067,5276744.12349887],[515686.35044575983,5276740.681422318],[515683.0672688473,5276735.460129528],[515678.9966540227,5276738.160975935],[515677.5081499401,5276735.87860551]]]},"properties":{"ID_SOURCE":"w521018027","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2491}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515654.09705454734,5276760.9998721555],[515653.45603267744,5276759.175458638],[515657.15480076004,5276757.885068282],[515657.7883109031,5276759.709462009],[515654.09705454734,5276760.9998721555]]]},"properties":{"ID_SOURCE":"w521018028","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2492}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515630.6380239616,5276823.64185457],[515633.67927986337,5276818.259744834],[515638.90637523215,5276821.185639637],[515635.8651159924,5276826.567746671],[515630.6380239616,5276823.64185457]]]},"properties":{"ID_SOURCE":"w521018029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2493}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515628.07220987324,5276828.180580388],[515622.1552108155,5276824.852741615],[515624.7210217245,5276820.31401322],[515630.6380239616,5276823.64185457],[515628.07220987324,5276828.180580388]]]},"properties":{"ID_SOURCE":"w521018030","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2494}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515637.7945506449,5276832.463330103],[515642.8960621762,5276823.419149056],[515638.90637523215,5276821.185639637],[515635.8651159924,5276826.567746671],[515630.6380239616,5276823.64185457],[515628.07220987324,5276828.180580388],[515628.4021107051,5276828.392631135],[515628.91527920257,5276827.482663132],[515637.7945506449,5276832.463330103]]]},"properties":{"ID_SOURCE":"w521018031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2495}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.77791097027,5277009.835162292],[516639.45655539853,5277011.129180572],[516641.67280591326,5277008.268107373],[516639.99416114687,5277006.974088465],[516637.77791097027,5277009.835162292]]]},"properties":{"ID_SOURCE":"w526288354","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2496}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517080.8456276374,5276596.477613228],[517084.5441794957,5276597.966621223],[517085.81071067223,5276596.36992424],[517082.7907174182,5276594.004901684],[517080.8456276374,5276596.477613228]]]},"properties":{"ID_SOURCE":"w526288355","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2497}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517087.85522874363,5276583.050264745],[517088.03506752686,5276583.195274129],[517091.0850754668,5276585.571501407],[517093.0457496546,5276582.909901419],[517091.32221111923,5276581.548937771],[517089.91338157025,5276580.444519623],[517087.85522874363,5276583.050264745]]]},"properties":{"ID_SOURCE":"w526288356","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2498}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.9905610838,5277021.83444589],[516592.7402675978,5277032.657017763],[516599.48713737744,5277023.873975643],[516618.92740616074,5277038.522082729],[516637.31464883074,5277014.257202541],[516634.67667504493,5277012.2602634905],[516617.9420650202,5276999.564772055],[516611.69185961806,5276994.823496893],[516593.3116354114,5277019.27741466],[516584.6548382924,5277013.040037663],[516577.9905610838,5277021.83444589]]]},"properties":{"ID_SOURCE":"w571284277","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2499}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.42904832575,5276970.314135709],[516611.69185961806,5276994.823496893],[516617.9420650202,5276999.564772055],[516625.15652906685,5276990.127369442],[516618.2168825491,5276984.850647985],[516625.7253828442,5276975.025096101],[516613.1050395915,5276965.442168458],[516611.22038813686,5276967.90409506],[516608.96462485706,5276966.186107768],[516606.23563571356,5276969.757025579],[516608.6338115467,5276971.57544383],[516605.5278769049,5276975.645415893],[516586.43994342256,5276961.142841574],[516579.42904832575,5276970.314135709]]]},"properties":{"ID_SOURCE":"w571284280","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"education","ZINDEX":0,"ID_BUILD":2500}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.0238292529,5277021.001673058],[516794.4059905115,5277031.534735008],[516803.401202164,5277019.313078435],[516789.02653708885,5277008.780016158],[516780.0238292529,5277021.001673058]]]},"properties":{"ID_SOURCE":"w573113425","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"religious","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":2501}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516789.02653708885,5277008.780016158],[516803.401202164,5277019.313078435],[516807.14813780447,5277014.378170627],[516792.473051075,5277003.844232829],[516789.02653708885,5277008.780016158]]]},"properties":{"ID_SOURCE":"w573113426","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2502}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.8873568716,5276940.4689903855],[516589.337105189,5276945.991628469],[516593.9662424732,5276939.792104659],[516586.51652219146,5276934.258346829],[516581.8873568716,5276940.4689903855]]]},"properties":{"ID_SOURCE":"w690012549","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2503}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.5400215393,5276210.025111197],[516783.6316145111,5276206.913464361],[516766.87457190565,5276206.531782006],[516765.1961443997,5276215.529263673],[516761.33845409175,5276224.853893025],[516761.17639210145,5276228.965594482],[516766.2838258176,5276229.091434495],[516765.8695448806,5276242.538142413],[516778.71305260464,5276242.908546975],[516778.7146534504,5276242.352853207],[516783.3713920251,5276242.477409922],[516783.4596365262,5276237.920937494],[516785.33716396603,5276238.037487797],[516785.42060559377,5276235.1480967095],[516785.3326798286,5276239.5934303375],[516788.0274897234,5276242.824247868],[516790.5059262591,5276242.942531937],[516791.81274695083,5276243.001869273],[516793.284818073,5276243.061683366],[516794.11107035045,5276243.064065767],[516794.18137722055,5276244.731363657],[516796.58469901275,5276244.84943373],[516816.78871222876,5276245.4634331195],[516816.87120668974,5276242.907458672],[516820.626898998,5276242.918303923],[516824.1569287303,5276243.039639419],[516826.0121443718,5276243.078340619],[516830.6163982117,5276243.169441587],[516830.6493700758,5276239.557497237],[516830.8603297159,5276218.54159361],[516830.87159873074,5276217.241291957],[516830.93295020144,5276211.606687669],[516830.9429062476,5276208.161386503],[516820.5252917838,5276207.875670312],[516817.2730673067,5276207.788481165],[516817.2705000914,5276208.677591141],[516812.34335571085,5276208.541112956],[516799.1842938976,5276208.169724482],[516790.60685031035,5276207.933825562],[516790.60044244904,5276210.156600517],[516783.5400215393,5276210.025111197]],[[516783.61909498565,5276216.471439986],[516790.356196698,5276216.713137046],[516790.4210583809,5276220.269793559],[516783.66078602173,5276220.250308974],[516783.61909498565,5276216.471439986]]]},"properties":{"ID_SOURCE":"r1966426","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2504}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516241.09212343633,5277248.977196142],[516214.27492902457,5277251.125250302],[516215.95860408695,5277266.800650824],[516242.3232628981,5277265.318181126],[516245.87760147697,5277310.339719119],[516280.2064092977,5277307.545971567],[516279.11781810987,5277293.98387072],[516290.4604470321,5277293.126476782],[516289.58567341015,5277283.67714538],[516278.54342781013,5277284.53538092],[516276.88468024,5277262.691771448],[516276.7327166033,5277260.635260236],[516242.2546729516,5277262.984053942],[516241.09212343633,5277248.977196142]],[[516251.5597403211,5277292.573207023],[516263.87898203137,5277291.607347532],[516264.0226631545,5277293.941684874],[516261.84413440555,5277294.1578794755],[516262.42444873793,5277301.4947277745],[516252.3582330856,5277302.466878845],[516251.5597403211,5277292.573207023]],[[516255.0006883697,5277270.577130827],[516264.6911461792,5277269.71507422],[516265.78288078465,5277282.165782362],[516262.9281333299,5277282.491227296],[516262.7844514483,5277280.156890021],[516255.6486674197,5277280.581522374],[516255.0006883697,5277270.577130827]]]},"properties":{"ID_SOURCE":"r1957481","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":2505}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516241.09212343633,5277248.977196142],[516214.27492902457,5277251.125250302],[516215.95860408695,5277266.800650824],[516242.3232628981,5277265.318181126],[516245.87760147697,5277310.339719119],[516280.2064092977,5277307.545971567],[516279.11781810987,5277293.98387072],[516290.4604470321,5277293.126476782],[516289.58567341015,5277283.67714538],[516278.54342781013,5277284.53538092],[516276.88468024,5277262.691771448],[516276.7327166033,5277260.635260236],[516242.2546729516,5277262.984053942],[516241.09212343633,5277248.977196142]],[[516251.5597403211,5277292.573207023],[516263.87898203137,5277291.607347532],[516264.0226631545,5277293.941684874],[516261.84413440555,5277294.1578794755],[516262.42444873793,5277301.4947277745],[516252.3582330856,5277302.466878845],[516251.5597403211,5277292.573207023]],[[516255.0006883697,5277270.577130827],[516264.6911461792,5277269.71507422],[516265.78288078465,5277282.165782362],[516262.9281333299,5277282.491227296],[516262.7844514483,5277280.156890021],[516255.6486674197,5277280.581522374],[516255.0006883697,5277270.577130827]]]},"properties":{"ID_SOURCE":"r4269919","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":2506}}]} \ No newline at end of file diff --git a/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataFormatting.groovy b/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataFormatting.groovy index 00defea293..1c8eae62ad 100644 --- a/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataFormatting.groovy +++ b/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataFormatting.groovy @@ -203,7 +203,7 @@ Map formatBuildingLayer(JdbcDataSource datasource, String building, String zone datasource.execute("""DROP TABLE IF EXISTS $triangles; CREATE TABLE $triangles as SELECT * FROM st_explode('(SELECT CASE WHEN ST_AREA(THE_GEOM) > 100000 - THEN ST_Tessellate(st_buffer(the_geom, -0.001)) ELSE THE_GEOM END AS THE_GEOM, + THEN ST_Tessellate(st_buffer(the_geom, -0.001,2)) ELSE THE_GEOM END AS THE_GEOM, type FROM $urban_areas)')""".toString()) datasource.createSpatialIndex(triangles) @@ -691,11 +691,13 @@ String formatImperviousLayer(JdbcDataSource datasource, String impervious, Strin CREATE TABLE $polygonizedExploded as select * from st_explode('$polygonizedTable'); """.toString()) + datasource.createSpatialIndex(impervious) + datasource.createSpatialIndex(polygonizedExploded) def filtered_area = postfix("filtered_area") datasource.execute("""DROP TABLE IF EXISTS $filtered_area; CREATE TABLE $filtered_area AS - SELECT a.EXPLOD_ID , a.the_geom, st_area(b.the_geom) as area_imp, b.* EXCEPT(the_geom) from $polygonizedExploded as a , $impervious as b where - a.the_geom && b.the_geom AND st_intersects(st_pointonsurface(a.the_geom), b.the_geom) ; + SELECT a.EXPLOD_ID , a.the_geom, st_area(b.the_geom) as area_imp, b.* EXCEPT(the_geom) from $polygonizedExploded as a , + $impervious as b where a.the_geom && b.the_geom AND st_intersects(st_pointonsurface(a.the_geom), b.the_geom) ; CREATE INDEX ON $filtered_area(EXPLOD_ID);""".toString()) def impervious_prepared = postfix("impervious_prepared") @@ -1149,7 +1151,7 @@ String formatSeaLandMask(JdbcDataSource datasource, String coastline, String zon CREATE TABLE $mergingDataTable AS SELECT THE_GEOM FROM $coastLinesIntersects UNION ALL - SELECT st_tomultiline(st_buffer(the_geom, -0.01)) + SELECT st_tomultiline(st_buffer(the_geom, -0.01,2)) from $zone UNION ALL SELECT st_tomultiline(the_geom) @@ -1233,7 +1235,7 @@ String formatSeaLandMask(JdbcDataSource datasource, String coastline, String zon CREATE TABLE $mergingDataTable AS SELECT THE_GEOM FROM $coastLinesIntersects UNION ALL - SELECT st_tomultiline(st_buffer(the_geom, -0.01)) + SELECT st_tomultiline(st_buffer(the_geom, -0.01,2)) from $zone ; CREATE TABLE $sea_land_mask (THE_GEOM GEOMETRY,ID serial, TYPE VARCHAR, ZINDEX INTEGER) AS SELECT THE_GEOM, EXPLOD_ID, 'land', 0 AS ZINDEX FROM diff --git a/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataLoading.groovy b/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataLoading.groovy index 044b842907..82dc1b3a99 100644 --- a/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataLoading.groovy +++ b/osm/src/main/groovy/org/orbisgis/geoclimate/osm/InputDataLoading.groovy @@ -99,7 +99,7 @@ Map extractAndCreateGISLayers(JdbcDataSource datasource, Object zoneToExtract, f def keysValues = ["building", "railway", "amenity", "leisure", "highway", "natural", "landuse", "landcover", - "vegetation", "waterway", "area", "aeroway", "area:aeroway", "tourism", "sport"] + "vegetation", "waterway", "area", "aeroway", "area:aeroway", "tourism", "sport", "power"] query = "[maxsize:1073741824]" + OSMTools.Utilities.buildOSMQueryWithAllData(envelope, keysValues, OSMElement.NODE, OSMElement.WAY, OSMElement.RELATION) } diff --git a/osm/src/main/groovy/org/orbisgis/geoclimate/osm/WorkflowOSM.groovy b/osm/src/main/groovy/org/orbisgis/geoclimate/osm/WorkflowOSM.groovy index fc2b17cfd8..3fad0e0b89 100644 --- a/osm/src/main/groovy/org/orbisgis/geoclimate/osm/WorkflowOSM.groovy +++ b/osm/src/main/groovy/org/orbisgis/geoclimate/osm/WorkflowOSM.groovy @@ -447,7 +447,7 @@ Map osm_processing(JdbcDataSource h2gis_datasource, def processing_parameters, d def keysValues = ["building", "railway", "amenity", "leisure", "highway", "natural", "landuse", "landcover", - "vegetation", "waterway", "area", "aeroway", "area:aeroway", "tourism", "sport"] + "vegetation", "waterway", "area", "aeroway", "area:aeroway", "tourism", "sport", "power"] query = "[timeout:$overpass_timeout][maxsize:$overpass_maxsize]$osm_date" + OSMTools.Utilities.buildOSMQueryWithAllData(zones.osm_envelope_extented, keysValues, OSMElement.NODE, OSMElement.WAY, OSMElement.RELATION) } diff --git a/osm/src/main/resources/org/orbisgis/geoclimate/osm/buildingParams.json b/osm/src/main/resources/org/orbisgis/geoclimate/osm/buildingParams.json index e01bcb995a..9fb3fab25a 100644 --- a/osm/src/main/resources/org/orbisgis/geoclimate/osm/buildingParams.json +++ b/osm/src/main/resources/org/orbisgis/geoclimate/osm/buildingParams.json @@ -38,7 +38,10 @@ "office", "tourism", "roof:shape", - "wall" + "wall", + "hut", + "shed", + "cabin" ], "level": { "building": 1, @@ -182,7 +185,10 @@ "ice_cream": 0, "pub": 0, "attraction": 0, - "refinery": 0 + "refinery": 0, + "hut": 0, + "cabin": 0, + "shed": 0 }, "type": { "terminal:transport": { @@ -1333,6 +1339,21 @@ "building": [ "yes" ] + }, + "hut:building": { + "building": [ + "hut" + ] + }, + "cabin:residential": { + "building": [ + "cabin" + ] + }, + "shed:building": { + "building": [ + "shed" + ] } } } diff --git a/osm/src/main/resources/org/orbisgis/geoclimate/osm/imperviousParams.json b/osm/src/main/resources/org/orbisgis/geoclimate/osm/imperviousParams.json index ea82eef0e9..d218220388 100644 --- a/osm/src/main/resources/org/orbisgis/geoclimate/osm/imperviousParams.json +++ b/osm/src/main/resources/org/orbisgis/geoclimate/osm/imperviousParams.json @@ -29,6 +29,8 @@ ], "aeroway": [ "apron" + ],"power": [ + "plant", "substation" ] }, "columns": [ @@ -41,7 +43,8 @@ "landuse", "area:aeroway", "aeroway", - "building" + "building", + "power" ], "type": { "parking": { @@ -69,6 +72,9 @@ ], "railway": [ "platform" + ], + "power": [ + "plant", "substation" ] }, "commercial": { diff --git a/osm/src/main/resources/org/orbisgis/geoclimate/osm/urbanAreasParams.json b/osm/src/main/resources/org/orbisgis/geoclimate/osm/urbanAreasParams.json index bbe53ac353..eae3003534 100644 --- a/osm/src/main/resources/org/orbisgis/geoclimate/osm/urbanAreasParams.json +++ b/osm/src/main/resources/org/orbisgis/geoclimate/osm/urbanAreasParams.json @@ -9,14 +9,16 @@ "construction":[], "amenity": ["school", "university", - "research_institute", "community_centre"] + "research_institute", "community_centre"], + "power": ["plant", "substation"] }, "columns": [ "landuse", "industrial", "construction", "amenity", - "building" + "building", + "power" ], "type": { "education": { @@ -62,6 +64,9 @@ "industrial": { "landuse": [ "industrial" + ], + "power": [ + "plant", "substation" ] }, "port": { diff --git a/osm/src/test/groovy/org/orbisgis/geoclimate/osm/InputDataFormattingTest.groovy b/osm/src/test/groovy/org/orbisgis/geoclimate/osm/InputDataFormattingTest.groovy index ec03c9f90e..ece5567722 100644 --- a/osm/src/test/groovy/org/orbisgis/geoclimate/osm/InputDataFormattingTest.groovy +++ b/osm/src/test/groovy/org/orbisgis/geoclimate/osm/InputDataFormattingTest.groovy @@ -290,6 +290,7 @@ class InputDataFormattingTest { def h2GIS = H2GIS.open("${file.absolutePath + File.separator}osm_gislayers;AUTO_SERVER=TRUE".toString()) def zoneToExtract = "Marseille" + zoneToExtract =[44.795480,12.323227,45.004622,12.627411] Map extractData = OSM.InputDataLoading.extractAndCreateGISLayers(h2GIS, zoneToExtract) String formatedPlaceName = zoneToExtract.join("-").trim().split("\\s*(,|\\s)\\s*").join("_"); @@ -301,42 +302,41 @@ class InputDataFormattingTest { if (extractData.zone != null) { //Zone def epsg = h2GIS.getSpatialTable(extractData.zone).srid - h2GIS.getTable(extractData.zone).save("${file.absolutePath + File.separator}osm_zone_${formatedPlaceName}.fgb", true) + h2GIS.getTable(extractData.zone).save("${file.absolutePath + File.separator}zone.fgb", true) //Zone envelope - h2GIS.getTable(extractData.zone_envelope).save("${file.absolutePath + File.separator}osm_zone_envelope_${formatedPlaceName}.fgb", true) + h2GIS.getTable(extractData.zone_envelope).save("${file.absolutePath + File.separator}zone_envelope.fgb", true) //Urban Areas def inputUrbanAreas = OSM.InputDataFormatting.formatUrbanAreas(h2GIS, extractData.urban_areas,extractData.zone) - h2GIS.save(inputUrbanAreas,"${file.absolutePath + File.separator}osm_urban_areas_${formatedPlaceName}.fgb", true) + h2GIS.save(inputUrbanAreas,"${file.absolutePath + File.separator}urban_areas.fgb", true) println("Urban areas formatted") //Buildings - h2GIS.save(extractData.building,"${file.absolutePath + File.separator}building_${formatedPlaceName}.fgb", true) def inputBuildings = OSM.InputDataFormatting.formatBuildingLayer(h2GIS, extractData.building,extractData.zone,null) - h2GIS.save(inputBuildings.building,"${file.absolutePath + File.separator}osm_building_${formatedPlaceName}.fgb", true) + h2GIS.save(inputBuildings.building,"${file.absolutePath + File.separator}building.fgb", true) println("Building formatted") //Roads def inputRoadTableName = OSM.InputDataFormatting.formatRoadLayer( h2GIS,extractData.road, extractData.zone_envelope) - h2GIS.save(inputRoadTableName,"${file.absolutePath + File.separator}osm_road_${formatedPlaceName}.fgb", true) + h2GIS.save(inputRoadTableName,"${file.absolutePath + File.separator}road.fgb", true) println("Road formatted") //Rails def inputRailTableName = OSM.InputDataFormatting.formatRailsLayer( h2GIS,extractData.rail, extractData.zone_envelope) - h2GIS.save(inputRailTableName,"${file.absolutePath + File.separator}osm_rail_${formatedPlaceName}.fgb", true) + h2GIS.save(inputRailTableName,"${file.absolutePath + File.separator}rail.fgb", true) println("Rail formatted") //Vegetation def inputVegetationTableName = OSM.InputDataFormatting.formatVegetationLayer( h2GIS,extractData.vegetation,extractData.zone_envelope) - h2GIS.save(inputVegetationTableName,"${file.absolutePath + File.separator}osm_vegetation_${formatedPlaceName}.fgb", true) + h2GIS.save(inputVegetationTableName,"${file.absolutePath + File.separator}vegetation.fgb", true) println("Vegetation formatted") @@ -346,23 +346,23 @@ class InputDataFormattingTest { //Impervious String imperviousTable = OSM.InputDataFormatting.formatImperviousLayer(h2GIS, extractData.impervious, extractData.zone_envelope) - h2GIS.save(imperviousTable,"${file.absolutePath + File.separator}osm_impervious_${formatedPlaceName}.fgb", true) + h2GIS.save(imperviousTable,"${file.absolutePath + File.separator}impervious.fgb", true) println("Impervious formatted") //Save coastlines to debug - h2GIS.save(extractData.coastline,"${file.absolutePath + File.separator}osm_coastlines_${formatedPlaceName}.fgb", true) + h2GIS.save(extractData.coastline,"${file.absolutePath + File.separator}coastlines.fgb", true) //Sea/Land mask def inputSeaLandTableName = OSM.InputDataFormatting.formatSeaLandMask(h2GIS, extractData.coastline, extractData.zone_envelope, inputWaterTableName) - h2GIS.save(inputSeaLandTableName,"${file.absolutePath + File.separator}osm_sea_land_${formatedPlaceName}.fgb", true) + h2GIS.save(inputSeaLandTableName,"${file.absolutePath + File.separator}sea_land_mask.fgb", true) println("Sea land mask formatted") //Save it after sea/land mask because the water table can be modified - h2GIS.save(inputWaterTableName,"${file.absolutePath + File.separator}osm_water_${formatedPlaceName}.fgb", true) + h2GIS.save(inputWaterTableName,"${file.absolutePath + File.separator}water.fgb", true) } else { assertTrue(false) diff --git a/osm/src/test/groovy/org/orbisgis/geoclimate/osm/WorflowOSMTest.groovy b/osm/src/test/groovy/org/orbisgis/geoclimate/osm/WorflowOSMTest.groovy index 540ca88529..d7349716fc 100644 --- a/osm/src/test/groovy/org/orbisgis/geoclimate/osm/WorflowOSMTest.groovy +++ b/osm/src/test/groovy/org/orbisgis/geoclimate/osm/WorflowOSMTest.groovy @@ -653,7 +653,7 @@ class WorflowOSMTest extends WorkflowAbstractTest { def nominatim = org.orbisgis.geoclimate.osmtools.OSMTools.Utilities.getNominatimData(location) def grid_size = 100 location = nominatim.bbox - location=[63.4, 12.8, 63.6, 13] + location=[44.795480,12.323227,45.004622,12.627411] def osm_parmeters = [ "description" : "Example of configuration file to run the OSM workflow and store the result in a folder", "geoclimatedb": [ diff --git a/osm/src/test/resources/org/orbisgis/geoclimate/osm/BUILDING.geojson b/osm/src/test/resources/org/orbisgis/geoclimate/osm/BUILDING.geojson index 1af25e37ba..9443a993cb 100644 --- a/osm/src/test/resources/org/orbisgis/geoclimate/osm/BUILDING.geojson +++ b/osm/src/test/resources/org/orbisgis/geoclimate/osm/BUILDING.geojson @@ -1 +1 @@ -{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG::32630"}},"features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516024.9683961687,5277296.946439595],[516026.6212130152,5277296.728709319],[516027.43477216567,5277301.287680061],[516017.6668578483,5277303.039036347],[516015.6678906746,5277292.586397509],[516018.2228291119,5277292.037727036],[516017.55732188013,5277288.257143474],[516024.2446167036,5277287.053006623],[516024.9095079655,5277291.055868838],[516024.00769258325,5277291.275666419],[516024.43630030286,5277293.810833144],[516024.9683961687,5277296.946439595]]]},"properties":{"id_build":1,"id_source":"w144655681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.39526110794,5276984.073272857],[516175.5858093718,5276985.060168392],[516175.43714451586,5276984.504056685],[516172.85325393453,5276968.381616507],[516166.3905668454,5276969.697347399],[516168.0592199558,5276963.811573978],[516168.7357779166,5276963.59117306],[516178.3534809266,5276962.061930177],[516180.5825289577,5276970.737023728],[516182.7989065447,5276983.968812689],[516180.39526110794,5276984.073272857]]]},"properties":{"id_build":2,"id_source":"w144655684","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515209.3949390471,5277720.201804266],[515208.48741457204,5277722.644508627],[515208.7118276695,5277722.978514249],[515204.42533369974,5277725.30125299],[515200.0913158248,5277717.065591265],[515203.1745556077,5277715.406545614],[515202.7260183943,5277714.627395786],[515203.4778372958,5277714.295939809],[515202.5065385013,5277712.404026971],[515205.664876303,5277710.745178741],[515209.3949390471,5277720.201804266]]]},"properties":{"id_build":3,"id_source":"w144655688","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.61863200256,5277230.846752613],[516077.17519379227,5277238.297415736],[516071.186209466,5277239.525647431],[516066.5047203102,5277240.490757546],[516065.98514693347,5277238.266528246],[516063.20487739687,5277238.814556204],[516061.7963539455,5277232.142283726],[516061.35249224893,5277229.695984178],[516064.28327479,5277229.03723081],[516064.8022363823,5277231.483737787],[516065.0235531896,5277232.92916556],[516075.61863200256,5277230.846752613]]]},"properties":{"id_build":4,"id_source":"w144655699","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515664.1764190668,5277467.342128461],[515660.79868234624,5277466.710658901],[515658.1715665703,5277466.214577757],[515658.5530349462,5277463.992808077],[515652.6983740826,5277462.865666991],[515654.06896538474,5277455.867545848],[515656.7710050133,5277456.430510461],[515658.1413037692,5277449.543529309],[515664.8965577721,5277450.89537841],[515663.5262513229,5277457.782358003],[515665.92789662635,5277458.344518717],[515664.1764190668,5277467.342128461]]]},"properties":{"id_build":5,"id_source":"w144655703","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516174.67147770344,5277260.128561075],[516171.892442859,5277260.231981404],[516171.82320722926,5277258.120133012],[516171.6306254968,5277246.338780041],[516175.9113759242,5277246.350671206],[516176.0532409562,5277249.351839741],[516181.6864221542,5277249.14521308],[516181.8140757099,5277257.258772839],[516178.3665809767,5277257.38256029],[516176.0307008726,5277257.464982069],[516176.02792195696,5277258.465232502],[516174.67147770344,5277260.128561075]]]},"properties":{"id_build":6,"id_source":"w144655705","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516040.65156725456,5277328.886745737],[516039.5995574881,5277329.106127102],[516040.70952027093,5277335.1107338965],[516030.71574736794,5277337.08372546],[516028.7934454314,5277326.075593501],[516031.6484638824,5277325.6388948755],[516030.98388738954,5277321.524892705],[516039.8502694766,5277319.8822149495],[516040.43974002753,5277323.996011235],[516039.6884350637,5277324.105081239],[516039.9847317877,5277325.595170731],[516040.65156725456,5277328.886745737]]]},"properties":{"id_build":7,"id_source":"w144655706","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515524.88225294393,5276927.052255153],[515519.0665873642,5276939.262117149],[515512.54105361016,5276936.021678881],[515512.99464364036,5276934.911490507],[515507.6539243682,5276932.363280306],[515497.092521505,5276927.311650027],[515499.8873806299,5276921.317546466],[515509.2642643977,5276925.565821083],[515510.2465500088,5276923.34564395],[515517.1473280721,5276926.698219115],[515518.50662252406,5276923.923349648],[515524.88225294393,5276927.052255153]]]},"properties":{"id_build":8,"id_source":"w144655707","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515322.3447152651,5277212.656013423],[515322.1504985372,5277215.111689844],[515317.1948092547,5277214.720775893],[515318.00206020754,5277204.764781972],[515327.56053698104,5277205.523458422],[515327.7933017364,5277202.690008687],[515334.2431968518,5277203.20712023],[515333.9481526977,5277206.8739535045],[515334.23347936035,5277206.896932877],[515333.6977187619,5277213.563904331],[515328.47923289915,5277213.150060766],[515322.3447152651,5277212.656013423]]]},"properties":{"id_build":9,"id_source":"w144655715","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.56272137834,5277099.198020428],[516134.33772099065,5277099.086257203],[516132.39028327266,5277097.19148537],[516131.35731794796,5277090.520237855],[516130.9147057491,5277087.629377882],[516138.54670367483,5277087.094827183],[516153.15715403995,5277086.07951259],[516161.6379738539,5277085.491777069],[516161.620082184,5277091.937833692],[516156.5872643528,5277092.257286065],[516156.79746207176,5277097.703717756],[516143.8022123211,5277098.55679144],[516134.56272137834,5277099.198020428]]]},"properties":{"id_build":10,"id_source":"w144655717","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.9411545877,5277443.070284832],[515396.9355424334,5277442.800889928],[515395.8398709683,5277442.509029097],[515395.53712653887,5277443.397346562],[515390.2828882048,5277442.383197233],[515391.73208643135,5277433.9404070955],[515401.3610131931,5277436.310919493],[515402.24536850344,5277434.157147763],[515408.508999567,5277436.852189443],[515410.2546569316,5277432.7446388],[515416.1807549418,5277435.283199692],[515412.0017457121,5277445.119117977],[515406.02302829514,5277442.60264997],[515403.2572577119,5277449.085893718],[515396.6559596999,5277446.28993883],[515397.9411545877,5277443.070284832]]]},"properties":{"id_build":11,"id_source":"w144655719","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.90756106406,5276917.560347263],[516175.35675777984,5276916.108437033],[516181.68487295066,5276914.592290403],[516182.65794043755,5276918.484885273],[516180.3430661997,5276919.06749315],[516181.4053024797,5276923.304868788],[516170.4398523116,5276926.01955923],[516170.00899598014,5276924.306810843],[516167.4686559667,5276924.944367603],[516166.8892548076,5276922.631052459],[516165.86425186775,5276918.5049226275],[516169.90756106406,5276917.560347263]]]},"properties":{"id_build":12,"id_source":"w144655720","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.14078399725,5277730.802708117],[516300.717251482,5277733.71355483],[516296.78402016434,5277743.816272947],[516289.1324694177,5277740.90522116],[516290.41098988947,5277737.541260023],[516291.2506664128,5277735.354153911],[516285.9996422362,5277733.338943655],[516287.4373227089,5277729.453069685],[516292.91363380296,5277731.4689117195],[516293.14078399725,5277730.802708117]]]},"properties":{"id_build":13,"id_source":"w144655721","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516208.46586159954,5277044.722507645],[516202.932245338,5277046.86321822],[516198.7669996766,5277048.474269759],[516194.4814672268,5277050.129445627],[516192.8409366837,5277045.901572347],[516197.0510591222,5277044.35732526],[516196.52873521356,5277043.133335013],[516206.90477388614,5277038.938894899],[516210.612076131,5277029.168915967],[516216.2399004336,5277030.962822461],[516212.45903352,5277040.176894255],[516208.46586159954,5277044.722507645]]]},"properties":{"id_build":14,"id_source":"w144655722","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516270.69036727457,5277031.003577895],[516272.715370906,5277032.009494548],[516268.86365883943,5277039.667375483],[516265.5637593341,5277037.991060116],[516263.01396267413,5277036.65026089],[516262.4845127639,5277037.982459349],[516258.58440235443,5277036.08219215],[516259.2187793678,5277034.8280841615],[516263.19086509733,5277027.092735322],[516264.56324525503,5277027.818976979],[516270.69036727457,5277031.003577895]]]},"properties":{"id_build":15,"id_source":"w144655723","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516216.9079867685,5277233.327988102],[516203.3112938563,5277234.512671925],[516202.582551088,5277226.508578912],[516202.221580835,5277221.284004248],[516201.85813583666,5277216.948541083],[516201.4220629415,5277211.723757573],[516200.76810667804,5277203.831012989],[516214.4396625941,5277202.757671189],[516215.01849911816,5277210.650208191],[516215.96169723343,5277222.544792619],[516216.9079867685,5277233.327988102]]]},"properties":{"id_build":16,"id_source":"w144655724","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.2136704966,5277510.006896295],[515495.01571383787,5277510.122831873],[515496.555824034,5277495.789900287],[515514.72501216165,5277497.505386562],[515513.4101499556,5277511.838913795],[515508.604801899,5277511.492691974],[515508.7588455083,5277510.048285235],[515502.3016473498,5277509.586528843],[515501.8480965826,5277513.5196692245],[515501.3022989893,5277518.252770441],[515494.32031518174,5277517.456206279],[515493.2136704966,5277510.006896295]]]},"properties":{"id_build":17,"id_source":"w144655726","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515374.5000598527,5277560.705344142],[515375.2527889869,5277560.040493373],[515370.1620499003,5277554.025503627],[515373.92540560005,5277550.812386982],[515374.7485368666,5277551.925958391],[515382.8015265351,5277545.278844425],[515386.6414607544,5277550.034659873],[515388.1160823373,5277551.8501355965],[515383.2987201319,5277556.060715942],[515386.06819894945,5277559.513367398],[515378.31737346324,5277565.494436428],[515374.5000598527,5277560.705344142]]]},"properties":{"id_build":18,"id_source":"w144655727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.21467226214,5277324.211343155],[516078.95492875896,5277328.103280305],[516069.8632484198,5277329.745276693],[516069.12359953905,5277325.631062798],[516068.5224939453,5277325.740543623],[516067.9961246499,5277323.260673516],[516067.4845908642,5277320.847528289],[516066.8080781993,5277321.067940993],[516065.8458861386,5277315.952855334],[516075.01330051414,5277314.088782118],[516076.9376674616,5277324.31895667],[516078.21467226214,5277324.211343155]]]},"properties":{"id_build":19,"id_source":"w144655728","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516051.8516781456,5277276.170668618],[516053.2146207635,5277283.031751115],[516055.9948682531,5277282.483718397],[516056.720768676,5277286.142219221],[516048.4927446037,5277287.764403024],[516047.8482856297,5277284.528458902],[516046.3304001551,5277284.835466861],[516042.4756375037,5277285.591709062],[516040.57927735127,5277276.072918673],[516047.4923520548,5277274.702720797],[516047.9367673757,5277276.948969355],[516051.8516781456,5277276.170668618]]]},"properties":{"id_build":20,"id_source":"w144655729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516139.26136510156,5276907.828398756],[516140.985107297,5276914.579358167],[516137.2196590864,5276915.535837587],[516137.5019786605,5276916.648017282],[516132.8045822239,5276917.835310347],[516130.9556723923,5276918.308089079],[516131.58723076864,5276920.777140671],[516127.46854805417,5276921.821559611],[516125.14302679634,5276912.690547515],[516135.5825591313,5276910.040998324],[516135.2779536568,5276908.8398452],[516139.26136510156,5276907.828398756]]]},"properties":{"id_build":21,"id_source":"w144655730","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516244.05596488353,5277451.815630974],[516244.9754398006,5277445.260946202],[516245.5008179353,5277445.373551983],[516246.95590874384,5277435.263887484],[516257.0150667328,5277436.736784674],[516255.9432081029,5277444.069020905],[516258.1201288075,5277444.408519017],[516257.85278458724,5277446.019300084],[516257.6617801833,5277447.185734993],[516256.9858955146,5277447.183847686],[516256.06671766745,5277453.627391643],[516244.05596488353,5277451.815630974]]]},"properties":{"id_build":22,"id_source":"w144655733","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515344.6930588767,5277330.234005865],[515345.0001949744,5277327.678601569],[515345.07793101144,5277326.678548892],[515347.6307391148,5277326.907556993],[515348.091006086,5277323.2411592435],[515356.2751330194,5277323.929577361],[515354.8887495385,5277337.040409091],[515346.630127081,5277336.129516996],[515347.0155859385,5277332.351782203],[515344.5378799538,5277332.122972287],[515344.6930588767,5277330.234005865]]]},"properties":{"id_build":23,"id_source":"w144655735","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.71616861044,5277407.681550811],[516077.34462803905,5277413.554229483],[516074.4962077554,5277414.335457199],[516074.8754062251,5277415.714637821],[516071.5985873488,5277416.616937959],[516071.2639872108,5277415.404590374],[516069.09948821185,5277415.998770957],[516065.3717103123,5277417.03319774],[516063.53501777083,5277410.415311187],[516072.3659030464,5277407.983492755],[516072.5295249986,5277408.561871461],[516075.71616861044,5277407.681550811]]]},"properties":{"id_build":24,"id_source":"w144655737","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516220.9155713463,5277077.987965598],[516219.9135356931,5277087.209774994],[516244.9910956697,5277089.724760221],[516244.28075332573,5277102.059293245],[516233.16678601824,5277101.583738953],[516233.39860108646,5277099.2504500095],[516229.493875879,5277099.017285657],[516229.87837344775,5277095.795303988],[516212.158128729,5277094.3011218365],[516212.8547878236,5277086.856697064],[516213.6324315668,5277077.3008423885],[516220.9155713463,5277077.987965598]]]},"properties":{"id_build":25,"id_source":"w144655742","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.3248129363,5277424.800726158],[516206.3405939799,5277425.103649337],[516206.14174150676,5277429.093015617],[516201.18582623324,5277428.868057055],[516200.5513652436,5277438.268721008],[516196.18141071324,5277437.978713285],[516196.1107613638,5277439.078801053],[516190.5544688136,5277438.707699602],[516190.8440466096,5277434.496305432],[516192.41332619917,5277434.600695529],[516192.6637798397,5277430.956005771],[516192.8518984591,5277428.122463402],[516194.09077707527,5277428.21482104],[516194.3569009081,5277424.336781339],[516201.3248129363,5277424.800726158]]]},"properties":{"id_build":26,"id_source":"w144655743","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515636.2029033357,5277201.420635363],[515635.8306790634,5277200.197098719],[515637.86020953616,5277199.535710759],[515638.0092185084,5277199.980669894],[515641.9931790884,5277198.657694448],[515643.1849492905,5277202.328507416],[515647.9851688802,5277204.675340377],[515648.6646659047,5277203.343489734],[515652.56486083113,5277205.2433487065],[515650.6017687363,5277209.127962463],[515648.2613806097,5277213.678401297],[515643.9865792165,5277211.444119449],[515643.2313857026,5277212.998046742],[515642.0312577736,5277212.439123832],[515641.5557609003,5277213.3158503575],[515641.1255637854,5277214.103786825],[515643.30051508767,5277215.221027196],[515641.9418251093,5277217.773590917],[515643.43130870943,5277222.44546151],[515640.80037911085,5277223.327511439],[515641.91823805956,5277226.553566814],[515641.166331147,5277226.884966107],[515640.94252054597,5277226.328666191],[515635.7560659738,5277227.9818322295],[515635.9798770052,5277228.538131948],[515635.0777685021,5277228.8691286715],[515634.6310415452,5277227.423112505],[515633.4398680339,5277223.530023268],[515631.4854475664,5277224.191614394],[515630.2939729283,5277220.409664767],[515628.8658567844,5277220.850390164],[515626.63131406996,5277213.953729014],[515627.8341278546,5277213.512398342],[515627.98254061886,5277214.179635097],[515632.1917930976,5277212.857257673],[515630.7019996276,5277208.296528987],[515634.83615560096,5277206.973951863],[515636.036285345,5277207.532873283],[515637.6220702104,5277204.314079727],[515636.9521269788,5277202.089485823],[515636.50121987564,5277202.199414621],[515636.2029033357,5277201.420635363]]]},"properties":{"id_build":27,"id_source":"w144655744","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.74888712296,5277490.72241816],[516080.9825276334,5277483.126688943],[516080.6341109884,5277481.48085719],[516084.01597046235,5277480.601080376],[516084.537049827,5277482.269617312],[516094.6826317698,5277479.630299552],[516096.68815046176,5277487.637911547],[516092.20925145905,5277488.7369283065],[516090.45073534595,5277489.176627295],[516090.5236829834,5277489.954807693],[516086.6912415606,5277490.833335708],[516086.4687121076,5277489.832462409],[516082.74888712296,5277490.72241816]]]},"properties":{"id_build":28,"id_source":"w144655745","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516183.86972478736,5277112.1159303365],[516184.16210360033,5277115.006377013],[516184.66928645794,5277121.676173006],[516177.0820820088,5277122.321927289],[516176.13724286744,5277110.983045814],[516175.0103946719,5277111.091055186],[516175.15874750353,5277111.758305911],[516174.18241343624,5277111.755593792],[516173.8835465194,5277111.199064771],[516173.447439863,5277105.974284299],[516183.2135702518,5277105.0011614105],[516183.86972478736,5277112.1159303365]]]},"properties":{"id_build":29,"id_source":"w144655746","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516043.81688143814,5277243.095551745],[516042.9585416305,5277238.436429921],[516042.04109945503,5277233.42149814],[516049.93038574385,5277232.109562608],[516049.8565101075,5277231.664799855],[516054.9658345304,5277230.789767866],[516057.03678929975,5277242.354015748],[516052.97950042476,5277243.009666773],[516052.3118650505,5277240.007052038],[516050.23797556094,5277240.40143799],[516046.60112891323,5277241.102708376],[516046.89755077974,5277242.548342446],[516043.81688143814,5277243.095551745]]]},"properties":{"id_build":30,"id_source":"w144655747","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516261.49049478,5276963.627185311],[516266.3809824721,5276960.528931693],[516268.25083432643,5276963.312649171],[516267.5742725089,5276963.533038533],[516270.3404081688,5276968.097496754],[516269.4372913139,5276968.761811887],[516271.6798661005,5276972.54682971],[516263.55368908186,5276977.858835782],[516260.6003814668,5276973.0826925095],[516258.24517404864,5276969.286250527],[516262.6089925861,5276966.519942521],[516260.9638319606,5276963.959133807],[516261.49049478,5276963.627185311]]]},"properties":{"id_build":31,"id_source":"w144655758","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.88557914854,5277309.700284456],[516175.6061748902,5277302.14200161],[516174.7747860499,5277301.339485342],[516174.1081851585,5277300.693022681],[516174.04203827376,5277297.469784686],[516184.78167941933,5277297.388488584],[516184.91612381075,5277303.056992255],[516186.71852749446,5277303.06200283],[516186.85605962545,5277307.619117149],[516180.6969252709,5277307.935416663],[516180.7670835365,5277309.713848499],[516177.7593751568,5277311.039168265],[516175.88557914854,5277309.700284456]]]},"properties":{"id_build":32,"id_source":"w144655760","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516028.70819155104,5277029.665601906],[516028.2575695011,5277029.664361487],[516020.3102552599,5277030.131505643],[516011.88221778534,5277030.619566664],[516011.1632690234,5277018.947917244],[516011.0194789036,5277016.613587401],[516016.8033919278,5277016.296074921],[516017.5544304009,5277016.298140825],[516017.7687358595,5277020.299760885],[516024.9802295484,5277019.763904276],[516025.1963649603,5277023.098691261],[516030.22923475056,5277022.779125237],[516030.3733229674,5277025.002316699],[516028.70819155104,5277029.665601906]]]},"properties":{"id_build":33,"id_source":"w144655766","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.8139863442,5277369.083275847],[515487.6449065924,5277373.179033028],[515483.0061918898,5277366.609450319],[515487.5201328621,5277363.620682726],[515488.6569711551,5277359.733815722],[515490.6133996418,5277358.294203924],[515492.10917786375,5277360.632118464],[515492.56036567123,5277360.411039525],[515494.95408136613,5277363.973881456],[515496.53412574664,5277362.866689213],[515498.5538206522,5277365.87283842],[515493.8139863442,5277369.083275847]]]},"properties":{"id_build":34,"id_source":"w144655767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.2514579663,5277674.4677993],[516179.00488251774,5277673.580774148],[516179.978033534,5277674.694877389],[516193.9312403016,5277679.9572476335],[516192.3790509777,5277684.531892838],[516188.176714532,5277696.945643622],[516170.6220638121,5277690.561883406],[516171.0757219008,5277689.4517448405],[516165.9741883057,5277687.659338397],[516164.10884322587,5277683.319704005],[516163.50746410066,5277683.540314017],[516154.85562928923,5277662.177444986],[516152.75048781064,5277663.060722635],[516148.7969385624,5277653.491726405],[516147.96996179456,5277653.822852105],[516146.0307295356,5277649.038459479],[516146.8577068701,5277648.707333505],[516142.82935037836,5277639.026994303],[516139.8521666931,5277640.241278215],[516139.5966335948,5277637.606555163],[516138.15383847186,5277637.947089045],[516136.37229414907,5277633.163136943],[516137.6133862219,5277629.732355494],[516138.3550259983,5277627.678323991],[516141.3563994506,5277628.57576364],[516144.0878994409,5277618.469610744],[516143.26276705286,5277618.133903104],[516144.7797909448,5277612.692257012],[516145.6803283966,5277612.917034127],[516146.9720671959,5277607.474763845],[516162.8810506156,5277611.631084346],[516160.3748029694,5277621.737853756],[516160.8250707077,5277621.850243508],[516159.6087264895,5277627.181580304],[516158.85807524755,5277627.068356894],[516157.4930843324,5277631.843582286],[516161.297059772,5277641.189889149],[516161.8984431744,5277640.969278914],[516163.98754804814,5277645.8652328],[516163.1605693243,5277646.196356344],[516167.26429126924,5277655.76577935],[516170.0462242185,5277654.550967119],[516178.2514579663,5277674.4677993]]]},"properties":{"id_build":35,"id_source":"w144655768","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515310.01149942784,5277524.526116017],[515313.92883569765,5277519.868548862],[515314.6783472554,5277520.426219202],[515320.0269271083,5277514.10532482],[515325.42340832297,5277518.120559055],[515320.4511899925,5277524.1090196315],[515320.07658097165,5277523.774614578],[515319.3610512235,5277524.572938031],[515318.79612559377,5277525.216062175],[515323.3671130095,5277529.006843103],[515320.05259966984,5277532.888011906],[515317.43004703464,5277530.658316186],[515310.01149942784,5277524.526116017]]]},"properties":{"id_build":36,"id_source":"w144655769","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516094.51824249915,5277348.929423663],[516094.818947963,5277348.819115109],[516096.15046134364,5277356.158023062],[516096.0707531004,5277357.824899764],[516096.29359338345,5277358.714634263],[516089.9070702359,5277359.808379536],[516090.49957264255,5277362.810791678],[516085.6205693687,5277361.908191566],[516084.50666677824,5277357.348382254],[516085.1834829624,5277357.016832648],[516084.9020351287,5277355.593465622],[516084.59097720333,5277354.014421083],[516082.33645745966,5277354.563892196],[516081.66977137973,5277351.227856639],[516082.2708745995,5277351.118377177],[516094.51824249915,5277348.929423663]]]},"properties":{"id_build":37,"id_source":"w144655771","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516268.539030966,5277397.758893432],[516268.1551516877,5277400.758596162],[516266.3496731215,5277401.864949915],[516266.1352976189,5277403.331396722],[516265.89038588677,5277404.975581956],[516263.0378716912,5277404.523054035],[516262.88612179225,5277405.078329296],[516259.3583385586,5277404.401637354],[516259.89116931544,5277401.846909344],[516256.2885952063,5277401.058870575],[516257.42873335996,5277396.171901707],[516263.4481363926,5277392.076539335],[516268.539030966,5277397.758893432]]]},"properties":{"id_build":38,"id_source":"w144655772","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.5953371082,5277251.742889383],[516153.0656913224,5277251.699754181],[516153.0093060157,5277244.953412459],[516156.4792760813,5277244.851900286],[516156.4657978691,5277244.296163934],[516159.3199100748,5277244.20405855],[516163.0752950382,5277244.092228456],[516163.9792828329,5277243.094479866],[516166.532714327,5277243.101569105],[516167.7315516694,5277244.105156011],[516167.7838154156,5277252.329645755],[516156.59317832877,5277252.520861935],[516156.5953371082,5277251.742889383]]]},"properties":{"id_build":39,"id_source":"w144655783","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.4271751386,5277576.404752626],[516080.0740266511,5277575.503608798],[516079.23660642636,5277579.613470017],[516078.6281602426,5277582.390285643],[516072.6989081107,5277581.15137515],[516073.76498867094,5277575.819606069],[516069.56203142204,5277574.918884781],[516071.00850246847,5277567.809927802],[516074.2358209433,5277568.485676594],[516074.5401970465,5277567.041699075],[516081.53540695226,5277568.439151477],[516085.7985672823,5277569.295591787],[516084.4271751386,5277576.404752626]]]},"properties":{"id_build":40,"id_source":"w144655791","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516150.5410365178,5277051.78564005],[516151.43518681993,5277054.344334585],[516153.6901375674,5277053.6837513065],[516156.602208162,5277059.804517375],[516150.61948560126,5277061.410560583],[516146.3804561018,5277062.55465787],[516145.6355869384,5277060.329797284],[516141.050589688,5277061.650762758],[516139.26690217917,5277054.86629346],[516142.9497395493,5277053.876244652],[516142.131613156,5277050.984342933],[516148.4449223782,5277049.33475189],[516150.5410365178,5277051.78564005]]]},"properties":{"id_build":41,"id_source":"w144655793","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516132.341705101,5277304.467041151],[516132.6137746889,5277314.692656547],[516123.3004511529,5277315.00027791],[516123.23366083886,5277311.999318375],[516120.67995188583,5277312.103387003],[516120.6103907342,5277310.102678031],[516119.18810490787,5277308.431643279],[516119.0526736432,5277303.096558062],[516123.93449123803,5277302.9989354955],[516123.9323367881,5277303.776908114],[516127.6725393756,5277303.709469248],[516129.11455449107,5277303.680121805],[516129.11209147144,5277304.569233364],[516132.341705101,5277304.467041151]]]},"properties":{"id_build":42,"id_source":"w144655799","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516205.70167779515,5277387.5366105605],[516197.5249356287,5277386.958157811],[516197.75181328534,5277383.691278313],[516195.7770466653,5277383.563530928],[516196.0742024167,5277379.329930468],[516197.85374354897,5277379.4460208295],[516198.0961671327,5277375.990246944],[516198.27603794757,5277373.423417588],[516205.814579267,5277373.955638927],[516205.09514553635,5277384.200727754],[516211.9954846957,5277384.675610982],[516211.76105822594,5277387.953582932],[516205.70167779515,5277387.5366105605]]]},"properties":{"id_build":43,"id_source":"w144655805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516248.9467302094,5277009.815192333],[516248.9720058324,5277016.905979473],[516241.4340371546,5277018.696527446],[516234.8993848151,5277018.900583893],[516234.7669014959,5277012.543020368],[516234.43470014445,5276997.004756301],[516240.96909804473,5276996.900724285],[516240.9634873621,5276998.912338208],[516243.44192193955,5276998.919251451],[516243.50431473186,5277003.476155498],[516241.12364131305,5277003.42505899],[516241.1033682157,5277010.693542545],[516247.81762820465,5277010.72338767],[516247.8128158065,5277009.756458347],[516248.9467302094,5277009.815192333]]]},"properties":{"id_build":44,"id_source":"w144655806","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515413.0427589462,5277355.420983596],[515413.7233616705,5277353.644549535],[515419.34964154055,5277355.993381672],[515420.1041682054,5277354.661703085],[515425.20504294336,5277356.89800966],[515423.96619882557,5277359.617651317],[515423.24097564066,5277361.227256396],[515424.59129232256,5277361.786532271],[515421.7189701519,5277368.7807272365],[515414.51650076563,5277366.094300267],[515415.422989259,5277364.096184939],[515408.67169572675,5277361.188680362],[515411.16703762347,5277354.749179942],[515413.0427589462,5277355.420983596]]]},"properties":{"id_build":45,"id_source":"w144655813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515989.1042030408,5277530.685988194],[515990.14335412404,5277535.134435161],[515989.0162863597,5277535.353619389],[515989.7144159845,5277538.189602284],[515990.57592695585,5277541.692872983],[515992.83006023866,5277541.2545053465],[515993.6481898836,5277544.146388309],[515985.0071481038,5277545.900893758],[515984.2641114793,5277543.009218194],[515982.8360470495,5277543.449856876],[515980.0137798016,5277531.994707668],[515984.5223577196,5277531.006826105],[515984.67072128016,5277531.674072395],[515989.1042030408,5277530.685988194]]]},"properties":{"id_build":46,"id_source":"w144655817","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516266.3809824721,5276960.528931693],[516261.49049478,5276963.627185311],[516259.99492128746,5276961.289074135],[516258.18961898243,5276962.284291081],[516256.0742438654,5276958.666343304],[516253.106705891,5276953.601200986],[516261.4576004406,5276948.512087458],[516263.4761158933,5276951.8519172305],[516262.79893214116,5276952.294584912],[516265.71435483237,5276957.192876997],[516266.5417474844,5276956.7506292565],[516268.18659722904,5276959.422578404],[516266.3809824721,5276960.528931693]]]},"properties":{"id_build":47,"id_source":"w144655821","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515647.08596146875,5277008.28904267],[515645.61441705964,5277010.896871539],[515643.08634401346,5277015.391237262],[515641.5866554076,5277014.498090958],[515638.1151630887,5277020.712590056],[515632.34142149385,5277017.251756032],[515633.9266585347,5277014.255240124],[515628.82794830104,5277011.129641193],[515632.1480348989,5277005.359289005],[515636.0480698283,5277007.370274911],[515641.3310206669,5276997.826449339],[515648.90518225415,5277002.070108295],[515645.73618091265,5277007.507437844],[515647.08596146875,5277008.28904267]]]},"properties":{"id_build":48,"id_source":"w144655822","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516067.1296796562,5277286.170933741],[516065.64883209596,5277278.49820208],[516069.91674716945,5277277.709773549],[516071.5848367335,5277277.4031863315],[516071.51157690445,5277276.736145383],[516075.34384981333,5277275.968746298],[516075.5660827854,5277277.080757758],[516078.9471392104,5277276.534394836],[516079.0210120282,5277276.9791579945],[516079.9838131099,5277281.8719676435],[516080.132786197,5277282.316938229],[516076.6760188514,5277283.085370977],[516076.82284401567,5277284.308314075],[516067.1296796562,5277286.170933741]]]},"properties":{"id_build":49,"id_source":"w144655825","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516041.3026618653,5276934.431305264],[516045.79712012823,5276933.287835193],[516046.4585098333,5276935.84587142],[516052.38097219553,5276934.339580642],[516052.58167205023,5276935.09588405],[516056.4973952104,5276934.106422455],[516058.20638814423,5276940.790632694],[516054.0801918596,5276941.84619669],[516054.2213589316,5276942.4022845235],[516050.34319412743,5276943.391851162],[516043.26330130023,5276945.195032243],[516041.3536526378,5276937.732295571],[516042.0977418902,5276937.5342939375],[516041.3026618653,5276934.431305264]]]},"properties":{"id_build":50,"id_source":"w144655830","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515316.0769220422,5277474.084620244],[515316.45796689024,5277471.973967398],[515323.2889551733,5277473.103339666],[515321.76535273914,5277481.323671524],[515315.534571846,5277480.41815937],[515315.0778453392,5277482.750892726],[515311.9994197068,5277482.520516112],[515311.62191384204,5277483.286387574],[515311.39542206196,5277483.741464903],[515310.0445384858,5277483.404493101],[515309.97353229666,5277481.848349844],[515305.2441225225,5277481.169076505],[515306.8436761756,5277472.615520871],[515316.0769220422,5277474.084620244]]]},"properties":{"id_build":51,"id_source":"w144655836","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.68615156866,5277274.810168324],[516180.25893852516,5277276.370495998],[516180.3986384853,5277280.149637372],[516169.9590587836,5277280.342914838],[516169.89414389443,5277276.675121233],[516169.3684404414,5277276.673661283],[516169.3070845628,5277274.428466993],[516169.23243690294,5277271.560852938],[516168.6316324289,5277271.559184496],[516168.41774984816,5277267.446418108],[516177.656051563,5277267.138660088],[516177.8028559596,5277268.361605746],[516178.5520090605,5277269.030526126],[516178.68615156866,5277274.810168324]]]},"properties":{"id_build":52,"id_source":"w144655837","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515645.5068783812,5277456.177950237],[515643.1627100583,5277462.173199365],[515642.93622135423,5277462.6171499435],[515637.9848229085,5277460.71447221],[515638.9676660522,5277458.272037059],[515637.37740646495,5277457.589812951],[515635.81712607364,5277456.929897748],[515634.833985575,5277459.483472398],[515628.8324011939,5277457.133423255],[515631.70582507225,5277449.80591212],[515631.857215158,5277449.361759486],[515642.5098197522,5277453.613682196],[515642.0559460385,5277454.835000324],[515645.5068783812,5277456.177950237]]]},"properties":{"id_build":53,"id_source":"w144655841","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515597.45149697445,5276853.293845046],[515598.4266833395,5276853.74101585],[515603.18366963073,5276844.306888407],[515602.4338002176,5276843.860320519],[515605.22672258905,5276838.6442400655],[515616.7021631411,5276844.565406053],[515613.8332332853,5276850.114696297],[515612.33319949795,5276849.332696734],[515609.7512575988,5276854.29371819],[515607.65249978454,5276858.322462614],[515609.0777239156,5276858.993120791],[515606.20910619997,5276864.431276016],[515594.65799324494,5276858.732207066],[515597.45149697445,5276853.293845046]]]},"properties":{"id_build":54,"id_source":"w144655845","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.32411545294,5277141.941713451],[516139.6533855809,5277143.034538842],[516138.88453357044,5277146.755590067],[516123.54220599023,5277143.623399679],[516124.3262844727,5277139.824590821],[516126.8333146802,5277140.331662884],[516127.1454510931,5277138.809912569],[516127.5033262687,5277137.0437814705],[516126.6401116184,5277136.874680963],[516127.86582019785,5277130.898756328],[516131.86655966984,5277131.710045431],[516131.20423999603,5277134.931263782],[516135.58027220157,5277135.821393024],[516134.32411545294,5277141.941713451]]]},"properties":{"id_build":55,"id_source":"w144655846","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516231.80397698877,5276889.9698481],[516231.3353763549,5276896.414646592],[516224.72733981424,5276895.951672143],[516217.0665884379,5276895.930332285],[516217.1379796302,5276897.26420793],[516210.452981274,5276897.467873752],[516210.0023489603,5276897.46661929],[516214.1532600912,5276890.254093088],[516216.55787343805,5276889.816230164],[516217.23382279783,5276889.818112627],[516217.3107854044,5276889.151488564],[516217.38620042,5276889.04055886],[516222.6351765831,5276889.377484855],[516231.80397698877,5276889.9698481]]]},"properties":{"id_build":56,"id_source":"w144655847","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.20905203413,5277110.16439983],[516080.84581631975,5277105.717806288],[516089.3262004833,5277105.274446098],[516089.26940426446,5277104.085093733],[516092.7922745913,5277103.8947775755],[516092.85658036254,5277105.084150733],[516094.91470166575,5277104.978699579],[516098.54832061316,5277105.4777595475],[516098.25783460046,5277101.887142176],[516099.204375026,5277101.800847369],[516098.51511204813,5277093.041128671],[516108.74796489935,5277091.680182096],[516109.68453665794,5277103.341334046],[516110.635448481,5277115.247033535],[516104.25019278884,5277115.785068708],[516095.98706709786,5277116.429059251],[516097.4226060343,5277129.6253176695],[516099.06332345563,5277144.667064178],[516092.6014631249,5277145.760599012],[516089.86997767916,5277128.637526562],[516089.14997044374,5277117.410420987],[516081.93797739083,5277118.168475768],[516081.20905203413,5277110.16439983]]]},"properties":{"id_build":57,"id_source":"w144655851","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515366.0275892094,5277214.115922059],[515362.0392129211,5277214.294335335],[515362.06784593815,5277214.827881489],[515357.7339751384,5277215.016500148],[515357.55008572375,5277210.703794386],[515357.4436775991,5277208.336237925],[515356.6249556223,5277208.378534416],[515356.3413165298,5277202.020595036],[515358.95516886853,5277201.905235702],[515358.77110397303,5277197.659213353],[515364.59217322175,5277197.407835824],[515364.776204554,5277201.66497226],[515365.4747359094,5277201.6334737055],[515366.0275892094,5277214.115922059]]]},"properties":{"id_build":58,"id_source":"w144655854","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.2115954797,5277219.56960047],[516167.5592449819,5277219.609468016],[516167.57238274754,5277220.287457196],[516163.9823592816,5277220.344173632],[516163.9577489955,5277218.388045066],[516160.4803762724,5277218.445076399],[516160.3531544093,5277210.16480928],[516163.943184104,5277210.108090592],[516163.96828810486,5277211.8863968495],[516172.372558973,5277211.754138381],[516172.42325569637,5277215.132928703],[516175.3598395263,5277215.09663008],[516175.4227759443,5277219.475712544],[516169.2115954797,5277219.56960047]]]},"properties":{"id_build":59,"id_source":"w144655856","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516236.661263867,5276952.666203864],[516239.0633736844,5276953.11746131],[516238.5286529795,5276956.339022793],[516236.6504175085,5276956.556064773],[516229.9688938584,5276955.537180342],[516230.5045392275,5276951.982201438],[516220.9702692169,5276950.510817611],[516221.4289471506,5276947.622461987],[516222.4797942481,5276947.847668966],[516222.96944394126,5276944.625980524],[516223.47442476894,5276941.293195108],[516235.48623812944,5276943.104909428],[516235.40958397626,5276943.660394429],[516237.9622170975,5276944.00093133],[516236.661263867,5276952.666203864]]]},"properties":{"id_build":60,"id_source":"w144655864","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515609.49956202,5277189.123615611],[515609.04656886705,5277190.011519047],[515605.37105876487,5277188.334571031],[515603.4199059017,5277187.7736433325],[515601.2428521915,5277187.4343904555],[515599.13911336544,5277187.762173167],[515600.8744908495,5277184.7660500035],[515609.49956202,5277189.123615611]]]},"properties":{"id_build":61,"id_source":"w144655871","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515578.8175888156,5277344.5259377975],[515581.3187773088,5277335.974869875],[515584.54509003327,5277337.094902374],[515586.80135375424,5277335.878404876],[515592.5789717589,5277337.7832507305],[515593.54961220775,5277339.897505581],[515596.69754588633,5277342.239872222],[515591.798212372,5277348.895135256],[515588.8755790782,5277346.553374459],[515584.8976815511,5277345.653607153],[515585.0502606915,5277344.764897546],[515583.9472187748,5277344.417411799],[515582.5740561007,5277343.98029151],[515581.6689941957,5277345.422686092],[515578.8175888156,5277344.5259377975]]]},"properties":{"id_build":62,"id_source":"w144655881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515692.90410645807,5276733.530571584],[515688.74033727404,5276734.5640653195],[515684.03543669067,5276735.729472168],[515683.6616953341,5276735.061627655],[515683.0672688473,5276735.460129528],[515678.9966540227,5276738.160975935],[515677.5081499401,5276735.87860551],[515674.3591388368,5276731.035553744],[515679.3246135666,5276727.937010667],[515678.9508711648,5276727.269166464],[515686.3200942911,5276724.065962025],[515686.6932373035,5276724.956084394],[515689.85045124375,5276723.9643330285],[515693.7590419862,5276722.863468578],[515695.6908716947,5276730.648450952],[515692.3840443145,5276731.417516674],[515692.90410645807,5276733.530571584]]]},"properties":{"id_build":63,"id_source":"w144655883","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516015.7941488426,5277246.6860151645],[516003.9968962106,5277248.987511826],[516003.2565791861,5277245.095584826],[516005.5108281071,5277244.657222044],[516004.02988844115,5277236.984506764],[516004.405698932,5277236.874399979],[516003.2953737564,5277230.980940092],[516013.3607521393,5277230.341775147],[516014.1010643706,5277234.233703354],[516012.369461545,5277235.784897875],[516012.5172184164,5277236.674422424],[516013.77620664367,5277243.123991926],[516015.05383939174,5277242.794086663],[516015.7941488426,5277246.6860151645]]]},"properties":{"id_build":64,"id_source":"w144655884","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.58541270765,5277161.273162336],[516079.0401037431,5277161.2827013675],[516079.41407906555,5277161.8394329455],[516080.4685760204,5277160.730947395],[516083.9229603841,5277160.851628244],[516084.52254821075,5277161.297843602],[516087.3758092796,5277161.528005747],[516087.1287018932,5277169.41824667],[516082.62289641064,5277169.294659668],[516081.607516995,5277169.836440049],[516080.96819957945,5277170.17920762],[516074.35984915553,5277169.938680775],[516074.52385988156,5277164.937843958],[516075.5752869257,5277164.940746733],[516075.58541270765,5277161.273162336]]]},"properties":{"id_build":65,"id_source":"w144655894","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516192.2792790067,5277463.896781837],[516190.2503946306,5277464.335698803],[516189.2839780975,5277460.787650794],[516187.5740567192,5277454.547951805],[516193.36125485785,5277452.896947807],[516193.7330364563,5277454.231659845],[516198.0167261457,5277453.13217791],[516199.0578966933,5277456.802689149],[516198.07543629454,5277459.0227523185],[516198.81837790867,5277461.914455007],[516200.8472637877,5277461.475541027],[516201.8890495857,5277464.923774884],[516195.72637068876,5277466.573725869],[516194.834468582,5277463.237049875],[516192.2792790067,5277463.896781837]]]},"properties":{"id_build":66,"id_source":"w144655895","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516057.9015056732,5277609.562341611],[516056.8424957327,5277612.337916832],[516060.89339591487,5277613.905048701],[516060.62111822865,5277614.60447859],[516057.48228195467,5277622.697915106],[516053.8892277104,5277621.22095996],[516054.2680792136,5277619.999466366],[516051.34248897975,5277618.846659013],[516046.9166300034,5277617.089562502],[516049.9413088783,5277609.5403909385],[516050.5414656345,5277609.7643252155],[516051.6004730229,5277606.9887488615],[516052.72844870394,5277606.436159753],[516057.37951075257,5277608.227223712],[516057.9015056732,5277609.562341611]]]},"properties":{"id_build":67,"id_source":"w144655897","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.2708745995,5277351.118377177],[516081.6783667178,5277348.115965935],[516082.88026682404,5277348.008146021],[516082.2886798879,5277344.672317877],[516083.7168006083,5277344.2317036],[516083.19791877683,5277341.762966669],[516082.38250582485,5277337.893049233],[516085.688120879,5277337.457621763],[516085.5406849057,5277336.456956236],[516090.12422489823,5277335.580502803],[516092.1990642971,5277345.699958956],[516093.62657111895,5277345.48162501],[516094.51824249915,5277348.929423663],[516082.2708745995,5277351.118377177]]]},"properties":{"id_build":68,"id_source":"w144655903","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516200.34935927804,5277478.478550172],[516199.89846268494,5277478.588435366],[516201.0131788758,5277482.814850956],[516200.4946327024,5277482.94677582],[516194.76055632636,5277484.408982708],[516194.5501278729,5277484.463967294],[516193.9030213526,5277482.217142655],[516193.3600003334,5277480.348483039],[516191.63151304063,5277480.788235035],[516190.5161715172,5277476.78409922],[516191.7189744787,5277476.342884883],[516190.82768976246,5277472.783931504],[516198.26795408694,5277470.804110246],[516199.4577709302,5277475.030734424],[516200.34935927804,5277478.478550172]]]},"properties":{"id_build":69,"id_source":"w144655904","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516194.3569009081,5277424.336781339],[516193.51579670847,5277424.3344418565],[516193.8521366492,5277419.511908942],[516193.9849358636,5277417.667357227],[516192.7836661604,5277417.552876261],[516193.0188536511,5277413.997056012],[516194.2204332141,5277414.000398059],[516194.53041134134,5277410.55592574],[516202.11414970027,5277411.021584384],[516201.8026207301,5277415.021751131],[516202.9287920788,5277415.136024958],[516202.53474111954,5277421.803317858],[516201.40826178336,5277421.800183068],[516201.3248129363,5277424.800726158],[516194.3569009081,5277424.336781339]]]},"properties":{"id_build":70,"id_source":"w144655916","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516166.3986316561,5277480.718114666],[516164.2427017672,5277472.8212005],[516162.9042055893,5277468.03847176],[516169.5177704028,5277466.278598475],[516170.4850932093,5277469.50434018],[516175.52036496886,5277468.184649612],[516176.7105076544,5277472.300130107],[516175.7333076901,5277472.6308345115],[516176.77294466255,5277476.85703673],[516177.1447284844,5277478.191747758],[516176.8415576576,5277479.191163875],[516173.2340807201,5277480.181399922],[516172.86167867377,5277479.068967095],[516170.48688781296,5277479.673639799],[516166.3986316561,5277480.718114666]]]},"properties":{"id_build":71,"id_source":"w144655921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516140.2749729752,5277287.26235906],[516135.99363667367,5277287.472771911],[516135.5698304107,5277277.802435234],[516138.94965997356,5277277.700662905],[516139.0232201327,5277278.256565777],[516145.4824770994,5277278.052194074],[516145.5606594614,5277276.941012921],[516150.44280782243,5277276.732273597],[516150.86566460796,5277286.7360282205],[516145.08232029335,5277286.942268127],[516144.256216331,5277286.939977456],[516144.2580653208,5277286.2731438065],[516140.20202923013,5277286.484178279],[516140.2749729752,5277287.26235906]]]},"properties":{"id_build":72,"id_source":"w144655930","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516152.56653700303,5277215.055581303],[516152.5696201661,5277213.94419201],[516148.964449425,5277214.045331614],[516148.96136694873,5277215.156720909],[516149.0281455089,5277218.157680312],[516145.5731799387,5277218.259238604],[516145.2287994679,5277207.033165513],[516148.60867029836,5277206.931398707],[516150.18980704865,5277205.490966976],[516154.92150429566,5277205.392953595],[516156.495241659,5277206.61985784],[516156.77005033125,5277215.8452225095],[516152.6391717469,5277215.944901084],[516152.56653700303,5277215.055581303]]]},"properties":{"id_build":73,"id_source":"w144655939","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515235.5982977976,5277693.374493717],[515237.93148186407,5277691.380084179],[515241.9962205031,5277687.723112068],[515244.0921916565,5277690.284815028],[515248.6831834122,5277686.40694603],[515249.057203749,5277686.96362463],[515252.57619440934,5277690.973875428],[515253.10011312034,5277691.642086809],[515249.48739620094,5277694.744536321],[515250.0867011199,5277695.30180512],[515244.8935000842,5277699.733794944],[515243.0964578785,5277697.728573252],[515240.9140464985,5277699.5010958845],[515235.5982977976,5277693.374493717]]]},"properties":{"id_build":74,"id_source":"w144655958","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516193.14691185474,5277070.90886953],[516194.6492839223,5277070.80190805],[516194.6508294505,5277070.246213529],[516221.8409587584,5277069.321641786],[516220.9155713463,5277077.987965598],[516213.6324315668,5277077.3008423885],[516213.63274103624,5277077.189703483],[516206.7251148254,5277076.503634559],[516207.38155348157,5277083.5072669685],[516196.04038432037,5277083.697989942],[516196.2774405011,5277079.475338224],[516182.2297748807,5277080.658818405],[516178.35004770063,5277071.423437108],[516193.14691185474,5277070.90886953]]]},"properties":{"id_build":75,"id_source":"w144655959","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516054.0636779231,5277203.891454601],[516053.4095210323,5277195.998727122],[516056.7149078286,5277195.674422051],[516057.1670495048,5277195.1199700665],[516056.8767574326,5277191.45155705],[516064.5389593352,5277190.805853505],[516064.90342824464,5277194.807890899],[516067.9081034882,5277194.593902267],[516068.63396850857,5277203.70936687],[516063.22543900105,5277204.139002406],[516063.0053470196,5277202.249019059],[516060.1508788112,5277202.463424512],[516060.14811985055,5277203.463674867],[516054.0636779231,5277203.891454601]]]},"properties":{"id_build":76,"id_source":"w144655967","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516040.2437950441,5277504.153101644],[516038.89142670005,5277504.371655525],[516034.2181551213,5277505.158989827],[516031.7537927917,5277505.57453463],[516032.2727424795,5277508.021039802],[516025.58478162147,5277509.558584225],[516024.24923933594,5277503.664497514],[516023.1224700451,5277503.772536164],[516022.2326160123,5277499.657913767],[516025.0881607602,5277498.998934034],[516024.7160375927,5277497.775371731],[516034.85972834256,5277495.802783662],[516035.23062509584,5277497.470902533],[516038.6124683035,5277496.591099361],[516040.2437950441,5277504.153101644]]]},"properties":{"id_build":77,"id_source":"w144655970","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516102.67789742484,5277602.795347123],[516104.3263264875,5277604.133584962],[516102.5132570942,5277608.018464618],[516099.96305920766,5277606.900013101],[516098.6415300742,5277609.552600996],[516095.43208959996,5277616.000952253],[516084.7828732552,5277610.747947349],[516087.2764026608,5277605.197844773],[516090.35135587654,5277606.651160558],[516092.31553173397,5277602.433275297],[516090.6658707534,5277601.539596859],[516092.85718088306,5277596.6555004995],[516097.65689473937,5277599.002706776],[516100.3600553897,5277599.121321645],[516102.60833434697,5277600.794637454],[516102.67789742484,5277602.795347123]]]},"properties":{"id_build":78,"id_source":"w144655981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515429.61998235213,5277447.9331628075],[515433.2950834824,5277449.721139788],[515433.74095903663,5277451.500557873],[515432.45839748083,5277453.719953244],[515430.654862727,5277454.159731971],[515427.5790767509,5277452.929043482],[515427.12613162736,5277453.816961334],[515425.17593440606,5277452.922676038],[515424.7980878376,5277453.81079304],[515420.10173937015,5277451.986774565],[515417.5960196434,5277451.013222686],[515418.0495521609,5277449.903026147],[515415.1239578007,5277448.672742006],[515417.99505607877,5277442.12309891],[515429.9224372152,5277447.155986072],[515429.61998235213,5277447.9331628075]]]},"properties":{"id_build":79,"id_source":"w144656001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.3495066162,5277258.913602749],[516136.2229957934,5277258.9104806455],[516136.29440039303,5277260.244356027],[516137.34611828224,5277260.13613106],[516139.3738373352,5277260.141751396],[516139.4350748664,5277265.143211777],[516128.31956424925,5277265.334690419],[516128.2678607361,5277256.887923119],[516127.291243183,5277256.996357744],[516127.23615180724,5277249.772118858],[516127.987160199,5277249.774199074],[516135.19745672477,5277249.571896211],[516137.3002802979,5277249.577723936],[516137.289191272,5277253.578725633],[516137.3495066162,5277258.913602749]]]},"properties":{"id_build":80,"id_source":"w144656005","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515285.4325461329,5277255.42557853],[515283.4728251976,5277255.264838489],[515283.0537452079,5277260.420621023],[515279.0366464212,5277260.110000885],[515276.2359158828,5277259.902600499],[515276.0736556353,5277261.635954269],[515267.6793834165,5277260.858186597],[515267.7566115377,5277260.047069224],[515265.85700138484,5277259.875378759],[515266.27440518007,5277255.353087011],[515268.45934132044,5277255.547753762],[515269.0390057989,5277249.29210829],[515281.3376032748,5277250.435770695],[515281.55398193374,5277248.1135186795],[515286.07397267164,5277248.536600469],[515285.4325461329,5277255.42557853]]]},"properties":{"id_build":81,"id_source":"w144656007","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516088.84348569997,5277228.327065843],[516092.37508109584,5277227.669986805],[516093.1996575282,5277228.22796476],[516093.79155776853,5277231.45265445],[516094.24247142096,5277231.342761044],[516096.39121419506,5277241.90698029],[516095.71499850566,5277242.016250697],[516096.38138229557,5277245.463426212],[516089.84453331534,5277246.556756403],[516089.1790671181,5277242.776164838],[516088.42775074067,5277242.885228565],[516087.6359626757,5277238.615273108],[516086.5259676542,5277232.632885999],[516088.9078382132,5277232.217136013],[516088.3159353512,5277228.992446815],[516088.84348569997,5277228.327065843]]]},"properties":{"id_build":82,"id_source":"w144656013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516116.84545486193,5277503.586673008],[516117.3695994524,5277504.143823165],[516121.5778324605,5277503.1552161],[516123.06347143743,5277509.049741296],[516123.96525697067,5277508.829959054],[516124.78055591835,5277512.722111268],[516126.2831205517,5277512.503993357],[516126.94791476114,5277516.506868862],[516115.6008242089,5277519.142804317],[516114.78336669115,5277516.028626237],[516115.3850688347,5277515.696872235],[516114.2715275102,5277511.02591702],[516114.9477123553,5277510.916648793],[516114.5772699726,5277509.09293018],[516113.61410636443,5277504.35570748],[516116.84545486193,5277503.586673008]]]},"properties":{"id_build":83,"id_source":"w144656019","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515618.92033894255,5277683.509702952],[515622.6012279895,5277683.063906316],[515623.99874712044,5277693.981586855],[515614.98408648,5277695.168824498],[515614.050052401,5277687.831091341],[515608.5661082826,5277688.561022401],[515607.32104812405,5277687.99087131],[515606.2109802843,5277687.487766256],[515606.7777992276,5277686.144493993],[515602.14999556815,5277684.053775014],[515603.49526946107,5277680.856553862],[515601.09499089327,5277679.816520751],[515603.6042396715,5277673.821695722],[515607.72965718346,5277675.633219348],[515607.1245742816,5277677.243124476],[515609.83974649274,5277678.47294208],[515618.1109584885,5277677.294815829],[515618.92033894255,5277683.509702952]]]},"properties":{"id_build":84,"id_source":"w144656027","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515569.17255957634,5277412.739949863],[515568.2672143743,5277414.2934856275],[515569.4667131481,5277415.074671526],[515565.1679632412,5277421.84270315],[515562.46916668286,5277420.057252453],[515562.9969366404,5277419.280684839],[515562.13466882624,5277418.767137085],[515561.122441198,5277418.164276842],[515560.6700670709,5277418.829906366],[515555.7224649941,5277415.482492256],[515558.66349065374,5277410.933620585],[515560.537097797,5277412.383444682],[515561.7431332601,5277410.719571657],[515563.46743352566,5277411.835578336],[515564.8242616799,5277409.949829511],[515569.17255957634,5277412.739949863]]]},"properties":{"id_build":85,"id_source":"w144656029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515725.2924476429,5276949.817958499],[515717.2706770301,5276952.797072691],[515716.43484427285,5276950.816530089],[515712.16457992914,5276952.405417738],[515706.8493141665,5276954.380478585],[515704.053002176,5276946.915462956],[515709.8339832456,5276944.9194280375],[515708.64740295516,5276942.10439262],[515714.47381319065,5276939.97511721],[515714.52578670887,5276940.1975368615],[515717.08941088105,5276939.259768439],[515718.3436420066,5276942.0527602555],[515722.75658476976,5276940.475376335],[515724.2707685283,5276944.3471264085],[515723.4359652395,5276944.767203042],[515725.2924476429,5276949.817958499]]]},"properties":{"id_build":86,"id_source":"w144656032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516301.3006191986,5276774.245242528],[516302.71427278215,5276779.02820802],[516312.5613732854,5276776.166151043],[516314.0479445534,5276781.727301686],[516313.4467781557,5276781.836757268],[516314.41413806204,5276785.062519332],[516308.0476712118,5276786.800694353],[516303.1394001195,5276788.142855546],[516303.287124506,5276789.032386921],[516296.6724398174,5276790.903247102],[516295.4065098815,5276787.009814158],[516295.9328795927,5276786.789007679],[516290.28041295236,5276766.879182455],[516297.4214945277,5276764.787508691],[516300.39840218244,5276774.57613618],[516301.3006191986,5276774.245242528]]]},"properties":{"id_build":87,"id_source":"w144656065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516138.8378619791,5277426.40541547],[516138.7643037869,5277425.849512467],[516137.93009356223,5277426.0694797635],[516137.11090311524,5277426.289488812],[516137.1847695046,5277426.734252827],[516134.0284742356,5277427.503484133],[516133.50955981965,5277425.056970122],[516131.87494376063,5277418.717471039],[516138.48824685416,5277417.068701501],[516138.1915488669,5277415.734201262],[516141.799059579,5277414.743943525],[516142.3927620085,5277417.30180542],[516145.17357048136,5277416.531537368],[516146.7327658812,5277422.981970887],[516139.8944794492,5277424.518967539],[516140.1154618154,5277426.075537629],[516138.8378619791,5277426.40541547]]]},"properties":{"id_build":88,"id_source":"w144656074","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515519.258504902,5277740.691342357],[515515.2016252979,5277741.347367731],[515515.94397988403,5277744.572400948],[515508.7993493748,5277748.554396449],[515502.4133668919,5277749.648785629],[515501.52495980705,5277744.867407813],[515499.87199452304,5277745.196426004],[515499.05808735214,5277740.637526599],[515502.96477658325,5277739.981090013],[515502.74274866993,5277738.757960784],[515509.9589283442,5277736.109826282],[515521.1530532828,5277734.250283837],[515522.3554554438,5277733.9200702915],[515523.5391871323,5277740.5916156685],[515519.63101450127,5277741.803733585],[515519.258504902,5277740.691342357]]]},"properties":{"id_build":89,"id_source":"w144656082","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515692.9644273121,5276844.926021717],[515696.04617182293,5276844.045210128],[515697.3100923855,5276848.82762318],[515699.26404684735,5276848.388331984],[515701.04921043775,5276854.839246366],[515704.7317984119,5276853.960059465],[515706.7383746955,5276861.8563886685],[515698.4701418397,5276864.279165724],[515695.45183065237,5276869.494594511],[515688.9284116415,5276865.475986782],[515692.0975297114,5276860.038681697],[515691.04814408044,5276859.257876189],[515693.612526223,5276855.263758284],[515692.90051757323,5276854.706141059],[515692.0385964234,5276854.036980264],[515689.9577897788,5276845.807037301],[515692.9644273121,5276844.926021717]]]},"properties":{"id_build":90,"id_source":"w144656084","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.9255834538,5277024.462972601],[516153.4194475257,5277015.895484251],[516156.7280261037,5277014.459846853],[516156.0560999511,5277013.013165754],[516160.8534656282,5277010.95927904],[516166.3576757717,5277008.596167364],[516166.5069579857,5277008.9300010735],[516168.9127531468,5277008.04756294],[516170.6284158152,5277012.275637735],[516168.29741742864,5277013.269422593],[516169.7896192195,5277016.830038193],[516170.5351021443,5277018.832623935],[516166.6250750652,5277020.488863115],[516165.7296919152,5277018.374721963],[516159.9399117608,5277020.803725537],[516160.8356050827,5277022.806726909],[516156.9255834538,5277024.462972601]]]},"properties":{"id_build":91,"id_source":"w144656092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515775.02701906755,5277742.601333672],[515758.94867906056,5277745.558563071],[515752.72014009353,5277716.200788726],[515752.20139301574,5277713.64316888],[515743.67548941646,5277672.942927918],[515758.60608483513,5277669.604673392],[515759.3800489547,5277669.428944749],[515760.3439535424,5277673.988287059],[515760.56562907744,5277675.322565114],[515760.2622389983,5277676.433142059],[515759.8095610045,5277677.2098953985],[515758.98140660604,5277677.985632365],[515757.1782168524,5277678.314170984],[515752.29401511716,5277679.412351527],[515753.92505876726,5277687.196553063],[515762.7914063527,5277685.3311758395],[515775.02701906755,5277742.601333672]]]},"properties":{"id_build":92,"id_source":"w144656097","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.11394887563,5277285.339283604],[516126.0862386048,5277285.333667167],[516126.1582607928,5277286.445264595],[516118.2717993521,5277286.756846344],[516118.06003549986,5277281.866109195],[516118.8861401743,5277281.868396147],[516118.7488617629,5277277.200144805],[516122.80459570885,5277277.100234318],[516123.778747621,5277277.880910468],[516126.48267259594,5277277.777259184],[516126.3386280753,5277275.554064361],[516125.9631255433,5277275.553024343],[516125.8917187942,5277274.2191490615],[516132.42638816836,5277273.903831924],[516132.8458887291,5277285.1301134825],[516128.11394887563,5277285.339283604]]]},"properties":{"id_build":93,"id_source":"w144656100","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.376446639,5277405.924406966],[516090.4570341592,5277405.377220765],[516090.08614713745,5277403.709098592],[516093.8429330408,5277403.052643134],[516093.39879118296,5277400.717479391],[516097.1558866739,5277399.949887106],[516100.12818727794,5277411.405506433],[516096.22059401905,5277412.283820516],[516095.84909459646,5277410.837975884],[516092.3549747984,5277411.56183992],[516089.5371131152,5277412.154207068],[516089.3881441453,5277411.709236143],[516085.4802456909,5277412.698696395],[516083.1776667349,5277403.467730881],[516084.53036723856,5277403.138048306],[516086.9301528439,5277404.367216453],[516087.376446639,5277405.924406966]]]},"properties":{"id_build":94,"id_source":"w144656112","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516286.3405043301,5276886.565651092],[516284.23848192516,5276886.226353232],[516282.55725895334,5276896.557647851],[516269.94483075454,5276894.633019076],[516270.9361073771,5276889.301081318],[516274.01419017056,5276889.754241856],[516274.220484839,5276888.498939343],[516274.3962404093,5276887.421375069],[516272.4484661215,5276885.637695957],[516273.21256615804,5276880.971962237],[516274.71436754765,5276881.087299072],[516274.7149887783,5276880.865021334],[516281.8475349299,5276881.77407792],[516282.00054289727,5276880.774248095],[516285.07831856026,5276881.338553337],[516286.72411393456,5276883.677090761],[516286.3405043301,5276886.565651092]]]},"properties":{"id_build":95,"id_source":"w144656114","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516135.6304028675,5277310.14428403],[516136.6854999868,5277308.813530549],[516138.8634022413,5277308.819567029],[516139.79750836815,5277307.788556197],[516140.67134987883,5277306.824062329],[516143.6759703344,5277306.610112884],[516143.8230889617,5277307.721918803],[516147.2029013284,5277307.620151303],[516147.4761775473,5277317.401211712],[516143.9461709187,5277317.502562574],[516143.94278113794,5277318.725090997],[516141.53958273266,5277318.718427993],[516141.5331122937,5277321.052345901],[516135.90031027654,5277321.147872322],[516135.83445057314,5277317.813495753],[516135.6842506497,5277317.813079497],[516135.6304028675,5277310.14428403]]]},"properties":{"id_build":96,"id_source":"w144656116","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516150.57161546877,5277311.519387816],[516154.1016258591,5277311.418040961],[516154.03330959525,5277308.972775783],[516154.0373181922,5277307.527969489],[516159.5202420349,5277307.320904766],[516160.4242194862,5277306.323155548],[516163.1278234698,5277306.330660252],[516164.4014398372,5277307.4455940295],[516164.5392978562,5277311.891568865],[516165.89109855675,5277311.895322017],[516165.9547810708,5277316.007671561],[516159.5706653473,5277316.212228907],[516159.6426807153,5277317.323826817],[516154.30996621563,5277317.531308139],[516154.37889895815,5277319.754295461],[516150.69869374204,5277319.855225488],[516150.57161546877,5277311.519387816]]]},"properties":{"id_build":97,"id_source":"w144656122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515544.22222130105,5277728.643704623],[515540.4654122775,5277729.411653482],[515540.0216679337,5277726.854253154],[515539.0448439425,5277727.073925354],[515538.89702781854,5277726.18441227],[515536.49281174457,5277726.622554728],[515536.7157228817,5277727.512268161],[515534.7623720204,5277727.840474808],[515534.68816707586,5277727.506857346],[515531.6078034777,5277728.054337397],[515530.12903611,5277719.381486752],[515533.20940414915,5277718.8340059165],[515533.1351989984,5277718.500388481],[515542.7520778514,5277716.747819052],[515543.41695178486,5277720.861767368],[515543.1165728028,5277720.860965376],[515544.22222130105,5277728.643704623]]]},"properties":{"id_build":98,"id_source":"w144656133","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.3127553147,5277506.666251003],[516165.4762109027,5277507.3002019245],[516164.92762872216,5277507.432046552],[516165.55907598545,5277509.912218195],[516166.60650095745,5277514.038414613],[516166.26080588653,5277514.126366558],[516167.1150750421,5277517.496275849],[516157.7137295298,5277519.8707972],[516156.85945530084,5277516.500889289],[516157.5658643617,5277516.325025985],[516156.3029947622,5277511.353570573],[516155.36362880113,5277511.584357513],[516153.92991301225,5277505.93447559],[516161.0466783006,5277504.142647077],[516161.24731298647,5277504.910068887],[516164.6516388506,5277504.0526292175],[516165.3127553147,5277506.666251003]]]},"properties":{"id_build":99,"id_source":"w144656143","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516253.9239421336,5277467.958448178],[516248.3688592085,5277467.164963371],[516248.36730836,5277467.720658233],[516244.8392513934,5277467.155113909],[516244.99068789167,5277466.7109771],[516245.06795668264,5277465.933213834],[516243.1163374771,5277465.594349124],[516242.9639708947,5277466.371902897],[516239.43560260185,5277465.917500823],[516240.1241955835,5277461.36268824],[516239.89890124416,5277461.362059808],[516240.8180600298,5277454.9185132645],[516240.9682564237,5277454.918932243],[516241.5035549545,5277451.475090616],[516244.05596488353,5277451.815630974],[516256.06671766745,5277453.627391643],[516255.0412563202,5277460.481856456],[516253.9239421336,5277467.958448178]]]},"properties":{"id_build":100,"id_source":"w144656150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515505.9839992046,5277339.441362005],[515508.0220510146,5277335.556899038],[515514.24762757524,5277338.46311793],[515513.71867236006,5277339.68424569],[515516.7194007111,5277340.914779233],[515517.24746784323,5277340.027068611],[515523.0981295758,5277342.710018346],[515518.11696831055,5277351.921339024],[515512.56730397214,5277349.016916679],[515513.1716537925,5277347.6848499365],[515511.6789491588,5277347.014034406],[515510.17122426856,5277346.343179248],[515509.56717105344,5277347.564107336],[515503.41670154576,5277344.658093365],[515502.20859786525,5277347.099951002],[515498.9834584972,5277345.5354083],[515502.98385970714,5277337.988556095],[515505.9839992046,5277339.441362005]]]},"properties":{"id_build":101,"id_source":"w144656158","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.49175244494,5277034.574205514],[515950.3610539135,5277034.562888953],[515950.36440274725,5277033.340361056],[515947.5852642187,5277033.443888646],[515947.5129000602,5277032.443432855],[515946.4914905963,5277032.440635529],[515945.409998225,5277032.437673853],[515945.4790149383,5277034.660657511],[515940.1466587493,5277034.646057662],[515940.08250788687,5277030.644851682],[515938.5053310297,5277030.640534371],[515938.38098153163,5277021.193316859],[515944.5397959629,5277021.0990382945],[515944.5370570184,5277022.099288375],[515950.169839787,5277022.114715116],[515950.172579699,5277021.114465036],[515954.30359228345,5277021.014642548],[515954.49175244494,5277034.574205514]]]},"properties":{"id_build":102,"id_source":"w144656168","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516138.4545173987,5277239.578342115],[516137.6284067186,5277239.5760524],[516137.6231701449,5277241.465414279],[516137.6853336066,5277246.133457685],[516137.2347282904,5277246.132208793],[516137.3002802979,5277249.577723936],[516135.19745672477,5277249.571896211],[516127.987160199,5277249.774199074],[516127.92129483406,5277246.439822984],[516129.1229089474,5277246.443151517],[516128.9924107989,5277239.3298436245],[516129.8936224853,5277239.332340165],[516129.8305290056,5277234.997713704],[516134.4123077626,5277234.788128679],[516134.4852529822,5277235.56630932],[516138.39081419987,5277235.46599341],[516138.4545173987,5277239.578342115]]]},"properties":{"id_build":103,"id_source":"w144656186","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516018.51823432016,5277261.097224239],[516017.09809752007,5277261.3600528445],[516017.7198625913,5277264.662614785],[516011.8213751436,5277265.768902591],[516009.2215182346,5277266.261882512],[516008.6588512191,5277263.315131281],[516010.1466388728,5277263.030258686],[516009.2063978158,5277258.104181138],[516006.4036435565,5277258.641060359],[516005.2931719679,5277252.803169348],[516013.0251091437,5277251.346269697],[516013.81728630664,5277255.49396214],[516017.1009322896,5277254.869497532],[516017.66350416053,5277257.84959123],[516019.8050064236,5277257.444265759],[516020.4268009754,5277260.735714073],[516018.51823432016,5277261.097224239]]]},"properties":{"id_build":104,"id_source":"w144656190","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.9665685445,5277221.5474064015],[516124.8360023685,5277221.53596576],[516124.6294735413,5277214.755867061],[516126.13888683706,5277212.092692593],[516132.22240209323,5277211.998404965],[516132.225173443,5277210.998154605],[516135.98054840905,5277210.897420887],[516135.98424440186,5277209.563753741],[516137.4160986291,5277207.789485498],[516139.293941214,5277207.683550543],[516139.6420299163,5277217.57595611],[516136.18706419435,5277217.677519973],[516136.25600533735,5277219.9005067125],[516133.1765471786,5277220.003113034],[516129.79699213314,5277219.99374985],[516129.7948369568,5277220.771722366],[516128.9665685445,5277221.5474064015]]]},"properties":{"id_build":105,"id_source":"w144656192","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515436.2266388647,5277760.253472323],[515433.45640214015,5277757.134212734],[515434.4349849848,5277756.247688645],[515433.1023431796,5277754.721540186],[515431.515145938,5277752.905753756],[515430.6122464731,5277753.570199317],[515426.4950171752,5277748.669135954],[515426.80334655615,5277745.669178144],[515428.755801531,5277745.674352379],[515431.6155762651,5277743.347996298],[515433.5618445463,5277745.687091743],[515435.59086734476,5277745.136772209],[515437.98652091913,5277747.921619939],[515439.3388095043,5277747.702926571],[515441.0606744832,5277749.708009993],[515441.0559579172,5277751.486234467],[515443.60208971,5277754.160343883],[515436.2266388647,5277760.253472323]]]},"properties":{"id_build":106,"id_source":"w144656196","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515325.42340832297,5277518.120559055],[515320.0269271083,5277514.10532482],[515318.00309852924,5277512.655182775],[515319.28472620307,5277510.769179071],[515319.137163223,5277509.76853297],[515320.34340194904,5277507.993470893],[515321.3202542083,5277507.773762013],[515322.219669096,5277508.442967557],[515324.8583199184,5277504.560020995],[515326.05783241626,5277505.341156826],[515328.0176830282,5277502.567822408],[515335.5139721397,5277507.699992205],[515332.1211216859,5277512.803485117],[515331.14690383873,5277512.022941286],[515330.589017191,5277512.843906438],[515330.0914427449,5277513.576118645],[515326.47272325045,5277518.901299633],[515325.42340832297,5277518.120559055]]]},"properties":{"id_build":107,"id_source":"w144656201","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515526.1937709942,5277702.58887839],[515524.91685994226,5277702.696612839],[515525.7260100435,5277709.033739964],[515517.68818980735,5277710.0125676645],[515516.2179871776,5277698.116689277],[515517.34500522394,5277697.89741357],[515516.83148523065,5277693.339312665],[515521.33867277583,5277692.7956286855],[515521.1926308963,5277691.239281998],[515528.1037541044,5277690.36859349],[515528.2506834931,5277691.591523294],[515534.335464344,5277690.829777924],[515534.6287272852,5277693.497915906],[515532.7507567678,5277693.715184603],[515533.2648573508,5277698.051008908],[515525.75268583157,5277699.031228098],[515525.9659264632,5277700.7322358955],[515526.1937709942,5277702.58887839]]]},"properties":{"id_build":108,"id_source":"w144656202","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515546.9450875324,5277355.776997653],[515547.3241461287,5277354.444332827],[515551.30115276296,5277355.67749135],[515551.9064013773,5277354.012011717],[515556.18350825296,5277355.357114941],[515555.7287543654,5277356.911856471],[515558.5050577358,5277357.808392797],[515556.68990231975,5277362.582551954],[515553.98899724125,5277361.575078143],[515550.65998663387,5277370.790785336],[515548.10868930444,5277370.005993327],[515547.95730359986,5277370.450148075],[515541.8796032261,5277368.433405513],[515543.6275409901,5277363.514580638],[515544.67934463284,5277360.549957322],[515542.2031414152,5277359.765368433],[515544.0185825056,5277354.880065851],[515546.9450875324,5277355.776997653]]]},"properties":{"id_build":109,"id_source":"w144656210","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515209.3949390471,5277720.201804266],[515205.664876303,5277710.745178741],[515206.56746622466,5277710.191837404],[515207.6135686033,5277712.195086109],[515211.373538131,5277710.204393273],[515215.96071606537,5277707.771305747],[515217.8285015289,5277711.443800744],[515219.6331025501,5277710.559400019],[515222.9958063709,5277716.90315997],[515216.52864927455,5277720.331585832],[515215.85570141836,5277719.218429058],[515213.2989944555,5277720.545424598],[515213.1496762689,5277720.211615039],[515211.3491447863,5277719.540071409],[515211.05021773087,5277718.983591421],[515209.47090487485,5277719.868583381],[515209.3949390471,5277720.201804266]]]},"properties":{"id_build":110,"id_source":"w144656214","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516224.61767882574,5277636.031299579],[516223.62529450294,5277647.20920456],[516213.0989179831,5277646.446356718],[516213.10046555405,5277645.890661699],[516206.79366162664,5277645.428541661],[516206.796136775,5277644.539429627],[516206.9540631841,5277641.761372643],[516207.1104427379,5277639.539010688],[516206.05910134193,5277639.536083963],[516206.4497403312,5277634.091318064],[516207.95165801386,5277634.0954992585],[516208.1052533753,5277632.873388377],[516207.7307021062,5277632.538926024],[516208.4341038876,5277622.649436564],[516225.25282730843,5277623.696544735],[516224.61767882574,5277636.031299579]]]},"properties":{"id_build":111,"id_source":"w144656217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516274.8956203666,5277004.3417871725],[516274.4440644441,5277004.673944377],[516268.5757052236,5277008.325157919],[516268.42642883264,5277007.9913215805],[516269.1036065705,5277007.548654529],[516266.48645510257,5277003.429171744],[516265.8092770882,5277003.871839102],[516265.58489640255,5277003.53779304],[516266.2620744381,5277003.095125659],[516264.5415113854,5277000.64524485],[516264.0899557735,5277000.977402858],[516259.7528515358,5276994.185765246],[516259.90337015927,5276994.075045794],[516260.277649462,5276994.520649969],[516265.6963235453,5276990.534752669],[516265.3223548436,5276989.978009261],[516265.54766742594,5276989.978638635],[516274.8956203666,5277004.3417871725]]]},"properties":{"id_build":112,"id_source":"w144656227","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.8938932694,5277086.800025603],[515933.016961597,5277087.640198797],[515932.73053885077,5277082.5269869715],[515936.26098775433,5277082.31436887],[515936.0499747865,5277077.09022356],[515932.3735740111,5277075.746486098],[515932.0214737612,5277067.187762826],[515949.97357124067,5277066.34779218],[515950.5396898997,5277079.019273348],[515950.31468523364,5277078.90751725],[515950.17513455235,5277075.017244036],[515946.4947788768,5277075.118303443],[515946.77601557004,5277082.120877348],[515950.4566712742,5277081.908679219],[515950.3840038305,5277081.019362225],[515950.6096173099,5277080.908840515],[515950.8938932694,5277086.800025603]]]},"properties":{"id_build":113,"id_source":"w144656229","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515710.18965799885,5277225.070279428],[515702.7624376164,5277222.160610818],[515693.60937956686,5277218.69060106],[515694.29023350484,5277216.85863049],[515694.89538742945,5277215.2487354325],[515691.53709583374,5277207.3487624],[515699.9583389754,5277203.703852039],[515702.421399958,5277209.378620745],[515714.65032140055,5277214.079482191],[515719.2369007355,5277212.091347531],[515721.9988438274,5277218.3226303365],[515721.622737481,5277218.543894271],[515721.62333766406,5277218.321616404],[515713.12730061973,5277221.855153887],[515711.7652825341,5277225.630229692],[515715.96674650337,5277227.19752511],[515713.01680792106,5277234.969345641],[515707.31512695155,5277232.731166514],[515710.18965799885,5277225.070279428]]]},"properties":{"id_build":114,"id_source":"w144656234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516248.05024173734,5277527.513009232],[516245.9635613326,5277527.140424544],[516242.3456405074,5277526.49683284],[516244.37419717957,5277526.169073008],[516246.7065547927,5277524.619623329],[516247.9897223786,5277522.289267461],[516248.22245849477,5277519.62256064],[516247.25332631846,5277517.063639535],[516245.2309686051,5277515.16861874],[516243.20519873925,5277514.496127445],[516249.9608652023,5277515.62637803],[516248.70752388594,5277523.413783218],[516248.05024173734,5277527.513009232]]]},"properties":{"id_build":115,"id_source":"w144656237","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516036.59115396446,5277139.826799865],[516035.87808544043,5277126.043505859],[516035.80696203496,5277124.598493132],[516036.0322693877,5277124.599113638],[516036.2493123735,5277127.600484858],[516042.4086287873,5277127.284032213],[516042.4107722247,5277126.506059808],[516044.438843984,5277126.400508057],[516044.5118026938,5277127.178687411],[516047.291204752,5277126.964067249],[516047.64833851083,5277133.633437113],[516049.1506915391,5277133.526438125],[516049.3616006159,5277138.750588231],[516049.4354775232,5277139.1953509115],[516043.50148005923,5277139.512416894],[516043.5045423322,5277138.401027721],[516042.7908870101,5277138.465745246],[516042.2274974862,5277138.508648908],[516042.2998439195,5277139.509106081],[516036.59115396446,5277139.826799865]]]},"properties":{"id_build":116,"id_source":"w144656248","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515680.4204444778,5277673.5946444925],[515678.3408210902,5277665.031277407],[515696.5265101703,5277660.412409047],[515698.4604130765,5277667.30829243],[515702.7667855298,5277685.546837309],[515705.0962360031,5277684.997421884],[515706.95292626513,5277692.671078931],[515700.866924906,5277693.8772],[515700.2709597759,5277692.097355513],[515692.3069824521,5277693.520700805],[515691.11864116613,5277688.627345464],[515694.19904101215,5277688.079949771],[515692.78990823124,5277681.518901575],[515689.4845188247,5277681.954551849],[515688.44606386346,5277677.172740939],[515691.45197330083,5277676.402863392],[515690.1894309082,5277671.175888934],[515680.4204444778,5277673.5946444925]]]},"properties":{"id_build":117,"id_source":"w144656250","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515572.6515221072,5277684.374896657],[515571.23504651745,5277683.31527961],[515569.80355136335,5277682.255622749],[515567.99502424954,5277684.584722239],[515561.9856245938,5277685.235494168],[515558.08958430134,5277681.890886573],[515561.5564430511,5277677.23228057],[515564.63594498776,5277677.018233396],[515564.1936927296,5277673.905136346],[515571.02974781225,5277673.034297995],[515571.2493858917,5277675.14654185],[515575.3063180797,5277674.490555485],[515574.7907599222,5277670.710422638],[515578.99788641214,5277670.05484065],[515580.9131857655,5277683.952442805],[515579.48548426945,5277684.282041364],[515581.185903341,5277694.289175384],[515572.0961274315,5277695.487392331],[515570.7678993164,5277686.703794415],[515572.6515221072,5277684.374896657]]]},"properties":{"id_build":118,"id_source":"w144656257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515613.01755993924,5277725.6047469685],[515612.8745240778,5277722.937007612],[515615.0585311691,5277720.608929018],[515617.687145601,5277720.50484043],[515619.4196922748,5277718.508971812],[515621.2925883764,5277720.18109446],[515626.0986527893,5277720.193992729],[515626.3847124101,5277725.52947211],[515627.80763294734,5277726.97810943],[515625.9228084073,5277729.751545616],[515626.89754698216,5277730.309861157],[515627.03252118663,5277735.978354587],[515620.79967329674,5277735.96162687],[515618.6270002159,5277734.066420386],[515613.59536545974,5277734.164063065],[515613.15821110987,5277729.161598536],[515614.4383971142,5277727.831354179],[515614.2941696052,5277725.608170872],[515613.01755993924,5277725.6047469685]]]},"properties":{"id_build":119,"id_source":"w144656269","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516237.35952582525,5277025.464689375],[516240.88878142834,5277025.69681147],[516241.11781248194,5277024.363773159],[516244.42144732305,5277024.706407857],[516244.18807486864,5277027.595390582],[516248.24212449364,5277028.16240048],[516248.3954331671,5277027.051430664],[516253.20051985816,5277027.620539795],[516252.50845576596,5277033.397875723],[516247.92806446593,5277033.051673643],[516247.54541370884,5277035.606820449],[516243.0407475327,5277035.038553976],[516243.34798267356,5277032.594336269],[516238.01686368114,5277032.134908057],[516238.165211386,5277032.802160319],[516232.8306840638,5277033.56526472],[516232.30183501967,5277029.296023631],[516231.94926854456,5277026.449862951],[516237.3582861591,5277025.909244958],[516237.35952582525,5277025.464689375]]]},"properties":{"id_build":120,"id_source":"w144656272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515616.2202241884,5277259.493089217],[515608.7870426585,5277258.806319163],[515608.12901197444,5277252.13617074],[515610.2330260615,5277251.69725235],[515612.0455773186,5277247.923361011],[515615.3467359047,5277249.154750637],[515616.02323954884,5277248.934285524],[515616.17522970587,5277248.267854732],[515617.22574721056,5277248.604091596],[515617.90463590604,5277247.49451518],[515624.054853638,5277250.511788486],[515622.1725621324,5277252.284973675],[515629.88586625125,5277260.530015223],[515629.35747644666,5277261.5288545145],[515632.27774937724,5277264.759746803],[515623.77169498114,5277272.072138737],[515619.57918343856,5277267.17074141],[515621.53686817846,5277265.286617899],[515618.099766335,5277261.543101845],[515616.2202241884,5277259.493089217]]]},"properties":{"id_build":121,"id_source":"w144656283","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516227.3843675237,5276912.741176305],[516229.41158812406,5276912.969105473],[516228.7983569432,5276917.412985957],[516218.1377621716,5276915.82732846],[516218.74912806624,5276912.050280133],[516217.6231691573,5276911.824864683],[516217.3233673991,5276911.601750249],[516217.6324550099,5276908.490698419],[516218.6851666156,5276908.049071428],[516219.210903362,5276908.050535755],[516219.3795091303,5276906.839582242],[516219.51751564274,5276905.828595033],[516219.8930420322,5276905.829641029],[516220.4302334825,5276901.718967113],[516224.03436042625,5276902.062426856],[516225.53182178224,5276903.733695259],[516228.91032154614,5276904.187669083],[516228.4451322194,5276909.409940314],[516227.8442903615,5276909.408265849],[516227.3843675237,5276912.741176305]]]},"properties":{"id_build":122,"id_source":"w144656291","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.73038965615,5277372.093967354],[515456.5553011304,5277372.540716212],[515455.72419402056,5277374.427885587],[515458.8745247322,5277375.88106604],[515458.4975533512,5277376.435763878],[515459.7724688625,5277377.105987512],[515462.091098483,5277380.6686165845],[515460.50663866865,5277383.442902658],[515455.8487245471,5277384.097374224],[515452.15886384214,5277382.198204437],[515449.3239512476,5277380.745864549],[515449.77720028313,5277379.746809541],[515447.1522686867,5277378.406167681],[515446.6245105677,5277379.182745716],[515440.1745309393,5277375.942584554],[515443.7990438833,5277368.505834718],[515449.04950616526,5277370.964838619],[515449.9554159532,5277369.189006552],[515453.70536505006,5277371.088334347],[515455.73038965615,5277372.093967354]]]},"properties":{"id_build":123,"id_source":"w144656293","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516021.6289038559,5277547.112958199],[516019.60003101407,5277547.563048496],[516019.47395632474,5277546.984774471],[516018.6875299975,5277543.492819946],[516018.1690545898,5277543.602533246],[516017.5162729214,5277540.666645755],[516018.17001506605,5277540.523962617],[516017.8065342464,5277538.889207083],[516016.74564020836,5277534.162845656],[516026.6044768448,5277531.978294093],[516027.8210173096,5277537.449722685],[516026.78403449024,5277537.680261596],[516027.66679793026,5277541.6392697],[516031.20607341995,5277540.848807573],[516031.9626680345,5277544.262883776],[516032.57132130995,5277544.131192073],[516033.2760507516,5277547.2895040335],[516033.0581164208,5277547.344473774],[516029.6315818996,5277548.101903227],[516022.21492126136,5277549.748584908]]]},"properties":{"id_build":124,"id_source":"w144656303","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515272.7873100425,5277744.262822696],[515275.7977949595,5277741.714506172],[515278.49273708067,5277744.944632406],[515272.99830608815,5277749.709226222],[515275.0948243672,5277752.048662608],[515269.22405694897,5277757.145691929],[515264.95679764485,5277752.133210117],[515268.56919597636,5277749.141909016],[515267.1461919359,5277747.693359638],[515265.6408068714,5277749.023089463],[515264.3679908642,5277747.574934603],[515263.991061876,5277748.129645261],[515262.41845039336,5277746.458425196],[515259.40768248675,5277749.117887671],[515256.1128502134,5277745.552778789],[515258.9731382231,5277743.00405999],[515257.70031923655,5277741.555906611],[515264.8509048698,5277735.239683743],[515272.7873100425,5277744.262822696]]]},"properties":{"id_build":125,"id_source":"w144656304","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515377.4667514132,5277347.324852382],[515378.07165751804,5277345.770493768],[515375.6711124834,5277344.763896226],[515376.80494438275,5277341.988397242],[515375.9099124228,5277339.652099102],[515377.5720850839,5277335.877737989],[515379.07290496276,5277336.326261008],[515381.4171441201,5277330.219768269],[515387.49317690375,5277332.903176741],[515385.29913175345,5277339.010063967],[515387.9246827517,5277340.128399872],[515388.3773368531,5277339.351618081],[515390.708070452,5277338.357521091],[515392.723127219,5277343.141856671],[515390.8438741521,5277343.803727095],[515391.25354331365,5277345.082917006],[515391.66321229463,5277346.362106945],[515388.94053374435,5277353.57899283],[515384.06435351743,5277351.565591293],[515384.66896728287,5277350.122372313],[515377.4667514132,5277347.324852382]]]},"properties":{"id_build":126,"id_source":"w144656307","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515370.7651080072,5277638.493327024],[515374.95902595454,5277642.83885312],[515358.84748708835,5277658.355895613],[515354.5787659599,5277653.899043944],[515351.0492725783,5277653.889736094],[515350.98384783976,5277650.221950643],[515349.44860657986,5277648.617489741],[515345.4420030642,5277644.428071492],[515348.15218823036,5277641.879000833],[515350.3989070524,5277644.218859881],[515351.2270114894,5277643.443064945],[515357.1434502778,5277649.571357104],[515359.02582633705,5277647.686946575],[515359.17631091794,5277647.576203801],[515360.0044160587,5277646.800410108],[515360.9777276306,5277647.914376029],[515362.93520117406,5277646.030164907],[515361.88650067354,5277645.027139518],[515364.7474709389,5277642.256194862],[515365.7958781129,5277643.370359771],[515370.7651080072,5277638.493327024]]]},"properties":{"id_build":127,"id_source":"w144656308","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515413.3501431656,5277693.175556137],[515414.1161016819,5277687.509454417],[515415.9177972102,5277687.736504678],[515416.2924737284,5277685.20350945],[515416.6060148513,5277683.070455633],[515420.88467655797,5277683.74862651],[515420.96153815155,5277683.081991319],[515422.0876721733,5277683.196114235],[515422.08796659095,5277683.0849752175],[515422.31737417483,5277681.5296257725],[515425.3948069983,5277682.09347808],[515425.39156771835,5277683.316007275],[515426.06713026186,5277683.428937122],[515425.3035154307,5277688.20592511],[515426.9550200032,5277688.432580842],[515426.1154264824,5277693.542786825],[515422.5871347503,5277693.088879475],[515422.35802194884,5277694.533089916],[515418.6047396258,5277693.967449148],[515415.3844257619,5277693.481019908],[515413.3501431656,5277693.175556137]]]},"properties":{"id_build":128,"id_source":"w144656314","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516034.895827094,5277728.085155166],[516034.0630514645,5277730.527938439],[516034.66319631384,5277730.751871144],[516033.1515088755,5277734.30418327],[516036.6769744212,5277735.7587120505],[516035.99683732545,5277737.312796623],[516039.22192222404,5277738.7664995445],[516039.90267244924,5277736.990137297],[516043.3527338807,5277738.555602249],[516045.9975844525,5277732.561338906],[516047.4976384686,5277733.232312891],[516044.7007597519,5277739.892995758],[516041.99521342944,5277740.66351874],[516039.36690576904,5277740.656276719],[516036.81552956067,5277739.982408613],[516034.49127301195,5277738.642327998],[516032.5437124377,5277736.858726259],[516030.97407191875,5277734.187046948],[516033.4611210419,5277728.225685426],[516034.895827094,5277728.085155166]]]},"properties":{"id_build":129,"id_source":"w144656319","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515987.9943706165,5277032.332163891],[515983.26223118807,5277032.541452105],[515982.7362006742,5277032.651147955],[515982.5182110355,5277029.983195947],[515981.1812132003,5277030.035096193],[515979.8892775928,5277030.08712041],[515980.0327748095,5277032.5325884065],[515980.63360390236,5277032.534237332],[515980.7077924847,5277032.86786015],[515969.0649006732,5277033.502756519],[515968.8484287685,5277030.27911054],[515972.90463644103,5277030.067956391],[515972.7617458975,5277027.4002107885],[515968.7052315831,5277027.722503935],[515968.2011449796,5277019.830200462],[515972.63318378123,5277019.508937022],[515972.77576974116,5277022.287821486],[515982.69099247694,5277021.759329786],[515982.5487162857,5277018.869306172],[515987.20576297585,5277018.659811154],[515987.9943706165,5277032.332163891]]]},"properties":{"id_build":130,"id_source":"w144656320","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515309.02240219136,5277726.453376684],[515307.0792920615,5277722.891793777],[515308.0644355672,5277722.36091315],[515307.27225973475,5277720.90289885],[515302.25625422556,5277723.62375087],[515300.4112295389,5277719.884604387],[515300.49275046354,5277717.4397431975],[515297.5924192639,5277712.35303269],[515297.87973640946,5277711.609151082],[515301.23413745535,5277709.650792346],[515302.0640974828,5277711.019993268],[515304.0420725382,5277709.891566822],[515306.06904989225,5277710.119175344],[515309.52809057327,5277708.350034137],[515310.8041192865,5277708.575669529],[515311.706427302,5277708.133483494],[515312.1607968883,5277706.689861271],[515314.49195547454,5277705.473455495],[515315.5236459315,5277707.232178292],[515317.53466325544,5277710.671688829],[515319.47093431733,5277713.9776356425],[515319.57559913717,5277714.1557347365],[515311.0773149059,5277718.912388793],[515313.84295759123,5277723.809814192],[515309.02240219136,5277726.453376684]]]},"properties":{"id_build":131,"id_source":"w144656325","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515426.3217819973,5277275.546683132],[515420.6217981646,5277272.641951087],[515418.2229959827,5277270.968502489],[515418.75164294406,5277269.85850516],[515419.0558713482,5277268.414494387],[515418.382614914,5277267.412453975],[515418.4624244467,5277265.634429728],[515419.4390267536,5277265.525876241],[515419.36598642066,5277264.747704736],[515422.8223815355,5277264.090020887],[515425.3124800184,5277259.651028376],[515424.7964913328,5277255.982050518],[515428.78007002664,5277254.7700682],[515429.37616379914,5277256.549883386],[515431.70605383534,5277255.889219679],[515433.26814523526,5277261.561485977],[515435.96764424304,5277263.1245982],[515430.15603025234,5277274.000886957],[515428.58098113944,5277273.2187349945],[515427.8287391271,5277273.683528558],[515427.15171552665,5277274.104065631],[515426.3217819973,5277275.546683132]]]},"properties":{"id_build":132,"id_source":"w144656326","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515597.5920996824,5277428.820143227],[515600.29177485185,5277430.272193343],[515599.6880090525,5277431.381973296],[515602.9872788248,5277433.280190336],[515599.5884924138,5277440.495167879],[515595.9882366684,5277438.818425998],[515596.4415064799,5277437.819382271],[515595.08386280667,5277437.204476796],[515593.74123852927,5277436.589611866],[515592.38649063365,5277437.697381222],[515586.3115535527,5277434.680341119],[515587.671061854,5277431.794346792],[515588.3472456991,5277431.685017421],[515589.399814725,5277431.24327662],[515590.15318036353,5277430.35617574],[515590.9101176212,5277428.135407291],[515591.3654707469,5277426.358390387],[515591.8926487384,5277425.804103321],[515593.3210095505,5277425.252229857],[515597.07087608275,5277427.151650339],[515596.9185948977,5277427.929220778],[515597.5920996824,5277428.820143227]]]},"properties":{"id_build":133,"id_source":"w144656333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515242.824847244,5277629.376898583],[515240.2672219499,5277631.037299222],[515239.80733673455,5277634.592568065],[515242.81058874057,5277634.822710105],[515241.66291032836,5277642.932908781],[515233.2553860993,5277641.688365925],[515234.1754388354,5277634.4666881915],[515231.3340088555,5277629.791383116],[515231.63991724787,5277627.6805278165],[515226.6108148026,5277626.778254051],[515227.52795454103,5277620.667965538],[515234.8841661606,5277621.909748674],[515234.888819559,5277620.131524531],[515237.2208690213,5277618.581670915],[515238.87007312063,5277619.697385274],[515240.37519431877,5277618.478787746],[515244.0423876056,5277623.267399098],[515246.59477828094,5277623.607502288],[515245.6796562661,5277628.939814799],[515243.80284021597,5277628.712620664],[515242.824847244,5277629.376898583]]]},"properties":{"id_build":134,"id_source":"w144656334","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515836.86011699744,5277759.21791266],[515836.78895316884,5277757.772901017],[515883.73470295843,5277753.566346506],[515884.4595666822,5277763.126351784],[515836.86011699744,5277759.21791266]]]},"properties":{"id_build":135,"id_source":"w144656339","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515935.4899308781,5277034.744451392],[515931.9594531774,5277034.9570700135],[515930.8328991148,5277034.953987746],[515930.6887731841,5277032.730798796],[515929.02864846593,5277032.848510819],[515927.53381260205,5277032.94444749],[515927.7506112693,5277036.056952997],[515923.61930597486,5277036.267933203],[515923.83337119396,5277040.380688688],[515923.60806059185,5277040.380072531],[515923.39399521385,5277036.267317054],[515921.290790896,5277036.372705663],[515921.21872614295,5277035.261111301],[515921.5191405427,5277035.261932722],[515920.8024423493,5277022.701183606],[515920.5020273034,5277022.700362221],[515920.42874674196,5277022.033323492],[515922.9825788507,5277021.929166802],[515922.76851225155,5277017.816411474],[515922.3926892233,5277017.92652352],[515922.39390484,5277017.48196793],[515934.41264643427,5277016.736866905],[515935.4899308781,5277034.744451392]]]},"properties":{"id_build":136,"id_source":"w144656340","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515485.6346127951,5277281.927958094],[515490.00285469217,5277277.271708992],[515492.4001551697,5277279.500881967],[515493.68041154905,5277278.170611842],[515492.93118139444,5277277.501779754],[515500.23663721146,5277269.741442208],[515500.9861634217,5277270.29913628],[515502.191323207,5277268.968668101],[515501.5922939963,5277268.300234821],[515503.8553733686,5277264.527509572],[515507.4536914692,5277266.982166336],[515512.3275317802,5277269.884782441],[515508.1848639779,5277274.430475936],[515506.0873775734,5277272.42437438],[515504.88192164403,5277273.865980708],[515505.5560504019,5277274.534614331],[515498.3256938297,5277282.29514517],[515496.0032014077,5277280.177308563],[515495.3706127169,5277280.831349429],[515494.7229449315,5277281.50757818],[515497.7192699753,5277284.405185957],[515493.2756311355,5277289.172368429],[515485.6346127951,5277281.927958094]]]},"properties":{"id_build":137,"id_source":"w144656342","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516217.4435382476,5277378.089078362],[516218.88454479584,5277378.415397853],[516219.8207422585,5277373.9390711505],[516224.00104461913,5277374.928748732],[516223.80296843185,5277375.939569144],[516237.8762601449,5277378.779525294],[516239.52100224927,5277381.451468358],[516240.724448645,5277380.787986245],[516243.04291051585,5277384.239788426],[516243.8702410064,5277383.79753731],[516246.4127565166,5277387.694525275],[516245.5851162719,5277388.247914989],[516247.678895527,5277391.476812514],[516243.0888638251,5277394.687060101],[516240.9941531356,5277391.7915810915],[516238.66205410176,5277393.229893893],[516238.28221956064,5277394.784792054],[516234.0791562505,5277393.8839524975],[516234.38234124327,5277392.8845394645],[516233.0463537855,5277392.602964844],[516231.68032659654,5277392.321306778],[516229.29488630715,5277394.037324171],[516227.20041635516,5277391.052938977],[516223.08020534983,5277390.063426449],[516222.50304256246,5277392.362412588],[516215.74831110146,5277390.843208063],[516217.4912347158,5277382.534804018],[516216.6431717548,5277382.332390167],[516217.4435382476,5277378.089078362]]]},"properties":{"id_build":138,"id_source":"w144656346","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.3453489611,5277558.207433205],[516169.7220359426,5277554.968756755],[516168.22287570406,5277553.964334573],[516171.0150444761,5277549.081936276],[516175.97947382217,5277546.206091679],[516176.8015264584,5277547.653193772],[516179.2909125219,5277546.337547164],[516182.66774217144,5277544.55758095],[516181.8463083618,5277542.888200062],[516186.1336385323,5277540.4550415445],[516192.59322483797,5277540.028444707],[516192.738164075,5277541.91822521],[516197.99526838027,5277541.821709526],[516198.05304929445,5277548.045701725],[516189.19036782725,5277548.465609597],[516189.6353867335,5277550.467364341],[516187.00297596614,5277551.904862705],[516185.95563558035,5277550.457132803],[516180.38981170725,5277553.553577168],[516181.28603241045,5277555.334305591],[516178.4283352716,5277556.771181669],[516177.005509148,5277555.322409947],[516175.3453489611,5277558.207433205]]]},"properties":{"id_build":139,"id_source":"w144656348","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.91914051014,5277294.885416626],[515334.0719752846,5277293.885561639],[515334.74992650165,5277293.10936911],[515335.57661478786,5277292.889267026],[515337.0029342142,5277293.115303432],[515337.82786595327,5277293.562035372],[515338.12592473463,5277294.4519383265],[515337.89447576576,5277296.785262782],[515341.62572624045,5277297.261880062],[515348.6302900093,5277298.147230766],[515347.94032590353,5277303.480118711],[515343.4357828842,5277302.912547699],[515343.5123474224,5277302.357050846],[515337.50638574705,5277301.563248529],[515337.2746445256,5277304.007711987],[515336.0733353998,5277303.893407893],[515335.53797448927,5277307.559608663],[515331.40864120517,5277307.104174946],[515331.94458487164,5277303.215695901],[515322.634801513,5277302.190930506],[515323.4048152303,5277294.968875102],[515333.61522726994,5277296.218292903],[515333.91914051014,5277294.885416626]]]},"properties":{"id_build":140,"id_source":"w144656349","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515391.08405732474,5277508.62461128],[515390.93209953106,5277509.291048152],[515389.58063884836,5277509.176335836],[515388.98367806675,5277507.72994095],[515386.4309508378,5277507.500914474],[515385.37606153614,5277508.831803858],[515381.77226358256,5277508.488862157],[515381.4648266518,5277511.155404243],[515382.8872733335,5277512.826258937],[515380.5539682289,5277514.820610078],[515381.15034311934,5277516.489282088],[515378.74722705164,5277516.482933753],[515375.9621666381,5277518.920652497],[515370.794534052,5277513.572298261],[515373.6552792317,5277510.912497395],[515373.92695408844,5277507.567907928],[515374.2760159811,5277503.356632701],[515382.3096915836,5277504.044691547],[515386.0716175645,5277501.387277854],[515387.7184767545,5277503.392146058],[515389.6745383332,5277502.063639163],[515391.4765860378,5277502.179542682],[515391.3199270288,5277504.624203327],[515391.08405732474,5277508.62461128]]]},"properties":{"id_build":141,"id_source":"w144656351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515626.8010959519,5276795.268714641],[515628.30030663934,5276796.361906648],[515633.60959744494,5276788.262962648],[515643.1022921725,5276794.178857164],[515636.0336991033,5276805.740625976],[515630.81520282,5276802.40354023],[515631.81844642316,5276800.794708107],[515631.31618674734,5276800.437712961],[515630.8214376745,5276800.0807380155],[515629.6372821256,5276801.933591994],[515627.4101354732,5276800.616166758],[515624.3171068324,5276805.698063637],[515618.12388734,5276801.735992013],[515615.17425528244,5276806.562657085],[515619.17808832246,5276809.129607033],[515616.38713636214,5276813.601050223],[515607.637524523,5276807.865014088],[515611.9355203942,5276801.563802479],[515613.6151072383,5276802.61301843],[515615.01819918567,5276800.338417572],[515606.4250986299,5276795.047361802],[515612.9102573238,5276785.37336738],[515627.1579746013,5276793.824856742],[515626.8010959519,5276795.268714641]]]},"properties":{"id_build":142,"id_source":"w144656352","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.1796532189,5276993.503053456],[516129.8947147614,5276994.935998986],[516132.42639335664,5277002.833934348],[516130.0209095212,5277003.605248649],[516130.31855473685,5277004.606330872],[516122.5386437748,5277006.985403055],[516121.2346629385,5277003.2474972885],[516120.41528773535,5277000.800154457],[516124.0984637147,5276999.698954849],[516123.2797046764,5276997.029333848],[516119.52080775425,5276998.352603845],[516117.9423915008,5276998.792793521],[516116.3790480963,5276993.787177934],[516116.0062957683,5276992.785888583],[516115.9321144009,5276992.452264044],[516123.0055702474,5276990.24905046],[516126.5310345626,5276989.147415691],[516126.30787651247,5276988.368819465],[516129.0888872299,5276987.598543786],[516129.75959161285,5276989.489777253],[516132.6160143817,5276988.608572415],[516134.1796532189,5276993.503053456]]]},"properties":{"id_build":143,"id_source":"w144656353","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515675.82265402813,5277241.982032933],[515670.344474007,5277240.41133021],[515670.496171485,5277239.856039769],[515667.9445334747,5277239.182334441],[515667.7171371401,5277239.959700735],[515665.2408988358,5277239.175059745],[515665.92278808984,5277236.9540995415],[515662.8463381999,5277235.945565205],[515664.21071412123,5277231.281366474],[515667.2874653036,5277232.178762584],[515667.8939559897,5277230.068739487],[515672.24652796594,5277231.302990721],[515672.09512924997,5277231.747142175],[515677.4982159386,5277233.31764429],[515677.27081810264,5277234.095010205],[515684.2498248841,5277236.114321027],[515683.3399313523,5277239.33492266],[515684.1651437852,5277239.670564734],[515682.8764533753,5277244.112683287],[515681.6009354095,5277243.664688825],[515681.9043323813,5277242.554108521],[515676.2011509211,5277240.87165453],[515675.82265402813,5277241.982032933]]]},"properties":{"id_build":144,"id_source":"w144656358","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515552.4831629832,5277199.940532479],[515551.52518889605,5277201.505043859],[515550.4691975988,5277203.213775265],[515552.4486690658,5277204.419371287],[515549.1900716104,5277209.73426112],[515547.4280390993,5277208.662614468],[515544.41081117117,5277213.5891624475],[515541.4116246919,5277211.75846477],[515542.6336060796,5277209.761211521],[515538.83961801766,5277207.450492786],[515540.8384957868,5277204.199433668],[515541.09345494205,5277204.344595823],[515541.92318967544,5277202.990905906],[515541.51078446966,5277202.745297706],[515543.7737072544,5277199.050385501],[515540.3021151749,5277196.940578057],[515543.71913692745,5277191.359370947],[515546.3434486436,5277192.955675358],[515548.0783521932,5277190.126244892],[515547.06611286884,5277189.512273506],[515549.291345047,5277185.872832704],[515554.9748457146,5277189.333344796],[515551.51257294096,5277194.981108315],[515555.83892374154,5277197.615562716],[515553.88527434465,5277200.800053684],[515552.4831629832,5277199.940532479]]]},"properties":{"id_build":145,"id_source":"w144656359","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515709.3384028716,5277123.041705563],[515706.85312623746,5277125.591214642],[515709.0987030072,5277128.375765758],[515705.78910146526,5277130.256213036],[515706.2340196818,5277132.369067976],[515703.3720378833,5277135.362121343],[515698.56459160463,5277135.682577122],[515691.11808304855,5277139.885814894],[515688.2076611539,5277132.987309447],[515684.6817434354,5277131.532994087],[515686.4955775196,5277127.314570774],[515684.176084599,5277124.085270433],[515686.80946093245,5277122.314128786],[515686.58864471834,5277120.646438033],[515688.1163694406,5277119.483586892],[515690.652564997,5277117.5454755565],[515690.50535480934,5277116.43368163],[515695.316711025,5277114.668413257],[515695.7721198396,5277112.891405271],[515696.22483256506,5277112.1146475645],[515699.8204678433,5277115.569672839],[515701.24951428187,5277114.795548097],[515707.2457273999,5277119.257309318],[515706.7915147543,5277120.589760764],[515709.3384028716,5277123.041705563]]]},"properties":{"id_build":146,"id_source":"w144656366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515660.8806476308,5277157.0310660135],[515652.3199134522,5277156.674627671],[515652.32400649646,5277155.152024415],[515652.3279800338,5277153.673876734],[515647.89725689613,5277153.550828079],[515648.0546293588,5277150.8838975895],[515643.5493991111,5277150.53837257],[515643.6256955988,5277150.094018656],[515643.8671263287,5277144.093122183],[515648.1476523624,5277144.215764086],[515648.3813221247,5277141.10447979],[515655.214728301,5277141.456267746],[515655.2865435301,5277142.678997805],[515652.58376039116,5277142.338312325],[515652.0386257623,5277149.560929035],[515653.76567568025,5277149.67671156],[515653.760297473,5277151.677212172],[515659.46805634594,5277151.69255989],[515659.62902096665,5277147.691962639],[515660.83065524,5277147.695194482],[515660.9964037121,5277141.91637455],[515667.82980824856,5277142.268177316],[515667.196394552,5277154.38070317],[515661.11342694616,5277154.2531989245],[515660.8806476308,5277157.0310660135]]]},"properties":{"id_build":147,"id_source":"w144656367","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515567.8929658564,5277582.335830802],[515568.19097441493,5277583.225746053],[515564.73267172225,5277584.661316554],[515565.8555534387,5277585.997996223],[515565.3286894687,5277586.441146746],[515561.2117509218,5277581.428850409],[515559.6706974791,5277582.013772436],[515558.2800156093,5277582.532412845],[515560.890867761,5277589.09663849],[515561.48748035234,5277590.654190299],[515556.0745983877,5277592.862520319],[515553.5385421018,5277586.409636427],[515553.16276279173,5277586.519772304],[515549.35273044877,5277579.0632289015],[515553.9401538361,5277576.630407656],[515552.29663837864,5277573.402963057],[515555.98439210997,5277570.412041194],[515558.0808622759,5277572.751578931],[515561.541546911,5277570.426892518],[515565.5860707204,5277574.438737222],[515564.98410910304,5277574.881686991],[515565.9529364466,5277577.662772085],[515572.64337070833,5277575.124448966],[515574.4332024872,5277579.797108114],[515567.8929658564,5277582.335830802]]]},"properties":{"id_build":148,"id_source":"w144656370","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515254.6414067373,5277619.294130009],[515262.6822197934,5277617.203549011],[515262.9796903574,5277618.315726602],[515268.390104414,5277616.9962363485],[515269.35644257726,5277620.777523047],[515270.85952924757,5277620.336906444],[515272.6431743197,5277627.454530846],[515267.7590233903,5277628.553117697],[515269.170979884,5277634.224949289],[515273.22878020006,5277633.2353354385],[515271.9655615605,5277628.119591904],[515275.94827066053,5277627.129782955],[515277.65768648434,5277633.913794908],[515273.90056084434,5277634.793054738],[515274.6439377792,5277637.684639285],[515270.0601782191,5277638.784012335],[515269.7632930908,5277637.449556319],[515268.2602109133,5277637.890173209],[515268.5573878445,5277639.113490133],[515263.372281591,5277640.433570887],[515261.06878499116,5277631.091790972],[515265.65254886425,5277629.992410844],[515264.90945787024,5277626.989688486],[515257.0191405928,5277628.9695210075],[515254.6414067373,5277619.294130009]]]},"properties":{"id_build":149,"id_source":"w144656377","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516231.80397698877,5276889.9698481],[516242.2417791439,5276890.665791004],[516242.24146914703,5276890.776929879],[516246.5218609467,5276891.01115009],[516246.4427244802,5276892.455745882],[516248.1172969469,5276892.560443934],[516250.1973767513,5276892.688502024],[516249.96027492796,5276896.911150409],[516250.10955527506,5276897.244986208],[516253.8642043228,5276897.477744718],[516253.55044361,5276902.255877729],[516257.9801063059,5276902.823942285],[516256.9807764936,5276911.045493086],[516252.85154084064,5276910.478267764],[516253.1606474965,5276907.367217781],[516251.65885248914,5276907.251886483],[516250.3876458167,5276905.247823488],[516250.5456102896,5276902.469770825],[516248.4429713799,5276902.352763619],[516248.6766605924,5276899.352642744],[516241.6931018243,5276898.888601177],[516241.84920236265,5276896.777381557],[516236.5933741214,5276896.207025644],[516236.4357260464,5276898.8739397675],[516231.8586357621,5276897.305223043],[516231.8611141526,5276896.416112059],[516231.3353763549,5276896.414646592],[516231.80397698877,5276889.9698481]]]},"properties":{"id_build":150,"id_source":"w144656386","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515554.56964111555,5277312.897419049],[515554.0466131695,5277311.895764079],[515551.86574396386,5277313.001335872],[515552.3884753124,5277314.1141296],[515546.67286334996,5277317.099638215],[515546.1501311826,5277315.986845001],[515541.638199804,5277318.1975943865],[515540.7417468943,5277316.416965626],[515538.4860785819,5277317.41120302],[515535.340777038,5277314.068617454],[515538.8004190649,5277312.188473961],[515537.97847120266,5277310.630323975],[515545.9500547172,5277306.539432528],[515546.47338129755,5277307.429947803],[515551.8135020266,5277304.443436025],[515550.84254361107,5277302.440327245],[515553.62540538533,5277300.891804205],[515551.45878097886,5277296.662706557],[515555.44443717366,5277294.672838188],[515556.93812729785,5277297.788741811],[515558.4416162768,5277297.237060502],[515561.8033028354,5277303.914429143],[515561.19715517526,5277305.9133244855],[515565.2504806841,5277306.702137289],[515563.3551537455,5277313.365455442],[515556.9013048346,5277311.569971686],[515554.56964111555,5277312.897419049]]]},"properties":{"id_build":151,"id_source":"w144656387","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516167.2116405101,5277539.513346544],[516166.6170360095,5277537.2888985295],[516162.8594025278,5277538.278723947],[516161.28112897504,5277538.718901922],[516159.7946109948,5277533.157783548],[516161.07249717397,5277532.716771318],[516160.1805856632,5277529.380100304],[516160.93495157274,5277528.159656026],[516164.0164073156,5277527.279091818],[516164.91572294844,5277527.948427788],[516168.5234775609,5277526.847047598],[516169.7136128665,5277530.962527058],[516170.16376398935,5277531.119373095],[516170.6889505605,5277531.298655546],[516172.34201533283,5277530.969827712],[516171.89575407957,5277529.412630304],[516179.0355505901,5277527.431950079],[516180.002239962,5277530.879971681],[516180.8199693788,5277533.88302009],[516178.0392120289,5277534.65327114],[516177.5132230428,5277534.762949385],[516176.6853013857,5277535.427487942],[516173.7537335322,5277536.419601686],[516173.45149248,5277537.085601104],[516173.1501777204,5277537.418183586],[516172.47306863597,5277537.860862007],[516170.74429130077,5277538.411759188],[516167.2116405101,5277539.513346544]]]},"properties":{"id_build":152,"id_source":"w144656388","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515651.7159197803,5277744.491292458],[515652.3040334242,5277721.264649615],[515686.6952397068,5277722.168538346],[515686.74107585096,5277733.027023282],[515688.0924790203,5277733.141804745],[515688.0089984718,5277736.253495066],[515692.7396556002,5277736.377385044],[515692.8234382654,5277733.1545557575],[515694.1784366829,5277731.935670344],[515696.73614828655,5277730.275468674],[515699.5924416384,5277729.28291232],[515702.59742639674,5277728.846457592],[515703.42346751515,5277728.848685739],[515728.5029777077,5277729.694369358],[515728.171972082,5277741.029738302],[515722.99105256057,5277740.793463578],[515722.4200673815,5277757.57403694],[515688.78052685334,5277756.483024002],[515688.042462482,5277751.702022083],[515684.5884217345,5277751.581575225],[515683.8979008817,5277757.025566746],[515680.4438632196,5277756.905122341],[515680.445659356,5277756.238288167],[515668.35637554235,5277755.872318404],[515661.59848676214,5277755.631854135],[515651.3865583158,5277755.270970555],[515651.7159197803,5277744.491292458]]]},"properties":{"id_build":153,"id_source":"w144656396","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515283.1610959424,5277654.377958975],[515283.31858125527,5277651.599877908],[515286.17192343145,5277651.718509051],[515283.1610959424,5277654.377958975]]]},"properties":{"id_build":154,"id_source":"w144656437","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516288.7234334682,5276918.047091509],[516286.74857284623,5276917.897085946],[516286.67905098264,5276918.585957919],[516284.1560785376,5276918.3788503595],[516283.97007653594,5276920.4344155025],[516274.3283532512,5276919.773964228],[516275.06217317283,5276909.817894094],[516277.5777323127,5276909.991635045],[516277.7027782694,5276908.247090627],[516283.7780159062,5276908.541925723],[516283.76693128824,5276909.82000178],[516286.8008095026,5276909.961854252],[516286.82573460776,5276909.106147936],[516293.0210771149,5276909.423556559],[516293.1221967748,5276908.1790743545],[516295.9684369304,5276908.275950691],[516297.1896042267,5276909.368537772],[516297.07808047754,5276911.646590428],[516296.0176352641,5276912.165979456],[516295.57916268066,5276918.5552878],[516288.7234334682,5276918.047091509]]]},"properties":{"id_build":155,"id_source":"w144656449","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516028.2097197617,5277614.481813237],[516028.7579649299,5277617.195134832],[516023.80637906847,5277618.181762628],[516019.8540925494,5277618.982206594],[516020.04671223677,5277619.938539282],[516016.8909042239,5277620.574467248],[516015.09797708126,5277611.700575431],[516027.1576430682,5277609.288686176],[516028.2097197617,5277614.481813237]]]},"properties":{"id_build":156,"id_source":"w144656464","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515286.17192343145,5277651.718509051],[515288.6497873565,5277651.836155523],[515289.77301101456,5277653.061642958],[515289.76892457996,5277654.617589156],[515290.89535847056,5277654.620547655],[515293.3793521711,5277652.404276846],[515296.898625521,5277656.303415227],[515293.0597008944,5277659.738662715],[515292.3832572754,5277659.959165367],[515291.7833688662,5277659.624170272],[515290.12747260067,5277661.064638152],[515290.50178253814,5277661.51018038],[515290.19935724215,5277662.287364554],[515286.51092323597,5277665.61187183],[515283.0667441336,5277661.712936814],[515285.55102363916,5277659.385523637],[515285.70413281216,5277658.274527836],[515284.12741813896,5277658.159248382],[515283.0041942859,5277656.933762028],[515283.1610959424,5277654.377958975],[515286.17192343145,5277651.718509051]]]},"properties":{"id_build":157,"id_source":"w144656473","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515476.1476164972,5277658.333119553],[515476.22093935875,5277659.000153267],[515472.7656583024,5277659.324388287],[515472.6923350502,5277658.65735462],[515471.7308166991,5277658.765939014],[515470.8143557152,5277658.874643304],[515470.9610026269,5277660.208710589],[515470.4341525955,5277660.651869723],[515469.7577022655,5277660.872351779],[515469.1569381282,5277660.870755425],[515468.4813737733,5277660.757820587],[515468.18128699367,5277660.645883455],[515468.1073726474,5277660.201127874],[515465.7037253273,5277660.417021543],[515465.63099177217,5277659.527709938],[515463.077153208,5277659.743205703],[515464.0294826167,5277668.748058949],[515457.34392502374,5277669.50828267],[515455.5850082217,5277653.166062593],[515464.7493304471,5277652.190141222],[515464.6765966351,5277651.300829643],[515467.90659504064,5277650.975991238],[515467.8341569812,5277649.97554061],[515469.1119644075,5277649.5343765905],[515471.21582438913,5277649.095408025],[515473.39389418665,5277648.990056855],[515475.1955994242,5277649.217125424],[515475.2680362302,5277650.217576149],[515482.40448795306,5277649.347432215],[515483.0652744578,5277655.01731927],[515480.43604211527,5277655.343746715],[515480.72992272273,5277657.7896037465],[515476.1476164972,5277658.333119553]]]},"properties":{"id_build":158,"id_source":"w144656479","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.3798087214,5277720.109215278],[516047.08015691256,5277721.228056728],[516047.38237408164,5277720.562050611],[516080.53619276365,5277734.43487802],[516076.07584214327,5277745.203126536],[516045.9975844525,5277732.561338906],[516043.3527338807,5277738.555602249],[516039.90267244924,5277736.990137297],[516039.22192222404,5277738.7664995445],[516035.99683732545,5277737.312796623],[516036.6769744212,5277735.7587120505],[516033.1515088755,5277734.30418327],[516034.66319631384,5277730.751871144],[516034.0630514645,5277730.527938439],[516034.895827094,5277728.085155166],[516033.4611210419,5277728.225685426],[516016.49274146045,5277729.812732791],[516016.928937774,5277735.037506419],[516020.6848899919,5277734.603281961],[516022.13478228764,5277753.50104924],[516009.06500547816,5277754.687631545],[516007.463048383,5277736.45628874],[516011.894544337,5277736.1350560505],[516011.38538866874,5277730.132103115],[516000.94478999544,5277730.992516042],[515999.6999478663,5277719.430549254],[516035.9051207132,5277716.084830089],[516036.80656472547,5277715.97617337],[516036.8074831926,5277715.642756318],[516044.6084623813,5277718.887306964],[516044.3813402239,5277719.553520185],[516044.3798087214,5277720.109215278]]]},"properties":{"id_build":159,"id_source":"w144656482","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515592.2078632314,5276915.451335704],[515582.075807497,5276912.756862035],[515583.74477732065,5276906.5375063745],[515583.1445301552,5276906.3136206735],[515583.4476279855,5276905.314174712],[515583.9730674129,5276905.426720564],[515584.73155626934,5276902.6502586035],[515585.7821380708,5276902.986489468],[515587.75540365523,5276895.323133714],[515592.48376998736,5276896.558329331],[515594.75984953565,5276888.006669425],[515592.5081728242,5276887.444941329],[515592.7355725118,5276886.667572518],[515590.258876102,5276885.994103083],[515590.9419673042,5276883.328579798],[515590.11610380514,5276883.215229006],[515590.4957973517,5276881.660290138],[515616.464143802,5276888.509394339],[515614.8699413478,5276894.840080808],[515604.6630523624,5276892.0342277065],[515605.04215357086,5276890.701567515],[515596.33587414306,5276888.455449052],[515596.1081763767,5276889.343956598],[515595.04598456976,5276893.34214012],[515598.723768471,5276894.241108275],[515597.3578797232,5276899.461014327],[515600.0598855875,5276900.135090427],[515597.70720914635,5276909.242241661],[515593.05395945086,5276908.007242864],[515593.81304756127,5276905.008504305],[515590.6607091391,5276904.222085682],[515588.9914337471,5276910.552578238],[515593.26945394475,5276911.6754293],[515592.2078632314,5276915.451335704]]]},"properties":{"id_build":160,"id_source":"w144656493","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516247.9897223786,5277522.289267461],[516246.7065547927,5277524.619623329],[516244.37419717957,5277526.169073008],[516242.3456405074,5277526.49683284],[516216.75593892095,5277522.491147223],[516221.55654241017,5277494.875156063],[516244.0753034128,5277498.716697125],[516242.9296146259,5277505.604170952],[516242.2422646323,5277509.714427591],[516230.1571456758,5277507.680207715],[516229.4688755027,5277512.1238828],[516243.20519873925,5277514.496127445],[516245.2309686051,5277515.16861874],[516247.25332631846,5277517.063639535],[516248.22245849477,5277519.62256064],[516247.9897223786,5277522.289267461]]]},"properties":{"id_build":161,"id_source":"w144656494","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515420.9839575108,5277314.542588297],[515425.2785871019,5277314.965181608],[515424.961902949,5277318.276306687],[515414.30787027447,5277317.247833362],[515414.52400547033,5277315.036724889],[515412.37667569745,5277314.830988753],[515412.17591433186,5277316.908770315],[515405.3134842538,5277316.2459985195],[515405.7767584802,5277311.457101882],[515408.9001252602,5277311.765444346],[515409.0004613024,5277310.743224356],[515409.1239450753,5277309.487672199],[515407.26193444495,5277309.304921025],[515407.67876841495,5277305.03825842],[515413.69278631674,5277305.620989028],[515413.5382905279,5277307.243220105],[515417.11217133194,5277307.586101546],[515416.81875716825,5277310.619439296],[515421.32364058425,5277311.053700374],[515420.9839575108,5277314.542588297]]]},"properties":{"id_build":162,"id_source":"w144656502","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515905.4739434209,5277547.683582485],[515912.7498458417,5277550.815379787],[515910.25585285417,5277556.58783429],[515908.4556536792,5277555.804936183],[515906.26387619233,5277560.911379302],[515907.9886735836,5277561.8052105345],[515907.15714271815,5277563.803455281],[515901.2311750935,5277561.34219067],[515902.138104676,5277559.233011218],[515892.2371535151,5277554.871522815],[515892.76647247205,5277553.539289909],[515889.7662359058,5277552.197422735],[515889.16151728283,5277553.640589946],[515878.6603774615,5277549.055207129],[515877.7537579503,5277551.053251196],[515856.9010234225,5277542.105232877],[515861.737514855,5277531.004426482],[515866.1631009099,5277532.905862387],[515866.9943191126,5277531.018750889],[515869.46949740185,5277532.136895346],[515869.6947889685,5277532.137509452],[515874.1203715921,5277534.038951415],[515874.2702628877,5277534.150499926],[515884.2463598204,5277538.5121624125],[515891.67247916036,5277541.64434306],[515891.143766111,5277542.754298066],[515894.2938979001,5277544.207714948],[515895.04972316226,5277542.431541376],[515895.499698625,5277542.655049555],[515894.7441766773,5277544.32008408],[515897.8946102151,5277545.662363928],[515898.34792377,5277544.663343443],[515898.49811782746,5277544.663753591],[515905.4739434209,5277547.683582485]]]},"properties":{"id_build":163,"id_source":"w144656512","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516287.93228224094,5277149.860202771],[516293.7955356759,5277147.987230883],[516295.6746448076,5277147.436790657],[516295.9722540399,5277148.437881659],[516303.9402396403,5277145.903972187],[516313.48662430514,5277142.929936474],[516314.2410718799,5277141.709512615],[516320.9921737129,5277144.618066646],[516320.0105495,5277146.504691626],[516324.79714656295,5277153.631056283],[516314.71602842933,5277159.826629046],[516312.16505112295,5277158.930363561],[516312.3161892348,5277158.59736761],[516308.8655431093,5277157.14288424],[516289.7734567484,5277162.868708632],[516289.5506382623,5277161.978966955],[516286.39386832976,5277162.859254633],[516286.61668726325,5277163.748996193],[516280.45304428705,5277165.621135345],[516279.5592787875,5277162.951281457],[516267.90915904514,5277166.25291395],[516267.5358229853,5277165.473892379],[516264.67977646017,5277166.24389221],[516264.90228811867,5277167.244771853],[516258.738966273,5277169.005795054],[516255.24020477594,5277157.882047774],[516263.95949052146,5277155.2390414085],[516263.66218658234,5277154.126813125],[516273.2836390038,5277151.152921317],[516273.6560433653,5277152.265359987],[516277.2643618143,5277151.052908332],[516277.56259540806,5277151.831720558],[516278.2332323158,5277153.722971769],[516286.3517179542,5277151.078319251],[516286.12827676005,5277150.410855556],[516287.93228224094,5277149.860202771]]]},"properties":{"id_build":164,"id_source":"w144656521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515705.7547289102,5277588.440926021],[515715.88060008624,5277592.969413985],[515720.41411359323,5277582.7123355055],[515710.340945572,5277578.128412116],[515719.9063916702,5277556.593110199],[515766.83028705,5277577.658740361],[515757.5587498353,5277598.761316808],[515766.9866494443,5277603.110181196],[515776.60404972924,5277581.8640749715],[515794.38025198533,5277589.903226518],[515783.42495001934,5277614.335389388],[515792.23264033865,5277614.759377895],[515797.54884318175,5277620.530843854],[515801.7570021332,5277611.217633296],[515810.7346041822,5277615.443092873],[515807.4556067303,5277622.7360750865],[515838.6570897413,5277636.957863981],[515827.27912924514,5277662.133433619],[515804.1779215048,5277651.679100901],[515809.216649427,5277640.7010527225],[515800.46310603,5277636.942990498],[515803.37975589413,5277630.338087557],[515796.1342349734,5277627.095368954],[515783.2900028168,5277655.801291575],[515774.97949981806,5277652.055582676],[515767.284048397,5277648.5782870315],[515777.23435828264,5277626.388393852],[515769.90594146925,5277623.245509195],[515759.4352975672,5277646.245326822],[515742.5063904654,5277638.730928898],[515753.81653220736,5277613.521670637],[515746.3911229423,5277610.134045734],[515735.5562436513,5277634.555510006],[515693.5151634517,5277615.837224672],[515705.7547289102,5277588.440926021]]]},"properties":{"id_build":165,"id_source":"w144656525","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516262.89422053733,5277375.292878489],[516257.0398946462,5277374.053990829],[516258.94375639915,5277364.612422286],[516264.79840187903,5277365.7401728695],[516262.89422053733,5277375.292878489]]]},"properties":{"id_build":166,"id_source":"w144656528","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516039.8650475697,5277429.010427161],[516045.094140762,5277428.213514946],[516045.72139032243,5277432.238504809],[516040.4847601839,5277433.0465096645],[516039.8650475697,5277429.010427161]]]},"properties":{"id_build":167,"id_source":"w144656530","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516205.83041860035,5277424.924405527],[516205.9107762201,5277423.035252151],[516208.4638194388,5277423.1534989225],[516208.38346099324,5277425.042652267],[516205.83041860035,5277424.924405527]]]},"properties":{"id_build":168,"id_source":"w144656534","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.8594025278,5277538.278723947],[516166.6170360095,5277537.2888985295],[516167.2116405101,5277539.513346544],[516163.5291054475,5277540.503380073],[516162.8594025278,5277538.278723947]]]},"properties":{"id_build":169,"id_source":"w144656543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516227.55823645106,5277219.554098709],[516236.948059921,5277218.802297506],[516237.16716500977,5277221.025704397],[516227.7022438918,5277221.777295927],[516227.55823645106,5277219.554098709]]]},"properties":{"id_build":170,"id_source":"w144656550","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516265.5637593341,5277037.991060116],[516264.95951584505,5277039.211909662],[516263.7745248485,5277038.619558995],[516262.4845127639,5277037.982459349],[516263.01396267413,5277036.65026089],[516265.5637593341,5277037.991060116]]]},"properties":{"id_build":171,"id_source":"w144656558","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515696.04617182293,5276844.045210128],[515692.9644273121,5276844.926021717],[515692.5176845239,5276843.48000202],[515695.5997292874,5276842.488051323],[515696.04617182293,5276844.045210128]]]},"properties":{"id_build":172,"id_source":"w144656563","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516245.2418158519,5277234.051583808],[516254.481416276,5277233.299391841],[516254.62541305786,5277235.522589795],[516245.2356141068,5277236.274362451],[516245.2418158519,5277234.051583808]]]},"properties":{"id_build":173,"id_source":"w144656564","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516202.221580835,5277221.284004248],[516200.8694498378,5277221.391381637],[516200.5811051034,5277217.056127522],[516201.85813583666,5277216.948541083],[516202.221580835,5277221.284004248]]]},"properties":{"id_build":174,"id_source":"w144656565","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516158.2751439952,5277052.3627957795],[516154.9924875843,5277044.462764699],[516165.66952486604,5277040.046806854],[516168.8767573024,5277048.057774276],[516163.7338509585,5277050.144037084],[516158.2751439952,5277052.3627957795]]]},"properties":{"id_build":175,"id_source":"w144656566","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516230.3121659417,5277020.999451379],[516230.9027731165,5277024.668709667],[516226.61969163595,5277025.434750716],[516225.9542877595,5277021.654144689],[516230.3121659417,5277020.999451379]]]},"properties":{"id_build":176,"id_source":"w144656571","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515669.08387875365,5277206.510316856],[515672.1788902061,5277200.62824063],[515681.6907340474,5277210.323008058],[515677.09758299397,5277214.7562288],[515669.08387875365,5277206.510316856]]]},"properties":{"id_build":177,"id_source":"w144656575","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516219.08622691775,5277233.222915592],[516216.9079867685,5277233.327988102],[516215.96169723343,5277222.544792619],[516218.2150425907,5277222.439928934],[516219.08622691775,5277233.222915592]]]},"properties":{"id_build":178,"id_source":"w144656576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515675.82265402813,5277241.982032933],[515676.2011509211,5277240.87165453],[515681.9043323813,5277242.554108521],[515681.6009354095,5277243.664688825],[515675.82265402813,5277241.982032933]]]},"properties":{"id_build":179,"id_source":"w144656581","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.54155870253,5277508.975105312],[515394.0146221846,5277507.965520721],[515394.9263717792,5277503.966900048],[515398.52870204416,5277504.865544819],[515397.54155870253,5277508.975105312]]]},"properties":{"id_build":180,"id_source":"w144656582","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.73038965615,5277372.093967354],[515453.70536505006,5277371.088334347],[515454.1586155783,5277370.089279692],[515456.33383896295,5277371.095311585],[515455.73038965615,5277372.093967354]]]},"properties":{"id_build":181,"id_source":"w144656583","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516012.369461545,5277235.784897875],[516014.1010643706,5277234.233703354],[516014.4710672654,5277236.235236968],[516013.58432514523,5277236.432849687],[516012.5172184164,5277236.674422424],[516012.369461545,5277235.784897875]]]},"properties":{"id_build":182,"id_source":"w144656584","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516145.60772419523,5277449.541268563],[516144.10575893853,5277449.537103563],[516144.49758404866,5277443.647779363],[516146.0743409501,5277443.763291696],[516145.60772419523,5277449.541268563]]]},"properties":{"id_build":183,"id_source":"w144656587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.1533859891,5277389.3252927],[516071.6731872376,5277381.430280264],[516074.45308275585,5277380.993395338],[516075.8584856816,5277388.7770621665],[516073.1533859891,5277389.3252927]]]},"properties":{"id_build":184,"id_source":"w144656615","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.0579534657,5277234.617541364],[516200.4039995264,5277226.724796532],[516202.582551088,5277226.508578912],[516203.3112938563,5277234.512671925],[516201.0579534657,5277234.617541364]]]},"properties":{"id_build":185,"id_source":"w144656617","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.1347253229,5277671.750368096],[516111.8102093609,5277667.726288635],[516114.1596132814,5277662.698155534],[516116.1161859826,5277658.513598855],[516124.5158077386,5277662.537892384],[516120.1347253229,5277671.750368096]]]},"properties":{"id_build":186,"id_source":"w144656621","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516188.55985533894,5277262.056535942],[516185.55551908887,5277262.159323327],[516185.48999583506,5277258.713807508],[516188.4192331317,5277258.610811278],[516188.55985533894,5277262.056535942]]]},"properties":{"id_build":187,"id_source":"w144656623","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515707.31512695155,5277232.731166514],[515699.8125141909,5277229.932437947],[515702.7624376164,5277222.160610818],[515710.18965799885,5277225.070279428],[515707.31512695155,5277232.731166514]]]},"properties":{"id_build":188,"id_source":"w144656629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9361213361,5277408.11476621],[516156.32086752437,5277404.781639295],[516166.6078656609,5277405.365893529],[516166.4481013852,5277408.810784322],[516155.9361213361,5277408.11476621]]]},"properties":{"id_build":189,"id_source":"w144656630","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516270.69036727457,5277031.003577895],[516273.85372899106,5277027.789364911],[516274.6035235473,5277028.2360195555],[516272.715370906,5277032.009494548],[516270.69036727457,5277031.003577895]]]},"properties":{"id_build":190,"id_source":"w144656635","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.34611828224,5277260.13613106],[516136.29440039303,5277260.244356027],[516136.2229957934,5277258.9104806455],[516137.3495066162,5277258.913602749],[516137.347658433,5277259.580436371],[516137.34611828224,5277260.13613106]]]},"properties":{"id_build":191,"id_source":"w144656668","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515668.35637554235,5277755.872318404],[515680.445659356,5277756.238288167],[515680.4438632196,5277756.905122341],[515668.27948650264,5277756.538950462],[515668.35637554235,5277755.872318404]]]},"properties":{"id_build":192,"id_source":"w144656672","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516273.80861436826,5276802.064418937],[516270.8903249574,5276798.166373856],[516275.55625707057,5276794.845221147],[516278.47423437383,5276798.854407403],[516273.80861436826,5276802.064418937]]]},"properties":{"id_build":193,"id_source":"w144656673","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515618.7087602603,5277451.660407042],[515613.8503536864,5277448.6799436],[515609.4117774775,5277445.967345288],[515613.4852662354,5277439.1987418085],[515622.9318560856,5277445.114490976],[515618.7087602603,5277451.660407042]]]},"properties":{"id_build":194,"id_source":"w144656674","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.90756106406,5276917.560347263],[516168.91893925157,5276913.856648932],[516174.3681700469,5276912.393623892],[516175.35675777984,5276916.108437033],[516169.90756106406,5276917.560347263]]]},"properties":{"id_build":195,"id_source":"w144656683","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516152.56653700303,5277215.055581303],[516150.92166466155,5277215.106588299],[516148.96136694873,5277215.156720909],[516148.964449425,5277214.045331614],[516152.5696201661,5277213.94419201],[516152.56653700303,5277215.055581303]]]},"properties":{"id_build":196,"id_source":"w144656689","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516171.73739171476,5277289.016758203],[516171.7021567149,5277288.183111839],[516171.666613014,5277287.460604421],[516175.3468391322,5277287.359687601],[516175.34251651354,5277288.915632791],[516171.73739171476,5277289.016758203]]]},"properties":{"id_build":197,"id_source":"w144656691","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.0922110434,5277160.964582702],[515678.60143281147,5277158.301292876],[515681.30091459793,5277159.8645186275],[515679.7916919888,5277162.52780776],[515677.0922110434,5277160.964582702]]]},"properties":{"id_build":198,"id_source":"w144656694","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516242.9639708947,5277466.371902897],[516243.1163374771,5277465.594349124],[516245.06795668264,5277465.933213834],[516244.99068789167,5277466.7109771],[516242.9639708947,5277466.371902897]]]},"properties":{"id_build":199,"id_source":"w144656696","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516245.21105702827,5277218.158507204],[516253.24875224684,5277217.514099691],[516253.39306017815,5277219.626158632],[516245.4301589913,5277220.381914404],[516245.21105702827,5277218.158507204]]]},"properties":{"id_build":200,"id_source":"w144656699","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516192.2792790067,5277463.896781837],[516194.834468582,5277463.237049875],[516195.72637068876,5277466.573725869],[516193.24628050835,5277467.233666315],[516192.2792790067,5277463.896781837]]]},"properties":{"id_build":201,"id_source":"w144656701","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515752.72014009353,5277716.200788726],[515750.6913774061,5277716.639858771],[515750.1729301626,5277713.9711000845],[515752.20139301574,5277713.64316888],[515752.72014009353,5277716.200788726]]]},"properties":{"id_build":202,"id_source":"w144656702","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516055.3983923528,5277291.806701792],[516054.95453271613,5277289.360402503],[516058.41098688316,5277288.703095809],[516058.85484512144,5277291.149395361],[516055.3983923528,5277291.806701792]]]},"properties":{"id_build":203,"id_source":"w144656709","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516200.34935927804,5277478.478550172],[516199.4577709302,5277475.030734424],[516201.5620595149,5277474.480890671],[516202.52905389847,5277477.817776764],[516200.34935927804,5277478.478550172]]]},"properties":{"id_build":204,"id_source":"w144656710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.0392120289,5277534.65327114],[516180.8199693788,5277533.88302009],[516181.48935706494,5277536.218817265],[516178.9320390405,5277537.656527983],[516178.0392120289,5277534.65327114]]]},"properties":{"id_build":205,"id_source":"w144656715","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516080.2476007529,5276968.791986335],[516073.5583950943,5276970.551753559],[516072.740835792,5276967.437584296],[516079.43004476844,5276965.677816137],[516080.2476007529,5276968.791986335]]]},"properties":{"id_build":206,"id_source":"w144656716","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516198.07543629454,5277459.0227523185],[516200.0295342217,5277458.472490146],[516200.8472637877,5277461.475541027],[516198.81837790867,5277461.914455007],[516198.07543629454,5277459.0227523185]]]},"properties":{"id_build":207,"id_source":"w144656717","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515450.97195147746,5277750.178866365],[515457.0675789984,5277745.304896238],[515458.5644505246,5277747.198247654],[515452.46852871065,5277752.183355256],[515450.97195147746,5277750.178866365]]]},"properties":{"id_build":208,"id_source":"w144656721","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516122.16542945703,5276965.462562196],[516111.8684242388,5276968.212555264],[516109.26467246335,5276959.203032738],[516113.9170602047,5276957.982254326],[516119.7119015696,5276956.453450891],[516122.16542945703,5276965.462562196]]]},"properties":{"id_build":209,"id_source":"w144656725","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.42212171823,5277056.419905494],[516211.35962335014,5277057.400496291],[516210.7686979398,5277053.842378719],[516218.1316140433,5277052.862623926],[516218.42212171823,5277056.419905494]]]},"properties":{"id_build":210,"id_source":"w144656727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.8139863442,5277369.083275847],[515495.38515551906,5277371.310252163],[515492.819657478,5277373.037204971],[515489.29117620137,5277375.4062074805],[515487.6449065924,5277373.179033028],[515493.8139863442,5277369.083275847]]]},"properties":{"id_build":211,"id_source":"w144656728","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515421.55584393104,5277713.869290363],[515410.2548447406,5277727.7318401765],[515401.26347993646,5277720.15053954],[515412.1884091032,5277706.5092564495],[515421.55584393104,5277713.869290363]]]},"properties":{"id_build":212,"id_source":"w144656729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516060.14811985055,5277203.463674867],[516060.1508788112,5277202.463424512],[516063.0053470196,5277202.249019059],[516063.0779956124,5277203.138337671],[516061.28251939773,5277203.33343623],[516060.14811985055,5277203.463674867]]]},"properties":{"id_build":213,"id_source":"w144656731","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516206.9540631841,5277641.761372643],[516206.796136775,5277644.539429627],[516205.6700099057,5277644.425154909],[516205.9030315669,5277641.647306936],[516206.9540631841,5277641.761372643]]]},"properties":{"id_build":214,"id_source":"w144656745","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516198.0961671327,5277375.990246944],[516197.85374354897,5277379.4460208295],[516196.0742024167,5277379.329930468],[516196.1615108039,5277377.640848109],[516196.2790444238,5277375.885165948],[516198.0961671327,5277375.990246944]]]},"properties":{"id_build":215,"id_source":"w144656750","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516115.02794932824,5277074.915455718],[516112.56984478486,5277067.573429348],[516120.8398110334,5277064.484406346],[516123.5986267878,5277071.716129139],[516119.8921962164,5277073.095113974],[516115.02794932824,5277074.915455718]]]},"properties":{"id_build":216,"id_source":"w144656755","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515420.6217981646,5277272.641951087],[515426.3217819973,5277275.546683132],[515424.5859324348,5277278.7651363835],[515418.81114474114,5277275.7490681885],[515420.6217981646,5277272.641951087]]]},"properties":{"id_build":217,"id_source":"w144656756","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516184.16210360033,5277115.006377013],[516183.86972478736,5277112.1159303365],[516185.0716755736,5277112.00813144],[516185.2179265107,5277113.431127026],[516185.36405379814,5277114.898578179],[516184.16210360033,5277115.006377013]]]},"properties":{"id_build":218,"id_source":"w144656757","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515654.06666222855,5277065.65589352],[515658.3466480199,5277066.000820594],[515657.4041681019,5277081.335566581],[515653.0455053021,5277082.324105205],[515654.06666222855,5277065.65589352]]]},"properties":{"id_build":219,"id_source":"w144656759","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515606.0010994042,5277205.451778047],[515607.9653545673,5277201.122593612],[515610.89073546015,5277202.464112923],[515608.85137718293,5277206.793095051],[515606.0010994042,5277205.451778047]]]},"properties":{"id_build":220,"id_source":"w144656761","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515724.6652056351,5277204.326223015],[515726.55564886157,5277199.552319853],[515729.63180691627,5277200.672026708],[515727.6659599146,5277205.55686495],[515724.6652056351,5277204.326223015]]]},"properties":{"id_build":221,"id_source":"w144656766","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516154.03330959525,5277308.972775783],[516154.1016258591,5277311.418040961],[516150.57161546877,5277311.519387816],[516150.5029894372,5277309.185261626],[516152.4258904713,5277309.068342061],[516154.03330959525,5277308.972775783]]]},"properties":{"id_build":222,"id_source":"w144656768","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.4739445069,5277160.16337086],[516159.7024049836,5277160.505749337],[516159.23359514034,5277167.061695064],[516155.9300363666,5277166.719108451],[516156.4739445069,5277160.16337086]]]},"properties":{"id_build":223,"id_source":"w144656771","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515410.2548447406,5277727.7318401765],[515421.55584393104,5277713.869290363],[515424.4032638055,5277716.2107698135],[515418.2029460424,5277723.751851971],[515413.1025565631,5277729.962175126],[515410.2548447406,5277727.7318401765]]]},"properties":{"id_build":224,"id_source":"w144656772","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.8026481104,5277493.194674936],[516178.43595841335,5277499.9787434535],[516177.00817732915,5277500.3081955565],[516176.33998791483,5277497.538957024],[516175.374865461,5277493.524127441],[516176.8026481104,5277493.194674936]]]},"properties":{"id_build":225,"id_source":"w144656781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516190.5417107792,5276900.413251257],[516180.2436314287,5276903.496540096],[516178.3854517855,5276896.489574071],[516188.4579172133,5276893.516794438],[516189.34351463977,5276896.453345428],[516190.5417107792,5276900.413251257]]]},"properties":{"id_build":226,"id_source":"w144656784","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516143.09355324064,5277029.092478339],[516140.01183764497,5277029.973053526],[516139.3408333073,5277028.192957636],[516142.2732666249,5277026.978548995],[516143.09355324064,5277029.092478339]]]},"properties":{"id_build":227,"id_source":"w144656785","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515388.85539747885,5277755.1267650705],[515391.86592790904,5277752.578508425],[515397.93063707656,5277759.374074712],[515396.3500425687,5277760.736913904],[515394.84471935075,5277762.03326869],[515388.85539747885,5277755.1267650705]]]},"properties":{"id_build":228,"id_source":"w144656790","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516229.0100771546,5277237.562791944],[516228.79096962366,5277235.339385309],[516235.6267127137,5277234.80274335],[516235.77071665035,5277237.025940829],[516229.0100771546,5277237.562791944]]]},"properties":{"id_build":229,"id_source":"w144656792","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.9210161022,5277008.025637972],[516122.725049703,5277007.474934059],[516124.3647188268,5277012.036203874],[516122.41017095867,5277012.697630278],[516120.9210161022,5277008.025637972]]]},"properties":{"id_build":230,"id_source":"w144656795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516278.3875563938,5277394.007666649],[516278.99549544073,5277391.45315038],[516281.3213894004,5277392.237632896],[516280.6386612165,5277394.680799966],[516278.3875563938,5277394.007666649]]]},"properties":{"id_build":231,"id_source":"w144656801","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515536.7157228817,5277727.512268161],[515536.49281174457,5277726.622554728],[515538.89702781854,5277726.18441227],[515539.0448439425,5277727.073925354],[515537.8802833684,5277727.29309664],[515536.7157228817,5277727.512268161]]]},"properties":{"id_build":232,"id_source":"w144656803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516027.03892089875,5277335.962205159],[516027.9281855627,5277340.299105084],[516017.1828180758,5277342.492330433],[516016.2938514905,5277338.044293198],[516027.03892089875,5277335.962205159]]]},"properties":{"id_build":233,"id_source":"w144656807","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516079.9838131099,5277281.8719676435],[516079.0210120282,5277276.9791579945],[516082.96596723807,5277276.200961122],[516083.86111334787,5277281.115812503],[516079.9838131099,5277281.8719676435]]]},"properties":{"id_build":234,"id_source":"w144656808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515975.6390140786,5277525.269856193],[515970.6795447856,5277526.367647569],[515970.3132044765,5277523.032447991],[515975.04738456296,5277521.934038116],[515975.6390140786,5277525.269856193]]]},"properties":{"id_build":235,"id_source":"w144656810","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515409.718441617,5277476.443371884],[515415.604527458,5277477.059108801],[515422.857040184,5277477.811838961],[515422.01006135845,5277485.700518481],[515408.9462840622,5277484.443390998],[515409.718441617,5277476.443371884]]]},"properties":{"id_build":236,"id_source":"w144656815","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.1062026985,5277317.016680703],[516173.3170494638,5277315.13899942],[516174.883960576,5277318.810965766],[516170.59801601997,5277320.688437339],[516169.1062026985,5277317.016680703]]]},"properties":{"id_build":237,"id_source":"w144656818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516267.90915904514,5277166.25291395],[516264.90228811867,5277167.244771853],[516264.67977646017,5277166.24389221],[516267.5358229853,5277165.473892379],[516267.90915904514,5277166.25291395]]]},"properties":{"id_build":238,"id_source":"w144656822","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515264.771619884,5277679.558442187],[515258.3841525328,5277681.208794095],[515256.7489501323,5277674.758401167],[515263.13642407325,5277673.108047467],[515264.771619884,5277679.558442187]]]},"properties":{"id_build":239,"id_source":"w144656824","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.32569932606,5277450.038484958],[516081.2025772328,5277438.804736106],[516088.4926500459,5277436.824359802],[516089.84534360515,5277441.92941556],[516091.4655626259,5277448.057697434],[516084.32569932606,5277450.038484958]]]},"properties":{"id_build":240,"id_source":"w144656833","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516153.1521906211,5277166.377982125],[516153.69547899725,5277160.044522125],[516156.4739445069,5277160.16337086],[516155.9300363666,5277166.719108451],[516153.1521906211,5277166.377982125]]]},"properties":{"id_build":241,"id_source":"w144656836","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516158.4002941879,5277548.491211817],[516159.60801564367,5277546.2717670305],[516163.3659519705,5277545.1708005285],[516160.79969569447,5277549.831549852],[516158.4002941879,5277548.491211817]]]},"properties":{"id_build":242,"id_source":"w144656837","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515211.373538131,5277710.204393273],[515207.6135686033,5277712.195086109],[515206.56746622466,5277710.191837404],[515210.3274366807,5277708.201143899],[515211.373538131,5277710.204393273]]]},"properties":{"id_build":243,"id_source":"w144656844","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516018.51823432016,5277261.097224239],[516018.72570320225,5277262.1202810025],[516019.16277342994,5277264.310937165],[516017.7198625913,5277264.662614785],[516017.09809752007,5277261.3600528445],[516018.51823432016,5277261.097224239]]]},"properties":{"id_build":244,"id_source":"w144656846","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515334.8984151101,5277211.066423092],[515340.69474327174,5277211.648504385],[515340.4325469638,5277214.248482745],[515334.6361920967,5277213.677515597],[515334.8984151101,5277211.066423092]]]},"properties":{"id_build":245,"id_source":"w144656848","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515340.69474327174,5277211.648504385],[515334.8984151101,5277211.066423092],[515335.4658278063,5277203.788266746],[515341.2775348417,5277204.237021434],[515340.69474327174,5277211.648504385]]]},"properties":{"id_build":246,"id_source":"w144656850","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516080.79214503214,5276934.78473223],[516073.45638471626,5276936.764993649],[516066.9624170493,5276938.525307456],[516064.88125088613,5276930.628644822],[516078.63589121884,5276926.88785728],[516080.79214503214,5276934.78473223]]]},"properties":{"id_build":247,"id_source":"w144656855","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515377.4667514132,5277347.324852382],[515374.990813858,5277346.429195726],[515375.6711124834,5277344.763896226],[515378.07165751804,5277345.770493768],[515377.4667514132,5277347.324852382]]]},"properties":{"id_build":248,"id_source":"w144656858","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515358.2451798635,5277602.006436774],[515354.7048094554,5277606.109269943],[515352.3072988757,5277603.991291347],[515355.92276516516,5277599.888654811],[515358.2451798635,5277602.006436774]]]},"properties":{"id_build":249,"id_source":"w144656859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516289.7734567484,5277162.868708632],[516286.61668726325,5277163.748996193],[516286.39386832976,5277162.859254633],[516289.5506382623,5277161.978966955],[516289.7734567484,5277162.868708632]]]},"properties":{"id_build":250,"id_source":"w144656867","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515873.0424989721,5277700.756869482],[515872.38633978384,5277693.530990695],[515878.8466409956,5277692.7706290325],[515879.35169276665,5277700.329515943],[515873.0424989721,5277700.756869482]]]},"properties":{"id_build":251,"id_source":"w144656869","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516119.57489226875,5277195.848108742],[516119.1022699037,5277190.234241546],[516118.6296465832,5277184.620374436],[516126.51686197636,5277184.08651506],[516127.3869910128,5277195.314042651],[516119.57489226875,5277195.848108742]]]},"properties":{"id_build":252,"id_source":"w144656870","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515635.9798770052,5277228.538131948],[515635.7560659738,5277227.9818322295],[515640.94252054597,5277226.328666191],[515641.166331147,5277226.884966107],[515635.9798770052,5277228.538131948]]]},"properties":{"id_build":253,"id_source":"w144656873","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.5280390105,5277486.706177973],[516195.7411812089,5277488.246034894],[516194.76055632636,5277484.408982708],[516200.4946327024,5277482.94677582],[516201.5280390105,5277486.706177973]]]},"properties":{"id_build":254,"id_source":"w144656877","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515703.83087862644,5276909.527471614],[515702.0268550217,5276910.078305198],[515701.73033005575,5276908.632689671],[515703.4589491285,5276908.192792335],[515703.83087862644,5276909.527471614]]]},"properties":{"id_build":255,"id_source":"w144656880","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515326.47272325045,5277518.901299633],[515330.0914427449,5277513.576118645],[515331.06595313427,5277514.245523308],[515327.3721358226,5277519.5705059925],[515326.47272325045,5277518.901299633]]]},"properties":{"id_build":256,"id_source":"w144656886","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515415.3844257619,5277693.481019908],[515418.6047396258,5277693.967449148],[515418.299355393,5277695.8560169395],[515415.0717390412,5277695.291770668],[515415.3844257619,5277693.481019908]]]},"properties":{"id_build":257,"id_source":"w144656889","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515628.6153281381,5277062.36447394],[515627.95669966633,5277055.916603156],[515654.3257352266,5277053.097802781],[515655.0597369426,5277059.4347396],[515628.6153281381,5277062.36447394]]]},"properties":{"id_build":258,"id_source":"w144656891","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515249.057203749,5277686.96362463],[515252.5948300221,5277683.860978131],[515256.1138201469,5277687.871231049],[515252.57619440934,5277690.973875428],[515249.057203749,5277686.96362463]]]},"properties":{"id_build":259,"id_source":"w144656892","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515240.2672219499,5277631.037299222],[515242.824847244,5277629.376898583],[515244.02201672527,5277631.04712978],[515241.38871401723,5277632.929611316],[515240.2672219499,5277631.037299222]]]},"properties":{"id_build":260,"id_source":"w144656896","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.0420315912,5277045.629822663],[516171.9099098308,5277037.619060442],[516183.940073611,5277032.762335213],[516187.0712546447,5277041.106520573],[516180.5529222829,5277043.555706339],[516175.0420315912,5277045.629822663]]]},"properties":{"id_build":261,"id_source":"w144656902","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.53789942345,5277290.211744121],[516081.0201781151,5277287.320679627],[516084.4015361494,5277286.663180934],[516084.9189488103,5277289.665384672],[516081.53789942345,5277290.211744121]]]},"properties":{"id_build":262,"id_source":"w144656906","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.89142670005,5277504.371655525],[516040.2437950441,5277504.153101644],[516040.91109906643,5277507.266855284],[516039.48332772,5277507.596341097],[516038.89142670005,5277504.371655525]]]},"properties":{"id_build":263,"id_source":"w144656908","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516126.1582607928,5277286.445264595],[516126.0862386048,5277285.333667167],[516128.11394887563,5277285.339283604],[516128.1111781663,5277286.339534082],[516127.0220381361,5277286.40320113],[516126.1582607928,5277286.445264595]]]},"properties":{"id_build":264,"id_source":"w144656910","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515507.7762362284,5277371.45438292],[515504.77996129077,5277368.556769463],[515509.5999344231,5277363.457178659],[515512.6716050524,5277366.243855704],[515507.7762362284,5277371.45438292]]]},"properties":{"id_build":265,"id_source":"w144656913","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.4220629415,5277211.723757573],[516199.2435058973,5277211.939975632],[516198.5898559019,5277203.936092368],[516200.76810667804,5277203.831012989],[516201.4220629415,5277211.723757573]]]},"properties":{"id_build":266,"id_source":"w144656915","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515679.0248110042,5277168.416148415],[515675.50824788556,5277166.2839112645],[515677.613136913,5277162.744220973],[515681.06243892707,5277164.754024528],[515679.0248110042,5277168.416148415]]]},"properties":{"id_build":267,"id_source":"w144656919","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516029.78717286524,5277608.873594352],[516031.25491963245,5277615.834990004],[516031.60331127886,5277617.491933038],[516031.8925134156,5277618.826407556],[516029.2629267525,5277619.263726226],[516028.7579649299,5277617.195134832],[516028.2097197617,5277614.481813237],[516027.1576430682,5277609.288686176],[516029.78717286524,5277608.873594352]]]},"properties":{"id_build":268,"id_source":"w144656921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.6231701449,5277241.465414279],[516137.6284067186,5277239.5760524],[516138.4545173987,5277239.578342115],[516138.4893878465,5277240.5453549195],[516138.52468955383,5277241.356773221],[516137.6231701449,5277241.465414279]]]},"properties":{"id_build":269,"id_source":"w144656926","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515651.3865583158,5277755.270970555],[515661.59848676214,5277755.631854135],[515661.52159849455,5277756.298486281],[515651.3844667065,5277756.048943755],[515651.3865583158,5277755.270970555]]]},"properties":{"id_build":270,"id_source":"w144656927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515591.37307701947,5276918.6721511865],[515581.3164290339,5276915.866741029],[515582.075807497,5276912.756862035],[515592.2078632314,5276915.451335704],[515591.37307701947,5276918.6721511865]]]},"properties":{"id_build":271,"id_source":"w144656938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.4396625941,5277202.757671189],[516216.6182236637,5277202.541458809],[516217.2718490575,5277210.545344134],[516215.01849911816,5277210.650208191],[516214.4396625941,5277202.757671189]]]},"properties":{"id_build":272,"id_source":"w144656942","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515717.2706770301,5276952.797072691],[515725.2924476429,5276949.817958499],[515725.8890531379,5276951.386639428],[515717.9126771475,5276954.243621663],[515717.2706770301,5276952.797072691]]]},"properties":{"id_build":273,"id_source":"w144656943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515983.29154900875,5277569.0132679045],[515980.1783648021,5277554.111984753],[515987.91822974005,5277552.354997333],[515989.91422285483,5277561.140525507],[515991.3314768188,5277567.368248702],[515983.29154900875,5277569.0132679045]]]},"properties":{"id_build":274,"id_source":"w144656944","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.26492978295,5277216.010020634],[515397.6166295872,5277225.013267567],[515388.2873647149,5277225.633214128],[515383.1194674257,5277225.975205271],[515382.61754279776,5277216.971562419],[515397.26492978295,5277216.010020634]]]},"properties":{"id_build":275,"id_source":"w144656949","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515345.0001949744,5277327.678601569],[515344.6930588767,5277330.234005865],[515343.4917553043,5277330.119700224],[515343.7234981804,5277327.67523691],[515345.0001949744,5277327.678601569]]]},"properties":{"id_build":276,"id_source":"w144656950","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515216.8103350177,5277325.230507308],[515212.64510746114,5277309.771202513],[515224.3697223375,5277306.356517298],[515226.69194700744,5277314.353535431],[515228.76109304396,5277321.483002875],[515216.8103350177,5277325.230507308]]]},"properties":{"id_build":277,"id_source":"w144656951","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sustenance","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516086.14205041673,5277010.0411100555],[516083.7614413669,5277001.810193082],[516087.3170555945,5277000.664162003],[516093.00753108464,5276998.834966499],[516095.61374744656,5277006.955371151],[516086.14205041673,5277010.0411100555]]]},"properties":{"id_build":278,"id_source":"w144656978","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516085.40056052845,5276925.01716448],[516096.8248196143,5276922.047961001],[516098.902873031,5276931.056023843],[516093.7091586118,5276932.47536966],[516087.6285332721,5276934.136777116],[516085.40056052845,5276925.01716448]]]},"properties":{"id_build":279,"id_source":"w144656991","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515702.0268550217,5276910.078305198],[515701.349409775,5276910.632176937],[515700.1459286503,5276911.295770124],[515698.9424478006,5276911.95936356],[515698.04058637196,5276912.179211601],[515697.66925493436,5276910.62225493],[515696.69228815037,5276910.841900713],[515692.2580864517,5276911.94134644],[515693.0749584345,5276915.38887817],[515697.50915767037,5276914.289433063],[515698.1788121405,5276916.625171787],[515696.9765309793,5276916.844210107],[515697.79399867874,5276920.069464769],[515699.8233340462,5276919.519237352],[515700.86401724967,5276923.523072128],[515693.5764326702,5276924.392544492],[515689.51956361765,5276924.826171091],[515687.73650523246,5276917.59728734],[515689.61533080396,5276917.157790573],[515689.22146590124,5276915.600773726],[515688.7978581596,5276913.932537084],[515684.8896956971,5276914.922266028],[515683.92350645305,5276911.140914236],[515683.6230856792,5276911.140105087],[515683.10213854734,5276909.360467031],[515683.4043554061,5276908.69444287],[515682.9579145836,5276907.137284876],[515683.7164504838,5276904.360835692],[515686.4974416249,5276903.590348782],[515686.86877650884,5276905.147304716],[515691.22757756745,5276904.158791383],[515690.93134908564,5276902.602037551],[515694.76441553136,5276901.612110232],[515695.13574833795,5276903.169066691],[515698.36737342674,5276902.399800066],[515697.69861616485,5276899.73064474],[515700.40420638944,5276899.071100884],[515704.61610070505,5276896.859664905],[515707.5885377351,5276908.648489063],[515703.83087862644,5276909.527471614],[515703.4589491285,5276908.192792335],[515701.73033005575,5276908.632689671],[515702.0268550217,5276910.078305198]]]},"properties":{"id_build":280,"id_source":"w144656992","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.699084173,5277598.649586543],[516203.551262005,5277596.229013786],[516203.8480973142,5277594.807249794],[516203.18774398684,5277594.627588104],[516203.4558089512,5277592.750070615],[516204.12398146384,5277592.818614241],[516204.3688991925,5277591.163312079],[516203.78361097525,5277590.994973247],[516204.036316729,5277589.239666884],[516204.6966706438,5277589.419328669],[516204.8587041242,5277587.863821705],[516207.6965775715,5277588.149571145],[516208.7668960116,5277581.339677839],[516211.4467911512,5277581.725015128],[516212.01735018933,5277579.092589374],[516210.83144293685,5277578.867007411],[516211.37320121145,5277575.789941993],[516212.4167659108,5277575.892873835],[516212.9275271574,5277573.160255796],[516216.8251812537,5277570.425957035],[516226.11837440165,5277571.807756881],[516225.39330957155,5277575.9845946375],[516226.8873298916,5277576.133240444],[516226.6424051558,5277577.788541633],[516227.24302315526,5277577.845785632],[516226.946181296,5277579.267548406],[516226.3377440205,5277579.321422501],[516226.17573555297,5277580.865814958],[516226.7763532389,5277580.92305891],[516226.45636315225,5277582.567036911],[516225.9461402705,5277582.410019055],[516225.73218391265,5277583.731987038],[516227.6535089845,5277584.148559639],[516227.02634873264,5277588.225644301],[516226.53687199875,5277591.402879947],[516229.72695235605,5277591.956357481],[516228.9922399852,5277596.900033059],[516230.6285661239,5277597.182444382],[516229.56821307994,5277603.103242854],[516221.48412119836,5277601.724806008],[516222.45407188125,5277595.903780086],[516219.2639620566,5277595.36142043],[516218.699084173,5277598.649586543]]]},"properties":{"id_build":281,"id_source":"w144656996","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515599.13911336544,5277187.762173167],[515601.2428521915,5277187.4343904555],[515603.4199059017,5277187.7736433325],[515605.37105876487,5277188.334571031],[515609.04656886705,5277190.011519047],[515609.49956202,5277189.123615611],[515609.801756168,5277188.457587389],[515613.62627600826,5277190.579496705],[515613.02188712044,5277191.911552777],[515616.7721962397,5277193.699846003],[515612.9229444016,5277200.802465889],[515611.9478174612,5277200.355292281],[515610.89073546015,5277202.464112923],[515607.9653545673,5277201.122593612],[515606.0010994042,5277205.451778047],[515604.201048699,5277204.557835849],[515604.80543427286,5277203.225778843],[515603.455693478,5277202.444183488],[515605.79634882766,5277197.782587856],[515605.07623828854,5277197.4583526235],[515604.29610603687,5277197.111728673],[515603.0143174581,5277198.997669058],[515601.7393791256,5277198.327414294],[515601.211584179,5277199.103978179],[515596.48644282453,5277196.75738502],[515597.1659289502,5277195.425528411],[515597.8412472183,5277195.649616916],[515598.74693162873,5277193.984947264],[515593.57236625947,5277191.192593606],[515596.131773806,5277188.976654041],[515599.13911336544,5277187.762173167]]]},"properties":{"id_build":282,"id_source":"w144657001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515746.43986055435,5277000.632609263],[515746.4582743069,5277002.155273064],[515749.4671800388,5277003.185895923],[515751.67094437784,5277002.0026620645],[515758.25233387324,5277003.954300183],[515757.09205486666,5277008.085557518],[515756.0638525606,5277007.816039931],[515755.2066677793,5277010.958974372],[515755.8220386712,5277011.138462976],[515754.5869596307,5277015.158378731],[515748.4255321196,5277013.441273859],[515747.5144345591,5277011.5272067785],[515746.0553752248,5277012.279011091],[515745.10020346957,5277012.776556925],[515745.7345894159,5277014.256430491],[515739.8682864277,5277017.2746844115],[515739.2479888331,5277016.139382667],[515738.9311708494,5277016.649768986],[515736.607156988,5277015.087531826],[515734.87256053515,5277017.750197304],[515733.7481053548,5277016.969180883],[515731.03325814754,5277021.074015131],[515728.6344403663,5277019.400439346],[515734.7121626036,5277010.403429061],[515733.1275869896,5277007.576198813],[515739.4460221784,5277004.003461682],[515741.20970425516,5277004.475015995],[515743.05260660785,5277003.424171018],[515743.1984893305,5277002.246484525],[515746.43986055435,5277000.632609263]]]},"properties":{"id_build":283,"id_source":"w144657008","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515526.61548757093,5277234.691571468],[515527.0681683187,5277233.914800531],[515528.1946837094,5277233.917804766],[515529.3209026787,5277234.0319481585],[515529.76943381276,5277234.811122571],[515529.9175608069,5277235.589495764],[515529.53968437563,5277236.477605728],[515530.3646095295,5277236.924364918],[515528.2528898228,5277240.252924579],[515529.30222808843,5277241.033701321],[515526.88832863804,5277245.028293928],[515525.6887889894,5277244.247117103],[515523.9546530818,5277246.798707066],[515522.08009443537,5277245.682312082],[515521.52177038067,5277246.647739329],[515520.7974543655,5277247.901687449],[515522.67171624163,5277249.129220968],[515521.2385788222,5277251.459334755],[515520.18894512486,5277250.789698396],[515518.60531133076,5277253.230551403],[515515.0812017091,5277251.109504756],[515514.25183536997,5277252.3298318405],[515512.5978414033,5277252.992263302],[515511.096714037,5277252.65484489],[515509.8983580761,5277251.429115541],[515510.0521123448,5277250.095848353],[515510.73098038044,5277248.986259479],[515511.5573856083,5277248.877321309],[515512.15996884386,5277248.212088297],[515511.1857304468,5277247.43151471],[515511.78920205333,5277246.43286484],[515510.5145598111,5277245.651491063],[515511.79749252764,5277243.320974505],[515510.7487444801,5277242.317923037],[515510.676604231,5277241.206333573],[515510.90545987873,5277239.873266494],[515511.5077478787,5277239.319172361],[515512.5600495702,5277238.98855668],[515516.61461288226,5277239.332779668],[515517.2934834113,5277238.223191575],[515516.47211157077,5277236.442766968],[515517.15305573377,5277234.555206291],[515518.4312541031,5277234.0029142415],[515519.556584531,5277234.450472558],[515522.27148012305,5277230.234399948],[515526.39522274403,5277232.8016087115],[515525.64095247147,5277234.022134418],[515526.61548757093,5277234.691571468]]]},"properties":{"id_build":284,"id_source":"w144657022","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515283.0537452079,5277260.420621023],[515283.4728251976,5277255.264838489],[515285.4325461329,5277255.42557853],[515288.87896977656,5277255.7013626145],[515288.45237495855,5277260.857125053],[515283.0537452079,5277260.420621023]]]},"properties":{"id_build":285,"id_source":"w144657044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516283.3405240204,5276992.473442348],[516284.16791303473,5276992.031197094],[516284.21580388106,5276991.019959225],[516284.2479901286,5276990.253184904],[516283.8724691714,5276990.252134745],[516283.9584514333,5276986.362483672],[516291.5433579086,5276986.605979458],[516291.766183017,5276987.495720955],[516294.92242661346,5276986.837713982],[516294.6992909543,5276986.059111257],[516296.87855826895,5276985.620651008],[516297.3232736911,5276987.733551083],[516301.6070147099,5276986.745284223],[516302.57901358546,5276988.303962097],[516303.8392926251,5276994.197897947],[516293.76911794767,5276996.392505978],[516293.6223305817,5276995.169557879],[516286.1876436001,5276994.926479473],[516286.0997948655,5276999.48296391],[516280.456424407,5277003.245934548],[516276.41758273804,5276997.23309663],[516283.3405240204,5276992.473442348]]]},"properties":{"id_build":286,"id_source":"w144657048","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515674.27185167844,5277176.405412347],[515667.4483563139,5277172.38601733],[515672.20160862996,5277164.285608966],[515675.50824788556,5277166.2839112645],[515679.0248110042,5277168.416148415],[515674.27185167844,5277176.405412347]]]},"properties":{"id_build":287,"id_source":"w144657052","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516195.7894600067,5277011.901007267],[516203.89975437475,5277012.256990142],[516203.5832566728,5277018.0353766475],[516203.5050601455,5277019.146556597],[516195.16946389485,5277018.789947586],[516195.7894600067,5277011.901007267]]]},"properties":{"id_build":288,"id_source":"w144657056","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516153.6901375674,5277053.6837513065],[516151.43518681993,5277054.344334585],[516150.5410365178,5277051.78564005],[516151.66974540404,5277051.010792526],[516152.04402925837,5277051.456389772],[516153.6901375674,5277053.6837513065]]]},"properties":{"id_build":289,"id_source":"w144657058","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.7220359426,5277554.968756755],[516175.3453489611,5277558.207433205],[516172.1302307424,5277563.955545414],[516166.52218778746,5277560.628002547],[516169.7220359426,5277554.968756755]]]},"properties":{"id_build":290,"id_source":"w144657061","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516144.62837362266,5276990.19782182],[516148.3103280957,5276989.541193078],[516148.82681077166,5276992.8768177815],[516142.1388439816,5276994.191950709],[516141.6226656873,5276990.745187712],[516144.62837362266,5276990.19782182]]]},"properties":{"id_build":291,"id_source":"w144657063","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515943.91698706447,5277522.782276181],[515929.6363354237,5277524.443624138],[515925.2116761932,5277524.9538765075],[515924.5516083049,5277519.17280054],[515928.14992719545,5277518.760312667],[515943.256937478,5277517.001198069],[515943.91698706447,5277522.782276181]]]},"properties":{"id_build":292,"id_source":"w144657064","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516230.4282191401,5277545.135091832],[516230.6696218743,5277539.356492635],[516238.47879102314,5277539.711688226],[516238.1673133604,5277546.379210505],[516238.0794369603,5277548.268342879],[516230.34537626826,5277547.913357144],[516230.4282191401,5277545.135091832]]]},"properties":{"id_build":293,"id_source":"w144657068","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516266.6339667567,5277380.749177109],[516273.8397577512,5277382.102991664],[516274.29004191514,5277382.215390109],[516272.99347616336,5277389.324714977],[516265.3383415093,5277387.525086767],[516266.6339667567,5277380.749177109]]]},"properties":{"id_build":294,"id_source":"w144657069","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516172.40766282106,5276993.609101196],[516166.47042412247,5276995.037431046],[516165.5024011093,5276992.033970382],[516164.5386964057,5276987.474565439],[516170.9268764152,5276985.936346146],[516172.40766282106,5276993.609101196]]]},"properties":{"id_build":295,"id_source":"w144657073","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516212.3293766663,5277086.744094369],[516208.2747457679,5277086.399387147],[516208.5832012584,5277083.510611823],[516208.8922757992,5277080.3995587155],[516212.94691084273,5277080.744266353],[516212.3293766663,5277086.744094369]]]},"properties":{"id_build":296,"id_source":"w144657076","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515664.21071412123,5277231.281366474],[515664.70365512796,5277229.504456795],[515665.04489915195,5277228.282837731],[515668.1216517962,5277229.180234272],[515667.8939559897,5277230.068739487],[515667.2874653036,5277232.178762584],[515664.21071412123,5277231.281366474]]]},"properties":{"id_build":297,"id_source":"w144657079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515658.5530349462,5277463.992808077],[515658.1715665703,5277466.214577757],[515657.7909951666,5277468.102930531],[515651.8612402751,5277466.975588302],[515652.6983740826,5277462.865666991],[515658.5530349462,5277463.992808077]]]},"properties":{"id_build":298,"id_source":"w144657081","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.0420445465,5277581.302130545],[516085.9768740229,5277586.300480282],[516080.566549475,5277587.508072126],[516078.6281602426,5277582.390285643],[516079.23660642636,5277579.613470017],[516087.0420445465,5277581.302130545]]]},"properties":{"id_build":299,"id_source":"w144657089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.370649024,5276947.047104922],[516212.84101381036,5276956.934283065],[516204.05717542785,5276955.687295845],[516203.76696273533,5276952.018876707],[516203.9354190712,5276945.462100635],[516214.370649024,5276947.047104922]]]},"properties":{"id_build":300,"id_source":"w144657094","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516089.9070702359,5277359.808379536],[516096.29359338345,5277358.714634263],[516096.3686928165,5277358.714841885],[516097.0362914039,5277361.717462318],[516090.49957264255,5277362.810791678],[516089.9070702359,5277359.808379536]]]},"properties":{"id_build":301,"id_source":"w144657101","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516286.82573460776,5276909.106147936],[516286.8008095026,5276909.961854252],[516283.76693128824,5276909.82000178],[516283.7780159062,5276908.541925723],[516285.33257014997,5276908.59072901],[516286.90214541747,5276908.639574728],[516286.82573460776,5276909.106147936]]]},"properties":{"id_build":302,"id_source":"w144657103","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515680.4204444778,5277673.5946444925],[515680.7172336729,5277674.929121735],[515670.34779421473,5277677.235137045],[515667.9713649955,5277667.337296953],[515678.3408210902,5277665.031277407],[515680.4204444778,5277673.5946444925]]]},"properties":{"id_build":303,"id_source":"w144657105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516228.0297733412,5277058.447189608],[516223.0738838287,5277058.099960479],[516223.76684493787,5277051.989204195],[516227.2976335904,5277051.665623597],[516228.4241845499,5277051.66876323],[516228.0297733412,5277058.447189608]]]},"properties":{"id_build":304,"id_source":"w144657113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.4982159386,5277233.31764429],[515672.09512924997,5277231.747142175],[515672.24652796594,5277231.302990721],[515672.6259223258,5277229.859195294],[515678.0287113681,5277231.54083683],[515677.4982159386,5277233.31764429]]]},"properties":{"id_build":305,"id_source":"w144657118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516033.88091895904,5277551.258861849],[516031.2056926401,5277551.89610575],[516030.46931420936,5277552.04967387],[516029.6315818996,5277548.101903227],[516033.0581164208,5277547.344473774],[516033.88091895904,5277551.258861849]]]},"properties":{"id_build":306,"id_source":"w144657120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515342.840311375,5277491.826309444],[515352.8110131357,5277498.409839686],[515351.0738046111,5277502.184010683],[515348.8135527506,5277504.956545423],[515338.6926625497,5277498.3726262385],[515342.840311375,5277491.826309444]]]},"properties":{"id_build":307,"id_source":"w144657123","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.9665685445,5277221.5474064015],[516129.7948369568,5277220.771722366],[516129.79699213314,5277219.99374985],[516133.1765471786,5277220.003113034],[516133.2476450748,5277221.448127226],[516131.2122484743,5277221.498057716],[516128.9665685445,5277221.5474064015]]]},"properties":{"id_build":308,"id_source":"w144657124","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.2115954797,5277219.56960047],[516169.23790148745,5277220.914464951],[516168.32911509136,5277220.934169258],[516167.58555136836,5277220.954332486],[516167.57238274754,5277220.287457196],[516167.5592449819,5277219.609468016],[516169.2115954797,5277219.56960047]]]},"properties":{"id_build":309,"id_source":"w144657126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516229.78623630805,5277559.914902383],[516229.95254099194,5277554.136093679],[516229.9550196054,5277553.246981773],[516237.83957705577,5277553.491246925],[516237.5205910549,5277560.158748432],[516229.78623630805,5277559.914902383]]]},"properties":{"id_build":310,"id_source":"w144657130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515443.60208971,5277754.160343883],[515444.50499057706,5277753.495900327],[515447.12532948924,5277756.503627616],[515438.84697896766,5277763.261195913],[515436.2266388647,5277760.253472323],[515443.60208971,5277754.160343883]]]},"properties":{"id_build":311,"id_source":"w144657131","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516148.3103280957,5276989.541193078],[516144.62837362266,5276990.19782182],[516142.8591488171,5276978.189824463],[516151.57556838123,5276976.658038935],[516152.5885285189,5276982.417887461],[516153.6458091775,5276988.444594565],[516148.3103280957,5276989.541193078]]]},"properties":{"id_build":312,"id_source":"w144657132","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515613.15821110987,5277729.161598536],[515612.3640260484,5277728.481515704],[515611.210220932,5277727.489277104],[515613.01755993924,5277725.6047469685],[515614.2941696052,5277725.608170872],[515614.4383971142,5277727.831354179],[515613.15821110987,5277729.161598536]]]},"properties":{"id_build":313,"id_source":"w144657143","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515958.86318089085,5277576.948321517],[515958.10764515656,5277578.61334794],[515961.70832037943,5277580.06803655],[515959.89442498726,5277584.286377262],[515953.5188346576,5277581.490407072],[515953.2166211579,5277582.156417908],[515953.0664280636,5277582.1560063455],[515953.36864154786,5277581.489995503],[515952.09352273465,5277580.930802339],[515951.2619793799,5277582.929040874],[515942.33583904663,5277579.125836827],[515944.5273371282,5277574.13054608],[515935.30140052666,5277570.104252256],[515934.861467137,5277566.213154206],[515933.98099017976,5277558.653236264],[515933.17378283956,5277551.760358018],[515931.07046033116,5277551.976881745],[515931.07137269457,5277551.643464772],[515933.0995983805,5277551.426735524],[515932.2188126082,5277543.977957021],[515931.33802450966,5277536.52917875],[515930.0607650239,5277536.747963394],[515930.05985272257,5277537.081380355],[515929.7594642124,5277537.080558434],[515929.76068059163,5277536.636002482],[515929.0094051806,5277536.745086741],[515928.93491620757,5277536.522603296],[515929.68588755105,5277536.52465802],[515929.5399505457,5277534.96830124],[515929.84033916384,5277534.969123147],[515929.8397309714,5277535.191401124],[515930.96649236523,5277535.083344428],[515930.6004340153,5277531.637008369],[515938.2630864694,5277530.657722386],[515938.11654308863,5277529.323643373],[515944.65243691317,5277528.452421103],[515945.5322961044,5277536.234618294],[515947.00014332955,5277548.686298849],[515945.19720707496,5277548.903640285],[515945.5644732139,5277551.905421418],[515947.3674085554,5277551.688080092],[515947.4415921958,5277552.021702771],[515948.7625866074,5277563.250443766],[515948.9878769772,5277563.251060942],[515950.5655185629,5277563.033103435],[515950.41745641665,5277562.254718999],[515950.64274682524,5277562.255336242],[515950.7901999459,5277563.2559986655],[515948.98726805,5277563.473338929],[515949.0602335781,5277564.2515176],[515956.26099531417,5277567.383163734],[515961.96164366795,5277569.843866764],[515958.86318089085,5277576.948321517]]]},"properties":{"id_build":314,"id_source":"w144657147","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.8638352594,5277353.726982747],[516037.5679393721,5277355.062787],[516037.1832078955,5277352.961185077],[516035.28173944255,5277342.575490858],[516043.27641408925,5277341.11935535],[516044.0606489141,5277345.411512517],[516045.01510005124,5277350.615485243],[516044.31630685105,5277350.746927312],[516044.8638352594,5277353.726982747]]]},"properties":{"id_build":315,"id_source":"w144657149","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515610.9932120228,5277108.2179026585],[515605.7464519374,5277104.313948216],[515616.9775914281,5277089.117919431],[515615.5676254782,5277082.779174452],[515621.13001641014,5277081.015859031],[515622.0735373736,5277084.852710391],[515623.21023721836,5277089.468058244],[515617.3128670431,5277098.521238367],[515610.9932120228,5277108.2179026585]]]},"properties":{"id_build":316,"id_source":"w144657150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516273.8397577512,5277382.102991664],[516266.6339667567,5277380.749177109],[516261.9803025882,5277379.847058549],[516262.89422053733,5277375.292878489],[516264.79840187903,5277365.7401728695],[516276.80746198725,5277368.218809418],[516275.07251864433,5277376.327166594],[516273.8397577512,5277382.102991664]]]},"properties":{"id_build":317,"id_source":"w144657151","height_wall":6.0,"height_roof":6.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515305.61087335896,5277598.75590897],[515307.959315171,5277590.982299484],[515320.04077155865,5277594.459412032],[515318.0926645799,5277601.344951896],[515317.08452708455,5277604.898772195],[515307.1651031153,5277607.428897583],[515309.5129590734,5277599.877566627],[515305.61087335896,5277598.75590897]]]},"properties":{"id_build":318,"id_source":"w144657155","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516057.48228195467,5277622.697915106],[516060.62111822865,5277614.60447859],[516068.9405058595,5277617.806034932],[516066.14958554803,5277625.000194404],[516062.698818698,5277623.668108265],[516060.40330277407,5277622.783770423],[516060.05534701806,5277623.694157287],[516057.48228195467,5277622.697915106]]]},"properties":{"id_build":319,"id_source":"w144657160","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9300363666,5277166.719108451],[516159.23359514034,5277167.061695064],[516159.07321293285,5277170.728862618],[516151.56549331703,5277169.818913578],[516151.950559973,5277166.3746486725],[516153.1521906211,5277166.377982125],[516155.9300363666,5277166.719108451]]]},"properties":{"id_build":320,"id_source":"w144657163","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.6565832165,5277633.823662392],[516050.12545618636,5277632.635758645],[516052.8109780422,5277633.698991601],[516049.70299767074,5277641.5035539195],[516041.6989747825,5277638.3251217725],[516044.338074014,5277631.708459409],[516046.8960568544,5277632.726882201],[516049.6565832165,5277633.823662392]]]},"properties":{"id_build":321,"id_source":"w144657167","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515670.344474007,5277240.41133021],[515669.9656790949,5277241.632847933],[515667.489441804,5277240.848205979],[515667.7171371401,5277239.959700735],[515667.9445334747,5277239.182334441],[515670.496171485,5277239.856039769],[515670.344474007,5277240.41133021]]]},"properties":{"id_build":322,"id_source":"w144657170","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516097.66337777965,5277678.13430061],[516093.3595953195,5277686.569031135],[516084.13639569137,5277681.653388009],[516084.99708781333,5277679.9886681],[516085.5708828344,5277678.878854898],[516083.0213269445,5277677.538132592],[516086.94071768015,5277672.325388286],[516097.66337777965,5277678.13430061]]]},"properties":{"id_build":323,"id_source":"w144657175","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515571.1596780821,5277540.222586509],[515573.6864954961,5277541.707504383],[515581.95670208655,5277546.586441878],[515577.4309586085,5277554.020696657],[515564.23440559034,5277546.316756746],[515562.67578806286,5277539.421923407],[515570.41613819206,5277537.442103247],[515571.1596780821,5277540.222586509]]]},"properties":{"id_build":324,"id_source":"w144657185","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9361213361,5277408.11476621],[516166.4481013852,5277408.810784322],[516166.37176820065,5277409.255131651],[516166.0571777767,5277414.366689885],[516165.8238583064,5277417.255677397],[516160.665627863,5277416.863481915],[516155.0869057627,5277416.447896257],[516155.9361213361,5277408.11476621]]]},"properties":{"id_build":325,"id_source":"w144657186","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516019.6855395455,5277584.717330156],[516021.16130368935,5277591.500921227],[516007.7785928481,5277594.387086292],[516006.0209611546,5277586.324615594],[516010.9727849318,5277585.260175372],[516015.87955262756,5277584.195615401],[516016.1538936512,5277585.474478239],[516019.6855395455,5277584.717330156]]]},"properties":{"id_build":326,"id_source":"w144657189","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516016.15834508365,5277551.09893994],[516015.4913387771,5277547.874049953],[516019.47395632474,5277546.984774471],[516019.60003101407,5277547.563048496],[516021.6289038559,5277547.112958199],[516022.21492126136,5277549.748584908]]]},"properties":{"id_build":327,"id_source":"w144657200","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515596.1081763767,5276889.343956598],[515602.4876747374,5276891.028141497],[515600.6820021225,5276897.80282389],[515600.0598855875,5276900.135090427],[515597.3578797232,5276899.461014327],[515598.723768471,5276894.241108275],[515595.04598456976,5276893.34214012],[515596.1081763767,5276889.343956598]]]},"properties":{"id_build":328,"id_source":"w144657203","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515327.4251495757,5277727.624311448],[515324.2644454532,5277730.172205936],[515320.27565630386,5277733.495901435],[515315.1855984231,5277727.258679862],[515323.31337340845,5277720.611680005],[515325.70587226,5277724.61901057],[515327.4251495757,5277727.624311448]]]},"properties":{"id_build":329,"id_source":"w144657204","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516257.2063854118,5276884.03916631],[516257.6675686259,5276880.261702833],[516255.8659647755,5276879.923253988],[516256.71074277686,5276873.2572281975],[516263.01744877803,5276874.052816441],[516261.7111671887,5276884.60744334],[516257.2063854118,5276884.03916631]]]},"properties":{"id_build":330,"id_source":"w144657206","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515575.5972695869,5277116.569730071],[515585.86757578986,5277123.599013977],[515581.0487223889,5277130.988022146],[515575.1590292169,5277140.019037627],[515569.011640958,5277135.890427592],[515576.55219608516,5277124.574343932],[515572.3544848534,5277121.562343677],[515575.5972695869,5277116.569730071]]]},"properties":{"id_build":331,"id_source":"w144657207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515556.067935968,5277454.826892765],[515553.2937569035,5277453.152384525],[515553.89780852257,5277451.931460771],[515545.6503588179,5277446.908143696],[515550.7036135402,5277438.808435609],[515556.82875767566,5277442.714690805],[515561.7243611771,5277445.839687591],[515556.067935968,5277454.826892765]]]},"properties":{"id_build":332,"id_source":"w144657213","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.55907598545,5277509.912218195],[516164.92762872216,5277507.432046552],[516165.4762109027,5277507.3002019245],[516165.3127553147,5277506.666251003],[516165.86887819064,5277506.523313366],[516166.29984560946,5277508.180493626],[516166.678861768,5277509.615249985],[516165.55907598545,5277509.912218195]]]},"properties":{"id_build":333,"id_source":"w144657223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516226.3285654805,5276968.1969663035],[516226.6289833758,5276968.197803458],[516223.879393422,5276984.638824925],[516212.6944283651,5276982.607156626],[516216.13181311614,5276961.9002791755],[516217.04842006817,5276956.390300449],[516228.0841540754,5276958.088141642],[516226.3285654805,5276968.1969663035]]]},"properties":{"id_build":334,"id_source":"w144657224","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516060.76736155193,5277645.979661349],[516052.6581554361,5277642.823151848],[516055.4488361189,5277635.70678307],[516058.20191119943,5277636.7813188145],[516060.70744496846,5277637.755147095],[516061.0326566263,5277636.922495405],[516063.8832626905,5277638.03064487],[516060.76736155193,5277645.979661349]]]},"properties":{"id_build":335,"id_source":"w144657227","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516124.10345347755,5277486.046676311],[516126.3289892113,5277495.94428529],[516118.73950969864,5277497.590365662],[516116.4089479117,5277487.648012955],[516115.3253179447,5277483.0215965],[516123.66671731765,5277481.044174476],[516124.8547392054,5277485.937617216],[516124.10345347755,5277486.046676311]]]},"properties":{"id_build":336,"id_source":"w144657228","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.8026481104,5277493.194674936],[516183.4161886898,5277491.434817425],[516186.16328793304,5277502.778717596],[516178.04749944474,5277504.64553718],[516177.00817732915,5277500.3081955565],[516178.43595841335,5277499.9787434535],[516176.8026481104,5277493.194674936]]]},"properties":{"id_build":337,"id_source":"w144657231","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.83825201914,5277526.159113887],[516127.9020138977,5277524.511580002],[516130.79200897797,5277538.523206161],[516122.450689329,5277540.500617976],[516121.7098744832,5277536.830951838],[516122.83756264707,5277536.389515314],[516122.1118900469,5277532.675435146],[516120.83825201914,5277526.159113887]]]},"properties":{"id_build":338,"id_source":"w144657234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516001.5355586594,5277622.610556863],[515999.93452944007,5277614.948621506],[516012.07712427917,5277612.414675152],[516013.91535798693,5277621.199778778],[516010.45895324677,5277621.912681276],[516010.22167175735,5277620.811744292],[516006.4646997488,5277621.590506493],[516001.5355586594,5277622.610556863]]]},"properties":{"id_build":339,"id_source":"w144657235","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516141.7306868707,5277114.332894997],[516138.12822696875,5277113.4337912295],[516139.19229342684,5277108.880010101],[516139.2680121876,5277108.657940447],[516143.0957828228,5277109.557669549],[516142.03171342827,5277114.111449977],[516141.7306868707,5277114.332894997]]]},"properties":{"id_build":340,"id_source":"w144657238","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515552.3884753124,5277314.1141296],[515551.86574396386,5277313.001335872],[515554.0466131695,5277311.895764079],[515554.56964111555,5277312.897419049],[515555.0917781156,5277314.232490924],[515554.04640373454,5277314.785396897],[515552.98600955814,5277315.338262937],[515552.3884753124,5277314.1141296]]]},"properties":{"id_build":341,"id_source":"w144657243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515248.3901008867,5277282.190918067],[515257.849838266,5277283.32709717],[515256.6237695255,5277292.659620261],[515251.16526149237,5277292.156304916],[515244.0849358153,5277291.515380592],[515244.4744046987,5277286.181694107],[515247.9278562943,5277286.6352959825],[515248.3901008867,5277282.190918067]]]},"properties":{"id_build":342,"id_source":"w144657264","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.7955356759,5277147.987230883],[516293.4979260474,5277146.986139997],[516303.3444011681,5277144.124067225],[516303.9402396403,5277145.903972187],[516295.9722540399,5277148.437881659],[516295.6746448076,5277147.436790657],[516293.7955356759,5277147.987230883]]]},"properties":{"id_build":343,"id_source":"w144657266","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515525.17337444925,5277719.145989136],[515525.7637585937,5277723.037457113],[515525.91098400066,5277724.149247901],[515519.3008725149,5277724.798461665],[515517.94857552066,5277725.0171364695],[515517.0607697375,5277720.0134784],[515525.17337444925,5277719.145989136]]]},"properties":{"id_build":344,"id_source":"w144657272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516021.16130368935,5277591.500921227],[516019.6855395455,5277584.717330156],[516023.48036068305,5277583.838654721],[516023.25034499046,5277582.826649139],[516027.6011577597,5277581.849480791],[516034.00339381193,5277580.411177852],[516035.78406860825,5277588.273668863],[516021.16130368935,5277591.500921227]]]},"properties":{"id_build":345,"id_source":"w144657273","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516116.72826137656,5277573.048747366],[516112.2249218914,5277572.147163719],[516114.50643133174,5277561.81747294],[516123.5804343323,5277563.720859461],[516130.56791153323,5277565.1961472845],[516128.6661685627,5277573.970926204],[516116.957551112,5277571.604564145],[516116.72826137656,5277573.048747366]]]},"properties":{"id_build":346,"id_source":"w144657276","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515540.5474416603,5277389.21298388],[515544.3006124925,5277389.889841553],[515542.3195563083,5277400.553969624],[515536.20923614537,5277399.515175536],[515529.70857739996,5277398.408662846],[515531.30759351683,5277390.18858613],[515540.09032139217,5277391.656838424],[515540.5474416603,5277389.21298388]]]},"properties":{"id_build":347,"id_source":"w144657278","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.81823763635,5277635.9268748155],[516075.62994743645,5277634.7288736915],[516075.99304692354,5277633.774073613],[516072.39966666535,5277632.4193598945],[516067.800980992,5277630.706226195],[516070.4184742186,5277623.767210379],[516081.79884251195,5277628.033064159],[516078.81823763635,5277635.9268748155]]]},"properties":{"id_build":348,"id_source":"w144657280","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516085.00773505867,5277175.969633571],[516086.55069759086,5277188.343752934],[516088.24066259316,5277201.8741328325],[516080.8779574081,5277202.85405162],[516077.3482731307,5277175.6150599085],[516077.64868030726,5277175.6158894],[516084.8612157215,5277174.635551557],[516085.00773505867,5277175.969633571]]]},"properties":{"id_build":349,"id_source":"w144657284","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516249.4081167436,5277040.946726895],[516245.1281453751,5277040.601365351],[516245.2885847299,5277036.934200788],[516250.4698017895,5277037.282077574],[516250.30904901214,5277041.060380902],[516250.2339454788,5277041.060171304],[516249.4081167436,5277040.946726895]]]},"properties":{"id_build":350,"id_source":"w144657290","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.0887155148,5276953.136847694],[516136.90735800785,5276952.344452024],[516141.0338394421,5276951.188921693],[516143.4362424298,5276959.664429573],[516133.1613478102,5276962.558928029],[516130.92265275226,5276954.628462628],[516134.2448956067,5276953.692979116],[516134.0887155148,5276953.136847694]]]},"properties":{"id_build":351,"id_source":"w144657295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.01941954694,5276959.711964022],[516044.84410765534,5276962.97063042],[516045.74310305837,5276966.518465023],[516036.82195597974,5276968.761139317],[516033.8946669797,5276957.194546287],[516044.71729476715,5276954.479205668],[516045.92091289314,5276959.228188685],[516044.01941954694,5276959.711964022]]]},"properties":{"id_build":352,"id_source":"w144657299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.49284776073,5277268.667075628],[516088.462198203,5277268.469702426],[516087.5435717973,5277263.899318891],[516086.52112327924,5277258.850747619],[516094.8619730124,5277257.184473338],[516097.60312106623,5277270.7844473645],[516088.3004502265,5277272.6481115315],[516087.49284776073,5277268.667075628]]]},"properties":{"id_build":353,"id_source":"w144657303","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.9371355099,5276914.734737209],[516156.5507515723,5276913.233278757],[516153.5970214851,5276913.980834343],[516149.4407465462,5276915.036247463],[516147.2787318509,5276906.539176392],[516158.13915270596,5276903.790808926],[516160.6800251445,5276913.789321885],[516156.9371355099,5276914.734737209]]]},"properties":{"id_build":354,"id_source":"w144657304","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516277.56259540806,5277151.831720558],[516287.48508918105,5277148.6364141805],[516287.93228224094,5277149.860202771],[516286.12827676005,5277150.410855556],[516286.3517179542,5277151.078319251],[516278.2332323158,5277153.722971769],[516277.56259540806,5277151.831720558]]]},"properties":{"id_build":355,"id_source":"w144657310","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516093.6991157111,5277639.813431562],[516089.2357067145,5277638.067312861],[516086.25011716696,5277636.892094065],[516085.8720277282,5277637.835738113],[516081.7461778321,5277636.223925707],[516085.156921554,5277627.57555397],[516096.73926245724,5277632.119844744],[516093.6991157111,5277639.813431562]]]},"properties":{"id_build":356,"id_source":"w144657313","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516108.10674440395,5276970.53608259],[516095.02843438333,5276974.1675299965],[516093.4597656727,5276968.361700074],[516092.3520119575,5276964.268696326],[516100.5445506709,5276962.068548221],[516100.69353056286,5276962.513519095],[516105.5039100617,5276961.193145069],[516108.10674440395,5276970.53608259]]]},"properties":{"id_build":357,"id_source":"w144657314","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.0386219565,5277282.105446985],[516083.86111334787,5277281.115812503],[516082.96596723807,5277276.200961122],[516082.7070756541,5277274.766542731],[516085.33682184695,5277274.329248075],[516086.7437724364,5277281.557221485],[516084.0386219565,5277282.105446985]]]},"properties":{"id_build":358,"id_source":"w144657315","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515303.9926307106,5277557.296521115],[515309.4910669474,5277551.087150599],[515315.93419913366,5277556.883365067],[515311.67895036296,5277561.540042307],[515307.1224448198,5277566.529349877],[515298.13186409924,5277558.503655296],[515301.295278247,5277554.95549616],[515303.9926307106,5277557.296521115]]]},"properties":{"id_build":359,"id_source":"w144657318","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.35004770063,5277071.423437108],[516175.8870814024,5277065.859606319],[516194.83998338575,5277056.243129572],[516197.5251539558,5277062.918984103],[516190.9831361814,5277065.790423388],[516193.14691185474,5277070.90886953],[516178.35004770063,5277071.423437108]]]},"properties":{"id_build":360,"id_source":"w144657324","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.21965592814,5277379.686690198],[516087.0443977925,5277379.327733036],[516095.188127671,5277378.272184073],[516096.4420763797,5277386.49999652],[516079.16315057606,5277388.675047906],[516078.2126437001,5277379.336679158],[516083.9226365227,5277378.463331798],[516084.21965592814,5277379.686690198]]]},"properties":{"id_build":361,"id_source":"w144657326","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.6084623813,5277718.887306964],[516047.53378905164,5277720.117908537],[516047.38237408164,5277720.562050611],[516047.08015691256,5277721.228056728],[516044.3798087214,5277720.109215278],[516044.3813402239,5277719.553520185],[516044.6084623813,5277718.887306964]]]},"properties":{"id_build":362,"id_source":"w144657327","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515348.15218823036,5277641.879000833],[515351.0131534606,5277639.108049451],[515359.17631091794,5277647.576203801],[515359.02582633705,5277647.686946575],[515357.1434502778,5277649.571357104],[515351.2270114894,5277643.443064945],[515350.3989070524,5277644.218859881],[515348.15218823036,5277641.879000833]]]},"properties":{"id_build":363,"id_source":"w144657335","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516257.46405438555,5277033.856268749],[516258.83205666963,5277028.080820717],[516261.0978928849,5277023.530417668],[516265.5224952644,5277025.876710613],[516264.56324525503,5277027.818976979],[516263.19086509733,5277027.092735322],[516259.2187793678,5277034.8280841615],[516257.46405438555,5277033.856268749]]]},"properties":{"id_build":364,"id_source":"w144657336","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516061.1647525513,5276973.75172193],[516063.31935658585,5276982.248740983],[516051.2190800884,5276985.293944096],[516047.34097494173,5276986.2723988425],[516045.9442363721,5276980.744904985],[516049.78473152814,5276979.788573582],[516049.0269074015,5276976.796826019],[516056.03153674374,5276975.037900401],[516061.1647525513,5276973.75172193]]]},"properties":{"id_build":365,"id_source":"w144657342","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.5615497224,5277509.884127351],[516005.2189062668,5277503.834429826],[516015.95676782413,5277501.530022887],[516017.7439008943,5277509.792628291],[516013.160203342,5277510.7802775875],[516010.8833746483,5277511.274144894],[516011.3432021378,5277513.375952137],[516007.50340080215,5277514.2100559985],[516006.5615497224,5277509.884127351]]]},"properties":{"id_build":366,"id_source":"w144657344","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.93797739083,5277118.168475768],[516072.2491367959,5277118.364003364],[516071.7982148362,5277118.473898473],[516070.99079871445,5277111.692144576],[516070.9172298338,5277111.136242729],[516078.57984590024,5277110.379418583],[516081.20905203413,5277110.16439983],[516081.93797739083,5277118.168475768]]]},"properties":{"id_build":367,"id_source":"w144657348","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.39526110794,5276984.073272857],[516182.7989065447,5276983.968812689],[516183.5502581214,5276983.859761103],[516187.23407484434,5276982.536323628],[516190.1089047931,5276991.246558391],[516192.670946905,5276999.000123051],[516185.6803982525,5277001.092342822],[516185.6052942043,5277001.09213406],[516180.39526110794,5276984.073272857]]]},"properties":{"id_build":368,"id_source":"w144657350","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516185.6052942043,5277001.09213406],[516185.6803982525,5277001.092342822],[516192.670946905,5276999.000123051],[516193.7215691806,5277002.003818054],[516194.38474051055,5277003.89503817],[516197.91772071,5277002.793467471],[516200.151670837,5277009.690346877],[516189.4779506159,5277012.883713639],[516185.6052942043,5277001.09213406]]]},"properties":{"id_build":369,"id_source":"w144657351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.5797057388,5277438.290978917],[516180.40879798395,5277438.635038684],[516180.080721269,5277443.1908598365],[516184.1279660123,5277443.402160543],[516183.68133857107,5277450.080422728],[516178.68026297,5277452.60051147],[516179.0617667791,5277445.032949308],[516166.0492643009,5277444.263280488],[516166.28320010717,5277441.152014925],[516166.5971722562,5277436.262734422],[516172.078184894,5277436.700287779],[516176.6582009275,5277437.0686589265],[516176.5797057388,5277438.290978917]]]},"properties":{"id_build":370,"id_source":"w144657353","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516251.4116039241,5277507.0726592615],[516242.9296146259,5277505.604170952],[516244.0753034128,5277498.716697125],[516221.55654241017,5277494.875156063],[516222.32052556163,5277490.209411471],[516244.8396142516,5277493.939816441],[516253.3967177758,5277495.408517118],[516251.4116039241,5277507.0726592615]]]},"properties":{"id_build":371,"id_source":"w144657354","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516133.0615219184,5277153.096648013],[516139.51660459203,5277154.448214282],[516137.458970502,5277165.223069216],[516127.76866666833,5277165.974198872],[516127.3365249237,5277159.304615529],[516130.64162897086,5277159.091491303],[516131.1381951454,5277158.77056164],[516131.8454165192,5277158.316847918],[516133.0615219184,5277153.096648013]]]},"properties":{"id_build":372,"id_source":"w144657356","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516210.0661024705,5277710.787897046],[516205.6101373067,5277709.097279139],[516199.18878511665,5277706.645444307],[516202.2154720982,5277698.429516367],[516202.82025372726,5277696.986381201],[516206.3463188539,5277698.218734656],[516205.8163221318,5277699.773217517],[516213.093112243,5277702.460835662],[516210.0661024705,5277710.787897046]]]},"properties":{"id_build":373,"id_source":"w144657362","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516197.5249356287,5277386.958157811],[516205.70167779515,5277387.5366105605],[516204.6273561497,5277401.170476432],[516196.5559260859,5277400.536748135],[516196.92954098183,5277395.814345097],[516197.0228443113,5277394.669864507],[516195.371006989,5277394.543015617],[516195.97835849755,5277386.787145672],[516197.5249356287,5277386.958157811]]]},"properties":{"id_build":374,"id_source":"w144657363","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515994.69644033414,5277586.282378052],[515996.84089383064,5277595.690700143],[515985.47918134695,5277598.260164385],[515985.6127068571,5277598.860686131],[515981.7653644185,5277599.728128029],[515979.6283672664,5277590.330945997],[515984.2496972699,5277589.287803921],[515984.108692258,5277588.676147696],[515989.31614319864,5277587.501251082],[515994.69644033414,5277586.282378052]]]},"properties":{"id_build":375,"id_source":"w144657369","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515312.94039489893,5277695.8002123125],[515317.30204927333,5277693.477751026],[515322.4216787123,5277688.48993296],[515327.8138990923,5277694.06111716],[515322.6945623935,5277698.937791507],[515313.5201064819,5277703.803802133],[515310.9782774751,5277699.462664669],[515313.9867557431,5277697.6923411405],[515312.94039489893,5277695.8002123125]]]},"properties":{"id_build":376,"id_source":"w144657370","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.84410286864,5277659.810257634],[516218.46958754316,5277664.854964358],[516218.0112294253,5277670.343997053],[516217.9257451072,5277671.377359714],[516217.0960054506,5277686.178879306],[516208.76164364786,5277685.722223161],[516208.9673502468,5277681.966268205],[516209.0454161384,5277680.899542787],[516200.77158635226,5277680.276356854],[516202.4089959843,5277658.575297255],[516218.84410286864,5277659.810257634]]]},"properties":{"id_build":377,"id_source":"w144657371","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516105.75873514026,5277531.541002567],[516109.5788763714,5277532.385120594],[516107.62477127893,5277541.093077032],[516103.84218403965,5277540.249064127],[516103.659645411,5277541.082107995],[516097.9407511309,5277539.79929799],[516091.80155627115,5277538.426420022],[516093.54272420175,5277530.673672374],[516105.35580081923,5277533.318125284],[516105.75873514026,5277531.541002567]]]},"properties":{"id_build":378,"id_source":"w144657372","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515523.87151266227,5277503.309036056],[515525.3312632169,5277490.976413535],[515527.8085984042,5277491.316439593],[515529.11846082914,5277478.872278669],[515537.97793280234,5277479.673894692],[515536.96844238235,5277492.118855312],[515533.88973338465,5277491.999500326],[515532.5801600066,5277504.332521465],[515523.87151266227,5277503.309036056]]]},"properties":{"id_build":379,"id_source":"w144657373","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.887558486,5277648.383150499],[516071.6145827259,5277647.498870381],[516070.70607113425,5277650.1637188615],[516063.95482059004,5277647.477729682],[516066.75329855183,5277640.261361859],[516069.94134208973,5277641.548269339],[516073.12938422646,5277642.835178568],[516073.50762470264,5277641.835964191],[516076.035559735,5277642.854316886],[516073.887558486,5277648.383150499]]]},"properties":{"id_build":380,"id_source":"w144657374","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516070.39086106594,5277519.506850777],[516062.823957601,5277521.1530661825],[516062.11142453796,5277518.105869013],[516064.01261477254,5277517.666555166],[516061.5557432346,5277507.20151883],[516069.5813729373,5277505.334288208],[516070.9174212043,5277511.02833527],[516072.023334123,5277515.754830873],[516069.64121251955,5277516.303954465],[516070.39086106594,5277519.506850777]]]},"properties":{"id_build":381,"id_source":"w144657377","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516011.8213751436,5277265.768902591],[516017.7198625913,5277264.662614785],[516019.16277342994,5277264.310937165],[516021.2517335508,5277263.894353698],[516022.00733143603,5277267.686299421],[516020.66980674036,5277267.949354481],[516020.99581513845,5277269.561778348],[516021.7292186753,5277273.23140924],[516013.63639787404,5277274.842900371],[516011.8213751436,5277265.768902591]]]},"properties":{"id_build":382,"id_source":"w144657379","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.5583950943,5276970.551753559],[516080.2476007529,5276968.791986335],[516080.3978096773,5276968.792401142],[516082.70118426386,5276977.801081057],[516071.3524527262,5276980.659380636],[516069.0490617711,5276971.650705207],[516070.9504920008,5276971.189165816],[516073.5583950943,5276970.551753559]]]},"properties":{"id_build":383,"id_source":"w144657380","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515703.26028482756,5277037.558866836],[515703.7647286887,5277045.451146785],[515694.90132190683,5277045.871808396],[515694.8971280017,5277047.4277530555],[515687.23627808003,5277047.5182486875],[515686.083424534,5277029.399370274],[515693.8206001054,5277028.864519885],[515694.18790248496,5277034.700344578],[515694.39686607756,5277037.979529236],[515703.26028482756,5277037.558866836]]]},"properties":{"id_build":384,"id_source":"w144657384","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516103.22315733286,5277568.565783017],[516106.75085861055,5277569.242380712],[516104.6977298883,5277578.461307881],[516101.6206136159,5277577.785957567],[516101.1660381534,5277579.22951832],[516091.0341422176,5277576.978709084],[516092.78624841926,5277567.981224814],[516099.3155152209,5277569.499664497],[516102.9178519749,5277570.343176028],[516103.22315733286,5277568.565783017]]]},"properties":{"id_build":385,"id_source":"w144657386","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516029.6315818996,5277548.101903227],[516030.46931420936,5277552.04967387],[516031.2056926401,5277551.89610575],[516033.6818225421,5277563.561493087],[516024.6949543646,5277565.459468975],[516023.3233748507,5277559.020697523],[516022.226194657,5277553.838561729],[516023.0227113472,5277553.662930115],[516022.21492126136,5277549.748584908]]]},"properties":{"id_build":386,"id_source":"w144657389","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515575.4552921903,5277281.945264476],[515570.7275330893,5277280.598942306],[515573.6832041825,5277270.604270704],[515587.6423860084,5277274.198096886],[515587.1873200043,5277275.863974735],[515592.44048487267,5277277.32285702],[515590.1669372609,5277284.985411155],[515580.7338694221,5277282.326148705],[515575.833470058,5277280.946018476],[515575.4552921903,5277281.945264476]]]},"properties":{"id_build":387,"id_source":"w144657390","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516285.3579529346,5276727.633094783],[516277.2454025219,5276727.943832573],[516276.0557957256,5276723.606058853],[516281.464166542,5276723.398897957],[516281.19791547913,5276711.172785467],[516290.2868908193,5276710.864784404],[516290.47739338496,5276723.312964923],[516285.2946558181,5276723.409608722],[516285.3579529346,5276727.633094783]]]},"properties":{"id_build":388,"id_source":"w144657391","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515576.0059897577,5277721.72684873],[515577.00749839214,5277712.282643861],[515582.1124612994,5277712.852004653],[515582.34429038427,5277710.407549179],[515586.39822375646,5277710.862960774],[515586.1663929844,5277713.30741609],[515591.27135413676,5277713.876784915],[515590.5773447557,5277720.654455274],[515587.6043068689,5277720.37975849],[515585.54718670296,5277720.196427099],[515584.8552673856,5277726.196125021],[515584.70507802896,5277726.195722953],[515576.5218397279,5277725.395842978],[515576.2968530279,5277725.284101177],[515576.60645027034,5277721.839595148],[515576.0059897577,5277721.72684873]]]},"properties":{"id_build":389,"id_source":"w144657393","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515972.57998281036,5277504.30049284],[515980.99578967394,5277502.545350512],[515982.3001776031,5277508.8616728615],[515983.2933030767,5277513.665639487],[515982.6171210967,5277513.774922997],[515983.28323430446,5277517.333225945],[515974.04076723143,5277519.308376332],[515973.1490514825,5277515.860595313],[515974.95230400574,5277515.532123531],[515972.57998281036,5277504.30049284]]]},"properties":{"id_build":390,"id_source":"w144657394","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516126.9268584407,5277117.40378799],[516121.22460366646,5277115.38748169],[516122.96704215364,5277109.946457778],[516127.73175440426,5277097.956558712],[516129.9072725448,5277098.851702941],[516130.7284769736,5277100.632214066],[516130.27385795786,5277102.075771565],[516132.1495790688,5277102.747806617],[516126.9268584407,5277117.40378799]]]},"properties":{"id_build":391,"id_source":"w144657395","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.9210161022,5277008.025637972],[516122.41017095867,5277012.697630278],[516123.15474748035,5277015.033626585],[516123.5271893885,5277016.146055334],[516117.3634438643,5277018.018366922],[516116.24826778163,5277013.903109678],[516113.5420676454,5277014.784738216],[516112.351784306,5277010.669273914],[516116.31317543914,5277009.446585527],[516120.9210161022,5277008.025637972]]]},"properties":{"id_build":392,"id_source":"w144657399","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515423.5559713232,5277610.847999653],[515427.54667037004,5277606.857541218],[515434.36215775885,5277613.766272735],[515430.22038287466,5277618.089745484],[515428.42161162506,5277616.751300801],[515426.3887164529,5277618.746429904],[515420.9895158602,5277618.654327906],[515410.54403630766,5277618.482187105],[515410.48953347025,5277610.702257896],[515423.5559713232,5277610.847999653]]]},"properties":{"id_build":393,"id_source":"w144657400","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516145.08232029335,5277286.942268127],[516145.1531061054,5277288.498421568],[516143.4782144458,5277288.549347324],[516141.77328268206,5277288.600190285],[516141.77698009333,5277287.266522977],[516140.2749729752,5277287.26235906],[516140.20202923013,5277286.484178279],[516144.2580653208,5277286.2731438065],[516144.256216331,5277286.939977456],[516145.08232029335,5277286.942268127]]]},"properties":{"id_build":394,"id_source":"w144657403","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516161.23569817,5277473.924250991],[516162.87180902384,5277479.708064099],[516159.9405240626,5277480.589045794],[516160.0888688722,5277481.256296542],[516155.2937091608,5277482.654464564],[516150.6188316019,5277484.008514258],[516148.61122783466,5277476.77885639],[516158.1560653705,5277474.13798281],[516158.30441055546,5277474.805233507],[516161.23569817,5277473.924250991]]]},"properties":{"id_build":395,"id_source":"w144657404","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516045.094140762,5277428.213514946],[516039.8650475697,5277429.010427161],[516036.85231099534,5277429.468915111],[516035.8783975654,5277423.153491337],[516038.53805141273,5277422.738486132],[516037.6379209029,5277416.901166561],[516045.41397291934,5277415.7111676615],[516046.09275129164,5277420.114174843],[516046.5207268533,5277422.871621686],[516048.71455578547,5277422.533135145],[516049.4817946947,5277427.536541614],[516045.094140762,5277428.213514946]]]},"properties":{"id_build":396,"id_source":"w144657405","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516289.70991732954,5277695.561763285],[516295.2893525559,5277687.575306427],[516296.743337118,5277688.601863344],[516297.98749028414,5277689.472237353],[516298.59011856664,5277688.807085178],[516303.61215830856,5277692.155343784],[516302.93443466397,5277692.820285147],[516304.463293803,5277693.92485161],[516306.00710912223,5277695.051688348],[516300.27716504363,5277703.148853536],[516289.70991732954,5277695.561763285]]]},"properties":{"id_build":397,"id_source":"w144657406","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516237.83957705577,5277553.491246925],[516229.9550196054,5277553.246981773],[516229.95254099194,5277554.136093679],[516216.0614688514,5277553.430546425],[516216.4620285263,5277544.429334327],[516230.4282191401,5277545.135091832],[516230.34537626826,5277547.913357144],[516238.0794369603,5277548.268342879],[516237.83957705577,5277553.491246925]]]},"properties":{"id_build":398,"id_source":"w144657408","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.6309589086,5277593.514593866],[516155.80212057603,5277591.71740194],[516156.7125306886,5277588.385732905],[516155.81198985165,5277588.160954099],[516157.26018157526,5277583.174793791],[516158.0107626526,5277580.609546383],[516155.8345041208,5277580.04780754],[516156.9720565068,5277576.049929835],[516166.80292549374,5277578.522297708],[516162.6309589086,5277593.514593866]]]},"properties":{"id_build":399,"id_source":"w144657410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515647.92432361736,5276760.583179381],[515648.61595091695,5276763.1412500115],[515642.9262233877,5276764.659690517],[515642.14542053675,5276761.745734128],[515638.9886232961,5276762.59303084],[515632.66001017403,5276764.287589081],[515630.07953757735,5276754.689310174],[515647.69741936366,5276749.990960438],[515650.3670976161,5276759.922905923],[515647.92432361736,5276760.583179381]]]},"properties":{"id_build":400,"id_source":"w144657412","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516123.65741489455,5277728.441455647],[516133.2197012088,5277730.190615588],[516142.19655198354,5277731.827028053],[516141.12766279094,5277738.159037182],[516135.57313118764,5277737.254520086],[516134.8095564974,5277741.809138619],[516127.00342382636,5277740.453830167],[516127.6922058994,5277735.787863574],[516122.28785917064,5277734.883775242],[516123.65741489455,5277728.441455647]]]},"properties":{"id_build":401,"id_source":"w144657413","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516076.035559735,5277642.854316886],[516079.3813009007,5277644.141665025],[516078.97286778886,5277645.196365568],[516081.68093804934,5277646.248560209],[516085.0791816055,5277647.558284646],[516082.37898406293,5277654.530407654],[516075.6274984031,5277651.933316101],[516076.5956281672,5277649.435342785],[516073.887558486,5277648.383150499],[516076.035559735,5277642.854316886]]]},"properties":{"id_build":402,"id_source":"w144657416","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.1160755713,5277454.36608489],[516150.7787136416,5277453.445504772],[516151.013565883,5277450.000821658],[516145.60772419523,5277449.541268563],[516146.0743409501,5277443.763291696],[516151.6306929544,5277444.112122906],[516151.55251142586,5277445.22330427],[516156.8609447722,5277445.604794666],[516162.89019779966,5277446.03274688],[516162.1160755713,5277454.36608489]]]},"properties":{"id_build":403,"id_source":"w144657417","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516166.37176820065,5277409.255131651],[516166.4481013852,5277408.810784322],[516166.6078656609,5277405.365893529],[516166.83964291203,5277403.0326009095],[516169.9183876459,5277403.152290507],[516170.0722893955,5277401.819040107],[516180.1336860333,5277402.513831474],[516179.58668321517,5277410.180958997],[516173.459765769,5277409.752718396],[516166.37176820065,5277409.255131651]]]},"properties":{"id_build":404,"id_source":"w144657420","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515558.0227604912,5277032.3899894105],[515551.92808703677,5277036.597016765],[515547.9648097364,5277030.140330465],[515545.7832431371,5277031.468182081],[515540.62274524156,5277023.34120929],[515554.6166827361,5277014.153979855],[515559.92707992735,5277022.39250524],[515554.20821006043,5277026.489394742],[515558.0227604912,5277032.3899894105]]]},"properties":{"id_build":405,"id_source":"w144657424","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515475.1105126824,5277285.678727925],[515475.54929879797,5277290.125483515],[515479.8311978025,5277289.69230719],[515480.9384946133,5277296.919334015],[515476.8070966702,5277297.241769823],[515476.95522908797,5277298.020141734],[515471.49447013886,5277298.372389692],[515465.46283235995,5277298.767582253],[515463.99388877687,5277286.31603048],[515475.1105126824,5277285.678727925]]]},"properties":{"id_build":406,"id_source":"w144657426","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516068.3669847598,5277382.087993583],[516071.6731872376,5277381.430280264],[516073.1533859891,5277389.3252927],[516069.8465743051,5277390.205283096],[516069.5495524381,5277388.981925413],[516059.48137593386,5277390.732382385],[516058.00177208777,5277382.615095531],[516063.4863385109,5277381.785562342],[516068.14444785827,5277381.087121169],[516068.3669847598,5277382.087993583]]]},"properties":{"id_build":407,"id_source":"w144657427","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515404.00435233396,5277507.325104728],[515405.064833612,5277503.882577962],[515409.19225678925,5277505.004898298],[515409.6782138976,5277505.828618777],[515410.16411203536,5277506.674567098],[515414.2170232746,5277507.574414253],[515412.245658813,5277514.682140304],[515401.13947545347,5277511.540836537],[515402.5035785229,5277506.876575065],[515404.00435233396,5277507.325104728]]]},"properties":{"id_build":408,"id_source":"w144657433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516119.2136318894,5276916.686275185],[516121.07994034054,5276923.493193213],[516117.8554728058,5276924.373385038],[516118.2643974507,5276925.874903292],[516113.27361087804,5276927.239223544],[516108.448211344,5276928.548435707],[516106.5001042403,5276921.441218219],[516116.436561845,5276918.734673451],[516116.1094213557,5276917.53345896],[516119.2136318894,5276916.686275185]]]},"properties":{"id_build":409,"id_source":"w144657434","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516045.06175173784,5277390.914905928],[516045.8035530233,5277394.251144433],[516037.83846971305,5277395.896295409],[516036.8728977292,5277392.003742542],[516038.15049921,5277391.673842341],[516035.1799029934,5277379.551421552],[516042.99450324936,5277378.016992024],[516044.3975537138,5277383.944609791],[516045.96385882853,5277390.583972647],[516045.06175173784,5277390.914905928]]]},"properties":{"id_build":410,"id_source":"w144657437","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515470.47023429483,5277562.293251602],[515478.5901429691,5277558.758361258],[515477.91899899486,5277556.978340434],[515482.8813029018,5277554.768739566],[515487.4350128689,5277565.005711558],[515468.5644663853,5277572.957606792],[515465.7573066833,5277566.7485490665],[515464.08494079666,5277563.054265952],[515469.4984056995,5277560.623572531],[515470.47023429483,5277562.293251602]]]},"properties":{"id_build":411,"id_source":"w144657442","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.67171933234,5277424.159929094],[516218.125821154,5277424.325145562],[516218.3004805906,5277420.935867353],[516228.9480418336,5277421.476780397],[516228.81321796763,5277424.043734627],[516230.1347983169,5277424.102988505],[516229.9995402369,5277426.825537269],[516229.8564626063,5277429.659204078],[516228.6700608574,5277429.600327052],[516228.52682903863,5277432.489563391],[516225.82365525194,5277432.348661423],[516224.87819817103,5277450.928606414],[516213.33714504715,5277450.340756323],[516214.67171933234,5277424.159929094]]]},"properties":{"id_build":412,"id_source":"w144657443","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516212.681300561,5276933.372212806],[516210.42908106255,5276933.032523321],[516210.965335261,5276929.2552650105],[516211.49076067784,5276929.367867523],[516212.02763473114,5276925.368331573],[516212.7783755499,5276925.481561508],[516213.07738117245,5276923.292941148],[516213.6218601879,5276919.260084629],[516214.44770687114,5276919.3735238975],[516218.8022550988,5276919.941349558],[516218.4962628845,5276921.941012605],[516222.1751728599,5276922.395819299],[516220.4137021659,5276934.616283893],[516212.681300561,5276933.372212806]]]},"properties":{"id_build":413,"id_source":"w144657444","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515721.6881510569,5276804.88207746],[515718.15814248234,5276804.872548203],[515718.0118291286,5276803.42733755],[515707.59388639306,5276803.643734341],[515698.78334513615,5276803.820027019],[515698.8860164776,5276793.595454303],[515718.1890409808,5276793.425245549],[515718.3458541417,5276790.980596095],[515721.9512779375,5276790.879189366],[515721.6881510569,5276804.88207746]]]},"properties":{"id_build":414,"id_source":"w144657447","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515735.9810970465,5277024.421575613],[515731.03325814754,5277021.074015131],[515733.7481053548,5277016.969180883],[515734.87256053515,5277017.750197304],[515736.607156988,5277015.087531826],[515738.9311708494,5277016.649768986],[515738.40304086974,5277017.537459188],[515739.90241354273,5277018.541769364],[515735.9810970465,5277024.421575613]]]},"properties":{"id_build":415,"id_source":"w144657454","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516290.28627453407,5277677.447575455],[516297.9004604502,5277666.910598038],[516306.06905623997,5277672.935025347],[516305.11167181097,5277674.2437944515],[516303.9582928909,5277675.818750531],[516304.5574993673,5277676.376128077],[516301.24054513033,5277680.923574451],[516300.6410276217,5277680.477336252],[516299.5553302305,5277682.01914075],[516298.5299585269,5277683.472202432],[516290.28627453407,5277677.447575455]]]},"properties":{"id_build":416,"id_source":"w144657458","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516037.5679393721,5277355.062787],[516044.8638352594,5277353.726982747],[516045.6555158316,5277358.041388707],[516046.291753133,5277361.532931876],[516045.20977053564,5277361.730001644],[516046.31218049553,5277367.745703038],[516038.3926714872,5277369.190927335],[516036.5652693519,5277359.183311737],[516038.2708835178,5277358.876818416],[516038.16724443773,5277358.331947912],[516037.5679393721,5277355.062787]]]},"properties":{"id_build":417,"id_source":"w144657459","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.30590462167,5277629.6802070895],[516038.8806753985,5277628.214744574],[516041.5962397034,5277629.278055096],[516039.29718661215,5277635.1287905555],[516036.7841692012,5277634.143836916],[516035.86150953645,5277636.497460165],[516029.027560553,5277633.833511882],[516031.674524206,5277627.08349773],[516035.14025399653,5277628.437834642],[516038.30590462167,5277629.6802070895]]]},"properties":{"id_build":418,"id_source":"w144657461","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.002239962,5277530.879971681],[516179.0355505901,5277527.431950079],[516178.2172016493,5277524.65117992],[516180.9225575962,5277523.991859221],[516180.55108652724,5277522.546008864],[516182.5052541702,5277521.962399111],[516185.3613317898,5277521.114561681],[516184.9147642735,5277519.668502276],[516188.97342113574,5277518.457248401],[516191.42598016775,5277527.688675614],[516180.002239962,5277530.879971681]]]},"properties":{"id_build":419,"id_source":"w144657462","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515627.06882067147,5277078.920139982],[515631.87959157676,5277077.37709709],[515633.0704983868,5277081.381323954],[515638.55749452295,5277079.728962444],[515639.0793351165,5277081.175180267],[515646.06899086636,5277079.304582513],[515647.18388858467,5277083.642027225],[515629.4491469981,5277087.484286578],[515629.1499285814,5277087.038924571],[515628.19854438916,5277083.3354185745],[515627.06882067147,5277078.920139982]]]},"properties":{"id_build":420,"id_source":"w144657464","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516228.79096962366,5277235.339385309],[516227.7022438918,5277221.777295927],[516237.16716500977,5277221.025704397],[516245.4301589913,5277220.381914404],[516253.39306017815,5277219.626158632],[516254.481416276,5277233.299391841],[516245.2418158519,5277234.051583808],[516235.7018137492,5277234.8029527655],[516235.6267127137,5277234.80274335],[516228.79096962366,5277235.339385309]]]},"properties":{"id_build":421,"id_source":"w144657465","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516043.81688143814,5277243.095551745],[516044.26105568156,5277245.4307110505],[516039.377048389,5277246.30637307],[516039.37490527617,5277247.084345623],[516035.2572655818,5277247.839868523],[516029.75709815894,5277248.836095457],[516028.423945816,5277242.052898851],[516038.79277329653,5277240.303215515],[516038.57022570586,5277239.302344481],[516042.9585416305,5277238.436429921],[516043.81688143814,5277243.095551745]]]},"properties":{"id_build":422,"id_source":"w144657468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515762.7914063527,5277685.3311758395],[515753.92505876726,5277687.196553063],[515752.29401511716,5277679.412351527],[515757.1782168524,5277678.314170984],[515758.98140660604,5277677.985632365],[515759.8095610045,5277677.2098953985],[515760.2622389983,5277676.433142059],[515760.56562907744,5277675.322565114],[515760.3439535424,5277673.988287059],[515761.61213653267,5277679.882131309],[515762.7914063527,5277685.3311758395]]]},"properties":{"id_build":423,"id_source":"w144657470","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.74888712296,5277490.72241816],[516082.99382368725,5277491.767809149],[516079.87524255004,5277492.49271793],[516080.0459720422,5277493.215598346],[516073.9215821059,5277494.621276141],[516071.5770005232,5277495.170502612],[516071.67349233973,5277495.581986335],[516066.9542917665,5277496.6803591335],[516064.675780391,5277486.893766995],[516080.9825276334,5277483.126688943],[516082.74888712296,5277490.72241816]]]},"properties":{"id_build":424,"id_source":"w144657473","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516139.3408333073,5277028.192957636],[516137.40168954316,5277023.297434192],[516140.3338168459,5277022.194163475],[516140.1842254181,5277021.971469328],[516144.58303487924,5277020.094288114],[516150.03453375556,5277017.775470805],[516153.09220932535,5277025.563734778],[516143.392119245,5277029.760144589],[516143.09355324064,5277029.092478339],[516142.2732666249,5277026.978548995],[516139.3408333073,5277028.192957636]]]},"properties":{"id_build":425,"id_source":"w144657477","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516171.73739171476,5277289.016758203],[516175.34251651354,5277288.915632791],[516175.3468391322,5277287.359687601],[516175.282854021,5277283.358477065],[516183.3195243309,5277283.047390005],[516183.44871906046,5277290.605255529],[516183.9747301828,5277290.49557781],[516184.1141183934,5277294.385858308],[516171.79674880014,5277294.6850528745],[516171.73739171476,5277289.016758203]]]},"properties":{"id_build":426,"id_source":"w144657479","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515500.7059071132,5277618.143621341],[515493.1900328087,5277617.65682777],[515493.86478316924,5277609.612102519],[515492.83614297217,5277609.5426811585],[515492.93909173144,5277607.542438877],[515490.22155677754,5277604.35660961],[515493.45820799173,5277601.542271668],[515493.53720848245,5277600.075436683],[515497.5090632379,5277600.363857773],[515500.1281252728,5277598.225832278],[515502.261534359,5277600.798841868],[515510.9109691221,5277601.4442627495],[515510.08253772114,5277610.78891219],[515503.91823772306,5277610.361275659],[515501.3504221984,5277610.176614252],[515500.7059071132,5277618.143621341]]]},"properties":{"id_build":427,"id_source":"w144657480","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.5615497224,5277509.884127351],[516003.4430796446,5277510.575735355],[516003.59889022575,5277511.265230545],[515999.4810142678,5277512.176373204],[515994.08568932407,5277513.37297277],[515992.3127496184,5277505.399377266],[516001.8034030528,5277503.302684119],[516001.9962435066,5277504.18121873],[516005.14475585317,5277503.489692532],[516005.2189062668,5277503.834429826],[516006.5615497224,5277509.884127351]]]},"properties":{"id_build":428,"id_source":"w144657484","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516106.05421734543,5277033.768918788],[516114.6243350464,5277030.791856876],[516115.6746532896,5277033.917790655],[516117.603871029,5277039.691283426],[516103.921808234,5277044.432436848],[516101.0158208869,5277036.088919441],[516100.1964419297,5277033.6415793365],[516104.4816519425,5277032.097473051],[516105.3010293226,5277034.544813752],[516106.27829855744,5277034.214097598],[516106.05421734543,5277033.768918788]]]},"properties":{"id_build":429,"id_source":"w144657490","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515737.29513414897,5277088.441604085],[515736.6056915453,5277093.441028306],[515738.3982466129,5277097.11348406],[515742.8350208177,5277095.013823231],[515746.27171769814,5277101.691499513],[515736.94636254176,5277106.334157112],[515730.7470692046,5277093.647477127],[515718.28149764176,5277093.058114821],[515718.2964984021,5277087.50116924],[515737.29513414897,5277088.441604085]]]},"properties":{"id_build":430,"id_source":"w144657494","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516062.823957601,5277521.1530661825],[516070.39086106594,5277519.506850777],[516070.58620623185,5277519.474048043],[516071.401999474,5277523.199484296],[516072.46151587076,5277522.969015523],[516073.410672154,5277527.350545265],[516074.70100873813,5277533.2778608855],[516067.2994583324,5277534.880071042],[516065.0302207692,5277524.460006655],[516063.6100232948,5277524.76727948],[516062.823957601,5277521.1530661825]]]},"properties":{"id_build":431,"id_source":"w144657496","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516188.31239175476,5276945.863205743],[516177.79062348994,5276948.390178158],[516177.93928907113,5276948.946289892],[516175.76001723716,5276949.38479464],[516174.4118368551,5276948.047372796],[516173.9957573647,5276946.4235768765],[516173.5946368554,5276944.822050489],[516176.7511986143,5276944.052840608],[516176.00910415454,5276940.827726629],[516186.605990128,5276938.300959762],[516188.31239175476,5276945.863205743]]]},"properties":{"id_build":432,"id_source":"w144657497","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515902.0431481502,5277758.95104196],[515897.60079320014,5277708.2591367345],[515924.7179630576,5277705.44361506],[515928.35107595415,5277749.909495653],[515930.3786242667,5277749.915043593],[515930.96113101294,5277756.585029104],[515924.7267843539,5277757.123671068],[515913.3103258427,5277757.870431655],[515904.2214890774,5277758.734712999],[515902.0431481502,5277758.95104196]]]},"properties":{"id_build":433,"id_source":"w144657498","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sports_centre","main_use":"entertainment, arts and culture","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516280.28023707855,5276690.164815276],[516280.50897903804,5276688.9429180045],[516277.65704666945,5276688.156967725],[516276.081019326,5276687.7080038525],[516277.8280767308,5276680.71108563],[516282.1812439819,5276681.83465225],[516282.78863507265,5276679.5024167355],[516280.76226725127,5276678.941052753],[516281.9770493581,5276674.276581523],[516286.3302206447,5276675.400151223],[516286.0260579071,5276676.732977031],[516290.90436232364,5276678.08029819],[516289.1591536518,5276684.410379488],[516287.9583560215,5276684.073601694],[516287.1234631607,5276687.183178349],[516288.84970599983,5276687.632565377],[516287.6352319241,5276692.185896443],[516280.28023707855,5276690.164815276]]]},"properties":{"id_build":434,"id_source":"w144825729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516263.8402797597,5276552.527940518],[516262.1233051666,5276548.744396724],[516266.9368569086,5276546.423906742],[516268.7289389447,5276550.207661764],[516263.8402797597,5276552.527940518]]]},"properties":{"id_build":435,"id_source":"w144825737","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516255.09996866266,5276589.2907728255],[516251.739586676,5276582.279594161],[516269.5653657445,5276573.438191846],[516273.07563990896,5276580.560939308],[516255.09996866266,5276589.2907728255]]]},"properties":{"id_build":436,"id_source":"w144825739","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516277.65704666945,5276688.156967725],[516280.50897903804,5276688.9429180045],[516280.28023707855,5276690.164815276],[516277.35319720855,5276689.378655171],[516277.65704666945,5276688.156967725]]]},"properties":{"id_build":437,"id_source":"w144825746","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516265.37226707506,5276568.758612488],[516260.9665557636,5276559.521715651],[516266.5315063541,5276557.092183758],[516270.8627220911,5276566.106597309],[516265.37226707506,5276568.758612488]]]},"properties":{"id_build":438,"id_source":"w144825751","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516278.6380902928,5276579.020529477],[516274.67995970574,5276570.896269914],[516284.0820224576,5276566.143545705],[516288.18974067183,5276574.490509394],[516278.6380902928,5276579.020529477]]]},"properties":{"id_build":439,"id_source":"w144825754","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.6889797832,5277001.9258882925],[517287.5374518078,5277002.369997866],[517286.7870710367,5277002.1454904],[517286.25540374493,5277004.144429533],[517286.0667738064,5277006.966822038],[517278.06771096477,5277004.57580222],[517279.5314994479,5276999.767789896],[517278.06081118784,5276999.307752384],[517280.4332389615,5276992.012903715],[517284.13985655876,5276993.213101335],[517287.71141711925,5276994.36844441],[517286.79927895305,5276998.033351805],[517288.7500062348,5276998.7059825165],[517287.6889797832,5277001.9258882925]]]},"properties":{"id_build":440,"id_source":"w145186970","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516330.7886838716,5277628.1260326],[516330.3390121601,5277627.802465595],[516331.95990465087,5277625.550873055],[516333.7165013254,5277623.110723913],[516334.18119242054,5277623.434333318],[516334.6561683752,5277622.768826732],[516336.2921455148,5277620.49504975],[516344.6186873479,5277626.442175873],[516336.9363725135,5277637.123382875],[516328.6098694225,5277631.165153721],[516330.1855468719,5277628.969003804],[516330.7886838716,5277628.1260326]]]},"properties":{"id_build":441,"id_source":"w145186981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516672.83317734336,5277412.350546547],[516675.5210738218,5277415.203425156],[516679.12236980675,5277419.036952515],[516673.6999877244,5277424.356135022],[516672.11260749,5277422.706719115],[516671.2290532606,5277421.792842112],[516669.4973297549,5277423.34384193],[516666.4278308387,5277420.000858243],[516669.9670142267,5277416.676794419],[516668.8514800228,5277415.473289927],[516667.9026907887,5277416.359692582],[516661.491336291,5277420.864734146],[516658.5633742118,5277417.9222632265],[516669.6939851967,5277407.11798386],[516673.66180995,5277411.463800586],[516672.83317734336,5277412.350546547]]]},"properties":{"id_build":442,"id_source":"w145186993","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.3796900457,5277728.830584184],[517311.90204910317,5277724.518489275],[517316.7988500157,5277721.799009392],[517313.8442660352,5277727.9696049625],[517309.44614451984,5277742.293585212],[517306.60709022195,5277737.394984774],[517308.6382788488,5277736.178483625],[517307.00206635264,5277733.361777297],[517304.3796900457,5277728.830584184]]]},"properties":{"id_build":443,"id_source":"w145187029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.4561747102,5277703.161060319],[516753.48089594423,5277702.546064392],[516754.8650858159,5277743.449543388],[516755.70224287675,5277765.679940613],[516748.7926168969,5277765.99347698],[516745.78852923255,5277766.09597478],[516738.2784703456,5277766.296656543],[516735.4561747102,5277703.161060319]]]},"properties":{"id_build":444,"id_source":"w145187102","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.0984979578,5277566.460217418],[516925.9216607178,5277566.120468529],[516925.30990097043,5277569.897447385],[516915.25178224006,5277568.201116336],[516915.8635356275,5277564.4241364505],[516918.7906961145,5277564.988341859],[516920.77551430813,5277553.880118093],[516927.98191224196,5277554.901326522],[516927.2254301976,5277559.378065829],[516926.8357473536,5277561.677529218],[516928.8620693617,5277562.127980689],[516928.0984979578,5277566.460217418]]]},"properties":{"id_build":445,"id_source":"w145187104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.34558343835,5277575.960932379],[516641.8035238041,5277574.74827703],[516642.10518124327,5277574.304579744],[516646.91581707017,5277572.762374642],[516649.59641336685,5277580.772112681],[516648.4690111296,5277581.102308287],[516649.51051025564,5277584.550623546],[516643.0461715013,5277586.643798259],[516641.92989007797,5277583.084130496],[516640.95268183044,5277583.414756892],[516640.05135146884,5277580.844849008],[516638.34558343835,5277575.960932379]]]},"properties":{"id_build":446,"id_source":"w145187117","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.05033588957,5276938.546326868],[517314.8163055045,5276944.0025977595],[517314.5197704403,5276947.74712909],[517310.6076708747,5276947.446534297],[517310.45151430485,5276949.44658745],[517306.79470578395,5276949.168982108],[517307.5290330635,5276939.635365302],[517314.92524399684,5276940.201938709],[517315.05033588957,5276938.546326868]]]},"properties":{"id_build":447,"id_source":"w145187124","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517156.9042417747,5277469.993699263],[517156.8245585772,5277471.549423459],[517156.744220399,5277473.327425594],[517156.3487527432,5277480.105795993],[517145.8370106008,5277479.407989953],[517147.88972210133,5277445.405217769],[517158.3267546434,5277445.991667045],[517157.93095602404,5277452.88117602],[517157.84996223677,5277454.881456011],[517157.770606143,5277456.326041198],[517156.9042417747,5277469.993699263]]]},"properties":{"id_build":448,"id_source":"w145187136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.5003958358,5277294.491182594],[516728.9178889209,5277294.558686094],[516722.43631982314,5277294.684548592],[516722.31580476125,5277284.348196051],[516717.28407721274,5277284.333746759],[516716.85984550166,5277248.990056638],[516766.8783030348,5277248.689320033],[516766.99874024745,5277259.025673103],[516727.11960911634,5277259.133248656],[516727.42263271747,5277284.36286545],[516732.3044788287,5277284.265752921],[516732.5003958358,5277294.491182594]]]},"properties":{"id_build":449,"id_source":"w145187161","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"commercial","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.48292923224,5277484.422114126],[517291.48651434557,5277478.2827887675],[517293.8611103043,5277480.312588816],[517303.0599121508,5277488.15305862],[517302.31393371354,5277488.995505221],[517296.23591071385,5277494.912318488],[517295.29441597423,5277495.843097101],[517294.56421851023,5277496.429969697],[517288.35462592414,5277491.021239656],[517289.47675103764,5277489.957628401],[517284.2927868124,5277485.6300061485],[517285.48292923224,5277484.422114126]]]},"properties":{"id_build":450,"id_source":"w145187164","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.3024682542,5276824.27447078],[516695.381643689,5276829.597937315],[516682.26670030336,5276819.557771975],[516680.38139974576,5276822.219725746],[516673.261250669,5276816.975765768],[516677.03089546587,5276811.985270848],[516679.7289994605,5276813.993514264],[516683.5740766842,5276808.892099859],[516693.2424304957,5276816.032752685],[516691.4328673132,5276818.4726404715],[516699.3024682542,5276824.27447078]]]},"properties":{"id_build":451,"id_source":"w145187172","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.85723972163,5276716.977010619],[516642.28887064813,5276713.860615435],[516652.8185774599,5276708.778288568],[516653.640314,5276710.33659491],[516658.3787825228,5276708.016213043],[516662.1131871834,5276715.362120029],[516657.29897959245,5276717.904561709],[516657.89634428,5276719.1288076565],[516647.5165491829,5276724.322693653],[516645.94818407035,5276721.20629744],[516643.85723972163,5276716.977010619]]]},"properties":{"id_build":452,"id_source":"w145187180","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.62934312975,5277219.43275449],[516834.5092550071,5277234.991986873],[516827.59899467975,5277235.305430955],[516827.52806925675,5277233.860407859],[516823.6975937808,5277233.960478545],[516823.6282730069,5277231.959760872],[516821.67532357527,5277232.065258162],[516821.5339323855,5277218.616927508],[516830.0510579963,5277218.41926043],[516830.12294676265,5277219.530866748],[516834.62934312975,5277219.43275449]]]},"properties":{"id_build":453,"id_source":"w145187183","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516511.71387437213,5277423.338786094],[516513.06249720504,5277424.454009542],[516514.0962242091,5277430.68077356],[516507.84161912283,5277438.220546468],[516501.45636344835,5277438.869284558],[516494.1885050841,5277432.958277578],[516493.6810769003,5277426.510728412],[516499.4841391451,5277419.303080373],[516502.5641294026,5277418.978390061],[516502.3441886207,5277417.088389127],[516511.71387437213,5277423.338786094]]]},"properties":{"id_build":454,"id_source":"w145187184","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516789.5719723143,5277764.999544698],[516783.9318201318,5277765.183332813],[516780.559705637,5277765.30697962],[516771.47202559526,5277765.725351171],[516770.84472763987,5277741.050477284],[516770.7030375476,5277735.49307223],[516769.85225010896,5277702.37092103],[516787.4257668431,5277701.9770103],[516788.4225539184,5277731.309713717],[516788.67202937545,5277738.545643171],[516789.5719723143,5277764.999544698]]]},"properties":{"id_build":455,"id_source":"w145187188","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516486.4120931778,5276917.025252349],[516482.1405374171,5276913.678967251],[516481.0849755873,5276915.120796526],[516469.61777482805,5276906.641730167],[516475.04673659644,5276899.099583818],[516480.6683158125,5276903.116522843],[516484.26613502606,5276905.682921138],[516485.3216993393,5276904.241092456],[516486.60352413316,5276902.466485273],[516493.5738392193,5276907.598653238],[516492.14148816187,5276909.483972347],[516486.4120931778,5276917.025252349]]]},"properties":{"id_build":456,"id_source":"w145187193","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516602.98359054496,5276735.309531168],[516598.33136110107,5276733.740312728],[516602.2689535313,5276722.526423215],[516603.46972537215,5276722.863265902],[516605.3626282671,5276717.53395553],[516612.79068314796,5276720.222494993],[516610.7481930945,5276725.329096829],[516612.3986584222,5276726.000643323],[516608.3108338152,5276737.214097677],[516604.10893533163,5276735.757298706],[516602.98359054496,5276735.309531168]]]},"properties":{"id_build":457,"id_source":"w145187203","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.8622035109,5276783.904895468],[516605.2897054012,5276785.251195936],[516601.57683498634,5276796.688004494],[516600.07596830616,5276796.239166856],[516598.2582018918,5276801.56869361],[516590.52950115094,5276798.990455044],[516592.1970477931,5276793.6604979085],[516590.920866562,5276793.434582343],[516594.6343514586,5276781.775489396],[516599.36165027454,5276783.344919181],[516600.8622035109,5276783.904895468]]]},"properties":{"id_build":458,"id_source":"w145187212","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516307.29133105144,5277745.957354433],[516317.34121448436,5277750.542250463],[516313.33567409293,5277759.6444960125],[516307.6356703226,5277757.072308405],[516307.9376042036,5277756.517454735],[516306.745192401,5277755.947301072],[516305.3878218845,5277755.287773708],[516304.1791536382,5277757.840606078],[516299.07865402004,5277755.714665504],[516304.5960240911,5277743.0601677755],[516307.9712284038,5277744.514440392],[516307.29133105144,5277745.957354433]]]},"properties":{"id_build":459,"id_source":"w145187232","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.3371534928,5276919.560307952],[516624.40317528124,5276883.075380361],[516638.49253936036,5276893.785039421],[516626.5076162986,5276908.865816557],[516611.3566121012,5276928.04975752],[516607.88783486903,5276932.930013501],[516598.5800765409,5276925.790528468],[516600.6765194449,5276922.806844729],[516596.3371534928,5276919.560307952]]]},"properties":{"id_build":460,"id_source":"w145187236","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516700.891425809,5277108.241203948],[516699.69265163667,5277107.237507335],[516706.17699315684,5277098.364922624],[516714.1209826992,5277104.278130832],[516707.7120570621,5277113.039783386],[516705.16398848617,5277111.143095542],[516695.5893053282,5277123.8967133965],[516688.0198812254,5277118.318023207],[516694.5780207481,5277109.890196368],[516697.8755260868,5277112.344727777],[516700.891425809,5277108.241203948]]]},"properties":{"id_build":461,"id_source":"w145187240","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.52625149005,5277568.869760477],[516722.4112926098,5277564.865521336],[516725.1170121146,5277564.09531439],[516730.3782596405,5277562.554472655],[516731.493532905,5277566.447574334],[516733.67325597495,5277565.786999629],[516734.9658513901,5277570.691984811],[516736.5703999422,5277576.798178102],[516727.85152576084,5277579.440477498],[516726.73689124855,5277575.325098463],[516724.0311767337,5277576.095304655],[516722.0230397785,5277569.310002259],[516723.52625149005,5277568.869760477]]]},"properties":{"id_build":462,"id_source":"w145187241","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517251.8789001233,5277529.178523568],[517250.40296971163,5277520.394094248],[517253.7089013956,5277519.848190881],[517254.99688770203,5277518.56278464],[517255.8178870447,5277517.742782339],[517255.8966079466,5277516.520476235],[517258.0806930462,5277514.415291103],[517259.5072153171,5277514.5306598665],[517265.57132269675,5277520.883617448],[517257.8896467253,5277528.196078461],[517251.8789001233,5277529.178523568]]]},"properties":{"id_build":463,"id_source":"w145187252","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517309.62978846015,5276910.056181681],[517309.46618688415,5276912.033984643],[517310.56996948126,5276912.126177688],[517311.83143998473,5276912.22995373],[517311.4652291749,5276916.6744589275],[517309.21260259574,5276916.489938749],[517309.10355709295,5276917.80106482],[517303.4044296798,5276917.32845354],[517302.87459352607,5276923.761876356],[517297.98640831996,5276923.358363981],[517299.16259186494,5276909.19152757],[517309.62978846015,5276910.056181681]]]},"properties":{"id_build":464,"id_source":"w145187281","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516993.8670442567,5277623.666608716],[516995.5936043393,5277623.893928715],[516994.75489496783,5277628.225937992],[516993.1486194794,5277627.954513358],[516986.34819817904,5277626.812154189],[516985.1471485237,5277626.641940065],[516985.7605627765,5277622.309272119],[516984.1094221482,5277621.971035126],[516984.79825645493,5277617.5274472],[516986.3743021891,5277617.865465274],[516986.7412491544,5277615.643737176],[516987.5211745065,5277610.866995577],[516995.7027677333,5277612.224553794],[516993.8670442567,5277623.666608716]]]},"properties":{"id_build":465,"id_source":"w145187300","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516402.1214377822,5276738.1856527],[516402.1211247505,5276738.296791544],[516402.3439427876,5276739.186536939],[516402.1186204888,5276739.185902292],[516398.9625434446,5276739.7327123955],[516398.2969042765,5276736.063227035],[516405.3604507781,5276734.860584811],[516405.1382592083,5276733.748561618],[516406.3406054837,5276733.529669425],[516406.930819309,5276737.310082936],[516402.1214377822,5276738.1856527]]]},"properties":{"id_build":466,"id_source":"w145187304","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.6458155916,5277641.393473947],[516977.10709684034,5277641.133364733],[516978.3374018695,5277633.8461725125],[516979.20058346575,5277633.993171848],[516979.43740014924,5277632.615727272],[516980.08702851506,5277628.738838088],[516985.8591528902,5277629.700365744],[516986.34819817904,5277626.812154189],[516993.1486194794,5277627.954513358],[516992.65953846497,5277630.853838252],[516988.91406676633,5277630.220523439],[516987.3323073508,5277639.562776856],[516989.0136432965,5277639.845532945],[516988.4711225814,5277643.04478013],[516984.86827546917,5277642.4341120515],[516978.6458155916,5277641.393473947]]]},"properties":{"id_build":467,"id_source":"w145187330","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.4317805809,5277534.486231401],[516928.6447349652,5277533.564389298],[516934.574504515,5277534.581893772],[516934.26991324406,5277536.025826734],[516936.6717294624,5277536.477373073],[516940.0494850133,5277537.042899927],[516939.2855787751,5277541.486274026],[516941.9123602305,5277542.0496170195],[516940.919928101,5277547.60372514],[516926.7715713428,5277545.006354521],[516928.4317805809,5277534.486231401]]]},"properties":{"id_build":468,"id_source":"w145187349","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516877.16630695213,5277652.33464859],[516877.1321743449,5277651.156466349],[516890.4854123403,5277650.772860854],[516890.7514897828,5277660.009361429],[516885.0436784216,5277660.181741812],[516882.3024968005,5277660.240476007],[516882.32828078093,5277661.707597917],[516877.506856582,5277661.793644234],[516877.43927059,5277661.793448297],[516877.3847037183,5277659.892797222],[516877.16630695213,5277652.33464859]]]},"properties":{"id_build":469,"id_source":"w145187397","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.5877038311,5277719.516605635],[516890.20248194574,5277712.054602645],[516897.05095634086,5277706.9620386325],[516899.519088835,5277710.414541127],[516899.06690623134,5277710.968928235],[516899.8372865862,5277712.038108039],[516904.52688990993,5277718.542296503],[516896.4749710554,5277724.298198485],[516894.3807040095,5277721.40248187],[516896.1868494475,5277720.074044255],[516895.81363335025,5277719.294981444],[516895.5877038311,5277719.516605635]]]},"properties":{"id_build":470,"id_source":"w145187416","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516877.619403831,5277700.681834897],[516872.3846537707,5277693.109145124],[516877.5014339794,5277689.567498823],[516878.2343379997,5277690.614339058],[516879.22153415444,5277692.017564485],[516882.4570718625,5277689.804147659],[516886.1970022162,5277694.927431733],[516882.05839106743,5277697.805067265],[516883.8526149468,5277700.588769129],[516878.05869660847,5277704.573006443],[516876.03918611666,5277701.7886532815],[516877.619403831,5277700.681834897]]]},"properties":{"id_build":471,"id_source":"w145187428","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517207.7036440277,5276798.19193115],[517203.64821073227,5276798.0688090185],[517203.73316754587,5276794.73486552],[517201.47996530414,5276794.72820933],[517201.52605433844,5276791.83871027],[517201.57083022455,5276789.393766605],[517207.80535229156,5276789.189906592],[517207.81126374763,5276787.189407384],[517213.218956137,5276787.205389569],[517213.21304282424,5276789.205888775],[517217.49380256166,5276789.329683743],[517217.54294991225,5276798.10987461],[517207.7036440277,5276798.19193115]]]},"properties":{"id_build":472,"id_source":"w145187447","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.71210992924,5277468.034676799],[516650.53042772604,5277466.878626851],[516653.49940768705,5277465.975771606],[516654.4368686881,5277469.045913848],[516655.61692512844,5277468.693642001],[516656.89665564155,5277472.876162621],[516658.68231191824,5277478.716115374],[516650.7149415581,5277481.138401034],[516648.93672429596,5277475.320699991],[516645.7948656823,5277476.278633209],[516644.6268217521,5277472.429853976],[516647.7611406639,5277471.483012552],[516646.71210992924,5277468.034676799]]]},"properties":{"id_build":473,"id_source":"w145187460","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.18131284905,5276702.787586663],[516462.89748382807,5276706.793468139],[516459.965136244,5276707.89657639],[516461.6065129049,5276711.791106389],[516462.65110985993,5276714.2391333245],[516459.64334418956,5276715.453168253],[516458.82249895146,5276713.561472878],[516455.6641727858,5276714.897338029],[516451.75389163365,5276716.542271734],[516448.09935343114,5276707.418490987],[516458.1003182923,5276703.334577051],[516458.32375737146,5276704.002046886],[516461.18131284905,5276702.787586663]]]},"properties":{"id_build":474,"id_source":"w145187465","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.4906596337,5277381.661283954],[516722.0815115916,5277365.924180469],[516730.84290632885,5277374.729400322],[516729.71322415315,5277375.8375528585],[516737.80093683547,5277383.8628686145],[516759.580003863,5277383.814380327],[516760.02699482534,5277411.156076679],[516751.99078616477,5277411.355228471],[516752.04605860956,5277418.246059989],[516716.9736962433,5277418.589811573],[516716.8994462845,5277392.138308451],[516706.4906596337,5277381.661283954]]]},"properties":{"id_build":475,"id_source":"w145187549","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"religious","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.7329473166,5277622.768422309],[517211.34021711303,5277620.904596138],[517208.5040160922,5277620.073776252],[517210.24995346216,5277613.743959535],[517207.849175283,5277612.958883182],[517213.01124905574,5277594.191490311],[517216.0124770137,5277595.089484276],[517214.79647451866,5277599.97604665],[517215.9222625426,5277600.201655569],[517214.0995756904,5277607.086943368],[517221.45276308176,5277609.220349403],[517218.492125547,5277619.992168546],[517217.7329473166,5277622.768422309]]]},"properties":{"id_build":476,"id_source":"w145187558","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.03348842403,5277696.075369012],[516935.5804930976,5277705.073477707],[516931.75258799986,5277704.395503589],[516925.14713606174,5277703.376036361],[516925.3002341316,5277702.37622194],[516923.19854264986,5277702.036692204],[516920.94666085835,5277701.69672669],[516922.2465365359,5277693.698428924],[516931.17897912563,5277695.058079784],[516931.86517889344,5277691.503597244],[516937.7200150067,5277692.4097481435],[516937.03348842403,5277696.075369012]]]},"properties":{"id_build":477,"id_source":"w145187568","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.90204910317,5277724.518489275],[517304.3796900457,5277728.830584184],[517302.7358648309,5277726.047198477],[517302.20954107994,5277726.267914158],[517299.639559031,5277721.792448984],[517296.4569652325,5277716.24822097],[517304.5059900112,5277711.604261359],[517307.9421830263,5277717.727175663],[517313.2077458966,5277714.742053153],[517315.598220388,5277718.972482403],[517315.2971799676,5277719.193866984],[517316.7988500157,5277721.799009392],[517311.90204910317,5277724.518489275]]]},"properties":{"id_build":478,"id_source":"w145187585","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.35914887313,5276741.246617147],[516580.81327421847,5276740.025372973],[516575.636239569,5276738.121259195],[516578.4370466805,5276730.460589839],[516583.6891947832,5276732.364919957],[516584.1433215047,5276731.1436760565],[516595.3232601017,5276735.065416505],[516593.73333519144,5276739.506475578],[516593.27952377335,5276740.616579907],[516591.61386124283,5276745.279703264],[516580.35914887313,5276741.246617147]]]},"properties":{"id_build":479,"id_source":"w145187602","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517059.2697021393,5277651.531735],[517055.6725980245,5277648.964976726],[517057.482059207,5277646.525199196],[517066.22900415305,5277634.325439504],[517066.3795217693,5277634.214740798],[517069.0806935165,5277635.00063951],[517071.5569027744,5277635.6747398535],[517069.294250316,5277639.00230385],[517069.06928862847,5277638.890504318],[517067.27448098647,5277641.452575157],[517061.15100272134,5277650.2035686225],[517060.55186556483,5277649.646113066],[517059.2697021393,5277651.531735]]]},"properties":{"id_build":480,"id_source":"w145187644","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.88409707794,5277528.341236534],[516707.2041310714,5277525.589477363],[516708.1708273605,5277528.926448391],[516706.1412879632,5277529.587463612],[516709.1148754966,5277540.154287198],[516701.7473878009,5277542.911644338],[516701.30031240615,5277541.687822939],[516697.91743695736,5277542.900658352],[516695.9063893696,5277537.11561624],[516699.89068266295,5277535.682224969],[516699.44408449216,5277534.29169526],[516697.5833892732,5277528.451513977],[516697.88409707794,5277528.341236534]]]},"properties":{"id_build":481,"id_source":"w145187649","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517115.4146423225,5277584.123435694],[517118.82352909073,5277586.856387018],[517122.08254654467,5277589.477759652],[517117.03212948743,5277595.909025439],[517116.9570330825,5277595.908804645],[517114.4697036637,5277599.013410622],[517110.5738386812,5277595.890040683],[517106.6698053367,5277595.545148044],[517106.8973805652,5277594.767837124],[517109.460130801,5277591.552309646],[517110.2140351195,5277590.554265791],[517114.96242935996,5277584.677805995],[517115.4146423225,5277584.123435694]]]},"properties":{"id_build":482,"id_source":"w145187658","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.05540182214,5276777.645329541],[516732.7726602163,5276778.9588397015],[516736.0619056781,5276784.347456651],[516734.5492021255,5276790.633620187],[516734.0635045787,5276792.377118799],[516728.66476546397,5276791.861478313],[516724.52158524067,5276790.904889599],[516724.60419006593,5276796.139809872],[516720.70942967443,5276800.218568791],[516712.75032706227,5276794.194173432],[516711.5733839638,5276793.412817381],[516707.7431779562,5276790.7011305],[516707.2964099772,5276786.732159095],[516716.8432515716,5276773.411671532],[516721.8008033214,5276775.870979917],[516723.04091894196,5276780.8091466],[516732.05540182214,5276777.645329541]]]},"properties":{"id_build":483,"id_source":"w145187707","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.5778148249,5277548.014509103],[517004.28006595455,5277555.234813913],[517003.59250817285,5277559.233843223],[516999.1637396638,5277558.554070539],[516998.88926965685,5277559.964746228],[516998.7063438094,5277560.886673532],[516991.12512961787,5277559.6420036815],[516992.95794731803,5277549.200199831],[516996.1854961921,5277549.765320916],[516996.4133828429,5277548.876866782],[517001.81777090003,5277549.781766217],[517003.1009115384,5277547.562714979],[517005.5778148249,5277548.014509103]]]},"properties":{"id_build":484,"id_source":"w145187719","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.5925347735,5277543.471027715],[516959.6599360129,5277549.103105004],[516956.31222811784,5277548.537654227],[516956.0837002059,5277549.648387875],[516946.4010402149,5277547.953096724],[516947.84891300794,5277540.733216484],[516952.3601782414,5277541.457646194],[516954.1541574852,5277541.751834],[516954.3059699483,5277541.196576493],[516957.6089477164,5277541.650755876],[516957.456163811,5277542.539430237],[516960.75881680375,5277543.104750395],[516960.5925347735,5277543.471027715]]]},"properties":{"id_build":485,"id_source":"w145187740","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.97609346453,5277659.9838217385],[516946.89873322344,5277660.761576137],[516952.00264252105,5277661.665555317],[516949.48080676084,5277676.662104977],[516942.61284830334,5277675.51959992],[516943.7214301801,5277668.754403742],[516933.9638695935,5277667.058913934],[516934.19335870224,5277665.614762234],[516933.0300573019,5277665.377984652],[516932.01688217,5277665.163871926],[516932.17095209827,5277663.830640742],[516932.0961798183,5277663.719283325],[516933.0905242043,5277657.49833876],[516946.97609346453,5277659.9838217385]]]},"properties":{"id_build":486,"id_source":"w145187764","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.1343817542,5277421.340842922],[517135.71803767246,5277421.807717853],[517135.3183392449,5277430.0308955265],[517127.6599224143,5277429.4526612],[517127.82156289543,5277425.56323955],[517124.1725226558,5277425.296883971],[517116.7092569357,5277424.752580056],[517116.47285203566,5277428.530642252],[517108.9646286327,5277427.952874093],[517109.5886061647,5277420.063773668],[517117.02206777025,5277420.530182852],[517117.2594535602,5277416.418703861],[517128.2963496943,5277417.340282379],[517128.1343817542,5277421.340842922]]]},"properties":{"id_build":487,"id_source":"w145187767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517124.2617765489,5277257.064674367],[517112.61886980006,5277257.808422535],[517112.4758544168,5277255.362924677],[517109.997201513,5277255.466780202],[517110.14021793316,5277257.912277998],[517096.8450982403,5277258.651202644],[517096.48950106674,5277251.8706254605],[517101.29693422513,5277251.551323867],[517100.7317069629,5277239.4354163455],[517116.50553117605,5277238.592646667],[517116.79221282015,5277243.261364618],[517123.55227918754,5277242.947822004],[517124.2617765489,5277257.064674367]]]},"properties":{"id_build":488,"id_source":"w145187781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.23697561247,5276740.822978762],[516465.51369377115,5276743.121328302],[516461.1364121532,5276745.242836127],[516456.80531157396,5276736.339416384],[516459.5129500697,5276735.013391974],[516458.9158595555,5276733.678027597],[516459.5962249122,5276732.123994357],[516463.3569426061,5276730.245249658],[516465.0847304908,5276730.138994809],[516465.9058855694,5276731.919552285],[516468.91458700236,5276730.372104051],[516473.9926607102,5276740.722462406],[516470.9088558418,5276742.2696956005],[516470.23697561247,5276740.822978762]]]},"properties":{"id_build":489,"id_source":"w145187789","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.10214697296,5277681.304354864],[516643.481530267,5277681.280673179],[516647.93477623194,5277681.260064229],[516647.9125246606,5277678.537072685],[516651.8551563403,5277678.503892577],[516651.8778193306,5277681.082403437],[516652.4260149573,5277681.083971483],[516652.47726729186,5277689.41961181],[516640.7921389734,5277689.497338863],[516640.8030916615,5277690.919961096],[516636.8154113937,5277690.953019907],[516636.76242159604,5277683.217530382],[516640.11173388234,5277683.204874806],[516640.10214697296,5277681.304354864]]]},"properties":{"id_build":490,"id_source":"w145187791","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517234.2284779952,5276794.158198632],[517232.1258178817,5276794.040836303],[517232.1419329395,5276788.595032898],[517239.5027304551,5276788.50567957],[517239.5758631555,5276789.17273499],[517240.6051226448,5276789.07575631],[517241.75461889023,5276788.9569058465],[517241.8353197866,5276787.067767872],[517246.8687947999,5276786.6381140435],[517246.8572742143,5276790.5279736],[517249.6365549129,5276790.42506583],[517249.4600045133,5276799.315728514],[517234.0637921805,5276799.047863295],[517234.2284779952,5276794.158198632]]]},"properties":{"id_build":491,"id_source":"w145187800","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.7653300292,5277733.002798851],[516910.4854041112,5277735.452873979],[516917.1539669957,5277740.584686433],[516913.1967803077,5277745.641170239],[516912.5560880488,5277746.461744539],[516912.7056312011,5277746.6844588965],[516911.8009462688,5277747.904370168],[516912.5502762583,5277748.462246816],[516909.3089487531,5277752.67614936],[516902.94044801407,5277747.656356936],[516906.4077026603,5277743.220827099],[516905.5191556299,5277738.883788619],[516903.7990804912,5277736.433714949],[516908.7653300292,5277733.002798851]]]},"properties":{"id_build":492,"id_source":"w145187803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516873.8372935645,5277660.88277361],[516869.98453712725,5277660.993861846],[516870.0113869932,5277662.094224999],[516862.7865518973,5277662.295573371],[516862.66436745063,5277652.626045327],[516864.1662807544,5277652.630395827],[516864.1743293473,5277649.8519208515],[516868.45510632545,5277649.753182902],[516868.52182932897,5277652.643014465],[516877.16630695213,5277652.33464859],[516877.3847037183,5277659.892797222],[516873.75726547,5277659.993422184],[516873.8372935645,5277660.88277361]]]},"properties":{"id_build":493,"id_source":"w145187818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516955.9225024057,5277579.211138613],[516956.3041356864,5277577.100591484],[516960.28199132887,5277577.8901579445],[516960.2043045393,5277578.779051055],[516969.21168778185,5277580.250117379],[516967.4556380356,5277590.136453017],[516961.8263166652,5277589.119789977],[516962.0541965757,5277588.231334459],[516960.3128643641,5277587.915069507],[516958.3013140374,5277587.5535619855],[516958.07343467354,5277588.442017645],[516954.47042117105,5277587.875824116],[516954.62320348853,5277586.987149617],[516955.9225024057,5277579.211138613]]]},"properties":{"id_build":494,"id_source":"w145187825","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.4972665067,5276874.56480383],[516540.9965390561,5276875.569320281],[516542.3531770989,5276873.906077604],[516544.45203177375,5276875.356857317],[516535.85747739294,5276886.779840862],[516534.7327878621,5276886.109808618],[516531.5660498919,5276890.435268358],[516525.04511912697,5276885.748889301],[516528.212170208,5276881.312287183],[516526.86279276194,5276880.419339203],[516534.17580726,5276870.659800036],[516538.1485204895,5276873.4495755145],[516539.4972665067,5276874.56480383]]]},"properties":{"id_build":495,"id_source":"w145187830","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.15112898295,5277367.709474002],[516409.786602794,5277368.314238415],[516408.3562318499,5277372.211215417],[516405.1677697445,5277371.0463761855],[516404.19144243735,5277373.722095363],[516407.39489179256,5277374.89809029],[516404.8747347205,5277381.7594308695],[516391.6032443325,5277376.909696852],[516394.1385328247,5277370.003937322],[516397.22198388237,5277371.124018818],[516399.6210069843,5277364.606867353],[516401.369037654,5277365.245288383],[516408.15112898295,5277367.709474002]]]},"properties":{"id_build":496,"id_source":"w145187883","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516405.1382592083,5276733.748561618],[516405.3604507781,5276734.860584811],[516398.2969042765,5276736.063227035],[516395.66689108283,5276736.500380592],[516394.3286281126,5276728.972453596],[516393.6705893663,5276725.26964833],[516392.46824187733,5276725.488543134],[516391.8758275644,5276722.486103073],[516407.2062421934,5276719.528503046],[516407.94541965413,5276723.753895165],[516405.9913687977,5276724.192948696],[516403.5115648963,5276724.630521909],[516404.0285523397,5276727.7438904485],[516405.1382592083,5276733.748561618]]]},"properties":{"id_build":497,"id_source":"w145187916","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516547.5573908152,5276808.059443543],[516547.4709149679,5276812.060228897],[516535.6791948666,5276812.026733296],[516535.8056782892,5276801.868919246],[516535.8745374341,5276796.134303717],[516528.28686780564,5276796.77960112],[516528.30043199076,5276792.00063047],[516528.3016937751,5276791.5560750635],[516536.1162684936,5276790.355723232],[516544.68191441224,5276789.1575157065],[516544.6623373781,5276796.048124525],[516545.71351545386,5276796.162250893],[516545.67972708936,5276808.054108223],[516547.5573908152,5276808.059443543]]]},"properties":{"id_build":498,"id_source":"w145187977","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.17849962576,5276744.5809412645],[517315.11826195085,5276743.940676773],[517315.77109560464,5276751.722405279],[517310.36204855953,5276752.150883292],[517310.50730758865,5276753.81841238],[517310.02503531,5276754.350449935],[517309.6030471379,5276754.815982827],[517307.27406147437,5276755.031340167],[517307.41932130925,5276756.698869182],[517302.16049399704,5276757.1278012525],[517301.79783582035,5276752.792270804],[517301.3653528603,5276746.678295877],[517306.3237600596,5276746.248470228],[517306.17849962576,5276744.5809412645]]]},"properties":{"id_build":499,"id_source":"w145188003","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.2399259516,5276800.444250611],[517255.2698941102,5276790.3306156695],[517259.30352453387,5276790.209201502],[517261.95505818166,5276790.128148954],[517261.9530814962,5276790.794982025],[517268.56280893914,5276790.703439104],[517268.61056096165,5276799.928185993],[517268.0097075507,5276799.926404229],[517268.06965419673,5276805.039013891],[517268.21920827933,5276805.2617370235],[517268.27882507624,5276810.485485576],[517262.9452723123,5276810.803091404],[517262.60005008144,5276800.577204211],[517255.2399259516,5276800.444250611]]]},"properties":{"id_build":500,"id_source":"w145188029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.83694601967,5277139.803944831],[516854.6640777052,5277121.687650621],[516872.6145445282,5277121.406219108],[516872.2399312669,5277095.176132022],[516878.47346829664,5277095.194197938],[516878.5434165683,5277096.972638071],[516883.95114279765,5277096.877176277],[516884.6470821183,5277167.675274046],[516879.3896254569,5277167.771170475],[516879.38479268097,5277169.438254193],[516872.9263514969,5277169.308395293],[516872.63683038944,5277139.633217625],[516854.83694601967,5277139.803944831]]]},"properties":{"id_build":501,"id_source":"w145188032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.48947549495,5277062.531856577],[516775.45106287685,5277062.332508772],[516775.46226953634,5277058.442647391],[516826.459355175,5277057.922953933],[516826.43012927455,5277068.036593511],[516820.75964470464,5277068.086893868],[516803.28258398356,5277068.225370425],[516788.058684424,5277068.348167268],[516775.28324600385,5277068.444715386],[516768.87486112147,5277076.972908747],[516756.57076597057,5277093.363953082],[516744.40246796684,5277109.566476286],[516739.4718386662,5277116.1317769615],[516743.81883980124,5277119.256190739],[516736.95805708395,5277128.438843448],[516724.6388838715,5277144.91882407],[516719.61773721594,5277151.639477415],[516711.5239328026,5277145.614691085],[516735.8752202032,5277113.231802851],[516731.60363232973,5277109.9964719545],[516767.48947549495,5277062.531856577]]]},"properties":{"id_build":502,"id_source":"w145188046","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.57093036914,5276889.982401481],[517183.9269711364,5276889.034094829],[517184.15261489275,5276914.37464255],[517184.2126331328,5276919.487252095],[517184.26674760407,5276926.600361319],[517149.4920011933,5276926.875717678],[517138.5264697755,5276926.91011727],[517138.28983414196,5276905.23715386],[517138.30488071236,5276900.12476605],[517128.39031673543,5276900.317874013],[517123.2828242758,5276900.413992616],[517123.21915728773,5276896.523911494],[517123.16300680576,5276890.077636533],[517123.3132178237,5276890.078078239],[517128.57093036914,5276889.982401481]]]},"properties":{"id_build":503,"id_source":"w145188106","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sports_centre","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516827.33421649766,5277612.73572542],[516826.1320352137,5277612.954530595],[516824.2132581399,5277601.279293686],[516835.33362079,5277599.199782094],[516837.25237630494,5277610.875022681],[516836.5007714528,5277611.095128855],[516839.74778171047,5277630.887426479],[516836.0661519817,5277631.543617885],[516836.28822569567,5277632.6556593655],[516830.8036529557,5277633.528920185],[516827.5546864202,5277614.403461488],[516829.65802138014,5277614.1872615935],[516829.3630984211,5277612.297030374],[516827.33421649766,5277612.73572542]]]},"properties":{"id_build":504,"id_source":"w145188122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.72895723255,5276715.323646533],[516569.525652173,5276715.875921313],[516569.1460026441,5276717.319657694],[516569.444219957,5276718.098484374],[516570.715042307,5276720.213755426],[516561.46225800854,5276725.299861716],[516557.7252051941,5276718.843130154],[516560.0570203859,5276717.627223544],[516558.11464802007,5276713.954089038],[516558.7243586477,5276710.843910079],[516562.4024283819,5276711.632347832],[516564.74961674353,5276710.294233105],[516570.9035240367,5276706.7663834905],[516574.4906709164,5276713.111557022],[516570.72895723255,5276715.323646533]]]},"properties":{"id_build":505,"id_source":"w145188139","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516997.49163191876,5277591.113188429],[516996.5758734129,5277596.111811912],[516995.9637463243,5277599.999922608],[516992.28597157064,5277599.3223474175],[516992.4403813149,5277597.8779789405],[516986.43584915064,5277596.771284946],[516982.6079433212,5277596.071049868],[516984.059416076,5277587.62864915],[516987.887716454,5277588.195518379],[516988.5749358692,5277584.307626048],[516993.8290990919,5277585.212079923],[516993.1418762664,5277589.099971644],[516994.5680606954,5277589.326414524],[516994.41462348675,5277590.437365964],[516997.49163191876,5277591.113188429]]]},"properties":{"id_build":506,"id_source":"w145188145","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.6955466802,5276837.921808367],[516572.1194009371,5276839.0372578995],[516564.9571276676,5276848.574898744],[516563.6828542232,5276847.682155937],[516560.4412840836,5276851.896247316],[516554.070545071,5276847.210263271],[516557.38785127277,5276842.774104209],[516556.0387852694,5276841.770010673],[516563.1259459164,5276832.2321453495],[516564.2500103918,5276833.124460725],[516564.551699864,5276832.68075986],[516567.3243065448,5276834.911442556],[516567.09803936305,5276835.244218099],[516570.6955466802,5276837.921808367]]]},"properties":{"id_build":507,"id_source":"w145188153","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516958.67057598336,5277718.588628605],[516965.1892505046,5277723.608919481],[516965.6391712428,5277723.83251056],[516963.1516531098,5277727.048320497],[516961.35326579155,5277725.709401108],[516959.3185853092,5277728.148552366],[516962.3152489076,5277730.602361972],[516958.0940842911,5277736.035922126],[516954.7225959859,5277733.358743104],[516955.5515501466,5277732.360897808],[516949.7825299313,5277727.787360062],[516952.62405362626,5277724.205813469],[516955.58618564456,5277720.469023607],[516956.48505716736,5277721.249621338],[516958.67057598336,5277718.588628605]]]},"properties":{"id_build":508,"id_source":"w145188205","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516923.64545945486,5277625.795992669],[516922.7291235034,5277631.016905863],[516919.05103710754,5277630.450515872],[516918.8979383239,5277631.450330345],[516916.54070086643,5277631.176744498],[516914.91914514505,5277630.994209004],[516914.76572417584,5277632.105162582],[516907.40955056425,5277630.972394982],[516908.71006819734,5277622.751817107],[516916.06625196786,5277623.884586307],[516916.2212880591,5277622.217937814],[516920.4247292758,5277622.896992782],[516920.5027324701,5277621.896960099],[516924.1808241398,5277622.463350991],[516923.64545945486,5277625.795992669]]]},"properties":{"id_build":509,"id_source":"w145188229","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.1363247266,5277713.717687192],[517099.34014271223,5277713.220828837],[517050.15624407347,5277711.965173119],[517050.41082420206,5277701.963322308],[517050.4111497062,5277701.852183302],[517052.06324049906,5277701.857022186],[517059.64718777017,5277702.1015210925],[517059.9239310311,5277684.542218567],[517060.1912305765,5277670.205947542],[517067.3997415991,5277670.449356128],[517066.70579506457,5277702.233349805],[517119.9439235375,5277703.834485862],[517119.6892239893,5277713.836333949],[517117.1363247266,5277713.717687192]]]},"properties":{"id_build":510,"id_source":"w145188259","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.05670342164,5277664.695618526],[516965.50915371784,5277665.372518244],[516965.6635552003,5277663.928148929],[516969.6413501846,5277664.717722038],[516968.19024058187,5277673.048988273],[516963.83697403234,5277672.258322017],[516963.6822493633,5277673.8138304],[516957.0770918005,5277672.683188062],[516956.77217816864,5277674.238259162],[516953.2443131042,5277673.672284919],[516954.8485052449,5277664.341201402],[516958.3012803103,5277664.906957847],[516958.4537375451,5277664.129422348],[516962.05670342164,5277664.695618526]]]},"properties":{"id_build":511,"id_source":"w145188295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516625.7584061779,5276742.487452376],[516622.90686306066,5276741.590193945],[516626.2382430323,5276732.263965566],[516634.2671295302,5276734.954248081],[516638.4291607794,5276724.074442976],[516642.4808440291,5276725.530837391],[516643.90661815676,5276725.979471208],[516648.78384675964,5276727.660509067],[516644.5457382067,5276738.8735087225],[516643.1199672946,5276738.424874732],[516640.8502291558,5276744.197655296],[516633.49637277395,5276741.842710898],[516628.6939418057,5276740.273039097],[516627.6341870867,5276743.15964652],[516625.7584061779,5276742.487452376]]]},"properties":{"id_build":512,"id_source":"w145188309","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516453.75711796194,5277336.596770183],[516452.7833339574,5277335.704899679],[516447.0566027245,5277342.468249727],[516444.73447769013,5277340.350033675],[516447.9744388278,5277336.580431264],[516448.87375167,5277337.249810899],[516450.7575250848,5277335.032336447],[516441.61983560777,5277326.337618328],[516444.3315919081,5277323.455641031],[516445.6045231288,5277324.792914377],[516444.3231167041,5277326.456392571],[516448.8174909188,5277330.581261884],[516449.79692841467,5277329.472630669],[516455.64026522654,5277334.601575206],[516453.75711796194,5277336.596770183]]]},"properties":{"id_build":513,"id_source":"w145188351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.1892505046,5277723.608919481],[516958.67057598336,5277718.588628605],[516961.7607969574,5277714.707733076],[516962.43535545823,5277715.154258311],[516962.8045832305,5277714.721888326],[516963.1888947999,5277714.267334325],[516962.5904026168,5277713.487610783],[516962.8182779332,5277712.599155137],[516965.45599186135,5277709.383782802],[516968.6025284803,5277711.949172253],[516968.97832694615,5277711.839127677],[516970.02965561027,5277711.842192211],[516972.5022791541,5277713.738779651],[516969.6383068635,5277717.286909154],[516969.9377142911,5277717.621201781],[516965.1892505046,5277723.608919481]]]},"properties":{"id_build":514,"id_source":"w145188378","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.37579862226,5277694.830044276],[516967.9856296497,5277691.7199030975],[516966.2594125654,5277691.381452209],[516967.174482881,5277686.605101316],[516977.8328196694,5277688.414413903],[516976.9928360175,5277693.190982147],[516976.3169797087,5277693.189011264],[516975.40222694504,5277697.854221778],[516976.3030438789,5277697.967988506],[516975.6922367977,5277701.411545875],[516966.5355005388,5277699.717753064],[516967.1459784526,5277696.38533376],[516967.9717006663,5277696.498880333],[516968.35171129694,5277694.944028638],[516967.37579862226,5277694.830044276]]]},"properties":{"id_build":515,"id_source":"w145188381","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.80858518643,5277046.442881533],[517271.2760843469,5277040.753907011],[517271.7434525099,5277035.10938813],[517270.3168129223,5277034.9940167405],[517270.7045278237,5277030.88299171],[517279.93997391773,5277031.688370583],[517279.62735617586,5277035.799617895],[517279.31803690153,5277038.79947637],[517283.14733065217,5277039.144260674],[517284.2699257272,5277040.481271233],[517284.0366975123,5277043.1479357565],[517282.6818649668,5277044.144173147],[517282.44764801516,5277047.1442544125],[517278.54358578834,5277046.688108803],[517278.54259641527,5277047.021525471],[517270.80858518643,5277046.442881533]]]},"properties":{"id_build":516,"id_source":"w145188393","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516871.4412696711,5277681.770137322],[516869.42174802703,5277678.985786581],[516868.8951146401,5277679.317680394],[516866.4263067398,5277676.087469133],[516866.9587362622,5277673.755073042],[516868.4635423684,5277672.759173638],[516870.33996131684,5277673.098030715],[516871.16311201523,5277674.100675564],[516874.022535185,5277672.108443988],[516877.029643056,5277676.1626544995],[516878.06189918553,5277677.566010314],[516879.79231454077,5277676.459627976],[516882.1856972888,5277679.800766159],[516874.4272953609,5277685.324155751],[516872.8619965258,5277686.464360217],[516870.0866559222,5277682.76647119],[516871.4412696711,5277681.770137322]]]},"properties":{"id_build":517,"id_source":"w145188454","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.9637463243,5277599.999922608],[516996.5758734129,5277596.111811912],[516999.5036593795,5277596.453780004],[516999.7331673989,5277595.009631],[517001.6249154156,5277595.248549079],[517003.33649682405,5277595.464713582],[517003.259128265,5277596.242467171],[517009.4888820757,5277597.3720645355],[517008.95346632734,5277600.7046983605],[517011.20505752636,5277601.155836771],[517010.8227563519,5277603.488658403],[517009.6911163255,5277605.26359097],[516998.5820588627,5277603.45290502],[516998.58303237654,5277603.119488053],[516995.50570597994,5277602.554803972],[516995.9637463243,5277599.999922608]]]},"properties":{"id_build":518,"id_source":"w145188528","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.2109570713,5277654.066055053],[516591.19005096174,5277653.06858613],[516592.60197590454,5277653.0281541515],[516630.6184425372,5277652.069686682],[516631.7817175886,5277691.749958427],[516631.78140007734,5277691.8610974355],[516636.88818801247,5277691.764549268],[516636.9582013982,5277693.542988009],[516636.730057553,5277694.5425952785],[516636.9378743218,5277700.655884599],[516607.04782964656,5277701.348521583],[516606.70088745654,5277691.344939653],[516600.5427676032,5277691.438516309],[516600.2065883574,5277677.656208735],[516590.8190381317,5277677.851728],[516590.37452725664,5277659.912480195],[516590.2109570713,5277654.066055053]]]},"properties":{"id_build":519,"id_source":"w145188561","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516409.21823611634,5277364.800617691],[516402.4361731445,5277362.325316955],[516397.59689464764,5277360.6668162085],[516399.9966111006,5277353.905159304],[516403.1551690893,5277355.025455432],[516404.28310713946,5277351.850034057],[516407.77179010306,5277353.082402661],[516406.65899554605,5277356.21341011],[516409.6825286059,5277357.277759395],[516410.8180737259,5277354.06901875],[516414.44180773676,5277355.346227962],[516413.2759704373,5277358.643794391],[516416.216985676,5277359.674572512],[516413.83990780637,5277366.391830765],[516409.21823611634,5277364.800617691]]]},"properties":{"id_build":520,"id_source":"w145188577","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516848.00444674515,5277736.049694267],[516846.5012685139,5277736.489903943],[516850.29988845676,5277747.281472434],[516835.04061067157,5277752.460902346],[516831.46660684276,5277741.892273156],[516832.9697825263,5277741.452059602],[516834.2476748636,5277741.011194976],[516829.2597152525,5277725.992881152],[516830.83831089886,5277725.441745124],[516825.7004602165,5277710.311861548],[516840.4341748207,5277705.130886619],[516845.49657557777,5277720.371704866],[516844.5193785727,5277720.702297138],[516843.16638621705,5277721.142942239],[516848.00444674515,5277736.049694267]]]},"properties":{"id_build":521,"id_source":"w145188588","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.0499646221,5277678.207883762],[516830.51626467647,5277680.984839135],[516827.66457084083,5277680.309755951],[516825.5583689384,5277681.526207569],[516817.0369943937,5277667.831374149],[516822.378407008,5277664.512608362],[516820.73433366796,5277661.729359648],[516833.7506081673,5277653.209207735],[516835.6947388279,5277656.104467761],[516841.1866857043,5277652.675014577],[516847.6907401177,5277662.807566996],[516837.9857368136,5277668.892185558],[516837.6869621954,5277668.335621765],[516834.9484737393,5277670.061484996],[516833.3233914962,5277671.101501229],[516835.86442255834,5277675.332166578],[516831.0499646221,5277678.207883762]]]},"properties":{"id_build":522,"id_source":"w145188600","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516939.0644310766,5277746.538815998],[516938.01537223294,5277745.757783936],[516941.2570478387,5277741.432758347],[516941.9328985368,5277741.434725172],[516943.3802446092,5277739.538444194],[516945.40051018423,5277736.888079506],[516947.42806386383,5277736.893981657],[516950.5752406107,5277739.237083467],[516951.70262974134,5277738.906946316],[516954.92457452347,5277741.361408169],[516954.3215526176,5277742.137631635],[516954.5439230534,5277743.138538867],[516953.11130182334,5277745.134885939],[516952.2101681287,5277745.13226179],[516946.631824146,5277752.451257628],[516945.50799649995,5277751.558866588],[516939.0644310766,5277746.538815998]]]},"properties":{"id_build":523,"id_source":"w145188618","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.33538717363,5277708.705396627],[516691.80972261843,5277708.703889413],[516621.9641330177,5277711.060264398],[516692.33538717363,5277708.705396627]]]},"properties":{"id_build":524,"id_source":"w145188679","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517219.0371513902,5277410.317162406],[517218.9342310174,5277412.10621082],[517220.10557473905,5277412.176359121],[517219.87611908943,5277416.12114785],[517218.8324111271,5277416.06249106],[517218.68980508397,5277418.573831654],[517219.73351259617,5277418.632488418],[517219.3365878607,5277425.877637757],[517209.75551752787,5277425.338065353],[517209.77936118236,5277424.893576126],[517207.2414550536,5277424.74159292],[517207.3076623564,5277404.881083989],[517214.05819655885,5277405.190002758],[517213.7864128027,5277408.212205139],[517219.14030190953,5277408.450316724],[517219.0371513902,5277410.317162406]]]},"properties":{"id_build":525,"id_source":"w145188727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.2153020375,5277404.542959224],[516550.9508709273,5277408.312946484],[516549.13445043814,5277410.608378198],[516554.16974379745,5277414.612613812],[516546.0299286935,5277424.847684519],[516540.96466237365,5277420.821142737],[516533.2017288296,5277430.579400671],[516522.90637465386,5277422.381394295],[516526.9310272069,5277417.324839927],[516517.227596908,5277409.595311597],[516518.9083226804,5277407.477308763],[516525.254292268,5277399.515475745],[516539.978078251,5277411.226970153],[516543.88969452656,5277406.314588174],[516544.45167250664,5277406.760744507],[516546.2153020375,5277404.542959224]]]},"properties":{"id_build":526,"id_source":"w145188743","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.5868382216,5277646.165097523],[517274.81245528755,5277646.054627018],[517275.0344447083,5277647.166685456],[517279.2427754291,5277646.178914755],[517278.9460208584,5277644.955494274],[517283.90564170876,5277643.858816841],[517284.9444437023,5277648.085219987],[517287.0487744178,5277647.5357683385],[517288.01313783537,5277651.539671084],[517281.2499068198,5277653.075550765],[517281.6955321353,5277654.7439732],[517276.9612078748,5277655.841321086],[517277.1835263261,5277656.842240632],[517262.75462083094,5277660.35591679],[517260.1582374233,5277649.567641122],[517271.29530289,5277646.944425419],[517274.5868382216,5277646.165097523]]]},"properties":{"id_build":527,"id_source":"w145188778","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516362.61505892815,5277355.411511538],[516366.1282913485,5277345.240977658],[516373.3234684572,5277347.706283608],[516372.1498617685,5277351.103862117],[516374.7158279684,5277351.977968823],[516376.94191687094,5277345.527005837],[516383.93450789765,5277347.9250711985],[516382.8365887652,5277351.111694891],[516386.07028233184,5277352.221079161],[516383.6700497407,5277359.171677972],[516376.9850986102,5277356.8745039925],[516374.9635013968,5277362.7147731045],[516378.1896800402,5277363.824131906],[516375.7289132313,5277370.941273513],[516365.81028494955,5277367.53473373],[516369.2174704218,5277357.68620895],[516362.61505892815,5277355.411511538]]]},"properties":{"id_build":528,"id_source":"w145188813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.13847808616,5277355.523905617],[517271.29204674996,5277351.856743772],[517271.4452858984,5277348.300720894],[517271.60735394096,5277344.300164555],[517271.7444855199,5277341.110855676],[517281.62648394454,5277341.518054594],[517281.33530989557,5277348.530119327],[517281.18987155164,5277351.986139201],[517280.3810186101,5277371.477681031],[517280.2436189879,5277374.7559010275],[517279.9445092034,5277381.91242453],[517270.06257925916,5277381.50522827],[517270.20040158555,5277378.082527382],[517270.36213844694,5277374.193109771],[517270.51570622885,5277370.525947801],[517270.66143457225,5277366.969902524],[517271.13847808616,5277355.523905617]]]},"properties":{"id_build":529,"id_source":"w145188820","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.1620274906,5277685.061987704],[516895.6854363829,5277685.841486308],[516896.9646360091,5277684.956079427],[516896.5166450305,5277684.065659657],[516895.39473172487,5277682.50644441],[516897.12547151605,5277681.288928206],[516897.655654794,5277679.7345079025],[516897.5064319092,5277679.4006549595],[516898.78595583065,5277678.404109481],[516899.3109779304,5277678.627913388],[516902.77181681397,5277676.415161833],[516907.555971114,5277683.986570197],[516898.526796483,5277690.073051005],[516899.1249770279,5277690.96390691],[516896.26587697165,5277692.844987214],[516892.1524129128,5277687.053773144],[516895.1620274906,5277685.061987704]]]},"properties":{"id_build":530,"id_source":"w145188830","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.0889506391,5277366.935837414],[516880.09571722883,5277364.601919487],[516880.1105392766,5277359.489527866],[516880.11795029487,5277356.933332071],[516880.12632796523,5277354.043719446],[516890.33953986864,5277354.184478796],[516890.2428387671,5277361.630570413],[516890.23413364263,5277364.63132202],[516890.17964593443,5277383.413804617],[516890.24539505504,5277386.637052092],[516890.22411568573,5277393.972222997],[516879.9349079211,5277394.1646628035],[516880.02225127263,5277389.941600303],[516879.9532743659,5277387.829742462],[516880.0438399816,5277382.495290483],[516880.0509288059,5277380.050233547],[516880.0889506391,5277366.935837414]]]},"properties":{"id_build":531,"id_source":"w145188835","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.31746463437,5277336.162821931],[516408.7096911235,5277329.401147668],[516415.1619462045,5277331.664359864],[516416.2369179886,5277328.633273317],[516413.145843993,5277327.546502382],[516415.5002499085,5277320.884750173],[516425.3511825764,5277324.346753034],[516423.08009754674,5277330.753114761],[516429.58485274285,5277333.038719037],[516426.0115477931,5277343.16458963],[516419.14666889113,5277340.755719862],[516420.33519965626,5277337.40264875],[516417.244131083,5277336.315875615],[516414.9048431967,5277342.944327934],[516408.26507061074,5277340.602789574],[516409.44605383376,5277337.260808985],[516406.31746463437,5277336.162821931]]]},"properties":{"id_build":532,"id_source":"w145188855","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.144209608,5276841.39678773],[517273.15442927065,5276837.951483285],[517274.2092127419,5276836.843213836],[517276.91270622035,5276836.962374037],[517279.8418479806,5276836.971065251],[517280.5952186289,5276836.195322039],[517280.62325231615,5276826.748519654],[517286.40643979126,5276826.765684308],[517286.41171848326,5276824.987462699],[517290.99320606195,5276825.00106475],[517290.9562454019,5276837.44861611],[517290.1300772767,5276837.446163015],[517290.1181976181,5276841.447161718],[517280.8050360573,5276841.419516767],[517280.8020677417,5276842.4197664475],[517274.1927284101,5276842.400156487],[517273.144209608,5276841.39678773]]]},"properties":{"id_build":533,"id_source":"w145188869","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.8764923033,5277366.849394003],[516926.8839238723,5277364.293198188],[516926.8227182182,5277359.514005099],[516926.90524922754,5277356.95802765],[516926.83984303824,5277353.623640914],[516936.82840301836,5277353.541548926],[516936.8818413143,5277360.98807683],[516936.9485348491,5277363.877907936],[516936.96737907326,5277383.216303652],[516937.03374891245,5277386.2172738165],[516937.0875096107,5277393.552663154],[516927.0239192523,5277393.6345362],[516927.03587458644,5277389.52239494],[516926.9682071859,5277386.965980701],[516926.98177803215,5277382.298144723],[516926.98888656835,5277379.8530878],[516926.8764923033,5277366.849394003]]]},"properties":{"id_build":534,"id_source":"w145188872","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.02329491527,5277504.507054715],[517083.2798929511,5277505.008558837],[517082.89560025197,5277508.008209299],[517083.56821691594,5277509.121582219],[517084.54774607724,5277508.013057268],[517088.5269369256,5277508.358155303],[517087.67900890036,5277515.802041853],[517081.9732341194,5277515.22959836],[517081.66404012986,5277518.22946929],[517080.838294735,5277518.115906679],[517076.03303860826,5277517.76839092],[517076.41732716816,5277514.768739971],[517075.9684049297,5277514.200609616],[517075.36987440306,5277513.431988637],[517075.98695277696,5277507.876802087],[517075.7619861289,5277507.765002331],[517076.14787244523,5277504.220770451],[517079.02329491527,5277504.507054715]]]},"properties":{"id_build":535,"id_source":"w145188877","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.4040490381,5276883.363994468],[516792.03402991,5276885.2234578645],[516787.8915592876,5276863.205835831],[516802.0194750921,5276860.468088358],[516800.76255556993,5276853.573795089],[516815.5664549729,5276850.838030716],[516822.372823819,5276886.644701787],[516836.95133298147,5276883.908340903],[516840.9440351841,5276905.703286859],[516819.07651597523,5276909.752257393],[516817.5952746755,5276902.523892488],[516810.5312018422,5276903.948312465],[516813.933738213,5276922.073923062],[516792.06758168124,5276925.678439445],[516786.7423590104,5276897.10015836],[516804.62738872546,5276893.706410887],[516802.4040490381,5276883.363994468]]]},"properties":{"id_build":536,"id_source":"w145188885","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516370.0771560082,5277329.714731166],[516373.4158427563,5277320.199436164],[516380.2207784801,5277322.574741124],[516379.16087562736,5277325.594762613],[516382.05691618525,5277326.603168822],[516384.2448785208,5277320.363267187],[516391.18486437754,5277322.783420957],[516390.02651260246,5277326.092126891],[516393.1251016095,5277327.178906679],[516390.6418653146,5277334.262636532],[516384.519698758,5277332.122634228],[516383.5808931751,5277334.809576257],[516386.3568939202,5277335.773190932],[516383.9266770532,5277342.701477144],[516373.8130586107,5277339.1832355745],[516376.36439356755,5277331.91075244],[516370.0771560082,5277329.714731166]]]},"properties":{"id_build":537,"id_source":"w145188894","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516401.38484419003,5277319.6446600985],[516402.67900986684,5277316.1140593765],[516399.85813021037,5277315.083626674],[516397.4060474373,5277321.767337949],[516390.4138683871,5277319.213662041],[516391.5188382173,5277316.1937694745],[516388.09775098553,5277314.950487091],[516390.6709246227,5277307.933693421],[516397.16795751476,5277310.308151327],[516399.32486898307,5277304.43492938],[516396.1663766372,5277303.281293798],[516398.67141139833,5277296.464363517],[516408.67209461826,5277300.104583252],[516405.56909277895,5277308.575807812],[516411.9611041931,5277310.905530412],[516407.8818909898,5277322.008016147],[516401.38484419003,5277319.6446600985]]]},"properties":{"id_build":538,"id_source":"w145188899","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.85030389344,5277569.32212131],[517072.81944111356,5277563.659758698],[517084.14797225,5277567.471748846],[517085.2081332098,5277564.474081602],[517089.10925253783,5277565.819210616],[517088.5332321838,5277567.61798686],[517087.97236201336,5277569.372351652],[517088.94307386456,5277571.264579885],[517087.5808944502,5277574.817059737],[517085.85073539446,5277575.81224132],[517084.7141749103,5277579.2542440565],[517080.66287033935,5277577.908677289],[517077.661939015,5277576.899614208],[517078.1925058802,5277575.234071478],[517075.7169235587,5277574.337690468],[517075.338506446,5277575.336840029],[517069.56192837266,5277573.319381472],[517070.85030389344,5277569.32212131]]]},"properties":{"id_build":539,"id_source":"w145188910","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516358.12578905904,5277614.065788613],[516352.2451891659,5277622.273618955],[516350.61140412133,5277621.090947521],[516349.32237369654,5277620.153752434],[516348.86992466653,5277620.819321091],[516346.39674759546,5277619.034138379],[516344.29842550633,5277617.472288849],[516344.75087426865,5277616.806719844],[516343.9788819684,5277616.271081122],[516341.6778610536,5277614.686435526],[516342.80960691144,5277612.800234585],[516340.4863049994,5277611.126615036],[516340.86334566853,5277610.571973957],[516339.7240358584,5277609.801911086],[516337.8651120663,5277608.56304146],[516339.90050820773,5277605.79025701],[516343.59520065715,5277600.465914144],[516349.216188906,5277604.4827320585],[516347.6332377387,5277606.589944489],[516358.12578905904,5277614.065788613]]]},"properties":{"id_build":540,"id_source":"w145188917","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.46642968385,5277757.674354193],[516946.5382887264,5277758.785962964],[516943.8999604956,5277762.223622077],[516942.77289977437,5277762.442621722],[516940.67478856276,5277760.880556398],[516939.9963529006,5277761.767701854],[516933.7774305352,5277756.970590608],[516937.3958620989,5277752.202098938],[516936.57144056796,5277751.644000612],[516937.70206006913,5277750.202470591],[516936.8028672059,5277749.533014733],[516939.0644310766,5277746.538815998],[516945.50799649995,5277751.558866588],[516943.397590337,5277754.220082914],[516944.8962425249,5277755.335844466],[516944.2935468775,5277756.000929966],[516946.46642968385,5277757.674354193]]]},"properties":{"id_build":541,"id_source":"w145188928","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516400.0986294759,5277589.621962877],[516406.72058606293,5277584.861606069],[516405.7484026481,5277583.414048042],[516415.4552857648,5277576.550737562],[516416.4277813236,5277577.887158203],[516419.5884216035,5277575.562134052],[516418.61592637515,5277574.225712885],[516425.6137128068,5277569.355297548],[516426.5862072565,5277570.6917198775],[516431.4775309224,5277567.1490469845],[516438.1350964211,5277576.392450535],[516423.6119742665,5277586.79861062],[516422.78936138185,5277585.573751422],[516418.27448105946,5277588.784073582],[516419.0970944333,5277590.008932152],[516406.75621862523,5277598.865330816],[516400.0986294759,5277589.621962877]]]},"properties":{"id_build":542,"id_source":"w145188981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.03348842403,5277696.075369012],[516940.03567571886,5277696.6398038585],[516940.8024738499,5277691.196177771],[516941.47833037964,5277691.198144529],[516941.47897722747,5277690.975866522],[516941.70555645705,5277690.531966102],[516944.40736549074,5277691.095529053],[516945.3046255846,5277692.431820037],[516944.92203304125,5277694.875785262],[516949.7255322396,5277695.778888264],[516948.2744585387,5277704.1101597855],[516943.09452056215,5277703.539382193],[516942.71387033,5277705.316513552],[516940.8072338254,5277705.044229089],[516938.8105478268,5277704.74945525],[516938.582675882,5277705.63791182],[516935.5804930976,5277705.073477707],[516937.03348842403,5277696.075369012]]]},"properties":{"id_build":543,"id_source":"w145188982","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.1181147049,5277759.327010929],[517167.092535075,5277758.654197459],[517167.01678529487,5277758.876254041],[517162.0651482056,5277757.305694606],[517163.4286420653,5277753.3086751],[517164.3291192068,5277753.533609975],[517165.6171933521,5277749.647508605],[517168.7682092028,5277750.65706048],[517169.7460754725,5277750.1042445665],[517172.29666297283,5277751.000887533],[517172.6695122547,5277751.891107217],[517175.67033692263,5277752.900219805],[517174.4583347202,5277756.453123481],[517175.50867172406,5277756.789642187],[517173.0836870042,5277764.228866963],[517168.0569618326,5277762.658080879],[517169.1181147049,5277759.327010929]]]},"properties":{"id_build":544,"id_source":"w145188994","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516941.1996849695,5277580.501956726],[516940.587916735,5277584.278934081],[516939.6722061077,5277589.277566345],[516936.1442878838,5277588.7116026655],[516936.297390696,5277587.711788704],[516931.1930908875,5277586.918962545],[516931.1921212368,5277587.252379509],[516925.2624048342,5277586.234878269],[516926.02435606753,5277582.458335978],[516927.1504815117,5277582.572750026],[516927.8357220519,5277579.351684574],[516929.11527304683,5277578.355145856],[516932.1854320788,5277578.808633946],[516933.6942276035,5277579.035302146],[516933.92113379197,5277578.4802625105],[516937.74912155635,5277579.158237722],[516937.7465348289,5277580.0473496085],[516941.1996849695,5277580.501956726]]]},"properties":{"id_build":545,"id_source":"w145188999","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.6495362397,5277562.560218813],[516387.2715074102,5277557.79984005],[516386.2239049032,5277556.463212975],[516395.8560255289,5277549.488519702],[516396.82853013993,5277550.824936991],[516399.98886406934,5277548.611041273],[516399.01667286106,5277547.163484472],[516405.9396912329,5277542.181695143],[516406.91219477187,5277543.518114106],[516411.7284319721,5277539.975213113],[516418.4608436905,5277549.329944306],[516404.163293536,5277559.625648906],[516403.2655758199,5277558.40058094],[516401.1208691803,5277559.972724736],[516398.7503723408,5277561.722057115],[516399.6480904838,5277562.947124393],[516387.3071874416,5277571.803563972],[516380.6495362397,5277562.560218813]]]},"properties":{"id_build":546,"id_source":"w145189004","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516903.7990804912,5277736.433714949],[516903.34754487756,5277736.765823713],[516900.72988199384,5277733.090605378],[516901.5578589016,5277732.426169455],[516900.1365456525,5277730.532664044],[516897.6535829606,5277732.1925557265],[516895.1106865611,5277728.628696935],[516897.5188779142,5277726.8574471995],[516901.5072867363,5277723.979386517],[516902.18023535877,5277724.9815998245],[516905.64201616007,5277722.4354328485],[516908.4843193616,5277726.333585671],[516908.03278270026,5277726.665694075],[516908.4739369951,5277727.322701064],[516908.93004556664,5277728.001979521],[516912.0908029147,5277725.6772219315],[516914.40905204933,5277729.01815556],[516908.7653300292,5277733.002798851],[516903.7990804912,5277736.433714949]]]},"properties":{"id_build":547,"id_source":"w145189018","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.5778148249,5277548.014509103],[517006.0358636851,5277545.459628727],[517010.53973843827,5277546.139626025],[517010.15645994083,5277548.805864445],[517011.5826536155,5277549.032311458],[517013.0839441851,5277549.258978269],[517013.5429706036,5277546.3706815345],[517017.8212278435,5277547.161165077],[517017.7451562189,5277547.494362503],[517022.473669218,5277548.397305539],[517020.8696631114,5277557.6172300745],[517016.0657356278,5277556.825207799],[517015.7608004138,5277558.380275576],[517011.8573861284,5277557.81316865],[517011.47605623014,5277559.812573146],[517008.0228990698,5277559.357924374],[517008.55831789284,5277556.025290671],[517004.28006595455,5277555.234813913],[517005.5778148249,5277548.014509103]]]},"properties":{"id_build":548,"id_source":"w145189023","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516334.63203091803,5277601.930032975],[516334.1419404796,5277602.628839102],[516329.39775931725,5277599.259106312],[516329.8425734384,5277598.637970702],[516328.50102958543,5277597.678405035],[516326.8446727321,5277596.5067910515],[516328.04341177567,5277594.8319409285],[516325.8024551673,5277593.247470185],[516326.30759583274,5277592.53759159],[516324.8236160729,5277591.488715459],[516323.18975448795,5277590.328279604],[516329.040306552,5277582.120336096],[516334.4290535147,5277585.947550317],[516332.77038266434,5277588.276834013],[516343.44293664687,5277595.853182065],[516337.60745948023,5277604.038925645],[516335.6962778373,5277602.688770217],[516334.63203091803,5277601.930032975]]]},"properties":{"id_build":549,"id_source":"w145189043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517067.92396812694,5277594.0977481045],[517069.1362640134,5277590.433684245],[517070.186637036,5277590.770183769],[517070.5426536883,5277589.726512203],[517070.94411942456,5277588.5496059945],[517067.49293869536,5277587.428087966],[517067.8716795147,5277586.317798899],[517068.4718000554,5277586.54183818],[517069.2286306216,5277584.543538169],[517068.478316798,5277584.319058472],[517068.70556150493,5277583.652885069],[517072.1570701564,5277584.663264822],[517075.5334810852,5277585.673426364],[517075.3055837368,5277586.561877474],[517079.8825590357,5277587.908982731],[517079.1234429444,5277590.685254276],[517081.9745000754,5277591.582738476],[517080.00308074243,5277598.023071151],[517077.1523524805,5277597.014448917],[517067.92396812694,5277594.0977481045]]]},"properties":{"id_build":550,"id_source":"w145189136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516912.08241886954,5277539.851229287],[516912.8015367986,5277535.307695702],[516917.0351123955,5277535.975721347],[516917.19585213054,5277534.931473199],[516919.8831039704,5277535.361614037],[516920.12787234504,5277533.828594543],[516923.49070847174,5277534.360726437],[516923.26115250104,5277535.827106064],[516923.6214574017,5277535.8837233735],[516924.0493174426,5277535.951651073],[516924.3858512356,5277533.852084931],[516928.4317805809,5277534.486231401],[516926.7715713428,5277545.006354521],[516926.2973100067,5277547.9835255025],[516922.3264545504,5277547.360712663],[516922.8696257767,5277543.9280680055],[516915.7986464642,5277542.818347526],[516915.98220555723,5277541.674139716],[516911.8987636358,5277541.02877891],[516912.08241886954,5277539.851229287]]]},"properties":{"id_build":551,"id_source":"w145189185","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.6458155916,5277641.393473947],[516984.86827546917,5277642.4341120515],[516983.7276573377,5277649.8660465935],[516984.1015146937,5277650.422836978],[516981.239773725,5277653.192987525],[516980.7895239275,5277653.080534275],[516980.4888171114,5277653.190797125],[516979.5857242881,5277653.855002759],[516978.98301425105,5277654.520084596],[516978.6042947417,5277655.630379512],[516971.2481628835,5277654.49753111],[516971.86091602384,5277650.3871395355],[516973.2922706468,5277648.8353532925],[516973.81664452143,5277649.281441906],[516975.92561154,5277647.131476307],[516976.75412777846,5277646.289228723],[516977.0603445473,5277644.289602736],[516978.1864570705,5277644.404026702],[516978.6458155916,5277641.393473947]]]},"properties":{"id_build":552,"id_source":"w145189223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.6578204403,5277499.911898796],[517297.4280634623,5277498.083348838],[517298.4148809704,5277497.063793268],[517296.23591071385,5277494.912318488],[517302.31393371354,5277488.995505221],[517311.6742571232,5277498.070122355],[517315.4708012051,5277501.749030971],[517308.7738060638,5277508.730933917],[517299.87721848197,5277500.291196898],[517298.26560495683,5277501.8090255745],[517297.77661186364,5277502.096536571],[517297.39331681986,5277502.195423728],[517297.0926291696,5277502.294556337],[517296.5673090447,5277502.170741696],[517296.27512170037,5277501.936479748],[517296.05766876735,5277501.824693781],[517295.76581155317,5277501.479292895],[517295.699214186,5277501.145675202],[517295.5650619542,5277500.800742826],[517295.58206246246,5277500.133953638],[517295.6578204403,5277499.911898796]]]},"properties":{"id_build":553,"id_source":"w145189270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517120.59046737954,5276896.516182256],[517080.4828658835,5276896.842958794],[517080.42737080413,5276966.9720270615],[517078.7750714521,5276966.967180639],[517079.01942161424,5276986.0839489475],[517080.44640273205,5276986.088134537],[517080.4108682793,5276998.202272637],[517036.9993901123,5276998.519654616],[517036.9694852065,5276983.071130301],[517047.2594259894,5276982.878966366],[517047.0439286759,5276953.870839767],[517053.7285710279,5276953.779273304],[517053.36370453535,5276873.2018342605],[517053.73923315806,5276873.202934026],[517053.6635564068,5276847.751695435],[517122.83851840446,5276847.176711629],[517122.9916130201,5276871.739061793],[517122.9896521962,5276872.405894954],[517120.4357303834,5276872.5095255235],[517120.59046737954,5276896.516182256]]]},"properties":{"id_build":554,"id_source":"w145189278","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sports_centre","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.82668075233,5277277.433854216],[516438.5385004917,5277276.582730831],[516438.99277484557,5277275.283677481],[516437.70996790734,5277274.779926541],[516438.30023900885,5277273.192293544],[516436.8823133031,5277272.665933349],[516438.39552622783,5277268.7025137395],[516439.21977109084,5277266.704324083],[516440.6376352805,5277267.252912626],[516441.0612429026,5277266.176052497],[516448.3900979841,5277269.19752716],[516448.0120205106,5277270.107805649],[516449.4899321151,5277270.66767997],[516449.8078351132,5277269.790573517],[516454.71372871933,5277271.816066783],[516451.309991981,5277280.375328969],[516441.2728178358,5277276.357057706],[516440.82668075233,5277277.433854216]]]},"properties":{"id_build":555,"id_source":"w145189283","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516441.62654433947,5277249.49556174],[516439.99129136093,5277248.801877418],[516440.14274831844,5277248.357745792],[516440.59335351846,5277248.359018125],[516441.7280263315,5277245.472586873],[516441.5030374549,5277245.360811725],[516441.73053704354,5277244.583475414],[516442.70904594735,5277243.808259925],[516443.76453930954,5277242.366423109],[516444.58077735023,5277240.546035365],[516444.97619922645,5277238.813371022],[516444.97965212836,5277237.590842786],[516445.36017967365,5277235.813680485],[516436.4115763398,5277231.909632834],[516440.8512661284,5277220.852641843],[516451.08003140445,5277226.205130645],[516441.62654433947,5277249.49556174]]]},"properties":{"id_build":556,"id_source":"w145189332","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.23641539493,5277253.03281632],[517197.2702346011,5277253.72337894],[517196.1764799303,5277268.057195216],[517197.75326501735,5277268.172992268],[517196.5771895951,5277284.951643457],[517192.90536986856,5277284.740747991],[517188.5427572352,5277284.483359518],[517188.9353208161,5277278.705243644],[517176.696562517,5277277.780006001],[517177.56135875126,5277264.668049475],[517175.0167872704,5277261.659765773],[517167.1866512891,5277268.305067391],[517157.606848385,5277257.051700389],[517158.6612069827,5277256.054548442],[517155.294114926,5277251.821310773],[517162.29585587484,5277245.951530687],[517167.01082967204,5277251.522425037],[517172.5823874076,5277246.759839586],[517175.2020675897,5277249.768343674],[517181.9378602126,5277257.679149429],[517188.920263162,5277258.366597944],[517189.23641539493,5277253.03281632]]]},"properties":{"id_build":557,"id_source":"w145189333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.7594032795,5277296.394970356],[517217.98472040374,5277293.850532834],[517213.6825244292,5277293.4821642395],[517214.4213446814,5277284.904348016],[517219.1890380524,5277285.318549726],[517219.3133730201,5277283.9074406605],[517223.11253437784,5277284.229869372],[517223.57143602887,5277283.964491091],[517228.151246953,5277284.422600316],[517229.20133742085,5277284.870267189],[517229.87526788085,5277285.5391009],[517230.62100957497,5277287.31954626],[517230.9158197054,5277289.209797109],[517230.8811748668,5277290.765653258],[517230.8301943517,5277292.76602069],[517230.3795924405,5277292.764687191],[517230.29034958704,5277297.54343907],[517229.2396037445,5277297.318049855],[517226.2283593381,5277299.754217869],[517226.6779742258,5277300.088967852],[517225.695752753,5277302.086580155],[517217.7594032795,5277296.394970356]]]},"properties":{"id_build":558,"id_source":"w145189359","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517016.56061005587,5277747.209383724],[517004.69536233466,5277747.285853292],[517004.8095162566,5277759.622722713],[516980.0615773244,5277722.429739675],[516984.56758767436,5277722.331744316],[516984.65208571777,5277719.108932115],[517004.6273055175,5277719.167244568],[517004.76710682083,5277722.724131582],[517015.3548190538,5277722.977347649],[517015.4019776696,5277732.535522075],[517013.8246654388,5277732.6420520535],[517013.81816925673,5277734.864832293],[517016.6720892632,5277734.762033749],[517016.7111238208,5277747.098683715],[517016.56061005587,5277747.209383724]]]},"properties":{"id_build":559,"id_source":"w145189376","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.2790926324,5277685.815230502],[516582.0858203597,5277685.606639914],[516582.35676045436,5277695.943423312],[516584.15935940144,5277695.8374182],[516584.2357209159,5277695.393076088],[516586.48857406055,5277695.399494275],[516586.48730747297,5277695.844050312],[516588.51487514947,5277695.8498274265],[516588.9201583838,5277711.743989875],[516580.5085806403,5277712.053446559],[516580.51965934894,5277708.163581137],[516540.11542392644,5277709.160045342],[516539.90655860474,5277703.380176671],[516533.7481372826,5277703.584962961],[516533.5348464844,5277699.361040726],[516531.95753478317,5277699.467701257],[516531.92014696833,5277696.766895353],[516531.8316461473,5277690.909570997],[516535.5113090399,5277690.920021358],[516535.6567642161,5277692.587533091],[516539.63712236384,5277692.487700255],[516539.6532257304,5277686.819610804],[516577.2790926324,5277685.815230502]]]},"properties":{"id_build":560,"id_source":"w145189416","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516333.3883249916,5277638.36930806],[516325.75820822135,5277649.195158117],[516327.1072813214,5277650.143630417],[516315.79785859416,5277666.193864366],[516307.8757399079,5277660.648015373],[516309.18760192604,5277658.795654373],[516309.91141506465,5277657.764081277],[516309.139425044,5277657.228447133],[516310.91123975726,5277654.710535805],[516312.53978257073,5277652.403389333],[516313.1618619184,5277652.838577965],[516313.83289152867,5277651.884655364],[516315.28049026534,5277649.83262433],[516316.5169810083,5277648.080079652],[516317.27850037796,5277646.993043217],[516316.7688462541,5277646.635967162],[516318.5858806843,5277644.062614978],[516317.7989327794,5277643.504709801],[516319.1711588006,5277641.552494373],[516319.8949446807,5277640.532036437],[516319.2578765008,5277640.085691095],[516321.0070473826,5277637.612175338],[516322.5601914649,5277635.415960185],[516323.2122479184,5277635.873461891],[516323.96619820676,5277634.80863309],[516325.3987232152,5277632.778790298],[516326.9201778972,5277633.84999977],[516333.3883249916,5277638.36930806]]]},"properties":{"id_build":561,"id_source":"w145189595","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.58886161743,5276972.936181041],[516763.70010450686,5276970.052623844],[516770.2952138868,5276974.961765516],[516767.2785567515,5276979.28753058],[516765.6297810486,5276978.060245302],[516764.0465101014,5276980.167343184],[516769.8180212679,5276984.184994962],[516764.6904513707,5276991.283177581],[516762.6667973817,5276989.832534201],[516751.8866086535,5277003.8051264],[516743.94219970243,5276998.003006726],[516748.2397562281,5276992.236096184],[516736.02396819403,5276983.087509472],[516744.99557678454,5276971.22134339],[516751.06592892745,5276975.795534796],[516752.64919633395,5276973.688433408],[516751.07520069514,5276972.572507228],[516752.50794030837,5276970.576112582],[516749.7348297379,5276968.567618678],[516753.95762871735,5276962.689357642],[516756.2059683506,5276964.362924028],[516761.15199108707,5276968.155912032],[516759.11553336866,5276971.150825185],[516761.58886161743,5276972.936181041]]]},"properties":{"id_build":562,"id_source":"w145189638","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516447.0566027245,5277342.468249727],[516452.7833339574,5277335.704899679],[516453.75711796194,5277336.596770183],[516462.146919403,5277344.177994639],[516464.17492372997,5277344.072589212],[516473.43450475385,5277336.207852183],[516475.9790896761,5277339.326967772],[516478.3122129461,5277337.555333121],[516481.37997557025,5277341.565050529],[516479.34725152777,5277343.3375342],[516481.74194555666,5277346.345088284],[516471.68383059866,5277355.085557763],[516470.52443740034,5277356.093650406],[516472.0983821414,5277357.20950154],[516470.7399893129,5277359.53959525],[516468.8650184182,5277358.645172666],[516467.9031552571,5277380.092441645],[516463.24732108,5277379.968134832],[516463.16656520084,5277381.968423678],[516459.56243467226,5277381.735953896],[516459.56714756397,5277380.068869564],[516454.9867264995,5277379.833642707],[516455.64531727234,5277359.385773249],[516455.0539449206,5277356.049906682],[516444.2688125425,5277345.683430558],[516447.0566027245,5277342.468249727]]]},"properties":{"id_build":563,"id_source":"w145189710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516304.0295693628,5277650.367918061],[516303.2983401657,5277651.366129144],[516301.9187989332,5277653.251643898],[516293.44947718084,5277647.337520978],[516297.45261590055,5277641.79173235],[516301.0637077897,5277636.800548096],[516298.06609640905,5277634.569358014],[516301.9866426774,5277629.02334133],[516298.46428917575,5277626.457262128],[516305.852956257,5277616.030804065],[516314.17243065056,5277621.83338478],[516313.011685107,5277623.352748422],[516312.1373637594,5277624.49503926],[516312.811670782,5277625.052628013],[516311.002516301,5277627.492636169],[516309.3438665631,5277629.821926643],[516308.6692484293,5277629.375477287],[516307.9830422544,5277630.38492788],[516306.63325277856,5277632.370550713],[516307.23277481477,5277632.816789485],[516310.08019186463,5277635.04756351],[516308.6101559802,5277637.066190983],[516307.81859861553,5277638.153144391],[516308.4181199629,5277638.5993832955],[516306.9850730943,5277640.81816657],[516309.5330372773,5277642.714681975],[516307.9124072773,5277644.877369587],[516307.120944487,5277645.930981402],[516307.7204650817,5277646.377220238],[516306.21294725273,5277648.373515364],[516304.5543053211,5277650.702807262],[516304.0295693628,5277650.367918061]]]},"properties":{"id_build":564,"id_source":"w145189739","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.3140977976,5276961.228161117],[517130.61801633553,5276985.568680108],[517126.3370725091,5276985.556087499],[517126.4036778747,5276988.445919285],[517124.1505506617,5276988.439292832],[517124.14728228,5276989.550681637],[517121.96893292584,5276989.655415776],[517121.8977502444,5276988.32152837],[517119.6442962355,5276988.42604254],[517119.5773607645,5276985.647349724],[517090.7360138311,5276986.007186325],[517090.0102483007,5276926.211826279],[517119.00308159564,5276925.519010389],[517118.8597328353,5276923.184652535],[517121.2634222308,5276923.080579662],[517121.2673435472,5276921.746913234],[517123.22007616225,5276921.752655089],[517123.44179646653,5276922.975845209],[517125.6949490088,5276922.982471326],[517125.68710434303,5276925.649804194],[517129.8185359902,5276925.439676599],[517130.03077337827,5276929.885894214],[517130.85725529277,5276929.777185755],[517130.8718722981,5276950.3380980315],[517130.87154533603,5276950.449236907],[517130.27070749016,5276950.4474693155],[517130.3140977976,5276961.228161117]]]},"properties":{"id_build":565,"id_source":"w145189790","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sports_centre","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.41620173404,5276741.749701179],[516962.13872820156,5276741.968259627],[516961.1037331321,5276736.297116176],[516958.77443005494,5276736.623751711],[516957.07349501934,5276727.505336597],[516956.69763339974,5276727.6153819235],[516956.62479109847,5276726.83719137],[516963.83933035535,5276725.413386002],[516963.76648897864,5276724.635195359],[516966.44190751,5276724.098404613],[516972.93512751756,5276722.77253478],[516972.93609929364,5276722.439118271],[516973.5372845604,5276722.329730738],[516973.98307139333,5276723.998126787],[516981.12218677386,5276722.685262729],[516981.2707816801,5276723.241394937],[516980.81981166796,5276723.351219693],[516982.37146806915,5276732.135787196],[516979.81619136373,5276732.684034902],[516980.7757373626,5276738.466101517],[516979.34804752364,5276738.684218175],[516979.9391853681,5276742.020135298],[516980.2402631564,5276741.7987336265],[516980.3134261683,5276742.465785663],[516963.9312697305,5276745.418814404],[516963.7072426237,5276744.97360267],[516964.0831032598,5276744.863557793],[516963.41620173404,5276741.749701179]]]},"properties":{"id_build":566,"id_source":"w145189808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516301.6070147099,5276986.745284223],[516302.2081597542,5276986.63582743],[516302.57901358546,5276988.303962097],[516301.6070147099,5276986.745284223]]]},"properties":{"id_build":567,"id_source":"w145189958","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.64388857683,5276718.981942136],[516760.13853585406,5276720.089007037],[516759.7693945277,5276717.865149487],[516761.64388857683,5276718.981942136]]]},"properties":{"id_build":568,"id_source":"w145189998","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5779305658,5276731.431489265],[516757.3624104408,5276729.52789732],[516761.4435464667,5276736.3969657635],[516754.5779305658,5276731.431489265]]]},"properties":{"id_build":569,"id_source":"w145190019","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516793.9254580695,5276724.187377017],[516798.41332186875,5276730.646427358],[516800.14432254544,5276729.428883522],[516801.8644214753,5276731.99006071],[516800.2839568692,5276733.096898561],[516801.85512230464,5276735.213087047],[516803.4359073318,5276733.995110778],[516805.15632417996,5276736.445150125],[516803.57586014376,5276737.551987089],[516808.1388102413,5276744.011261837],[516798.6557232758,5276750.763424112],[516784.5171428325,5276731.050917582],[516793.9254580695,5276724.187377017]]]},"properties":{"id_build":570,"id_source":"w145190034","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.2726181079,5277265.696563462],[517262.355956397,5277262.918312935],[517257.0247945844,5277262.569089835],[517258.279443417,5277244.679284375],[517261.583225784,5277244.911357797],[517263.235116873,5277245.027395216],[517270.14374361694,5277245.270162741],[517269.51557601604,5277254.492911465],[517266.43710182846,5277254.261501652],[517265.8112479452,5277262.7062784005],[517268.8900473161,5277262.826548969],[517268.7339126267,5277264.826604177],[517269.93519385776,5277264.94130708],[517270.09132895863,5277262.941251907],[517280.75397970644,5277263.528587994],[517286.01003864233,5277263.87760986],[517285.776157809,5277266.766553084],[517285.07220705395,5277276.211355396],[517268.0270227895,5277275.271658813],[517267.5510398677,5277283.828020051],[517256.738553625,5277283.12912393],[517255.913766281,5277282.682119813],[517256.53828632,5277274.681897492],[517256.914447888,5277274.460732563],[517261.6454533882,5277274.585896507],[517261.95376355667,5277271.91945282],[517263.91132188187,5277270.258158212],[517264.8876298101,5277270.261053119],[517265.0450812759,5277267.816442085],[517263.9936722968,5277267.813324472],[517262.2726181079,5277265.696563462]]]},"properties":{"id_build":571,"id_source":"w145190049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.94233278395,5277759.794728824],[516880.52041002514,5277762.039496896],[516888.17325328063,5277764.39563172],[516887.7939132827,5277765.728210717],[516854.78013486054,5277756.0744980145],[516864.9842706023,5277759.104829133],[516865.5144383675,5277757.550405747],[516872.94233278395,5277759.794728824]]]},"properties":{"id_build":572,"id_source":"w145190059","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517186.2258854489,5277178.893624008],[517234.4441925489,5277178.035888094],[517234.6372591148,5277188.928168516],[517188.52352867165,5277189.236415377],[517188.5874752901,5277193.015360204],[517186.7099351956,5277193.009817885],[517186.69714110426,5277197.344235613],[517165.7428262586,5277197.615841176],[517165.4752548,5277211.952097367],[517147.4502740579,5277212.121265344],[517147.49347842217,5277197.450928148],[517111.9681610564,5277198.124393182],[517111.870871093,5277180.119447396],[517172.3284495001,5277180.075158951],[517172.41043462907,5277177.7414632635],[517177.0670741144,5277177.6440589465],[517177.1477496941,5277175.754918984],[517177.82399401115,5277175.645774121],[517177.8295680063,5277173.756412608],[517178.28017911623,5277173.7577420175],[517178.28181857034,5277173.202047457],[517160.25769993436,5277173.037759332],[517160.1904591557,5277170.370204097],[517178.59009551594,5277170.535599857],[517180.23872996576,5277171.763002777],[517180.68638980517,5277172.764582583],[517180.81494952773,5277180.100194041],[517186.29770679196,5277180.005234814],[517186.2258854489,5277178.893624008]]]},"properties":{"id_build":573,"id_source":"w145190068","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.1226506469,5277462.932587453],[517212.0429526103,5277464.488310913],[517211.96358317725,5277465.932895417],[517211.32468638226,5277478.8232391905],[517211.2453172923,5277480.267823732],[517211.16463403765,5277482.156964149],[517210.448343014,5277495.825059108],[517210.44341494224,5277497.492143637],[517210.3640462866,5277498.936728234],[517210.0429581845,5277505.937595346],[517206.81409122015,5277505.816911633],[517206.6451734596,5277512.15138907],[517199.66209208244,5277511.797335189],[517199.57977127424,5277514.242170705],[517192.371399626,5277513.887459998],[517190.6444860907,5277513.771220715],[517189.4432547655,5277513.656533999],[517176.3776068881,5277513.173412442],[517174.8759852735,5277513.057842513],[517173.22416864726,5277512.941829938],[517159.3327732746,5277512.345171038],[517157.68095615954,5277512.229162872],[517155.9540414963,5277512.112933884],[517142.51322756166,5277511.517642912],[517140.9365073986,5277511.40186062],[517139.2092650018,5277511.396775568],[517132.301276555,5277511.043023572],[517132.7822777858,5277500.708425224],[517200.0608917429,5277503.907577576],[517202.00771851867,5277455.011757679],[517212.44505747635,5277455.487165074],[517212.1226506469,5277462.932587453]]]},"properties":{"id_build":574,"id_source":"w145190089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516320.3624122452,5277181.736991974],[516337.640174227,5277180.229489022],[516338.1456157959,5277187.454994096],[516333.80522496096,5277197.978869468],[516327.3325301822,5277213.653655223],[516326.3577713073,5277213.095222908],[516324.921186466,5277216.536528752],[516325.8965681484,5277216.87268297],[516324.686222976,5277219.98120384],[516323.9317832165,5277221.201626477],[516322.2007166439,5277222.530451162],[516319.64540693077,5277223.190127254],[516319.64852199686,5277222.078737961],[516317.5450654054,5277222.295122262],[516317.69215311296,5277223.406932498],[516305.1327140403,5277224.271980349],[516300.7158627278,5277224.581918653],[516299.7778160578,5277210.909097223],[516313.2237593404,5277209.946495565],[516320.4082313081,5277192.184261242],[516320.93363089365,5277192.29687374],[516320.3624122452,5277181.736991974]]]},"properties":{"id_build":575,"id_source":"w145190156","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"office","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516318.8217665332,5277517.0415244],[516324.4646708209,5277486.493884801],[516328.222677359,5277485.393024655],[516329.13725469244,5277480.616576208],[516325.3795565425,5277481.60629679],[516329.4981194943,5277459.056458083],[516330.3999207117,5277458.836707798],[516330.7053011557,5277457.059326853],[516334.35335733026,5277457.680829803],[516343.8534089882,5277454.984564574],[516341.3364873339,5277468.758840528],[516357.77452290576,5277471.80577792],[516358.4610219769,5277468.0289518805],[516368.90621013613,5277465.724372649],[516371.7279666076,5277450.395007664],[516403.44291629846,5277442.148787809],[516399.78153101064,5277462.254786154],[516372.87671841105,5277469.180872575],[516366.01479880454,5277505.837731028],[516357.98342112434,5277504.370341682],[516357.1439211793,5277509.146996813],[516348.43729239405,5277507.455443793],[516353.6232178265,5277479.240485745],[516348.4377187148,5277480.55960062],[516347.36949723266,5277486.558153064],[516340.83910874324,5277485.428421869],[516335.12039639783,5277516.198112997],[516330.6170458309,5277515.296360527],[516330.8463908267,5277513.852185733],[516327.3934670511,5277513.286801911],[516326.47764940636,5277518.507806783],[516318.8217665332,5277517.0415244]]]},"properties":{"id_build":576,"id_source":"w145190178","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.1634093542,5277439.419560811],[516889.49146025075,5277439.42631384],[516896.926525983,5277439.3367472375],[516899.25457692164,5277439.343504171],[516903.7604819661,5277439.356584752],[516906.46402499074,5277439.364434772],[516913.5235990838,5277439.2737990115],[516915.7765516471,5277439.280344388],[516920.582850444,5277439.294310768],[516923.211618148,5277439.190811352],[516927.71752335207,5277439.203910471],[516927.687794895,5277449.428694992],[516920.02744650736,5277449.517567532],[516916.7231218867,5277449.507965519],[516902.82961615315,5277449.578752904],[516899.45019330614,5277449.568942667],[516885.3313932951,5277449.639117862],[516882.4776584962,5277449.630842111],[516867.8331710782,5277449.69953541],[516864.9794363306,5277449.691268235],[516851.0108340392,5277449.761961734],[516847.6314113713,5277449.752181575],[516842.07381703454,5277449.847241882],[516841.95287682064,5277439.73316175],[516845.8583157437,5277439.633320658],[516848.6369569862,5277439.64136112],[516853.2179601155,5277439.654619911],[516855.62110929744,5277439.661576785],[516863.13127239235,5277439.572184445],[516865.60952003195,5277439.579362958],[516870.1154248294,5277439.592417498],[516872.5188961354,5277439.488242384],[516879.95363918797,5277439.50979307],[516882.2816900427,5277439.516543216],[516887.1634093542,5277439.419560811]]]},"properties":{"id_build":577,"id_source":"w145190219","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517181.2682065722,5277349.723240912],[517186.194340247,5277354.961355654],[517171.2982251527,5277368.9654891705],[517176.5312746844,5277374.53792086],[517170.95842567255,5277379.778400677],[517171.9241568236,5277380.814850117],[517166.3965084833,5277386.011011646],[517165.31845619733,5277384.863092049],[517154.8505983449,5277394.701464104],[517170.69202094624,5277411.54140355],[517178.4864205678,5277404.218047201],[517171.06732818746,5277396.327455447],[517179.41151303233,5277388.48336426],[517184.4349159704,5277393.832904927],[517187.10086849966,5277391.317898036],[517196.9829537712,5277401.838686808],[517186.09333816473,5277412.075861067],[517188.5339133395,5277414.672625969],[517172.0046012072,5277429.927817931],[517162.64109318296,5277419.275231817],[517157.47514183476,5277424.072364405],[517148.33296599856,5277414.754132873],[517143.9095206131,5277409.684239653],[517152.51724892104,5277401.58526428],[517150.09163928125,5277398.999672716],[517147.034144556,5277401.869191059],[517136.9647780414,5277391.15899845],[517152.79460356926,5277376.26840877],[517151.4245436832,5277374.819553751],[517162.4873871238,5277364.4161159685],[517152.08108336484,5277353.349257147],[517158.97185187566,5277346.867876385],[517151.61254278995,5277339.0441708],[517162.3064163992,5277328.995293679],[517172.4357608718,5277339.76127559],[517176.3970221267,5277336.038659468],[517185.523142656,5277345.7347617885],[517181.2682065722,5277349.723240912]]]},"properties":{"id_build":578,"id_source":"w145190274","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516443.47414930066,5277680.212181112],[516435.27213275054,5277686.079434457],[516431.8312414235,5277681.290705956],[516430.1756949387,5277682.50857219],[516424.1168078146,5277674.044843834],[516419.82790790155,5277677.033522651],[516417.35947769624,5277673.581224422],[516419.6167275573,5277672.031631912],[516418.56978008675,5277670.4727207],[516420.52633623086,5277669.033420414],[516413.94394555496,5277659.790247196],[516415.5994950442,5277658.572376382],[516412.3081357935,5277654.006361203],[516410.72768132424,5277655.224444637],[516404.5936415918,5277646.760525409],[516400.30441869923,5277649.860357503],[516397.8359653085,5277646.408067756],[516400.0935334975,5277644.747328726],[516398.97148007987,5277643.188209583],[516401.0782320413,5277641.74932588],[516397.63728619914,5277636.960618047],[516407.4948892439,5277629.875438979],[516410.93583124236,5277634.664152593],[516412.0647759747,5277633.778216014],[516418.49763468385,5277642.7986850785],[516419.77645712753,5277642.02431256],[516422.91825297306,5277646.36763018],[516420.5852696671,5277648.139287559],[516423.8766258055,5277652.705307381],[516426.2096083012,5277650.933651307],[516429.4261764775,5277655.38832341],[516427.0180991756,5277657.159766312],[516430.45932253497,5277661.837352738],[516431.58795133594,5277661.062558923],[516438.09584484587,5277670.083262122],[516439.14937764587,5277669.30825772],[516442.3659256914,5277673.76293715],[516440.0332611894,5277675.423447795],[516443.47414930066,5277680.212181112]]]},"properties":{"id_build":579,"id_source":"w145190323","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.19147495995,5277352.895527593],[517027.4013554672,5277352.805468743],[517029.8793151325,5277352.923856033],[517034.38561246666,5277352.8258986],[517036.78879766964,5277352.832930165],[517044.0737781615,5277352.743111713],[517046.7022620247,5277352.750806912],[517051.2082343623,5277352.764001443],[517053.536320069,5277352.770819984],[517059.3193102025,5277352.676621441],[517059.3657534159,5277362.457068709],[517051.8480091094,5277362.535072265],[517048.96412656474,5277362.548854823],[517034.6723831602,5277362.618162578],[517031.51794779825,5277362.6978461435],[517017.26378738397,5277362.756192575],[517014.03438288905,5277362.791210532],[516999.88507022307,5277362.949931807],[516996.73089517374,5277362.94072306],[516982.87476300425,5277363.000315639],[516979.81064246653,5277363.013606716],[516974.05022653175,5277363.096835992],[516974.1201417214,5277364.8752781],[516960.00178196275,5277364.722994808],[516960.10893209843,5277353.720457817],[516973.9275684661,5277353.649587641],[516974.0793875728,5277353.094330793],[516978.209861847,5277353.106374126],[516980.68814640853,5277353.113601533],[516984.81862068037,5277353.125649555],[516987.2218057092,5277353.132660661],[516994.65698379517,5277353.043218608],[516996.83487026795,5277353.049576061],[517001.5664654159,5277352.952250944],[517004.1198496046,5277352.959707623],[517011.4045044902,5277352.9809872415],[517013.883113911,5277352.877089831],[517017.7131902626,5277352.888283371],[517020.19147495995,5277352.895527593]]]},"properties":{"id_build":580,"id_source":"w145190333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516420.7201475874,5277264.818314036],[516417.619397477,5277272.478217547],[516419.65975057654,5277273.3286337815],[516417.49683280004,5277278.657246012],[516415.8314823375,5277277.985711515],[516415.5293883536,5277278.585014826],[516404.7419016761,5277274.309069746],[516404.34070626716,5277275.430451566],[516393.5982659595,5277271.15465414],[516399.2184626191,5277256.8890145365],[516397.6206945171,5277256.217675666],[516404.7612473116,5277238.121999974],[516411.00929057784,5277222.279955848],[516412.8734921347,5277221.685055502],[516414.4065907564,5277221.322615926],[516415.7580366111,5277221.459793756],[516421.7975405092,5277223.655164754],[516421.04000906897,5277225.964736366],[516431.29479506833,5277230.083611849],[516429.82673187496,5277234.013818549],[516434.8529810822,5277235.9840644915],[516436.4115763398,5277231.909632834],[516445.36017967365,5277235.813680485],[516444.97965212836,5277237.590842786],[516444.97619922645,5277238.813371022],[516444.58077735023,5277240.546035365],[516443.76453930954,5277242.366423109],[516442.70904594735,5277243.808259925],[516441.73053704354,5277244.583475414],[516441.5030374549,5277245.360811725],[516441.7280263315,5277245.472586873],[516440.59335351846,5277248.359018125],[516440.14274831844,5277248.357745792],[516439.99129136093,5277248.801877418],[516441.62654433947,5277249.49556174],[516437.5125999896,5277259.564327746],[516436.3721357244,5277259.183232787],[516434.0888168294,5277264.58929683],[516430.2178254396,5277263.089098466],[516422.5439289058,5277259.911077829],[516420.7201475874,5277264.818314036]]]},"properties":{"id_build":581,"id_source":"w145190350","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516691.90699353215,5277046.088285671],[516694.530198495,5277047.985182768],[516699.43232252443,5277040.886291875],[516708.6512433471,5277047.469987041],[516702.01631650777,5277056.453276476],[516694.82169012644,5277051.097933157],[516690.5248668164,5277056.642605639],[516683.4056520246,5277051.176352828],[516682.2749614192,5277052.617930817],[516664.36437144934,5277038.896448787],[516661.19761899003,5277043.221839101],[516663.89562061947,5277045.230076156],[516652.2100818469,5277060.756218734],[516683.8886061441,5277084.452996053],[516674.1716129067,5277097.072873033],[516642.78659241204,5277073.17693519],[516641.5047569993,5277074.951508493],[516634.16020948975,5277069.484671863],[516637.70371408906,5277064.715784116],[516639.05271414976,5277065.719897077],[516642.0679608506,5277061.838620922],[516640.7940636925,5277060.834721905],[516640.944905521,5277060.61287338],[516656.62711359304,5277039.430009732],[516657.75112358294,5277040.322343574],[516660.6165065932,5277036.3295085225],[516661.31628971524,5277027.996025618],[516663.1229134512,5277026.556377872],[516663.3526773136,5277025.001078162],[516661.70103074657,5277024.774072264],[516658.94158742164,5277017.986649149],[516663.08820092794,5277012.441523862],[516670.2965860143,5277013.017855205],[516673.43153764127,5277019.806358938],[516669.50832169724,5277026.01895529],[516667.4060531834,5277025.790657762],[516666.4192070112,5277029.455446574],[516686.2796465517,5277044.18278014],[516687.3349177382,5277042.8521266],[516691.90699353215,5277046.088285671]]]},"properties":{"id_build":582,"id_source":"w145190370","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516346.8888312345,5276828.498085541],[516352.24103867414,5276821.511309287],[516356.97032328806,5276825.058835111],[516361.909462539,5276828.762550093],[516356.4067255067,5276835.860034492],[516346.8888312345,5276828.498085541]]]},"properties":{"id_build":583,"id_source":"w145190378","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516618.8209548177,5277523.113718153],[516610.2528835621,5277525.53434428],[516606.6089385187,5277512.9651423665],[516615.2521241754,5277510.544725205],[516617.17779905867,5277517.329754023],[516618.8209548177,5277523.113718153]]]},"properties":{"id_build":584,"id_source":"w145190389","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.8759852735,5277513.057842513],[517174.7956420472,5277514.835844527],[517173.2185955487,5277514.831192461],[517173.22416864726,5277512.941829938],[517174.8759852735,5277513.057842513]]]},"properties":{"id_build":585,"id_source":"w145190401","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.3818001258,5277731.788476628],[516479.75379266666,5277730.3277233085],[516480.2093945172,5277728.550774533],[516486.06300228473,5277729.901027242],[516485.3818001258,5277731.788476628]]]},"properties":{"id_build":586,"id_source":"w145190408","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4484362991,5277181.676966661],[517299.7490755641,5277189.565821217],[517300.0943450314,5277189.633531014],[517299.5797532132,5277196.000318094],[517296.9428957671,5277196.259219994],[517297.42886373884,5277189.41444611],[517292.3904339627,5277189.099402634],[517292.9399113352,5277181.098962209],[517296.4388940522,5277181.364976911],[517300.4484362991,5277181.676966661]]]},"properties":{"id_build":587,"id_source":"w145190437","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.46576563176,5277209.910836336],[517264.7052401728,5277205.132530943],[517265.90686337196,5277205.136094061],[517265.7424892333,5277209.914622106],[517264.46576563176,5277209.910836336]]]},"properties":{"id_build":588,"id_source":"w145190447","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516992.63426737295,5277222.670234612],[516992.51826865505,5277185.2157612005],[517002.28148941917,5277185.244262217],[517002.4725265502,5277222.698955282],[516992.63426737295,5277222.670234612]]]},"properties":{"id_build":589,"id_source":"w145190463","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516629.23975760984,5277477.4649767],[516622.0991093596,5277479.6673831],[516620.6560753391,5277474.806450761],[516619.1237461048,5277469.656300257],[516626.26440545963,5277467.4538902175],[516629.23975760984,5277477.4649767]]]},"properties":{"id_build":590,"id_source":"w145190481","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516901.208342332,5277102.595373595],[516900.5866690614,5277058.026495267],[516914.5565352133,5277057.844779611],[516914.877367686,5277102.523925881],[516901.208342332,5277102.595373595]]]},"properties":{"id_build":591,"id_source":"w145190510","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.0429526103,5277464.488310913],[517212.1226506469,5277462.932587453],[517214.1502999668,5277462.938582265],[517214.14537088695,5277464.6056667045],[517212.0429526103,5277464.488310913]]]},"properties":{"id_build":592,"id_source":"w145190613","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0115500395,5277533.590402691],[516851.673640301,5277532.118547681],[516853.27288078936,5277524.454523206],[516857.17626798415,5277525.043751482],[516862.20559892064,5277525.814067214],[516861.0115500395,5277533.590402691]]]},"properties":{"id_build":593,"id_source":"w145190629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.73395074013,5277727.848398711],[516973.05702592764,5277729.522270609],[516971.77004822786,5277733.074997124],[516968.77274197317,5277730.843460649],[516970.73395074013,5277727.848398711]]]},"properties":{"id_build":594,"id_source":"w145190647","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517314.82518301846,5277044.573085632],[517314.58334849006,5277050.129360099],[517311.50476784824,5277049.897926793],[517311.82170297136,5277044.341875497],[517314.82518301846,5277044.573085632]]]},"properties":{"id_build":595,"id_source":"w145190653","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.26461351285,5276718.442357971],[516845.684908661,5276720.780401437],[516841.0953047239,5276723.545620855],[516839.6746870405,5276721.318717339],[516844.26461351285,5276718.442357971]]]},"properties":{"id_build":596,"id_source":"w145190655","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517018.16384554276,5277378.562916823],[517022.29430182267,5277378.574991476],[517022.28195431526,5277382.798271581],[517018.1511761756,5277382.89733588],[517018.16384554276,5277378.562916823]]]},"properties":{"id_build":597,"id_source":"w145190678","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.0106342476,5277534.219685274],[516617.5052416035,5277539.425297828],[516618.9850171936,5277544.564184555],[516611.84413785976,5277546.877742546],[516608.4942576857,5277536.5321757225],[516616.0106342476,5277534.219685274]]]},"properties":{"id_build":598,"id_source":"w145190707","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.8448474734,5277632.399719374],[517022.66427858826,5277637.309812786],[517019.6933497084,5277641.457760568],[517016.7827615365,5277645.516974282],[517009.96365989564,5277640.495748689],[517015.8448474734,5277632.399719374]]]},"properties":{"id_build":599,"id_source":"w145190724","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.93783734017,5277695.217502345],[517216.4459444905,5277702.451974304],[517207.2715389248,5277706.759308901],[517203.76309461193,5277699.635981445],[517206.29744458065,5277698.4098176425],[517212.93783734017,5277695.217502345]]]},"properties":{"id_build":600,"id_source":"w145190727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.7424892333,5277209.914622106],[517265.90686337196,5277205.136094061],[517278.3723848355,5277205.617631697],[517278.2080004745,5277210.396159421],[517265.7424892333,5277209.914622106]]]},"properties":{"id_build":601,"id_source":"w145190733","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516836.0540565685,5277376.032946171],[516833.5006826781,5277376.025563175],[516833.428475406,5277375.025095483],[516836.05727035756,5277374.921556659],[516836.0540565685,5277376.032946171]]]},"properties":{"id_build":602,"id_source":"w145190740","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516422.7646277575,5277700.825743677],[516419.9166590381,5277698.817192152],[516424.4408620277,5277692.272700586],[516426.535058931,5277695.279386437],[516422.7646277575,5277700.825743677]]]},"properties":{"id_build":603,"id_source":"w145190766","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517122.26779535745,5277552.024143449],[517116.68970720674,5277559.12069711],[517113.10830887256,5277556.309442194],[517109.7217018871,5277553.654357894],[517115.29945996386,5277546.6689366065],[517122.26779535745,5277552.024143449]]]},"properties":{"id_build":604,"id_source":"w145190767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.7179976846,5276895.870610231],[517308.3593162381,5276895.293033727],[517308.62584056234,5276891.537299209],[517308.90784881404,5276887.626014968],[517316.2668703974,5276888.092453275],[517315.7179976846,5276895.870610231]]]},"properties":{"id_build":605,"id_source":"w145190779","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516948.84189372056,5277457.603451896],[516948.84545266366,5277456.380923289],[516951.2482714518,5277456.499058619],[516951.3204573603,5277457.499527947],[516948.84189372056,5277457.603451896]]]},"properties":{"id_build":606,"id_source":"w145190785","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.4298729909,5276750.02741027],[517231.7043217779,5276758.808267498],[517227.2947068521,5276759.073070358],[517222.8400280257,5276759.337743273],[517222.49045859673,5276750.556664362],[517231.4298729909,5276750.02741027]]]},"properties":{"id_build":607,"id_source":"w145190793","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.4553018264,5277091.79751278],[517310.987502738,5277097.57539574],[517308.0591527476,5277097.344410737],[517308.4518460283,5277091.566304306],[517311.4553018264,5277091.79751278]]]},"properties":{"id_build":608,"id_source":"w145190808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.0659374689,5277257.856784983],[517127.640003721,5277257.519170532],[517128.17126713664,5277255.631355234],[517129.59687434736,5277256.080108739],[517129.0659374689,5277257.856784983]]]},"properties":{"id_build":609,"id_source":"w145190813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517140.8565017328,5277513.068724097],[517140.9365073986,5277511.40186062],[517142.51322756166,5277511.517642912],[517142.4335486875,5277513.073367397],[517140.8565017328,5277513.068724097]]]},"properties":{"id_build":610,"id_source":"w145190815","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516925.14713606174,5277703.376036361],[516924.06625252153,5277703.206184102],[516923.0454449336,5277703.03650668],[516923.19854264986,5277702.036692204],[516925.3002341316,5277702.37622194],[516925.14713606174,5277703.376036361]]]},"properties":{"id_build":611,"id_source":"w145190848","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.0509288059,5277380.050233547],[516880.0438399816,5277382.495290483],[516878.9176749282,5277382.380885675],[516878.9244410807,5277380.046967691],[516880.0509288059,5277380.050233547]]]},"properties":{"id_build":612,"id_source":"w145190852","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516863.13127239235,5277439.572184445],[516863.13416951295,5277438.571933787],[516865.5376411,5277438.46775579],[516865.60952003195,5277439.579362958],[516863.13127239235,5277439.572184445]]]},"properties":{"id_build":613,"id_source":"w145190874","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516718.78593390365,5277493.61443614],[516716.15049374313,5277496.051946235],[516713.75438721577,5277493.599989468],[516716.540022955,5277491.162909546],[516718.78593390365,5277493.61443614]]]},"properties":{"id_build":614,"id_source":"w145190882","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517233.60896351124,5277206.485227453],[517233.7476530158,5277210.3755341545],[517230.442863348,5277210.476893346],[517230.45470338804,5277206.475892296],[517233.60896351124,5277206.485227453]]]},"properties":{"id_build":615,"id_source":"w145190916","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517025.97977320506,5277479.389665226],[517031.08480516926,5277479.960296223],[517030.8526842027,5277482.293555501],[517025.8224271267,5277481.834283281],[517025.97977320506,5277479.389665226]]]},"properties":{"id_build":616,"id_source":"w145190921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.3391604726,5277314.684484141],[517307.10389394726,5277299.96071835],[517314.6890948839,5277315.109413202],[517306.3391604726,5277314.684484141]]]},"properties":{"id_build":617,"id_source":"w145190973","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.35030776873,5277112.201523419],[517278.02691785205,5277104.379283665],[517286.18112982565,5277105.059211006],[517285.63198538224,5277112.948512207],[517281.412239578,5277112.591453128],[517277.35030776873,5277112.201523419]]]},"properties":{"id_build":618,"id_source":"w145190986","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516394.79148749856,5277607.500535068],[516393.5123479044,5277608.386052038],[516386.9292195001,5277599.365188496],[516388.20836005546,5277598.47967009],[516392.11336896615,5277603.825377896],[516394.79148749856,5277607.500535068]]]},"properties":{"id_build":619,"id_source":"w145191014","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516915.7765516471,5277439.280344388],[516913.5235990838,5277439.2737990115],[516913.5261819978,5277438.384687319],[516915.8545562424,5277438.280311927],[516915.7765516471,5277439.280344388]]]},"properties":{"id_build":620,"id_source":"w145191031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517011.4045044902,5277352.9809872415],[517011.33265217824,5277351.869378363],[517013.8863616223,5277351.765700377],[517013.883113911,5277352.877089831],[517011.4045044902,5277352.9809872415]]]},"properties":{"id_build":621,"id_source":"w145191034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.20811512624,5277481.529333127],[516685.24751527474,5277482.959933018],[516684.4294013271,5277480.179091366],[516689.3149054349,5277478.748275497],[516690.20811512624,5277481.529333127]]]},"properties":{"id_build":622,"id_source":"w145191043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.84472763987,5277741.050477284],[516767.0371152942,5277741.15064943],[516766.9029310304,5277735.593266106],[516770.7030375476,5277735.49307223],[516770.84472763987,5277741.050477284]]]},"properties":{"id_build":623,"id_source":"w145191044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517158.7767792895,5277471.666316657],[517158.6967680624,5277473.333179801],[517156.744220399,5277473.327425594],[517156.8245585772,5277471.549423459],[517158.7767792895,5277471.666316657]]]},"properties":{"id_build":624,"id_source":"w145191073","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.66143457225,5277366.969902524],[517270.51570622885,5277370.525947801],[517269.5479140003,5277370.1896573445],[517269.63059537666,5277367.633684351],[517270.66143457225,5277366.969902524]]]},"properties":{"id_build":625,"id_source":"w145191079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.82854175055,5277467.339041585],[516970.97521519114,5277467.325985126],[516970.97812470875,5277468.904180333],[516969.4010659045,5277468.8995835055],[516967.83148451126,5277468.906122892],[516967.82854175055,5277467.339041585]]]},"properties":{"id_build":626,"id_source":"w145191129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.3452677645,5277447.654483011],[517007.057509314,5277447.6594844265],[517007.0675618172,5277449.359954421],[517007.08564357925,5277450.882624021],[517005.41095211543,5277450.877732269],[517005.3452677645,5277447.654483011]]]},"properties":{"id_build":627,"id_source":"w145191165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516371.80360164377,5277610.436620839],[516374.06117622077,5277608.7758717965],[516375.18324299017,5277610.3349860255],[516372.85057251866,5277611.995523439],[516371.80360164377,5277610.436620839]]]},"properties":{"id_build":628,"id_source":"w145191171","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517205.3749447519,5276722.054280499],[517196.0596234794,5276722.693604554],[517195.6532961381,5276717.85782333],[517195.2613333141,5276713.244364193],[517204.7268851979,5276712.605482631],[517205.3749447519,5276722.054280499]]]},"properties":{"id_build":629,"id_source":"w145191217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517100.9222737141,5277506.949731851],[517104.00029381167,5277507.292193523],[517102.4872425896,5277511.066506285],[517100.5353605073,5277510.838492954],[517100.9222737141,5277506.949731851]]]},"properties":{"id_build":630,"id_source":"w145191221","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517014.03438288905,5277362.791210532],[517017.26378738397,5277362.756192575],[517017.2744219667,5277364.25661226],[517015.6221704345,5277364.274011273],[517014.04501830135,5277364.291630214],[517014.03438288905,5277362.791210532]]]},"properties":{"id_build":631,"id_source":"w145191233","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.23712110886,5277672.133240861],[516418.56978008675,5277670.4727207],[516419.6167275573,5277672.031631912],[516417.35947769624,5277673.581224422],[516416.23712110886,5277672.133240861]]]},"properties":{"id_build":632,"id_source":"w145191243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516727.40424774674,5277630.563550835],[516717.63220049336,5277633.869678852],[516715.3994268008,5277626.8614531765],[516719.203082209,5277625.549810476],[516724.94619638997,5277623.554674202],[516727.40424774674,5277630.563550835]]]},"properties":{"id_build":633,"id_source":"w145191246","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516769.79010329506,5276798.281389898],[516768.8588430596,5276790.432240269],[516772.65308006713,5276789.976380402],[516773.58430325694,5276797.836644533],[516769.79010329506,5276798.281389898]]]},"properties":{"id_build":634,"id_source":"w145191253","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.1585517689,5276759.144462703],[517269.5847204794,5276750.0292960545],[517279.5763024947,5276749.2809565775],[517280.15044802596,5276758.284985399],[517275.3197683455,5276758.704098205],[517270.1585517689,5276759.144462703]]]},"properties":{"id_build":635,"id_source":"w145191271","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516929.9574657032,5277495.336076017],[516939.63989459997,5277497.142478429],[516938.03309629334,5277507.362675515],[516932.34370870737,5277506.312524842],[516928.20048880635,5277505.555838996],[516929.9574657032,5277495.336076017]]]},"properties":{"id_build":636,"id_source":"w145191275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.4446186602,5277443.402256795],[516995.4368323774,5277446.069591873],[516994.53565237287,5277446.066961285],[516994.54343824537,5277443.399626207],[516995.4446186602,5277443.402256795]]]},"properties":{"id_build":637,"id_source":"w145191295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.31998225074,5277461.814912916],[516673.63855175534,5277456.29755929],[516671.82315051625,5277450.357491051],[516678.287332333,5277448.375487325],[516681.78415258904,5277459.8329130635],[516675.31998225074,5277461.814912916]]]},"properties":{"id_build":638,"id_source":"w145191313","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.99414098973,5277549.55871708],[516894.5766799195,5277550.358695305],[516893.5665570814,5277562.025455497],[516885.833839535,5277561.225042914],[516886.5068783071,5277554.436346082],[516886.99414098973,5277549.55871708]]]},"properties":{"id_build":639,"id_source":"w145191340","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.29204674996,5277351.856743772],[517271.13847808616,5277355.523905617],[517270.19321324804,5277355.187681899],[517270.35132427927,5277352.520792794],[517271.29204674996,5277351.856743772]]]},"properties":{"id_build":640,"id_source":"w145191349","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.0324733625,5277723.497699123],[517117.0416231547,5277720.385806872],[517119.5194246969,5277720.504232767],[517119.5106004061,5277723.504986005],[517117.0324733625,5277723.497699123]]]},"properties":{"id_build":641,"id_source":"w145191358","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.78879766964,5277352.832930165],[517034.38561246666,5277352.8258986],[517034.4636384781,5277351.825867813],[517036.7917245447,5277351.832679657],[517036.78879766964,5277352.832930165]]]},"properties":{"id_build":642,"id_source":"w145191360","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516865.5144383675,5277757.550405747],[516866.045572383,5277755.662565364],[516873.5485633215,5277757.907106766],[516872.94233278395,5277759.794728824],[516865.5144383675,5277757.550405747]]]},"properties":{"id_build":643,"id_source":"w145191367","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.39031673543,5276900.317874013],[517138.30488071236,5276900.12476605],[517138.28983414196,5276905.23715386],[517128.45071109047,5276905.319343881],[517128.39031673543,5276900.317874013]]]},"properties":{"id_build":644,"id_source":"w145191396","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.3191740858,5277725.000644323],[516716.18302616134,5277720.110096499],[516725.9463068041,5277719.804719271],[516726.1578605842,5277724.5843440825],[516716.3191740858,5277725.000644323]]]},"properties":{"id_build":645,"id_source":"w145191447","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516906.46402499074,5277439.364434772],[516903.7604819661,5277439.356584752],[516903.8384844967,5277438.356552138],[516906.4669295557,5277438.36418412],[516906.46402499074,5277439.364434772]]]},"properties":{"id_build":646,"id_source":"w145191454","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.0565711807,5277476.6694372315],[516537.46505127376,5277478.981805867],[516534.19167527265,5277468.080801773],[516541.85799032904,5277465.879781216],[516543.50193050754,5277471.419217676],[516545.0565711807,5277476.6694372315]]]},"properties":{"id_build":647,"id_source":"w145191455","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.73893089656,5277279.250055908],[516999.63229087356,5277266.902103999],[516999.52639650047,5277254.298532797],[517015.9815680288,5277254.146547635],[517016.1940319211,5277279.098071513],[516999.73893089656,5277279.250055908]]]},"properties":{"id_build":648,"id_source":"w145191464","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.05033588957,5276938.546326868],[517314.92524399684,5276940.201938709],[517307.5290330635,5276939.635365302],[517307.63129409263,5276938.079711321],[517312.3395449973,5276938.371557059],[517315.05033588957,5276938.546326868]]]},"properties":{"id_build":649,"id_source":"w145191477","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.974226132,5277393.921846064],[516795.96685196826,5277396.478042028],[516794.7652684957,5277396.4745758],[516794.8474205373,5277394.029735422],[516795.974226132,5277393.921846064]]]},"properties":{"id_build":650,"id_source":"w145191489","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.3974209982,5277433.8440869665],[516995.39028361184,5277436.289144086],[516994.4133548185,5277436.508572219],[516994.3460421182,5277433.841017974],[516995.3974209982,5277433.8440869665]]]},"properties":{"id_build":651,"id_source":"w145191499","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516468.8549585564,5277760.415796282],[516460.22508897324,5277758.279730824],[516460.6049599237,5277756.724846171],[516469.2345172658,5277758.972051203],[516468.8549585564,5277760.415796282]]]},"properties":{"id_build":652,"id_source":"w145191539","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.9293477012,5277159.036834298],[517273.4549965727,5277167.037498978],[517265.57094048505,5277166.458415906],[517265.83792060724,5277162.535969562],[517266.1203828683,5277158.45797332],[517273.9293477012,5277159.036834298]]]},"properties":{"id_build":653,"id_source":"w145191542","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.5462931591,5276973.368531876],[517214.55089302716,5276971.812587597],[517224.8405324925,5276971.731876294],[517224.7608254351,5276973.287598402],[517214.5462931591,5276973.368531876]]]},"properties":{"id_build":654,"id_source":"w145191552","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517057.79924817296,5277666.420179994],[517054.95180558256,5277664.300178453],[517058.6467919812,5277659.08742647],[517061.49423579976,5277661.207429799],[517057.79924817296,5277666.420179994]]]},"properties":{"id_build":655,"id_source":"w145191576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.67212820065,5277405.603726367],[516838.6089222773,5277401.4913678],[516842.73968349275,5277401.392176154],[516842.80288650095,5277405.504534772],[516838.67212820065,5277405.603726367]]]},"properties":{"id_build":656,"id_source":"w145191583","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517191.3120201554,5277720.048955483],[517196.4623736981,5277730.622464829],[517193.1084577247,5277732.201860305],[517189.1680179011,5277734.04626182],[517184.09274898574,5277723.472980556],[517191.3120201554,5277720.048955483]]]},"properties":{"id_build":657,"id_source":"w145191637","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516806.1594873648,5277429.738280173],[516807.6615543852,5277429.709274267],[516807.70902195,5277431.476535503],[516807.7501988431,5277432.821447018],[516806.22560307465,5277432.850387863],[516806.1594873648,5277429.738280173]]]},"properties":{"id_build":658,"id_source":"w145191654","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.77521221543,5277492.635284065],[517000.7804345693,5277493.541936076],[517000.396832754,5277496.319313886],[516994.2417422262,5277495.301084872],[516994.77521221543,5277492.635284065]]]},"properties":{"id_build":659,"id_source":"w145191722","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.62110929744,5277439.661576785],[516853.2179601155,5277439.654619911],[516853.2208555329,5277438.654369252],[516855.6991035534,5277438.661543543],[516855.62110929744,5277439.661576785]]]},"properties":{"id_build":660,"id_source":"w145191729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.96737907326,5277383.216303652],[516938.63467703963,5277383.187812136],[516938.6531973874,5277384.56600068],[516938.67116804793,5277386.133125449],[516937.03374891245,5277386.2172738165],[516936.96737907326,5277383.216303652]]]},"properties":{"id_build":661,"id_source":"w145191733","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.31951109186,5277430.761141661],[517006.919272133,5277430.71024452],[517006.92997404066,5277432.188436553],[517006.9485429015,5277433.544397668],[517005.3113956983,5277433.539615642],[517005.31951109186,5277430.761141661]]]},"properties":{"id_build":662,"id_source":"w145191746","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516850.29988845676,5277747.281472434],[516846.5012685139,5277736.489903943],[516848.00444674515,5277736.049694267],[516851.57745913876,5277746.951750624],[516850.29988845676,5277747.281472434]]]},"properties":{"id_build":663,"id_source":"w145191751","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.8176487976,5277392.060872907],[516805.82695209485,5277388.837843242],[516807.253834348,5277388.841962121],[516807.2868922422,5277390.398015872],[516807.3199501165,5277391.954069626],[516805.8176487976,5277392.060872907]]]},"properties":{"id_build":664,"id_source":"w145191757","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.77296408534,5277529.776161401],[517273.4036985379,5277526.063744083],[517274.20493145246,5277526.844101012],[517270.5666872441,5277530.556495558],[517269.77296408534,5277529.776161401]]]},"properties":{"id_build":665,"id_source":"w145191761","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517233.7476530158,5277210.3755341545],[517233.60896351124,5277206.485227453],[517237.7398712711,5277206.386315729],[517237.8782289877,5277210.387761455],[517233.7476530158,5277210.3755341545]]]},"properties":{"id_build":666,"id_source":"w145191766","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.20493145246,5277526.844101012],[517273.4036985379,5277526.063744083],[517277.50896920095,5277521.87483547],[517278.31020214973,5277522.655192957],[517274.20493145246,5277526.844101012]]]},"properties":{"id_build":667,"id_source":"w145191792","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516400.0986294759,5277589.621962877],[516399.12613216473,5277588.285544943],[516405.7484026481,5277583.414048042],[516406.72058606293,5277584.861606069],[516400.0986294759,5277589.621962877]]]},"properties":{"id_build":668,"id_source":"w145191807","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516899.25457692164,5277439.343504171],[516896.926525983,5277439.3367472375],[516896.9294289083,5277438.336496585],[516899.2574802487,5277438.343253518],[516899.25457692164,5277439.343504171]]]},"properties":{"id_build":669,"id_source":"w145191819","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.6723831602,5277362.618162578],[517034.71272784384,5277364.229809143],[517032.9026699652,5277364.280083515],[517031.55829335295,5277364.309492686],[517031.51794779825,5277362.6978461435],[517034.6723831602,5277362.618162578]]]},"properties":{"id_build":670,"id_source":"w145191821","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516897.84165613924,5277538.031640144],[516888.60825376125,5277536.782308954],[516889.75695813773,5277529.11698727],[516894.41869187774,5277529.752896576],[516898.84017796227,5277530.365884282],[516897.84165613924,5277538.031640144]]]},"properties":{"id_build":671,"id_source":"w145191879","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.6669629954,5277382.285020421],[516534.994793036,5277383.61678965],[516532.0399584471,5277382.174694634],[516532.6971396212,5277380.831768522],[516535.6669629954,5277382.285020421]]]},"properties":{"id_build":672,"id_source":"w145191888","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516987.2218057092,5277353.132660661],[516984.81862068037,5277353.125649555],[516984.8218628438,5277352.014260099],[516987.2250483323,5277352.021271207],[516987.2218057092,5277353.132660661]]]},"properties":{"id_build":673,"id_source":"w145191911","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.43382727704,5276740.591171092],[517206.74879171007,5276740.062988126],[517207.689720467,5276752.068867661],[517198.299339623,5276752.70796611],[517197.85953269934,5276746.493951999],[517197.43382727704,5276740.591171092]]]},"properties":{"id_build":674,"id_source":"w145191920","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.2354639504,5277557.601636666],[517123.65769944526,5277564.587044739],[517119.9714010272,5277561.697679048],[517116.68970720674,5277559.12069711],[517122.26779535745,5277552.024143449],[517129.2354639504,5277557.601636666]]]},"properties":{"id_build":675,"id_source":"w145191926","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.60735394096,5277344.300164555],[517271.4452858984,5277348.300720894],[517270.44092921994,5277347.630902098],[517270.52361122385,5277345.074929208],[517271.60735394096,5277344.300164555]]]},"properties":{"id_build":676,"id_source":"w145191933","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.6829457644,5277492.492982495],[516630.31606717216,5277495.028151935],[516628.7678435705,5277490.189144916],[516626.9665065862,5277484.571436347],[516634.5583729217,5277482.148045356],[516637.6829457644,5277492.492982495]]]},"properties":{"id_build":677,"id_source":"w145191934","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.4280634623,5277498.083348838],[517295.29441597423,5277495.843097101],[517296.23591071385,5277494.912318488],[517298.4148809704,5277497.063793268],[517297.4280634623,5277498.083348838]]]},"properties":{"id_build":678,"id_source":"w145191959","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516576.9895429067,5277444.640849535],[516568.28531162103,5277447.372341576],[516565.0381557465,5277448.385588623],[516562.4324792833,5277440.376105241],[516574.45929597487,5277436.52043564],[516576.9895429067,5277444.640849535]]]},"properties":{"id_build":679,"id_source":"w145191961","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.54510487174,5277656.156891116],[516693.0805084563,5277658.361149367],[516690.4012829767,5277649.906834097],[516697.09085614,5277647.814358017],[516697.54206799716,5277647.59337231],[516697.0959562,5277646.036134021],[516705.0631210898,5277643.613911688],[516707.07284616766,5277649.84351404],[516711.35744819226,5277648.410992578],[516713.81295254716,5277656.308975743],[516708.100582519,5277658.070817321],[516707.20709018264,5277655.400895095],[516703.89975763485,5277656.4805758055],[516700.81790440803,5277657.494221265],[516700.22160303086,5277655.936551855],[516699.54510487174,5277656.156891116]]]},"properties":{"id_build":680,"id_source":"w145191969","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.72377498174,5277079.233365161],[517272.0722881948,5277078.6994201355],[517272.5192663631,5277072.332431341],[517272.92658383504,5277066.676620162],[517280.6605679747,5277067.255266996],[517279.72377498174,5277079.233365161]]]},"properties":{"id_build":681,"id_source":"w145191989","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.35901714297,5276875.997521685],[517285.98229690804,5276868.441862869],[517293.49122594425,5276869.019857076],[517293.01814786537,5276876.575961199],[517290.7053876651,5276876.402383685],[517285.35901714297,5276875.997521685]]]},"properties":{"id_build":682,"id_source":"w145191998","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.32741632016,5277427.492046618],[517284.42730399955,5277427.670926597],[517284.25020927715,5277431.671438535],[517280.1503244122,5277431.492558669],[517280.32741632016,5277427.492046618]]]},"properties":{"id_build":683,"id_source":"w145192006","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517196.70900861727,5276731.697846235],[517206.0243155693,5276731.05852325],[517206.74879171007,5276740.062988126],[517197.43382727704,5276740.591171092],[517197.08588179055,5276736.333489014],[517196.70900861727,5276731.697846235]]]},"properties":{"id_build":684,"id_source":"w145192013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516712.5186112724,5276877.5483384],[516683.66502451553,5276855.793343286],[516687.8875189022,5276850.026174205],[516716.6663320628,5276871.669835541],[516712.5186112724,5276877.5483384]]]},"properties":{"id_build":685,"id_source":"w145192029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516973.0238327579,5277457.562759047],[516973.10249498,5277456.340449379],[516975.8060301961,5277456.348331619],[516975.8024655923,5277457.570860223],[516973.0238327579,5277457.562759047]]]},"properties":{"id_build":686,"id_source":"w145192035","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.5024547672,5277704.316216019],[517252.94707128993,5277700.892934707],[517257.79760968074,5277711.243330016],[517253.81181454594,5277713.176465435],[517250.502863885,5277714.778189201],[517245.5024547672,5277704.316216019]]]},"properties":{"id_build":687,"id_source":"w145192044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517261.583225784,5277244.911357797],[517261.9007632028,5277239.133024376],[517263.5523264002,5277239.360200797],[517263.235116873,5277245.027395216],[517261.583225784,5277244.911357797]]]},"properties":{"id_build":688,"id_source":"w145192057","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516934.574504515,5277534.581893772],[516935.63279296184,5277534.785024017],[516936.9763213092,5277535.033440231],[516936.6717294624,5277536.477373073],[516934.26991324406,5277536.025826734],[516934.574504515,5277534.581893772]]]},"properties":{"id_build":689,"id_source":"w145192059","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516717.58055825427,5277756.456867363],[516716.81164672377,5277736.560611246],[516726.57521914743,5277736.144096114],[516727.3437780423,5277756.151492604],[516717.58055825427,5277756.456867363]]]},"properties":{"id_build":690,"id_source":"w145192065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.191248049,5277076.775009245],[517304.5639998645,5277085.664335236],[517300.41917325003,5277085.363055088],[517296.45452739584,5277085.084541092],[517297.0820933982,5277076.0840753745],[517305.191248049,5277076.775009245]]]},"properties":{"id_build":691,"id_source":"w145192076","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.2436189879,5277374.7559010275],[517280.3810186101,5277371.477681031],[517281.58247553324,5277371.5257030465],[517281.5173159088,5277373.237064488],[517281.4525851618,5277374.803945305],[517280.2436189879,5277374.7559010275]]]},"properties":{"id_build":692,"id_source":"w145192079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.40730385546,5277387.529332524],[517278.21605394554,5277387.36426527],[517278.35931298824,5277384.641762191],[517281.55056438525,5277384.806829521],[517281.40730385546,5277387.529332524]]]},"properties":{"id_build":693,"id_source":"w145192115","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.6137128068,5277569.355297548],[516430.5050369934,5277565.812623849],[516431.4775309224,5277567.1490469845],[516426.5862072565,5277570.6917198775],[516425.6137128068,5277569.355297548]]]},"properties":{"id_build":694,"id_source":"w145192138","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516979.81064246653,5277363.013606716],[516982.87476300425,5277363.000315639],[516982.87809101795,5277364.434029969],[516981.06065345614,5277364.43984297],[516979.81400364713,5277364.436207148],[516979.81064246653,5277363.013606716]]]},"properties":{"id_build":695,"id_source":"w145192141","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.99707138195,5276898.963820276],[517261.6354913696,5276897.932837287],[517262.18330325803,5276890.488091973],[517267.1316687075,5276890.869524592],[517272.62066125765,5276891.297020945],[517271.99707138195,5276898.963820276]]]},"properties":{"id_build":696,"id_source":"w145192146","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517251.0864914057,5276909.460119416],[517239.5229131353,5276908.536754676],[517240.0720120268,5276900.647451771],[517245.10278861073,5276901.09579361],[517251.710381995,5276901.682178925],[517251.0864914057,5276909.460119416]]]},"properties":{"id_build":697,"id_source":"w145192191","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.68095615954,5277512.229162872],[517157.6009457078,5277513.896026138],[517156.02389896667,5277513.89137873],[517155.9540414963,5277512.112933884],[517157.68095615954,5277512.229162872]]]},"properties":{"id_build":698,"id_source":"w145192209","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.54614990245,5277497.498359916],[517212.54187838384,5277498.943166512],[517210.3640462866,5277498.936728234],[517210.44341494224,5277497.492143637],[517212.54614990245,5277497.498359916]]]},"properties":{"id_build":699,"id_source":"w145192223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516768.6121288577,5277689.697396852],[516787.16256215837,5277689.084019258],[516787.37214412185,5277694.530480225],[516768.7469531611,5277695.032501799],[516768.6121288577,5277689.697396852]]]},"properties":{"id_build":700,"id_source":"w145192224","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.595538003,5276978.559527645],[517274.69175917015,5276977.992245901],[517275.3031453089,5276974.4375843415],[517278.90683858574,5276974.892836148],[517278.595538003,5276978.559527645]]]},"properties":{"id_build":701,"id_source":"w145192248","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.5994352537,5277418.446147886],[517298.94089809473,5277418.6005570935],[517298.89240460447,5277419.756268336],[517297.0752476116,5277419.673071488],[517295.55094242626,5277419.601859155],[517295.5994352537,5277418.446147886]]]},"properties":{"id_build":702,"id_source":"w145192258","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517143.1776200995,5277005.277395519],[517129.3574988846,5277005.570143742],[517129.2246184744,5276999.679341074],[517143.194961859,5276999.387034734],[517143.1776200995,5277005.277395519]]]},"properties":{"id_build":703,"id_source":"w145192270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.2030243897,5277480.112764153],[517019.3692082457,5277480.037176532],[517019.5714345031,5277487.928701877],[517007.40494247084,5277488.115428002],[517007.3311656428,5277485.092206738],[517007.2030243897,5277480.112764153]]]},"properties":{"id_build":704,"id_source":"w145192305","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.1771697487,5276758.005086063],[517293.3993935506,5276758.313201207],[517288.1859300722,5276758.642254762],[517287.6859145225,5276749.971864595],[517297.6774991334,5276749.223556169],[517298.1771697487,5276758.005086063]]]},"properties":{"id_build":705,"id_source":"w145192306","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.09274898574,5277723.472980556],[517179.01746149885,5277712.899703942],[517182.4994724769,5277711.1761964625],[517186.1619758629,5277709.364311913],[517191.3120201554,5277720.048955483],[517184.09274898574,5277723.472980556]]]},"properties":{"id_build":706,"id_source":"w145192351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.23861044773,5277386.06499503],[516849.4678718758,5277386.074339614],[516849.45682396967,5277387.296846362],[516847.5943666079,5277387.2914567115],[516846.23507312965,5277387.287523511],[516846.23861044773,5277386.06499503]]]},"properties":{"id_build":707,"id_source":"w145192373","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.49146025075,5277439.42631384],[516887.1634093542,5277439.419560811],[516887.2417313942,5277438.308389019],[516889.49468430673,5277438.314924223],[516889.49146025075,5277439.42631384]]]},"properties":{"id_build":708,"id_source":"w145192377","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517159.8025160894,5277454.887210569],[517159.64773373905,5277456.442713353],[517157.770606143,5277456.326041198],[517157.84996223677,5277454.881456011],[517159.8025160894,5277454.887210569]]]},"properties":{"id_build":709,"id_source":"w145192384","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.9371193109,5277494.340426582],[516856.236948171,5277486.3421167955],[516864.26822874526,5277487.810193664],[516862.8932914649,5277495.808284189],[516858.87017944705,5277495.063109648],[516854.9371193109,5277494.340426582]]]},"properties":{"id_build":710,"id_source":"w145192409","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516901.7323471347,5277491.253031263],[516910.8149779941,5277492.72422469],[516909.05835676484,5277502.83285435],[516904.5846374266,5277502.097453449],[516900.12593650084,5277501.362099592],[516901.7323471347,5277491.253031263]]]},"properties":{"id_build":711,"id_source":"w145192435","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.6009457078,5277513.896026138],[517157.68095615954,5277512.229162872],[517159.3327732746,5277512.345171038],[517159.25276235037,5277514.012034282],[517157.6009457078,5277513.896026138]]]},"properties":{"id_build":712,"id_source":"w145192458","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.87796341465,5277114.336385445],[517304.4268021832,5277106.558224784],[517312.3860385634,5277107.137583522],[517311.9122918224,5277114.915966759],[517307.82753545506,5277114.625973797],[517303.87796341465,5277114.336385445]]]},"properties":{"id_build":713,"id_source":"w145192460","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.05670342164,5277664.695618526],[516962.33847502904,5277663.351646177],[516963.99727661174,5277663.634329423],[516965.6635552003,5277663.928148929],[516965.50915371784,5277665.372518244],[516962.05670342164,5277664.695618526]]]},"properties":{"id_build":714,"id_source":"w145192468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517057.62509040267,5277443.917521117],[517057.09154310665,5277449.161761955],[517056.46540434274,5277455.250394983],[517049.858714042,5277454.564204169],[517050.8678651311,5277443.342028119],[517057.62509040267,5277443.917521117]]]},"properties":{"id_build":715,"id_source":"w145192512","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516621.84219457384,5277622.259128125],[516614.1751026575,5277624.793460479],[516610.9010029355,5277614.22582721],[516618.6432034671,5277611.691704921],[516620.22039375396,5277616.897554667],[516621.84219457384,5277622.259128125]]]},"properties":{"id_build":716,"id_source":"w145192520","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.1000503148,5277253.841394322],[517310.4481626265,5277253.725343035],[517310.5404454466,5277247.946342236],[517312.2677661277,5277247.951477924],[517312.1000503148,5277253.841394322]]]},"properties":{"id_build":717,"id_source":"w145192522","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516811.2414656909,5277386.297257548],[516814.6209251395,5277386.307016496],[516814.6167525194,5277387.751822888],[516812.8143745928,5277387.746617872],[516811.27484344743,5277387.742172364],[516811.2414656909,5277386.297257548]]]},"properties":{"id_build":718,"id_source":"w145192527","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.1620274906,5277685.061987704],[516895.7866405045,5277684.60812668],[516896.5166450305,5277684.065659657],[516896.9646360091,5277684.956079427],[516895.6854363829,5277685.841486308],[516895.1620274906,5277685.061987704]]]},"properties":{"id_build":719,"id_source":"w145192545","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516662.2216301324,5277656.383368361],[516657.89217968995,5277657.749113633],[516653.50259124883,5277659.136918071],[516650.6724816548,5277650.904469583],[516659.5423589825,5277647.929067426],[516662.2216301324,5277656.383368361]]]},"properties":{"id_build":720,"id_source":"w145192563","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.4547944704,5276863.292256154],[517270.0756900237,5276863.059953915],[517270.39160542196,5276857.837318638],[517273.845489136,5276858.180982703],[517273.4547944704,5276863.292256154]]]},"properties":{"id_build":721,"id_source":"w145192570","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516367.2544956785,5277572.413993694],[516368.5339515824,5277571.417332008],[516372.17681498255,5277576.528895267],[516374.9669471687,5277580.437751765],[516373.7629012694,5277581.323484268],[516367.2544956785,5277572.413993694]]]},"properties":{"id_build":722,"id_source":"w145192579","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.2721196279,5277588.827695341],[516852.48615224054,5277588.69111603],[516852.66787347646,5277577.799930052],[516861.4541791842,5277577.825370609],[516861.36327809363,5277583.282077357],[516861.2721196279,5277588.827695341]]]},"properties":{"id_build":723,"id_source":"w145192615","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.7022620247,5277352.750806912],[517044.0737781615,5277352.743111713],[517044.0016067355,5277351.742641364],[517046.7802901549,5277351.750776289],[517046.7022620247,5277352.750806912]]]},"properties":{"id_build":724,"id_source":"w145192617","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.25609902584,5277426.3755049],[516796.3241438367,5277428.820778686],[516795.19766558864,5277428.817529005],[516795.2047188851,5277426.372471872],[516796.25609902584,5277426.3755049]]]},"properties":{"id_build":725,"id_source":"w145192637","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.32386682415,5277128.705717237],[517269.9654762633,5277128.128188331],[517270.0448639914,5277126.6836053375],[517277.4783588285,5277127.26135719],[517277.32386682415,5277128.705717237]]]},"properties":{"id_build":726,"id_source":"w145192649","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.347729882,5277480.385179253],[517213.34247241204,5277482.163402708],[517211.16463403765,5277482.156964149],[517211.2453172923,5277480.267823732],[517213.347729882,5277480.385179253]]]},"properties":{"id_build":727,"id_source":"w145192668","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516431.58795133594,5277661.062558923],[516432.7165804381,5277660.287765321],[516436.4491008889,5277665.521877046],[516439.14937764587,5277669.30825772],[516438.09584484587,5277670.083262122],[516431.58795133594,5277661.062558923]]]},"properties":{"id_build":728,"id_source":"w145192681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516806.46728671837,5277453.189685249],[516807.9241924952,5277453.193891044],[516807.9352977703,5277454.549829779],[516807.9537203476,5277455.972473572],[516806.45926616655,5277455.968159376],[516806.46728671837,5277453.189685249]]]},"properties":{"id_build":729,"id_source":"w145192683","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.6170990961,5277368.443056712],[517317.446498333,5277372.7770065],[517316.17996469175,5277371.884120074],[517316.2633276153,5277369.105869796],[517317.6170990961,5277368.443056712]]]},"properties":{"id_build":730,"id_source":"w145192688","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516626.6777309937,5277638.2770823445],[516619.2362626741,5277640.700912472],[516616.1104699618,5277630.800538699],[516623.62704554916,5277628.376919018],[516625.18214230577,5277633.427111338],[516626.6777309937,5277638.2770823445]]]},"properties":{"id_build":731,"id_source":"w145192697","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8020198006,5277219.555926856],[517293.881742491,5277218.000205054],[517299.6638810031,5277218.239661671],[517299.7346895066,5277219.6846907595],[517293.8020198006,5277219.555926856]]]},"properties":{"id_build":732,"id_source":"w145192700","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516342.43353261234,5276703.231110933],[516352.27079436195,5276703.925563935],[516351.8845719828,5276710.403924825],[516351.24571054423,5276721.260481283],[516341.2582626374,5276720.565608401],[516342.43353261234,5276703.231110933]]]},"properties":{"id_build":733,"id_source":"w145192756","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.8480091094,5277362.535072265],[517051.8587975305,5277363.979922563],[517050.34926715796,5277363.986615726],[517048.967405761,5277363.993683123],[517048.96412656474,5277362.548854823],[517051.8480091094,5277362.535072265]]]},"properties":{"id_build":734,"id_source":"w145192763","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.2082343623,5277352.764001443],[517051.21148919757,5277351.652611997],[517053.5395753484,5277351.659430536],[517053.536320069,5277352.770819984],[517051.2082343623,5277352.764001443]]]},"properties":{"id_build":735,"id_source":"w145192765","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.4618089982,5277646.782776263],[517305.22921247734,5277645.144702261],[517306.2633734079,5277650.927055184],[517296.495649118,5277652.6762664355],[517295.4618089982,5277646.782776263]]]},"properties":{"id_build":736,"id_source":"w145192834","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.06596263323,5277090.871572535],[517298.6729484465,5277096.760818468],[517295.66949473927,5277096.529616578],[517296.06250590045,5277090.640370454],[517299.06596263323,5277090.871572535]]]},"properties":{"id_build":737,"id_source":"w145192859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517016.56061005587,5277747.209383724],[517016.52455025684,5277759.5458144285],[517004.8095162566,5277759.622722713],[517004.69536233466,5277747.285853292],[517016.56061005587,5277747.209383724]]]},"properties":{"id_build":738,"id_source":"w145192865","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.2996409306,5277685.360176225],[516680.00299573055,5277688.331443378],[516677.3228103001,5277680.21055076],[516681.9825725892,5277678.879108422],[516687.69456377736,5277677.239494134],[516690.2996409306,5277685.360176225]]]},"properties":{"id_build":739,"id_source":"w145192904","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517061.15100272134,5277650.2035686225],[517059.8917261743,5277651.967003548],[517059.2697021393,5277651.531735],[517060.55186556483,5277649.646113066],[517061.15100272134,5277650.2035686225]]]},"properties":{"id_build":740,"id_source":"w145192914","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516968.2215784252,5277378.861711008],[516972.65275519347,5277378.763486972],[516972.715866828,5277382.875847075],[516968.3597923356,5277382.974289922],[516968.2215784252,5277378.861711008]]]},"properties":{"id_build":741,"id_source":"w145192923","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.32492412464,5277375.777422989],[517317.14615270286,5277380.33362839],[517315.8570909086,5277379.440675011],[517316.0162139205,5277376.440370154],[517317.32492412464,5277375.777422989]]]},"properties":{"id_build":742,"id_source":"w145192925","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517071.5730002417,5277476.522398783],[517079.45600202936,5277477.323498359],[517078.5245070938,5277487.656778725],[517070.5664213776,5277486.85546017],[517071.06977555685,5277481.66670164],[517071.5730002417,5277476.522398783]]]},"properties":{"id_build":743,"id_source":"w145192940","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517091.01270973834,5276917.323582347],[517090.8872902729,5276908.87658753],[517099.22495381127,5276908.567645259],[517099.27492967667,5276917.125558605],[517091.01270973834,5276917.323582347]]]},"properties":{"id_build":744,"id_source":"w145192947","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517144.9357714689,5277581.431799837],[517149.6845356586,5277575.444229363],[517156.87776726385,5277580.911280667],[517152.1290000574,5277586.898845336],[517148.32260813384,5277583.997993632],[517144.9357714689,5277581.431799837]]]},"properties":{"id_build":745,"id_source":"w145192976","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516409.2481489033,5277700.565349721],[516404.66072601895,5277697.573871941],[516397.62970564474,5277692.975100043],[516402.53155599337,5277685.653676086],[516413.99981734535,5277693.2435119795],[516409.2481489033,5277700.565349721]]]},"properties":{"id_build":746,"id_source":"w145192977","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.1758507032,5277452.777546677],[516548.26122708694,5277458.896166238],[516545.70567892515,5277459.666882147],[516543.845279003,5277453.6600426575],[516546.1758507032,5277452.777546677]]]},"properties":{"id_build":747,"id_source":"w145192998","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.4837950692,5277611.783490525],[516805.998560198,5277615.563733747],[516801.41609185946,5277616.106206741],[516800.90100307687,5277612.437102922],[516805.4837950692,5277611.783490525]]]},"properties":{"id_build":748,"id_source":"w145193018","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.15112898295,5277367.709474002],[516401.369037654,5277365.245288383],[516402.4361731445,5277362.325316955],[516409.21823611634,5277364.800617691],[516408.15112898295,5277367.709474002]]]},"properties":{"id_build":749,"id_source":"w145193040","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.10660908604,5277692.732281565],[517309.8518900829,5277691.703868796],[517312.1311076846,5277690.421422356],[517312.3192092181,5277690.2997277435],[517317.75807069783,5277699.75168905],[517313.3956155238,5277702.072653294],[517308.10660908604,5277692.732281565]]]},"properties":{"id_build":750,"id_source":"w145193044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516885.0436784216,5277660.181741812],[516885.0694294753,5277661.659977639],[516883.6275304654,5277661.678023769],[516882.32828078093,5277661.707597917],[516882.3024968005,5277660.240476007],[516885.0436784216,5277660.181741812]]]},"properties":{"id_build":751,"id_source":"w145193063","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516788.05271396635,5277257.9638281735],[516777.9738085334,5277258.068143868],[516777.7532127348,5277235.583916151],[516777.18348930473,5277177.8784670485],[516787.2700436941,5277177.774171325],[516787.35099374165,5277186.165462753],[516787.5484688195,5277206.237887937],[516787.7514012587,5277227.0216245465],[516787.83177254617,5277235.612966701],[516787.9368003534,5277246.071529592],[516788.05271396635,5277257.9638281735]]]},"properties":{"id_build":752,"id_source":"w145193092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.7043217779,5276758.808267498],[517231.4298729909,5276750.02741027],[517241.27057699655,5276749.500838274],[517241.92087610444,5276758.171669039],[517236.51961474045,5276758.511326784],[517231.7043217779,5276758.808267498]]]},"properties":{"id_build":753,"id_source":"w145193111","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.35901714297,5276875.997521685],[517279.82498059236,5276875.558765757],[517278.07541346893,5276875.420206478],[517278.47336643265,5276867.863878351],[517285.98229690804,5276868.441862869],[517285.35901714297,5276875.997521685]]]},"properties":{"id_build":754,"id_source":"w145193113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.21977109084,5277266.704324083],[516439.6584927597,5277265.594164585],[516441.0612429026,5277266.176052497],[516440.6376352805,5277267.252912626],[516439.21977109084,5277266.704324083]]]},"properties":{"id_build":755,"id_source":"w145193126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516879.9532743659,5277387.829742462],[516880.02225127263,5277389.941600303],[516879.04596357205,5277389.938769882],[516878.9769863098,5277387.826912053],[516879.9532743659,5277387.829742462]]]},"properties":{"id_build":756,"id_source":"w145193132","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.4268021832,5277106.558224784],[517303.87796341465,5277114.336385445],[517299.6355237762,5277114.034815645],[517295.76853083796,5277113.756592133],[517296.3924615466,5277105.978653837],[517304.4268021832,5277106.558224784]]]},"properties":{"id_build":757,"id_source":"w145193143","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517227.78967767867,5277726.3806281],[517223.1423133286,5277728.567448667],[517218.6153011818,5277730.687944911],[517215.2570749015,5277723.565054411],[517224.5062260521,5277719.369093528],[517227.78967767867,5277726.3806281]]]},"properties":{"id_build":758,"id_source":"w145193146","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.5443799553,5277456.606386101],[516796.5373260273,5277459.051443348],[516795.4859517873,5277459.0484102545],[516795.4930052726,5277456.603353008],[516796.5443799553,5277456.606386101]]]},"properties":{"id_build":759,"id_source":"w145193156","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.50476784824,5277049.897926793],[517308.6514973401,5277049.667164855],[517308.89332622127,5277044.110890161],[517311.82170297136,5277044.341875497],[517311.50476784824,5277049.897926793]]]},"properties":{"id_build":760,"id_source":"w145193194","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.11795029487,5277356.933332071],[516880.1105392766,5277359.489527866],[516879.0594692188,5277359.3753407765],[516879.0665575779,5277356.930283929],[516880.11795029487,5277356.933332071]]]},"properties":{"id_build":761,"id_source":"w145193199","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516840.4341748207,5277705.130886619],[516842.0878721754,5277704.579970871],[516847.30045869836,5277719.821225193],[516845.49657557777,5277720.371704866],[516840.4341748207,5277705.130886619]]]},"properties":{"id_build":762,"id_source":"w145193204","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517001.5664654159,5277352.952250944],[517001.5697107769,5277351.840861489],[517004.123095452,5277351.848318167],[517004.1198496046,5277352.959707623],[517001.5664654159,5277352.952250944]]]},"properties":{"id_build":763,"id_source":"w145193214","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.209861847,5277353.106374126],[516978.21277865703,5277352.106123617],[516980.69106364576,5277352.113351024],[516980.68814640853,5277353.113601533],[516978.209861847,5277353.106374126]]]},"properties":{"id_build":764,"id_source":"w145193216","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516809.91824026156,5277376.401987762],[516809.8463498221,5277375.290381423],[516812.4000449375,5277375.186615093],[516812.39683566446,5277376.298004606],[516809.91824026156,5277376.401987762]]]},"properties":{"id_build":765,"id_source":"w145193241","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516968.6302513869,5277290.173272554],[516984.6272729903,5277289.997636142],[516984.9298265802,5277315.004992329],[516968.78299752634,5277315.069051062],[516968.7005074962,5277302.143242369],[516968.6302513869,5277290.173272554]]]},"properties":{"id_build":766,"id_source":"w145193254","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.7347461199,5277470.424234589],[516426.87250563543,5277469.221830922],[516426.4153325825,5277471.554478014],[516419.7347461199,5277470.424234589]]]},"properties":{"id_build":767,"id_source":"w145193270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516931.7946060732,5277457.553849934],[516931.797515006,5277456.553599253],[516934.35085368535,5277456.561025444],[516934.3479443126,5277457.561276126],[516931.7946060732,5277457.553849934]]]},"properties":{"id_build":768,"id_source":"w145193275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.06596263323,5277090.871572535],[517302.0694191344,5277091.102776167],[517301.601299077,5277096.991798746],[517298.6729484465,5277096.760818468],[517299.06596263323,5277090.871572535]]]},"properties":{"id_build":769,"id_source":"w145193280","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516828.8152973029,5277386.125747588],[516831.9694595723,5277386.1348653985],[516831.9579976486,5277387.501852809],[516830.2832559472,5277387.508125371],[516828.8413214142,5277387.51507133],[516828.8152973029,5277386.125747588]]]},"properties":{"id_build":770,"id_source":"w145193299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.6822493633,5277673.8138304],[516963.83697403234,5277672.258322017],[516968.19024058187,5277673.048988273],[516967.9607433107,5277674.493138673],[516963.6822493633,5277673.8138304]]]},"properties":{"id_build":771,"id_source":"w145193306","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.2017568973,5277676.955858511],[517206.0397218357,5277666.189578084],[517213.23936025234,5277669.433920221],[517208.40138461447,5277680.200194749],[517204.69656965573,5277678.533259213],[517201.2017568973,5277676.955858511]]]},"properties":{"id_build":772,"id_source":"w145193308","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4892138693,5276965.732311008],[517293.13127948245,5276964.932475722],[517293.2103447798,5276963.599032274],[517300.6443760135,5276964.065674174],[517300.4892138693,5276965.732311008]]]},"properties":{"id_build":773,"id_source":"w145193312","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.3846537707,5277693.109145124],[516869.3927637942,5277688.988297],[516872.8619965258,5277686.464360217],[516874.4272953609,5277685.324155751],[516877.5014339794,5277689.567498823],[516872.3846537707,5277693.109145124]]]},"properties":{"id_build":774,"id_source":"w145193335","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.7619861289,5277507.765002331],[517075.0113366788,5277507.651660814],[517075.38961499673,5277504.140748549],[517076.14787244523,5277504.220770451],[517075.7619861289,5277507.765002331]]]},"properties":{"id_build":775,"id_source":"w145193375","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516920.582850444,5277439.294310768],[516920.66085586656,5277438.294278372],[516923.06432872283,5277438.1901241215],[516923.211618148,5277439.190811352],[516920.582850444,5277439.294310768]]]},"properties":{"id_build":776,"id_source":"w145193416","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517199.3375860384,5276808.058659322],[517199.2680597711,5276806.169077075],[517201.4464792831,5276806.064371714],[517201.59143971396,5276807.843037003],[517199.3375860384,5276808.058659322]]]},"properties":{"id_build":777,"id_source":"w145193435","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.131278305,5277619.7510204],[517283.32172828494,5277620.473233405],[517279.0162811825,5277621.282889032],[517277.68796992145,5277613.388009041],[517285.8023176909,5277612.078416526],[517287.131278305,5277619.7510204]]]},"properties":{"id_build":778,"id_source":"w145193446","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516316.9995908827,5276800.518185244],[516323.9293406349,5276793.424664123],[516329.5851264182,5276798.708544369],[516334.1921529313,5276803.01145873],[516327.33750844595,5276810.10517833],[516316.9995908827,5276800.518185244]]]},"properties":{"id_build":779,"id_source":"w145193455","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.44341494224,5277497.492143637],[517210.448343014,5277495.825059108],[517212.6261762754,5277495.831497412],[517212.54614990245,5277497.498359916],[517210.44341494224,5277497.492143637]]]},"properties":{"id_build":780,"id_source":"w145193468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.36990366125,5277376.124761416],[516826.6663313575,5277376.116947264],[516826.66922215465,5277375.116696701],[516829.29801692977,5277375.013154824],[516829.36990366125,5277376.124761416]]]},"properties":{"id_build":781,"id_source":"w145193495","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517135.6325123722,5277616.713571965],[517138.9869525679,5277612.422330082],[517143.8865327003,5277606.212918843],[517147.16812237864,5277608.812144197],[517150.92921163514,5277611.790659849],[517142.6368856515,5277622.546812207],[517141.48369457514,5277623.977122087],[517136.56126901385,5277620.0949602965],[517137.6315921852,5277618.753317474],[517135.5489252595,5277617.046745799],[517135.6325123722,5277616.713571965]]]},"properties":{"id_build":782,"id_source":"w145193502","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517053.8101809799,5277643.847083078],[517046.5405339796,5277638.824494717],[517050.24271289347,5277633.722898571],[517053.6281929196,5277629.064936865],[517060.67190699157,5277634.309151759],[517053.8101809799,5277643.847083078]]]},"properties":{"id_build":783,"id_source":"w145193514","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516832.9697825263,5277741.452059602],[516827.9821412709,5277726.322607856],[516829.2597152525,5277725.992881152],[516834.2476748636,5277741.011194976],[516832.9697825263,5277741.452059602]]]},"properties":{"id_build":784,"id_source":"w145193516","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.5405339796,5277638.824494717],[517053.8101809799,5277643.847083078],[517047.5515207655,5277652.60880876],[517040.28253002174,5277647.363950136],[517043.42658140947,5277643.08315165],[517046.5405339796,5277638.824494717]]]},"properties":{"id_build":785,"id_source":"w145193535","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.0226204094,5277062.86122438],[517306.1321237025,5277063.441020613],[517305.9743198629,5277065.996768698],[517297.8651502763,5277065.305833783],[517298.0226204094,5277062.86122438]]]},"properties":{"id_build":786,"id_source":"w145193547","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516827.33421649766,5277612.73572542],[516829.3630984211,5277612.297030374],[516829.65802138014,5277614.1872615935],[516827.5546864202,5277614.403461488],[516827.4517683494,5277613.636298551],[516827.33421649766,5277612.73572542]]]},"properties":{"id_build":787,"id_source":"w145193587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.49605039565,5277539.4405856235],[516723.97963390645,5277541.752927086],[516720.8555605,5277531.29680343],[516728.59696161805,5277529.096244261],[516729.92759735155,5277533.8346274365],[516731.49605039565,5277539.4405856235]]]},"properties":{"id_build":788,"id_source":"w145193597","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.96430552274,5276762.49728415],[516467.4529366806,5276763.85437229],[516466.118198384,5276760.427494158],[516469.6295689701,5276759.070405218],[516470.96430552274,5276762.49728415]]]},"properties":{"id_build":789,"id_source":"w145193608","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516551.1422479204,5277502.137765333],[516543.2503684151,5277504.449272486],[516538.6378877285,5277489.098865566],[516546.4550041964,5277486.67599977],[516548.7539812715,5277494.262273285],[516551.1422479204,5277502.137765333]]]},"properties":{"id_build":790,"id_source":"w145193618","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.94707128993,5277700.892934707],[517245.5024547672,5277704.316216019],[517240.4272615276,5277693.742885956],[517243.76642395766,5277692.085675963],[517247.7974518507,5277690.097097695],[517252.94707128993,5277700.892934707]]]},"properties":{"id_build":791,"id_source":"w145193666","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516847.6314113713,5277449.752181575],[516851.0108340392,5277449.761961734],[516851.006652304,5277451.206768268],[516849.30943156104,5277451.201856211],[516847.62723047216,5277451.196988111],[516847.6314113713,5277449.752181575]]]},"properties":{"id_build":792,"id_source":"w145193674","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.2816900427,5277439.516543216],[516879.95363918797,5277439.50979307],[516879.8817629929,5277438.398185724],[516882.28491272125,5277438.405153601],[516882.2816900427,5277439.516543216]]]},"properties":{"id_build":793,"id_source":"w145193714","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516955.1313843909,5277515.636798855],[516956.5857495879,5277506.194141648],[516965.7434412403,5277507.665639611],[516964.28906152514,5277517.1082945885],[516959.6576877045,5277516.361277886],[516955.1313843909,5277515.636798855]]]},"properties":{"id_build":794,"id_source":"w145193750","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517047.94850184035,5277314.42230623],[517031.91405950143,5277314.575430886],[517031.67211304413,5277289.457108605],[517047.7066245402,5277289.30398312],[517047.8095242107,5277300.329361262],[517047.94850184035,5277314.42230623]]]},"properties":{"id_build":795,"id_source":"w145193799","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516874.1066185697,5277280.340533547],[516873.95410966914,5277255.222482002],[516890.10174703284,5277254.935882035],[516890.25319653295,5277267.450670256],[516890.4040648311,5277280.165508815],[516874.1066185697,5277280.340533547]]]},"properties":{"id_build":796,"id_source":"w145193805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.94233278395,5277759.794728824],[516873.5485633215,5277757.907106766],[516881.126642796,5277760.151875611],[516880.52041002514,5277762.039496896],[516872.94233278395,5277759.794728824]]]},"properties":{"id_build":797,"id_source":"w145193809","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.1309403669,5276760.977971567],[516527.1128812888,5276760.544712285],[516527.6282222141,5276764.21378637],[516523.7188680175,5276765.5363691915],[516523.1309403669,5276760.977971567]]]},"properties":{"id_build":798,"id_source":"w145193818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.41592445935,5277757.330132625],[516400.2001927002,5277756.165372995],[516400.90157568856,5277755.100405869],[516401.9434454574,5277755.792408608],[516400.457825312,5277758.011021201],[516399.41592445935,5277757.330132625]]]},"properties":{"id_build":799,"id_source":"w145193826","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516843.06105801393,5277316.259959183],[516842.8277670908,5277303.444857358],[516842.6080160951,5277291.141038357],[516859.0556313729,5277290.966360441],[516859.2082023356,5277316.084412859],[516843.06105801393,5277316.259959183]]]},"properties":{"id_build":800,"id_source":"w145193845","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516537.1797212849,5276870.779469844],[516534.0315914778,5276868.547735087],[516534.786120513,5276867.327340138],[516538.08446220704,5276869.559501905],[516537.1797212849,5276870.779469844]]]},"properties":{"id_build":801,"id_source":"w145193886","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517232.5593970544,5277256.606213909],[517218.89434092445,5277255.454386814],[517220.68312748516,5277234.67651644],[517234.3485610487,5277235.7172086565],[517233.25961337716,5277248.395047811],[517232.5593970544,5277256.606213909]]]},"properties":{"id_build":802,"id_source":"w145193906","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.80328777165,5276951.825143247],[517280.77244959737,5276951.103329806],[517281.2605275078,5276943.5472684335],[517292.2988904286,5276944.269105058],[517292.0706242315,5276947.791560488],[517291.80328777165,5276951.825143247]]]},"properties":{"id_build":803,"id_source":"w145193907","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517077.1523524805,5277597.014448917],[517074.0456951606,5277606.452232242],[517064.81765004416,5277603.424397291],[517066.36326563923,5277598.772164359],[517067.92396812694,5277594.0977481045],[517077.1523524805,5277597.014448917]]]},"properties":{"id_build":804,"id_source":"w145193918","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.31355526915,5277407.088324472],[517006.74043316767,5277407.092492252],[517006.72815107205,5277408.726212953],[517006.7159988367,5277410.315478081],[517005.3038168743,5277410.422493128],[517005.31355526915,5277407.088324472]]]},"properties":{"id_build":805,"id_source":"w145193956","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517288.0195523988,5277219.427614972],[517287.9490709729,5277217.871447118],[517293.881742491,5277218.000205054],[517293.8020198006,5277219.555926856],[517288.0195523988,5277219.427614972]]]},"properties":{"id_build":806,"id_source":"w145193957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516747.58180589415,5277299.31355737],[516757.64587497147,5277299.120234851],[516757.6707010953,5277300.931886011],[516757.70626089524,5277304.232842191],[516747.5674201805,5277304.314809626],[516747.55297809205,5277301.502929656],[516747.58180589415,5277299.31355737]]]},"properties":{"id_build":807,"id_source":"w145193964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516890.24539505504,5277386.637052092],[516890.17964593443,5277383.413804617],[516891.90692612034,5277383.418815693],[516891.9021861649,5277385.052558287],[516891.8978976333,5277386.5307063535],[516890.24539505504,5277386.637052092]]]},"properties":{"id_build":808,"id_source":"w145193971","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517206.0243155693,5276731.05852325],[517196.70900861727,5276731.697846235],[517196.39140042814,5276727.340228032],[517196.0596234794,5276722.693604554],[517205.3749447519,5276722.054280499],[517206.0243155693,5276731.05852325]]]},"properties":{"id_build":809,"id_source":"w145193984","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516396.71391161176,5277644.848949041],[516398.97148007987,5277643.188209583],[516400.0935334975,5277644.747328726],[516397.8359653085,5277646.408067756],[516396.71391161176,5277644.848949041]]]},"properties":{"id_build":810,"id_source":"w145194006","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516649.38742711843,5277417.507026335],[516647.154645205,5277410.443260129],[516644.84739439597,5277403.157002255],[516652.73976981506,5277400.7344938135],[516657.35488377727,5277415.084738894],[516649.38742711843,5277417.507026335]]]},"properties":{"id_build":811,"id_source":"w145194013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.48765249795,5277455.747601688],[517027.6286640556,5277454.832566075],[517027.72033958486,5277449.164698623],[517036.95515328593,5277449.969694157],[517036.48765249795,5277455.747601688]]]},"properties":{"id_build":812,"id_source":"w145194016","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.8619083071,5277219.18705536],[517282.0167290997,5277217.631556308],[517287.9490709729,5277217.871447118],[517288.0195523988,5277219.427614972],[517281.8619083071,5277219.18705536]]]},"properties":{"id_build":813,"id_source":"w145194021","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517059.9239310311,5277684.542218567],[517059.64718777017,5277702.1015210925],[517052.06324049906,5277701.857022186],[517052.41440506873,5277684.520217333],[517059.9239310311,5277684.542218567]]]},"properties":{"id_build":814,"id_source":"w145194033","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517191.95969335176,5277749.936408649],[517189.2758745341,5277748.383637766],[517191.5398666432,5277744.611563722],[517194.1938786001,5277746.086449609],[517191.95969335176,5277749.936408649]]]},"properties":{"id_build":815,"id_source":"w145194037","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.2153020375,5277404.542959224],[516535.6725666292,5277396.1775179375],[516543.8123083868,5277385.975774844],[516554.3024814755,5277394.3410812495],[516546.2153020375,5277404.542959224]]]},"properties":{"id_build":816,"id_source":"w145194046","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.88507022307,5277362.949931807],[516999.88085165824,5277364.394738118],[516998.228665137,5277364.389914276],[516996.7266773928,5277364.385529372],[516996.73089517374,5277362.94072306],[516999.88507022307,5277362.949931807]]]},"properties":{"id_build":817,"id_source":"w145194069","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516883.7117883284,5277490.200485019],[516882.33585802716,5277498.531987958],[516877.2315372711,5277497.716981632],[516872.3523792997,5277496.947088279],[516873.72829565743,5277488.6155830305],[516883.7117883284,5277490.200485019]]]},"properties":{"id_build":818,"id_source":"w145194086","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.41948199185,5277426.286637752],[516995.4123446139,5277428.731694843],[516994.2107676974,5277428.728187437],[516994.2179045692,5277426.283130346],[516995.41948199185,5277426.286637752]]]},"properties":{"id_build":819,"id_source":"w145194103","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517062.6157533072,5277611.642299393],[517071.3941872085,5277614.335392696],[517067.98423158587,5277624.772549581],[517059.3560040423,5277622.079901443],[517060.9328213937,5277617.027654608],[517062.6157533072,5277611.642299393]]]},"properties":{"id_build":820,"id_source":"w145194106","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516950.4358961197,5277467.266150402],[516953.5899498634,5277467.297562002],[516953.5778444851,5277468.875713453],[516951.7755239284,5277468.859351461],[516950.41624943644,5277468.855393891],[516950.4358961197,5277467.266150402]]]},"properties":{"id_build":821,"id_source":"w145194108","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516870.0113869932,5277662.094224999],[516869.98453712725,5277660.993861846],[516873.8372935645,5277660.88277361],[516873.871620043,5277661.994272449],[516871.94901305524,5277662.044270169],[516870.0113869932,5277662.094224999]]]},"properties":{"id_build":822,"id_source":"w145194118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517090.352082201,5277628.505787879],[517098.3047489782,5277631.085358018],[517095.1193893301,5277641.745439037],[517087.091313722,5277639.276791756],[517088.8430569897,5277633.480427983],[517090.352082201,5277628.505787879]]]},"properties":{"id_build":823,"id_source":"w145194135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.2686980227,5277279.634809371],[516936.96593664924,5277254.627457553],[516952.8876300829,5277254.5626541795],[516953.1387436319,5277266.333097785],[516953.41562452435,5277279.570663006],[516937.2686980227,5277279.634809371]]]},"properties":{"id_build":824,"id_source":"w145194167","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.43716531934,5277467.3810069775],[516936.40994799347,5277468.992456451],[516934.4650058382,5277468.953456952],[516932.8504626973,5277468.926533013],[516932.88512419834,5277467.337333161],[516936.43716531934,5277467.3810069775]]]},"properties":{"id_build":825,"id_source":"w145194187","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.3723295036,5277148.55370975],[516840.31649107626,5277148.653117837],[516840.2635679686,5277140.984315788],[516844.31941173534,5277140.884907654],[516844.3723295036,5277148.55370975]]]},"properties":{"id_build":826,"id_source":"w145194192","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.9199670508,5277386.697597406],[516795.91259292787,5277389.253793339],[516794.7857864316,5277389.361682711],[516794.7931600596,5277386.805486776],[516795.9199670508,5277386.697597406]]]},"properties":{"id_build":827,"id_source":"w145194205","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.60682870145,5277587.640296946],[517241.9398319822,5277588.720095426],[517241.50702654495,5277582.717255879],[517245.8035055966,5277582.407675685],[517251.87265978224,5277581.969983399],[517252.60682870145,5277587.640296946]]]},"properties":{"id_build":828,"id_source":"w145194207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516613.57809241186,5276775.939097028],[516614.2496159097,5276777.496969423],[516603.4212237654,5276782.022815377],[516602.3022250389,5276779.352270934],[516600.063590856,5276774.233460432],[516598.8697988378,5276771.45156374],[516609.9983183154,5276767.037705118],[516610.74495087564,5276768.595791311],[516615.8582561272,5276766.498723685],[516618.84160625516,5276773.8424605625],[516613.57809241186,5276775.939097028]]]},"properties":{"id_build":829,"id_source":"w145194215","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516892.4910156998,5277570.3578286255],[516889.4877914476,5277570.1268355325],[516889.528757458,5277568.94887123],[516889.5696590013,5277567.793134722],[516892.72340044996,5277567.913424668],[516892.4910156998,5277570.3578286255]]]},"properties":{"id_build":830,"id_source":"w145194228","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.98455877596,5277412.288813229],[516807.4489846632,5277412.293040558],[516807.49693373515,5277413.8935933085],[516807.53804666636,5277415.26073257],[516806.0509956642,5277415.289781872],[516805.98455877596,5277412.288813229]]]},"properties":{"id_build":831,"id_source":"w145194247","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.3090744112,5277434.04430986],[516796.3023412614,5277436.37822806],[516795.3260613782,5277436.3754116595],[516795.25769565627,5277434.041276819],[516796.3090744112,5277434.04430986]]]},"properties":{"id_build":832,"id_source":"w145194270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.43324737216,5276727.306105856],[516404.0285523397,5276727.7438904485],[516403.5115648963,5276724.630521909],[516405.9913687977,5276724.192948696],[516406.43324737216,5276727.306105856]]]},"properties":{"id_build":833,"id_source":"w145194272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.90524922754,5277356.95802765],[516926.8227182182,5277359.514005099],[516925.62112705014,5277359.510511883],[516925.6285580511,5277356.954316099],[516926.90524922754,5277356.95802765]]]},"properties":{"id_build":834,"id_source":"w145194281","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.0970944333,5277590.008932152],[516418.27448105946,5277588.784073582],[516422.78936138185,5277585.573751422],[516423.6119742665,5277586.79861062],[516421.3394830835,5277588.4148424845],[516419.0970944333,5277590.008932152]]]},"properties":{"id_build":835,"id_source":"w145194290","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516852.48615224054,5277588.69111603],[516861.2721196279,5277588.827695341],[516861.14328433,5277594.417660229],[516861.0152861194,5277599.71866379],[516852.30410980294,5277599.693441195],[516852.48615224054,5277588.69111603]]]},"properties":{"id_build":836,"id_source":"w145194292","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.48508601607,5277535.17299389],[517265.21141942375,5277535.886443514],[517261.656057049,5277539.510177449],[517260.9297236612,5277538.7967282655],[517264.48508601607,5277535.17299389]]]},"properties":{"id_build":837,"id_source":"w145194310","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516813.25016676163,5277574.907462288],[516812.879818738,5277573.128154147],[516814.98381001706,5277572.689670962],[516815.13878457836,5277573.634807829],[516815.2790928568,5277574.457648437],[516813.25016676163,5277574.907462288]]]},"properties":{"id_build":838,"id_source":"w145194312","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.2597152525,5277725.992881152],[516827.59972004854,5277720.931215317],[516824.2723719864,5277710.7522939965],[516825.7004602165,5277710.311861548],[516830.83831089886,5277725.441745124],[516829.2597152525,5277725.992881152]]]},"properties":{"id_build":839,"id_source":"w145194317","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.92688177474,5277542.650726148],[517187.18012268806,5277542.546237668],[517186.4753772522,5277552.324472463],[517182.0443280734,5277552.422533476],[517184.92688177474,5277542.650726148]]]},"properties":{"id_build":840,"id_source":"w145194324","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9682071859,5277386.965980701],[516927.03587458644,5277389.52239494],[516925.90938867274,5277389.519119989],[516925.8417207767,5277386.962705763],[516926.9682071859,5277386.965980701]]]},"properties":{"id_build":841,"id_source":"w145194357","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516885.35779362987,5277570.003715786],[516892.4910156998,5277570.3578286255],[516892.0088334944,5277581.24814184],[516884.72543156514,5277580.893593954],[516885.35779362987,5277570.003715786]]]},"properties":{"id_build":842,"id_source":"w145194399","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517173.4385678831,5277440.256946549],[517169.7600566058,5277439.8015375305],[517170.1450538239,5277436.579615086],[517173.97376402095,5277437.035467389],[517173.4385678831,5277440.256946549]]]},"properties":{"id_build":843,"id_source":"w145194409","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.62325231615,5276826.748519654],[517280.6285292404,5276824.970298046],[517283.44501750916,5276824.978656738],[517286.41171848326,5276824.987462699],[517286.40643979126,5276826.765684308],[517280.62325231615,5276826.748519654]]]},"properties":{"id_build":844,"id_source":"w145194443","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.5404454466,5277247.946342236],[517309.26406056085,5277247.831407698],[517309.50786581135,5277241.608297774],[517310.70948150445,5277241.611870156],[517310.5404454466,5277247.946342236]]]},"properties":{"id_build":845,"id_source":"w145194461","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.28071626223,5277683.4169762945],[516698.70488812623,5277687.273658222],[516695.723390775,5277679.485312505],[516707.59961380326,5277675.629486721],[516708.85078522045,5277679.26735299],[516710.28071626223,5277683.4169762945]]]},"properties":{"id_build":846,"id_source":"w145194537","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.1552775183,5277409.259671939],[516796.07376632886,5277411.48223444],[516795.0220628996,5277411.5903404085],[516794.9536966827,5277409.256205665],[516796.1552775183,5277409.259671939]]]},"properties":{"id_build":847,"id_source":"w145194576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9794363306,5277449.691268235],[516867.8331710782,5277449.69953541],[516867.8289851682,5277451.144341937],[516866.304490404,5277451.13992535],[516864.975251127,5277451.136074761],[516864.9794363306,5277449.691268235]]]},"properties":{"id_build":848,"id_source":"w145194579","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.10557473905,5277412.176359121],[517218.9342310174,5277412.10621082],[517219.0371513902,5277410.317162406],[517220.2085283431,5277410.376196827],[517220.10557473905,5277412.176359121]]]},"properties":{"id_build":849,"id_source":"w145194582","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.8818413143,5277360.98807683],[516938.75932704547,5277360.9935387205],[516938.7552206524,5277362.405003354],[516938.7509202578,5277363.883151361],[516936.9485348491,5277363.877907936],[516936.8818413143,5277360.98807683]]]},"properties":{"id_build":850,"id_source":"w145194591","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517029.8793151325,5277352.923856033],[517027.4013554672,5277352.805468743],[517027.4793802795,5277351.805437867],[517029.88256589754,5277351.812466579],[517029.8793151325,5277352.923856033]]]},"properties":{"id_build":851,"id_source":"w145194597","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516890.23413364263,5277364.63132202],[516890.2428387671,5277361.630570413],[516891.819926576,5277361.635145728],[516891.8377164976,5277363.268953631],[516891.8563447576,5277364.6138002705],[516890.23413364263,5277364.63132202]]]},"properties":{"id_build":852,"id_source":"w145194654","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.11259217444,5277467.375964834],[516988.1157240501,5277468.876362787],[516986.6287504466,5277468.8831381425],[516985.31450233865,5277468.890417788],[516985.303859935,5277467.389997932],[516988.11259217444,5277467.375964834]]]},"properties":{"id_build":853,"id_source":"w145194670","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517211.2453172923,5277480.267823732],[517211.32468638226,5277478.8232391905],[517213.4270994913,5277478.940594735],[517213.347729882,5277480.385179253],[517211.2453172923,5277480.267823732]]]},"properties":{"id_build":854,"id_source":"w145194671","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.36213844694,5277374.193109771],[517270.20040158555,5277378.082527382],[517269.2257599743,5277377.523936803],[517269.3835403908,5277374.968186528],[517270.36213844694,5277374.193109771]]]},"properties":{"id_build":855,"id_source":"w145194709","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.6638810031,5277218.239661671],[517299.7429448478,5277216.906217784],[517305.67594748177,5277216.923848815],[517305.7470848416,5277218.257739056],[517299.6638810031,5277218.239661671]]]},"properties":{"id_build":856,"id_source":"w145194710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.2823730947,5277619.116844486],[517032.0910600237,5277623.733854854],[517029.74864814826,5277628.661615914],[517021.64933057583,5277624.859171459],[517026.25879133854,5277615.092335448],[517034.2823730947,5277619.116844486]]]},"properties":{"id_build":857,"id_source":"w145194738","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.20872779284,5277519.389398417],[516837.73295465513,5277520.008419005],[516843.29619109415,5277520.535754698],[516842.4456847988,5277528.979927142],[516830.28378417925,5277527.611077517],[516831.20872779284,5277519.389398417]]]},"properties":{"id_build":858,"id_source":"w145194752","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9343111592,5277315.602119993],[516540.3875948698,5277314.658719042],[516543.82243861735,5277316.335575543],[516543.361676057,5277317.267840992],[516539.9343111592,5277315.602119993]]]},"properties":{"id_build":859,"id_source":"w145194759","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517140.9365073986,5277511.40186062],[517140.8565017328,5277513.068724097],[517139.2043573043,5277513.063860146],[517139.2092650018,5277511.396775568],[517140.9365073986,5277511.40186062]]]},"properties":{"id_build":860,"id_source":"w145194768","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.335142646,5277403.724991164],[516995.3276809325,5277406.281187121],[516994.20119822863,5277406.277898948],[516994.1335605678,5277403.7214837875],[516995.335142646,5277403.724991164]]]},"properties":{"id_build":861,"id_source":"w145194787","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.3273372146,5277408.523514167],[517292.1899199638,5277408.333400427],[517292.6436818823,5277407.267804792],[517295.49743793765,5277407.2762815375],[517296.3273372146,5277408.523514167]]]},"properties":{"id_build":862,"id_source":"w145194840","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.5217925365,5277746.47253719],[516404.3261927198,5277741.673240736],[516408.04379464954,5277736.204520452],[516411.4899349032,5277731.135140918],[516418.6855419539,5277735.934446135],[516411.5217925365,5277746.47253719]]]},"properties":{"id_build":863,"id_source":"w145194842","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516484.35889001976,5276793.3208933715],[516488.5667554266,5276792.665967896],[516489.378453261,5276797.780694486],[516485.0222658296,5276797.768361015],[516484.35889001976,5276793.3208933715]]]},"properties":{"id_build":864,"id_source":"w145194861","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.1421808529,5277592.971199198],[517183.57049618155,5277595.104778822],[517180.8388185433,5277604.654752816],[517175.9165347101,5277603.273207215],[517173.2603218038,5277602.520733577],[517176.1421808529,5277592.971199198]]]},"properties":{"id_build":865,"id_source":"w145194872","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.75020335964,5276771.4740845235],[516737.87343169685,5276770.782497833],[516724.92267403996,5276761.087242847],[516726.2722635922,5276759.290654948],[516739.2301823274,5276769.108187221],[516740.1071457761,5276769.733090808],[516738.75020335964,5276771.4740845235]]]},"properties":{"id_build":866,"id_source":"w145194910","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516405.9396912329,5277542.181695143],[516410.7559289382,5277538.638793354],[516411.7284319721,5277539.975213113],[516406.91219477187,5277543.518114106],[516405.9396912329,5277542.181695143]]]},"properties":{"id_build":867,"id_source":"w145194943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516938.62854077114,5277457.573728427],[516938.6317742241,5277456.462338786],[516941.33530934545,5277456.470205019],[516941.33207537653,5277457.581594661],[516938.62854077114,5277457.573728427]]]},"properties":{"id_build":868,"id_source":"w145194945","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.29786166846,5277693.441332153],[517138.2103336844,5277697.664393235],[517136.10799822526,5277697.54706462],[517136.19519754517,5277693.435142516],[517138.29786166846,5277693.441332153]]]},"properties":{"id_build":869,"id_source":"w145195019","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517219.73351259617,5277418.632488418],[517218.68980508397,5277418.573831654],[517218.8324111271,5277416.06249106],[517219.87611908943,5277416.12114785],[517219.8046514733,5277417.432387611],[517219.73351259617,5277418.632488418]]]},"properties":{"id_build":870,"id_source":"w145195052","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517275.7351776161,5277233.839340454],[517276.86169381574,5277233.842683017],[517276.69401353825,5277239.732600221],[517275.4172964689,5277239.728812033],[517275.7351776161,5277233.839340454]]]},"properties":{"id_build":871,"id_source":"w145195071","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.3853079628,5277227.687051336],[517261.03381657734,5277227.571904731],[517261.5203373053,5277215.459098316],[517263.1722367564,5277215.575135687],[517262.3853079628,5277227.687051336]]]},"properties":{"id_build":872,"id_source":"w145195075","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.8839238723,5277364.293198188],[516926.8764923033,5277366.849394003],[516925.90052380326,5277366.735416785],[516925.7574330771,5277364.289923276],[516926.8839238723,5277364.293198188]]]},"properties":{"id_build":873,"id_source":"w145195091","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516537.5403127205,5277378.456016348],[516534.5704878453,5277377.002763502],[516535.19747266924,5277375.715321851],[516538.17480796756,5277377.168596342],[516537.5403127205,5277378.456016348]]]},"properties":{"id_build":874,"id_source":"w145195093","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.5193785727,5277720.702297138],[516849.4325306114,5277735.609267633],[516848.00444674515,5277736.049694267],[516843.16638621705,5277721.142942239],[516844.5193785727,5277720.702297138]]]},"properties":{"id_build":875,"id_source":"w145195157","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516935.3185296994,5277407.8845637925],[516931.2625467858,5277408.095047099],[516931.1246306173,5277403.871330008],[516935.1055175863,5277403.660628159],[516935.3185296994,5277407.8845637925]]]},"properties":{"id_build":876,"id_source":"w145195164","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.26573153574,5277277.06290451],[516855.276992279,5277273.173041843],[516858.73193981266,5277273.071904714],[516858.79577727197,5277276.961984829],[516855.26573153574,5277277.06290451]]]},"properties":{"id_build":877,"id_source":"w145195181","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.4776584962,5277449.630842111],[516885.3313932951,5277449.639117862],[516885.3272030411,5277451.083924389],[516883.77266894485,5277451.079416108],[516882.47346895,5277451.0756486375],[516882.4776584962,5277449.630842111]]]},"properties":{"id_build":878,"id_source":"w145195223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.1642120366,5276835.812861056],[516375.0550810935,5276833.422914182],[516376.549560453,5276830.80421904],[516380.67352630926,5276833.260892528],[516379.1642120366,5276835.812861056]]]},"properties":{"id_build":879,"id_source":"w145195271","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.6444860907,5277513.771220715],[517190.5634817337,5277515.771500468],[517189.287153377,5277515.656592047],[517189.4432547655,5277513.656533999],[517190.6444860907,5277513.771220715]]]},"properties":{"id_build":880,"id_source":"w145195311","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.9293477012,5277159.036834298],[517266.1203828683,5277158.45797332],[517266.4719204681,5277153.880052469],[517266.74558797764,5277150.235475779],[517274.4797913591,5277150.70297584],[517273.9293477012,5277159.036834298]]]},"properties":{"id_build":881,"id_source":"w145195340","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.57144056796,5277751.644000612],[516937.3958620989,5277752.202098938],[516936.34066075576,5277753.532708473],[516935.5913336849,5277752.974828752],[516936.0813870697,5277752.309414661],[516936.57144056796,5277751.644000612]]]},"properties":{"id_build":882,"id_source":"w145195355","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516811.2452807978,5277280.936671295],[516811.04991736,5277267.966085541],[516810.86751930264,5277255.706832581],[516828.4417450302,5277255.5353205865],[516828.7446511652,5277280.653804616],[516811.2452807978,5277280.936671295]]]},"properties":{"id_build":883,"id_source":"w145195364","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516879.01957285556,5277463.802266741],[516882.92499640404,5277463.702450543],[516883.0642348989,5277467.48161094],[516879.1588138818,5277467.581427042],[516879.01957285556,5277463.802266741]]]},"properties":{"id_build":884,"id_source":"w145195366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517149.94832343695,5277575.122700571],[517149.6845356586,5277575.444229363],[517144.9357714689,5277581.431799837],[517138.9794976261,5277576.690814342],[517134.1620347114,5277572.853420071],[517141.797047476,5277563.462342093],[517145.70774063695,5277566.652460375],[517143.1751617761,5277569.812490804],[517146.411910791,5277572.344899467],[517149.94832343695,5277575.122700571]]]},"properties":{"id_build":885,"id_source":"w145195387","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516525.8491155407,5276835.3381762365],[516535.5286628186,5276838.588707022],[516534.24176012457,5276842.1415250935],[516524.5622180608,5276838.890996416],[516525.8491155407,5276835.3381762365]]]},"properties":{"id_build":886,"id_source":"w145195389","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.5833187064,5277190.371323687],[517263.7740661838,5277189.903604638],[517264.23535608844,5277183.77005039],[517264.6337973374,5277178.569884949],[517272.3673038454,5277179.259660148],[517271.5833187064,5277190.371323687]]]},"properties":{"id_build":887,"id_source":"w145195390","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.416307038,5277448.937364209],[516796.4089325517,5277451.4935603915],[516795.50775346125,5277451.490960609],[516795.44002926175,5277448.934547783],[516796.416307038,5277448.937364209]]]},"properties":{"id_build":888,"id_source":"w145195399","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.5188961354,5277439.488242384],[516870.1154248294,5277439.592417498],[516870.0435467572,5277438.480810274],[516872.5217948689,5277438.487991727],[516872.5188961354,5277439.488242384]]]},"properties":{"id_build":889,"id_source":"w145195418","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68603405985,5277216.274875673],[517305.6779294405,5277216.257015304],[517305.6832146694,5277214.478792606],[517311.6909906801,5277214.607791896],[517311.68603405985,5277216.274875673]]]},"properties":{"id_build":890,"id_source":"w145195426","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.0019662698,5277160.204846987],[517292.5720054596,5277165.893932389],[517292.1421774659,5277171.538562302],[517284.3329011741,5277171.070815752],[517285.1930047635,5277159.625960421],[517293.0019662698,5277160.204846987]]]},"properties":{"id_build":891,"id_source":"w145195433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517183.71475726995,5277088.196075975],[517186.11837988195,5277088.092030011],[517186.17970545654,5277092.760085387],[517183.7009818755,5277092.863909682],[517183.71475726995,5277088.196075975]]]},"properties":{"id_build":892,"id_source":"w145195464","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.53204385866,5277419.218883036],[517315.9110552044,5277419.373413641],[517315.8632194337,5277420.306846843],[517314.0761022985,5277420.223734032],[517312.48420862923,5277420.152316264],[517312.53204385866,5277419.218883036]]]},"properties":{"id_build":893,"id_source":"w145195484","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516588.9201583838,5277711.743989875],[516588.51487514947,5277695.8498274265],[516592.87102443364,5277695.6399618955],[516593.4264855916,5277711.534552757],[516588.9201583838,5277711.743989875]]]},"properties":{"id_build":894,"id_source":"w145195489","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.7131902626,5277352.888283371],[517017.6413391544,5277351.776674411],[517020.26982342586,5277351.784357677],[517020.19147495995,5277352.895527593],[517017.7131902626,5277352.888283371]]]},"properties":{"id_build":895,"id_source":"w145195501","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516899.45019330614,5277449.568942667],[516902.82961615315,5277449.578752904],[516902.82542155666,5277451.023559429],[516901.00053367356,5277451.018261657],[516899.5210978157,5277451.013967177],[516899.45019330614,5277449.568942667]]]},"properties":{"id_build":896,"id_source":"w145195527","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.218956137,5276787.205389569],[517207.81126374763,5276787.189407384],[517207.8145478885,5276786.07801894],[517213.29734816396,5276786.094223135],[517213.218956137,5276787.205389569]]]},"properties":{"id_build":897,"id_source":"w145195541","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.46660684276,5277741.892273156],[516835.04061067157,5277752.460902346],[516833.3118331872,5277753.011602964],[516829.9631100899,5277742.443626112],[516831.46660684276,5277741.892273156]]]},"properties":{"id_build":898,"id_source":"w145195587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.20437265426,5277211.618687517],[517279.7811715237,5277211.734506737],[517279.53871638083,5277217.513061863],[517277.8861581888,5277217.619297683],[517278.20437265426,5277211.618687517]]]},"properties":{"id_build":899,"id_source":"w145195606","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.4618089982,5277646.782776263],[517294.5033927242,5277640.778370427],[517299.529846807,5277639.937526757],[517304.2708059851,5277639.140294812],[517305.22921247734,5277645.144702261],[517295.4618089982,5277646.782776263]]]},"properties":{"id_build":900,"id_source":"w145195628","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516819.3062856879,5277376.206820714],[516816.6023924247,5277376.310150188],[516816.60528149473,5277375.309899629],[516819.2340759797,5277375.206353209],[516819.3062856879,5277376.206820714]]]},"properties":{"id_build":901,"id_source":"w145195662","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516435.97674881,5277729.092564567],[516436.5825267513,5277727.316036443],[516442.1345113902,5277729.1099529425],[516441.4536372898,5277730.886268415],[516435.97674881,5277729.092564567]]]},"properties":{"id_build":902,"id_source":"w145195672","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.9838082491,5276857.449694463],[516528.93638188334,5276859.019706733],[516527.9518036945,5276861.906545859],[516523.0746534863,5276860.22560866],[516523.9838082491,5276857.449694463]]]},"properties":{"id_build":903,"id_source":"w145195673","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.7956420472,5277514.835844527],[517174.8759852735,5277513.057842513],[517176.3776068881,5277513.173412442],[517176.29726320447,5277514.951414435],[517174.7956420472,5277514.835844527]]]},"properties":{"id_build":904,"id_source":"w145195751","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.5857495879,5277506.194141648],[516955.1313843909,5277515.636798855],[516950.34981337015,5277514.889352162],[516946.42396392033,5277514.277768046],[516947.87831530743,5277504.835108718],[516956.5857495879,5277506.194141648]]]},"properties":{"id_build":905,"id_source":"w145195767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.4489454403,5276953.250029925],[517141.0776097573,5276953.257767289],[517141.2121154341,5276958.592875445],[517138.5080217919,5276958.696055837],[517138.4489454403,5276953.250029925]]]},"properties":{"id_build":906,"id_source":"w145195789","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517083.02790318645,5277437.323606809],[517075.67053687305,5277436.524044345],[517076.1737691952,5277431.37974223],[517076.6771327585,5277426.190984616],[517084.0345120068,5277426.990548309],[517083.02790318645,5277437.323606809]]]},"properties":{"id_build":907,"id_source":"w145195802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.06415363576,5277446.254597263],[516667.3220269016,5277448.677505469],[516665.83504534094,5277443.438560625],[516664.4224596523,5277438.444336884],[516672.16396222095,5277436.243702758],[516675.06415363576,5277446.254597263]]]},"properties":{"id_build":908,"id_source":"w145195814","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.47943152505,5277630.731485588],[516697.8807030333,5277634.257554004],[516695.4254862747,5277626.248438909],[516700.07085052104,5277624.716917791],[516706.09932384145,5277622.722581531],[516708.47943152505,5277630.731485588]]]},"properties":{"id_build":909,"id_source":"w145195827","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.4032744343,5277654.793121017],[517041.07279779116,5277659.591657805],[517034.1360380073,5277669.129392728],[517027.31665398955,5277664.219285514],[517030.890097126,5277659.472948352],[517034.4032744343,5277654.793121017]]]},"properties":{"id_build":910,"id_source":"w145195881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.84996223677,5277454.881456011],[517157.93095602404,5277452.88117602],[517159.8835105472,5277452.886930605],[517159.8025160894,5277454.887210569],[517157.84996223677,5277454.881456011]]]},"properties":{"id_build":911,"id_source":"w145195888","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.43694908696,5277050.248986054],[517314.58334849006,5277050.129360099],[517314.82518301846,5277044.573085632],[517317.43694908696,5277050.248986054]]]},"properties":{"id_build":912,"id_source":"w145195902","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517082.24409024045,5277653.266201008],[517082.3296213724,5277649.709973456],[517097.2733411832,5277649.8649810245],[517097.262896585,5277653.421428921],[517082.24409024045,5277653.266201008]]]},"properties":{"id_build":913,"id_source":"w145195943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517041.5150981888,5277405.860495103],[517050.22396145645,5277406.775111744],[517049.3685832574,5277416.775198584],[517046.59838440677,5277416.444781361],[517040.66006012197,5277415.749444217],[517041.5150981888,5277405.860495103]]]},"properties":{"id_build":914,"id_source":"w145195993","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517282.8270093339,5277516.444762345],[517286.1187987703,5277513.0758806225],[517286.9275085393,5277513.867375482],[517283.62820933363,5277517.236234456],[517282.8270093339,5277516.444762345]]]},"properties":{"id_build":915,"id_source":"w145196004","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516352.1291580542,5277583.374337768],[516354.38673741,5277581.713581157],[516355.50912693003,5277583.161552508],[516353.32633214723,5277584.933658622],[516352.1291580542,5277583.374337768]]]},"properties":{"id_build":916,"id_source":"w145196037","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.18987155164,5277351.986139201],[517281.33530989557,5277348.530119327],[517282.22138621775,5277348.566091369],[517282.14081041917,5277350.410774891],[517282.07594734855,5277352.022111221],[517281.18987155164,5277351.986139201]]]},"properties":{"id_build":917,"id_source":"w145196062","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.1930047635,5277159.625960421],[517286.128873623,5277147.959050562],[517293.9375206054,5277148.649077243],[517293.46193570906,5277154.526964783],[517293.0019662698,5277160.204846987],[517285.1930047635,5277159.625960421]]]},"properties":{"id_build":918,"id_source":"w145196082","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.5395180197,5277539.821060907],[517275.82066322037,5277539.118746039],[517278.07289532485,5277536.824832636],[517278.1362279134,5277538.258726001],[517276.5395180197,5277539.821060907]]]},"properties":{"id_build":919,"id_source":"w145196112","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.14021793316,5277257.912277998],[517109.997201513,5277255.466780202],[517112.4758544168,5277255.362924677],[517112.61886980006,5277257.808422535],[517110.14021793316,5277257.912277998]]]},"properties":{"id_build":920,"id_source":"w145196130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517292.76348599605,5277619.767747338],[517291.2883015194,5277610.761028219],[517301.5056809977,5277609.346564172],[517302.9060842547,5277618.241923713],[517298.48090822366,5277618.906727162],[517292.76348599605,5277619.767747338]]]},"properties":{"id_build":921,"id_source":"w145196168","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516300.4643084678,5276804.695186008],[516298.5947314887,5276801.800320108],[516301.6800143119,5276799.697301421],[516303.5499016044,5276802.481029451],[516300.4643084678,5276804.695186008]]]},"properties":{"id_build":922,"id_source":"w145196173","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517314.4412418741,5277097.919084362],[517310.987502738,5277097.57539574],[517311.4553018264,5277091.79751278],[517314.8342719452,5277092.029839446],[517314.4412418741,5277097.919084362]]]},"properties":{"id_build":923,"id_source":"w145196175","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.20183937385,5277457.513742424],[516956.20475250104,5277456.513491746],[516958.6829930254,5277456.520709893],[516958.7551776576,5277457.521179318],[516956.20183937385,5277457.513742424]]]},"properties":{"id_build":924,"id_source":"w145196238","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516873.4289341219,5277203.207506251],[516873.328974356,5277185.869399601],[516933.7120226891,5277185.600138216],[516933.887227367,5277202.827325823],[516873.4289341219,5277203.207506251]]]},"properties":{"id_build":925,"id_source":"w145196251","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.81164672377,5277736.560611246],[516716.3191740858,5277725.000644323],[516726.1578605842,5277724.5843440825],[516726.57521914743,5277736.144096114],[516716.81164672377,5277736.560611246]]]},"properties":{"id_build":926,"id_source":"w145196275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.15261489275,5276914.37464255],[517186.2555604248,5276914.380848817],[517186.3910099695,5276919.382541184],[517184.2126331328,5276919.487252095],[517184.15261489275,5276914.37464255]]]},"properties":{"id_build":927,"id_source":"w145196280","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.8224268599,5277457.503534341],[516990.82534593536,5277456.503283667],[516993.07861628674,5277456.39872001],[516993.1504706268,5277457.5103288395],[516990.8224268599,5277457.503534341]]]},"properties":{"id_build":928,"id_source":"w145196291","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.8985267964,5277362.460202318],[516522.36851956794,5277363.153440728],[516519.34694846265,5277369.346470374],[516517.90702816204,5277368.642204046],[516520.8985267964,5277362.460202318]]]},"properties":{"id_build":929,"id_source":"w145196299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516298.1075784323,5276734.337146298],[516308.10092099383,5276732.920307196],[516309.10981778137,5276740.091644324],[516310.08929163875,5276747.040619878],[516299.9457581596,5276748.457035082],[516298.1075784323,5276734.337146298]]]},"properties":{"id_build":930,"id_source":"w145196311","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.12868258834,5276872.118682175],[516540.4098994632,5276870.566364602],[516541.75864572066,5276871.681593436],[516540.477428728,5276873.233910716],[516539.12868258834,5276872.118682175]]]},"properties":{"id_build":931,"id_source":"w145196315","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.191248049,5277076.775009245],[517313.2252977372,5277077.465731105],[517312.52293436485,5277086.354832968],[517308.4608870927,5277085.998223278],[517304.5639998645,5277085.664335236],[517305.191248049,5277076.775009245]]]},"properties":{"id_build":932,"id_source":"w145196322","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.98888656835,5277379.8530878],[516926.98177803215,5277382.298144723],[516925.7801915677,5277382.294651464],[516925.7872995978,5277379.84959454],[516926.98888656835,5277379.8530878]]]},"properties":{"id_build":933,"id_source":"w145196347","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.23588252475,5277562.306815518],[517225.4220958865,5277562.108750697],[517225.6330163183,5277566.966190716],[517225.84406789945,5277571.779175189],[517217.58244271565,5277572.088156272],[517217.23588252475,5277562.306815518]]]},"properties":{"id_build":934,"id_source":"w145196351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.942728484,5276804.423666107],[517249.3700834298,5276804.316754137],[517249.2083479722,5276808.206168846],[517247.85610054893,5276808.3133033095],[517247.942728484,5276804.423666107]]]},"properties":{"id_build":935,"id_source":"w145196358","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.2093945172,5277728.550774533],[516471.65489084227,5277726.303765908],[516471.95967214345,5277724.748669588],[516480.66468201124,5277726.884964817],[516480.2093945172,5277728.550774533]]]},"properties":{"id_build":936,"id_source":"w145196373","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.1959692812,5276963.967931166],[517217.87849290465,5276964.042636651],[517217.81456153287,5276960.263692824],[517230.1323747584,5276960.077848313],[517230.1959692812,5276963.967931166]]]},"properties":{"id_build":937,"id_source":"w145196390","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516860.16967771424,5277539.044934224],[516859.67975470854,5277542.255458889],[516853.82443393266,5277541.460526054],[516854.2846688333,5277538.127661071],[516860.16967771424,5277539.044934224]]]},"properties":{"id_build":938,"id_source":"w145196395","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516473.9519332466,5277763.764415017],[516468.4741424296,5277762.304097477],[516468.8549585564,5277760.415796282],[516474.6331280354,5277761.876964218],[516473.9519332466,5277763.764415017]]]},"properties":{"id_build":939,"id_source":"w145196410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.8900473161,5277262.826548969],[517270.09132895863,5277262.941251907],[517269.93519385776,5277264.94130708],[517268.7339126267,5277264.826604177],[517268.8900473161,5277262.826548969]]]},"properties":{"id_build":940,"id_source":"w145196435","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.0429526103,5277464.488310913],[517214.14537088695,5277464.6056667045],[517214.0663295361,5277465.939112218],[517211.96358317725,5277465.932895417],[517212.0429526103,5277464.488310913]]]},"properties":{"id_build":941,"id_source":"w145196451","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517261.90142218943,5277238.91074653],[517260.54894499923,5277239.129016797],[517260.7920395152,5277233.128182887],[517262.0690875191,5277233.020828944],[517261.90142218943,5277238.91074653]]]},"properties":{"id_build":942,"id_source":"w145196460","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516905.7718195098,5277315.663729674],[516905.5443490513,5277290.54545752],[516921.7666678239,5277290.370302577],[516921.9175309021,5277303.062914785],[516922.06916833017,5277315.488793799],[516905.7718195098,5277315.663729674]]]},"properties":{"id_build":943,"id_source":"w145196468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517054.95180558256,5277664.300178453],[517057.79924817296,5277666.420179994],[517057.12045807234,5277667.4184507355],[517054.12249914405,5277665.409148552],[517054.95180558256,5277664.300178453]]]},"properties":{"id_build":944,"id_source":"w145196480","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516620.6914244003,5277604.473458569],[516612.4983187771,5277607.117431384],[516608.92508855456,5277596.1043864405],[516617.4182764402,5277593.572404996],[516619.13666480454,5277599.301014815],[516620.6914244003,5277604.473458569]]]},"properties":{"id_build":945,"id_source":"w145196498","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.65698379517,5277353.043218608],[516994.7356517901,5277351.820909417],[516996.7633396212,5277351.826828425],[516996.83487026795,5277353.049576061],[516994.65698379517,5277353.043218608]]]},"properties":{"id_build":946,"id_source":"w145196521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.85573722294,5277604.671654621],[517196.72491842194,5277608.691580712],[517194.6379432247,5277616.076223713],[517190.841195859,5277615.009181658],[517187.0894720082,5277613.953389004],[517188.95639501075,5277607.33495936],[517191.77768419764,5277608.132383637],[517193.1285436661,5277603.346240729],[517197.85573722294,5277604.671654621]]]},"properties":{"id_build":947,"id_source":"w145196543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.5634817337,5277515.771500468],[517190.6444860907,5277513.771220715],[517192.371399626,5277513.887459998],[517192.2903946762,5277515.887739731],[517190.5634817337,5277515.771500468]]]},"properties":{"id_build":948,"id_source":"w145196587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.80077339703,5277236.166286236],[517309.37385342555,5277236.162044042],[517309.69143868826,5277230.383713186],[517310.89305669884,5277230.3872856],[517310.80077339703,5277236.166286236]]]},"properties":{"id_build":949,"id_source":"w145196610","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516969.95688675315,5277066.897161568],[516969.83680302626,5277056.560806584],[517000.17888366757,5277056.538173877],[517000.2995625029,5277066.652251825],[516969.95688675315,5277066.897161568]]]},"properties":{"id_build":950,"id_source":"w145196620","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516848.6369569862,5277439.64136112],[516845.8583157437,5277439.633320658],[516845.8608883243,5277438.744208961],[516848.5644315685,5277438.752032095],[516848.6369569862,5277439.64136112]]]},"properties":{"id_build":951,"id_source":"w145196638","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.29792917485,5277633.568970658],[516680.6013226529,5277636.7642370835],[516677.9955729241,5277628.865838024],[516683.16711190745,5277627.157986983],[516687.6921911137,5277625.670567273],[516690.29792917485,5277633.568970658]]]},"properties":{"id_build":952,"id_source":"w145196640","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.37579862226,5277694.830044276],[516968.35171129694,5277694.944028638],[516967.9717006663,5277696.498880333],[516967.1459784526,5277696.38533376],[516967.37579862226,5277694.830044276]]]},"properties":{"id_build":953,"id_source":"w145196646","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516916.7231218867,5277449.507965519],[516920.02744650736,5277449.517567532],[516920.02357063355,5277450.85123509],[516918.3939381832,5277450.846499317],[516916.71924677,5277450.84163308],[516916.7231218867,5277449.507965519]]]},"properties":{"id_build":954,"id_source":"w145196650","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517216.4459444905,5277702.451974304],[517212.93783734017,5277695.217502345],[517219.0141689704,5277692.3124901485],[517222.1876892291,5277690.799259853],[517225.69545877486,5277698.144876363],[517216.4459444905,5277702.451974304]]]},"properties":{"id_build":955,"id_source":"w145196667","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.92357068206,5277271.546105418],[517211.50206911884,5277266.39092412],[517223.5518124393,5277267.749121285],[517222.9733034519,5277272.904301424],[517210.92357068206,5277271.546105418]]]},"properties":{"id_build":956,"id_source":"w145196682","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.84083455725,5277480.980381867],[517004.1214139152,5277480.9928823635],[517004.18580001575,5277484.660687647],[516999.9048988374,5277484.759326065],[516999.84083455725,5277480.980381867]]]},"properties":{"id_build":957,"id_source":"w145196695","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.3374018695,5277633.8461725125],[516978.48963567434,5277633.146434862],[516978.61176631827,5277632.468837408],[516979.43740014924,5277632.615727272],[516979.20058346575,5277633.993171848],[516978.3374018695,5277633.8461725125]]]},"properties":{"id_build":958,"id_source":"w145196699","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.7161777157,5277573.8607542515],[517245.29921731644,5277567.5801115995],[517244.92550345894,5277561.910866895],[517252.70636021625,5277561.656069768],[517252.9266130099,5277573.493127849],[517245.7161777157,5277573.8607542515]]]},"properties":{"id_build":959,"id_source":"w145196705","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.3145784396,5277477.230775467],[516900.0438122746,5277477.911340852],[516898.9717955733,5277485.021183072],[516894.2428899008,5277484.22947957],[516895.3145784396,5277477.230775467]]]},"properties":{"id_build":960,"id_source":"w145196710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.90740549844,5277627.636759148],[517251.37884961173,5277626.9690910885],[517258.1263917516,5277625.666524069],[517259.16257993435,5277630.782034374],[517249.39351929695,5277632.975880612],[517247.90740549844,5277627.636759148]]]},"properties":{"id_build":961,"id_source":"w145196728","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.6130010012,5277457.482499225],[516983.615918836,5277456.48224855],[516986.1692576008,5277456.489697467],[516986.1663393261,5277457.48994814],[516983.6130010012,5277457.482499225]]]},"properties":{"id_build":962,"id_source":"w145196731","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.1479783252,5277091.334204552],[517304.75528831035,5277097.112311196],[517301.601299077,5277096.991798746],[517302.0694191344,5277091.102776167],[517305.1479783252,5277091.334204552]]]},"properties":{"id_build":963,"id_source":"w145196753","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.40714176255,5277174.0977338115],[516718.1260181611,5277174.1965799],[516718.06208504067,5277170.306502182],[516722.3432114985,5277170.207656042],[516722.40714176255,5277174.0977338115]]]},"properties":{"id_build":964,"id_source":"w145196770","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516852.87692793837,5277375.859337179],[516850.3986531884,5277375.852164152],[516850.40186971694,5277374.740774641],[516852.95524418884,5277374.748165048],[516852.87692793837,5277375.859337179]]]},"properties":{"id_build":965,"id_source":"w145196773","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516613.56470921607,5277549.216589817],[516615.66932811064,5277548.555756661],[516616.3322038094,5277550.480368619],[516616.8536002688,5277551.982245266],[516614.68133178604,5277552.665112908],[516613.56470921607,5277549.216589817]]]},"properties":{"id_build":966,"id_source":"w145196783","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.6019330817,5277561.223592925],[516386.2239049032,5277556.463212975],[516387.2715074102,5277557.79984005],[516380.6495362397,5277562.560218813],[516379.6019330817,5277561.223592925]]]},"properties":{"id_build":967,"id_source":"w145196786","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517064.16151769436,5277161.085653414],[517064.03704460413,5277152.3052392835],[517073.27558362205,5277151.998901822],[517073.32461489085,5277160.890234871],[517064.16151769436,5277161.085653414]]]},"properties":{"id_build":968,"id_source":"w145196794","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517082.73230345326,5277410.093460582],[517090.4687848513,5277409.671605578],[517090.965440319,5277419.564515754],[517086.2786956891,5277419.750811504],[517083.22929812217,5277419.875231117],[517082.73230345326,5277410.093460582]]]},"properties":{"id_build":969,"id_source":"w145196795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516842.3936127678,5277458.717130597],[516846.37381555134,5277458.728646089],[516846.43701503833,5277462.841005126],[516842.53191317857,5277462.829706834],[516842.3936127678,5277458.717130597]]]},"properties":{"id_build":970,"id_source":"w145196812","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.3127574956,5277411.393579065],[516995.30562019657,5277413.838636095],[516994.3290120485,5277413.946925289],[516994.2613745628,5277411.390510097],[516995.3127574956,5277411.393579065]]]},"properties":{"id_build":971,"id_source":"w145196817","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.9646033933,5277457.5421836525],[516965.89242000086,5277456.5417141365],[516968.82124970964,5277456.55024966],[516968.893432598,5277457.550719215],[516965.9646033933,5277457.5421836525]]]},"properties":{"id_build":972,"id_source":"w145196842","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516839.6017333061,5276746.547233754],[516841.93906115694,5276743.442079556],[516844.56203326856,5276745.4501819685],[516842.3001335723,5276748.444413508],[516839.6017333061,5276746.547233754]]]},"properties":{"id_build":973,"id_source":"w145196843","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.099323886,5276914.29794121],[516726.26120117377,5276930.490334541],[516721.839263077,5276927.254580605],[516733.75216579594,5276911.173533078],[516738.099323886,5276914.29794121]]]},"properties":{"id_build":974,"id_source":"w145196858","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.4895450287,5277453.738399509],[516994.58804179763,5277453.846907871],[516994.52137826715,5277450.957075624],[516995.4976557851,5277450.959925434],[516995.4895450287,5277453.738399509]]]},"properties":{"id_build":975,"id_source":"w145196876","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.41839374206,5277375.840646045],[516843.6394005285,5277375.943745667],[516843.6426157656,5277374.832356158],[516846.42128793296,5277374.840395489],[516846.41839374206,5277375.840646045]]]},"properties":{"id_build":976,"id_source":"w145196892","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.85045208485,5277647.496662686],[517013.14187223604,5277652.785999676],[517009.3267048827,5277658.020657148],[517005.3154843789,5277663.532594315],[516998.01656115055,5277658.243245095],[517005.85045208485,5277647.496662686]]]},"properties":{"id_build":977,"id_source":"w145196925","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516412.0647759747,5277633.778216014],[516413.2685036241,5277633.003630375],[516416.51500466093,5277637.502835462],[516419.77645712753,5277642.02431256],[516418.49763468385,5277642.7986850785],[516412.0647759747,5277633.778216014]]]},"properties":{"id_build":978,"id_source":"w145196946","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.09571722883,5277364.601919487],[516880.0889506391,5277366.935837414],[516879.1126590796,5277366.933006991],[516879.11974747817,5277364.4879501145],[516880.09571722883,5277364.601919487]]]},"properties":{"id_build":979,"id_source":"w145196962","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.52293436485,5277086.354832968],[517313.2252977372,5277077.465731105],[517316.2923439498,5277086.621663307],[517312.52293436485,5277086.354832968]]]},"properties":{"id_build":980,"id_source":"w145197010","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517156.9042417747,5277469.993699263],[517158.85711810924,5277469.8883145545],[517158.7767792895,5277471.666316657],[517156.8245585772,5277471.549423459],[517156.9042417747,5277469.993699263]]]},"properties":{"id_build":981,"id_source":"w145197017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.6791097383,5277293.211405957],[516996.63773254835,5277289.376959242],[517000.1675790268,5277289.342808645],[517000.20895389235,5277293.177255387],[516996.6791097383,5277293.211405957]]]},"properties":{"id_build":982,"id_source":"w145197031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.56476083334,5277141.492233982],[517308.83120904403,5277140.802400232],[517309.26889586117,5277135.046655199],[517309.69070398575,5277129.579826748],[517317.49937301344,5277130.2698849505],[517316.56476083334,5277141.492233982]]]},"properties":{"id_build":983,"id_source":"w145197039","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517183.71475726995,5277088.196075975],[517183.7009818755,5277092.863909682],[517181.52299790696,5277092.85748257],[517181.4613406588,5277088.300566147],[517183.71475726995,5277088.196075975]]]},"properties":{"id_build":984,"id_source":"w145197047","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517203.64821073227,5276798.0688090185],[517207.7036440277,5276798.19193115],[517207.77185401524,5276800.526068871],[517203.64065900823,5276800.625002493],[517203.64821073227,5276798.0688090185]]]},"properties":{"id_build":985,"id_source":"w145197049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516538.1485204895,5276873.4495755145],[516539.12868258834,5276872.118682175],[516540.477428728,5276873.233910716],[516539.4972665067,5276874.56480383],[516538.1485204895,5276873.4495755145]]]},"properties":{"id_build":986,"id_source":"w145197062","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.0936090755,5277408.285688449],[517290.6360383335,5277418.220239584],[517288.6086373925,5277418.12530701],[517289.0586947962,5277408.190733423],[517291.0936090755,5277408.285688449]]]},"properties":{"id_build":987,"id_source":"w145197063","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516881.768955281,5277616.338656036],[516886.86034420226,5277616.397878026],[516893.8591103092,5277616.484867036],[516893.75885873125,5277625.153490605],[516881.59330341016,5277625.1182010025],[516881.768955281,5277616.338656036]]]},"properties":{"id_build":988,"id_source":"w145197080","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.7003671664,5277669.996885787],[516995.2599511239,5277661.013695755],[517002.15413667314,5277666.03512363],[516999.3645694025,5277669.805735658],[516995.594872084,5277674.907166976],[516988.7003671664,5277669.996885787]]]},"properties":{"id_build":989,"id_source":"w145197093","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.2095358689,5277416.483920857],[516796.20280279365,5277418.817838991],[516795.0760020094,5277418.9257283],[516795.0079565236,5277416.48045457],[516796.2095358689,5277416.483920857]]]},"properties":{"id_build":990,"id_source":"w145197095","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516463.49213043,5277293.390894466],[516468.2577125375,5277281.290130402],[516474.03447190486,5277283.4181291675],[516481.8367352992,5277286.329845872],[516483.8782899845,5277281.445472913],[516481.70257942437,5277280.661334836],[516479.9105494328,5277276.988648018],[516478.41986297426,5277272.983395152],[516483.4578926005,5277270.774859265],[516484.35280644434,5277273.000189408],[516487.9617242665,5277271.565590292],[516487.06681157503,5277269.3402595995],[516492.255048914,5277267.13215664],[516495.2373484116,5277274.809253027],[516494.2541149771,5277277.251543783],[516499.35559466574,5277279.155375068],[516501.8502896663,5277273.383173854],[516513.92855351017,5277277.974151579],[516513.09519844904,5277280.528004139],[516510.9002664704,5277286.523330353],[516516.60158964456,5277288.76229739],[516521.4026507189,5277290.665295912],[516517.2424960799,5277301.100637133],[516509.29038467916,5277298.077307991],[516507.1740292806,5277302.850320346],[516513.24989288475,5277305.423765622],[516509.08976322104,5277315.859112852],[516506.98412744724,5277316.853401293],[516507.8042402439,5277318.967383377],[516506.21516818204,5277323.186192006],[516501.7138988395,5277321.506335139],[516500.66848434496,5277319.391715399],[516498.63826616976,5277320.275080743],[516497.65598357224,5277322.383954252],[516469.8250393943,5277311.302317794],[516472.0943911454,5277305.529466326],[516460.46706743975,5277300.828710068],[516463.49213043,5277293.390894466]]]},"properties":{"id_build":991,"id_source":"w145197116","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"sustenance","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516648.26892002265,5277257.129017302],[516646.3821863695,5277260.346678209],[516643.37498073984,5277261.449479777],[516641.9398081406,5277264.3350134],[516638.9329230228,5277265.326678331],[516636.4482502863,5277267.54237516],[516630.98272965424,5277261.636349524],[516631.509704415,5277261.193295416],[516627.4666442689,5277256.847294291],[516624.53009860497,5277259.506265111],[516626.2520201979,5277261.40055915],[516620.60455638607,5277266.608007727],[516607.2033861764,5277251.899309892],[516625.3487000289,5277235.835817229],[516627.7449505609,5277238.287736278],[516634.8228611386,5277231.861843103],[516626.13906261703,5277222.056734685],[516629.00052652333,5277219.397550303],[516628.5543626784,5277217.840318432],[516631.7108380911,5277217.071355055],[516631.3391411721,5277215.736615351],[516633.6688687637,5277215.187571247],[516634.42210436583,5277214.411744302],[516639.73841662216,5277219.983926601],[516641.0164082427,5277219.543019689],[516641.6089592517,5277222.434348934],[516643.2624565465,5277221.994515777],[516643.78054039396,5277224.663352734],[516645.20873367,5277224.222876099],[516645.8015998375,5277227.003066875],[516649.9948694533,5277231.349510027],[516640.8087133034,5277239.658736266],[516647.5477826056,5277246.679810437],[516649.2044514779,5277245.128589664],[516650.70233801013,5277246.577690936],[516652.12989074725,5277246.359493852],[516652.87390660914,5277248.806698243],[516655.04515562986,5277251.146845304],[516652.786408882,5277253.140901755],[516650.8996714504,5277256.358561186],[516648.26892002265,5277257.129017302]]]},"properties":{"id_build":992,"id_source":"w145197142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7301105095,5276705.41738373],[516761.6819556981,5276705.756420674],[516764.4248722142,5276692.205266224],[516767.6535583496,5276692.547981002],[516768.1096468387,5276690.659918435],[516771.12645236036,5276686.334155411],[516773.15885327547,5276684.784052354],[516771.5883038529,5276682.445594177],[516783.2512109431,5276675.143971165],[516782.5036513788,5276673.919279489],[516783.4110365673,5276671.810239225],[516794.68273239717,5276669.953359428],[516796.1800909575,5276671.624774202],[516795.6485630893,5276673.62375675],[516809.60972263414,5276676.775952118],[516809.2300110336,5276678.219672908],[516812.98317654367,5276679.008485713],[516812.5257891704,5276681.34110009],[516814.8518967809,5276682.125794353],[516816.3242107046,5276684.664032178],[516828.00542076945,5276704.836299897],[516835.1528793628,5276700.633647281],[516845.3180504434,5276717.778566534],[516844.26461351285,5276718.442357971],[516839.6746870405,5276721.318717339],[516835.46126721194,5276723.862749478],[516829.0331640895,5276713.063612292],[516826.1748937373,5276714.5001698695],[516827.1458352625,5276716.392351358],[516818.89242495934,5276721.24754413],[516819.2428310098,5276722.148788253],[516818.7119416455,5276723.925491185],[516822.91508006613,5276724.9378897315],[516822.304587511,5276728.270319103],[516818.6262416504,5276727.592855907],[516817.9416071687,5276730.591652312],[516813.36325502413,5276729.467034236],[516812.678944335,5276732.354692424],[516806.82504729,5276730.781837957],[516807.8126725819,5276726.894796662],[516809.1800078348,5276721.564034645],[516810.5309834673,5276721.901353648],[516811.06411635876,5276719.34667812],[516809.2711555506,5276716.007309618],[516817.8482027456,5276710.91964439],[516806.11497165915,5276690.547195279],[516806.7986423297,5276687.8818141725],[516792.7623998248,5276684.7294088425],[516793.2948871975,5276682.39700951],[516791.26792777114,5276682.0577454325],[516789.9901273944,5276682.387480471],[516788.86158228724,5276683.051065345],[516789.75839436194,5276684.609607442],[516777.7947454889,5276692.021490768],[516777.12165467645,5276691.0192938],[516776.6710062839,5276691.017995526],[516775.4651152422,5276692.459338449],[516774.93583733955,5276693.680351101],[516775.085092963,5276694.014200308],[516776.0608569836,5276694.23929068],[516773.09131029586,5276708.234346101],[516770.61403170926,5276707.782652381],[516770.3059189568,5276710.449119237],[516771.9534895624,5276712.12096049],[516773.4588465955,5276711.013898648],[516784.1563399236,5276725.937448634],[516778.96270662773,5276729.812373586],[516780.3836656001,5276731.928123433],[516776.01846368646,5276735.0274598915],[516763.52542032476,5276717.65368098],[516761.64388857683,5276718.981942136],[516759.7693945277,5276717.865149487],[516757.9224042862,5276707.190417573],[516759.7301105095,5276705.41738373]]]},"properties":{"id_build":993,"id_source":"w145197166","height_wall":15.0,"height_roof":15.0,"nb_lev":5,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516404.5164179041,5277620.864715114],[516392.3258213585,5277629.721567807],[516389.1092105633,5277625.266916482],[516390.76445167646,5277624.160177658],[516387.4733661888,5277619.483037862],[516385.81781157525,5277620.700916616],[516379.60860281583,5277612.23681298],[516375.3944641633,5277615.33687457],[516372.85057251866,5277611.995523439],[516375.18324299017,5277610.3349860255],[516374.06117622077,5277608.7758717965],[516376.16824698873,5277607.225840149],[516369.5103066285,5277598.093646151],[516371.09045530204,5277596.986690622],[516367.72392964276,5277592.420490083],[516366.14378038095,5277593.527446521],[516360.00929803844,5277585.1747143855],[516355.7200539448,5277588.274579078],[516353.32633214723,5277584.933658622],[516355.50912693003,5277583.161552508],[516354.38673741,5277581.713581157],[516356.4938126384,5277580.163542442],[516352.9776968112,5277575.374650655],[516362.68484295486,5277568.4001134],[516366.20126751665,5277573.077872015],[516367.2544956785,5277572.413993694],[516373.7629012694,5277581.323484268],[516374.9669471687,5277580.437751765],[516378.18390644545,5277584.78125589],[516375.7761284289,5277586.441580829],[516379.1423386137,5277591.118924975],[516381.5504283977,5277589.347462431],[516384.69196861197,5277593.801897916],[516382.3592888234,5277595.4624315025],[516385.8753683114,5277600.2513412675],[516386.9292195001,5277599.365188496],[516393.5123479044,5277608.386052038],[516394.79148749856,5277607.500535068],[516397.9333207515,5277611.843838879],[516395.6003313495,5277613.615506194],[516398.89172674395,5277618.181511547],[516401.2998114533,5277616.410057106],[516404.5164179041,5277620.864715114]]]},"properties":{"id_build":994,"id_source":"w145197196","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.1071457761,5276769.733090808],[516739.2301823274,5276769.108187221],[516726.2722635922,5276759.290654948],[516742.0360632537,5276738.852896258],[516749.17855538684,5276744.1748016],[516749.6913314309,5276743.4649819955],[516750.3096415697,5276742.62209828],[516744.7638377596,5276738.382838178],[516744.20753024495,5276735.947277856],[516746.7104313201,5276732.709194105],[516750.3065826813,5276728.01832509],[516754.5779305658,5276731.431489265],[516761.4435464667,5276736.3969657635],[516762.7855070063,5276737.256604633],[516760.50907271187,5276740.095230195],[516761.69308301876,5276741.03221205],[516763.79125975625,5276742.716462097],[516764.74103647866,5276741.530000843],[516767.2610202582,5276745.404919816],[516770.59520028514,5276748.226356887],[516779.77517092664,5276742.39573571],[516793.52929371066,5276765.196807994],[516790.8882914352,5276766.834060976],[516790.3652015098,5276765.910092652],[516787.3479281683,5276767.801883818],[516784.59417213954,5276769.472156537],[516770.8862185781,5276759.318943511],[516770.3433344397,5276760.050902521],[516769.00182833977,5276759.035667484],[516757.18252987496,5276750.277173068],[516756.5080032574,5276749.775103175],[516747.11415508634,5276762.084594029],[516746.2896703551,5276761.49318224],[516740.1071457761,5276769.733090808]]]},"properties":{"id_build":995,"id_source":"w145197234","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.952596158,5276728.393859355],[516932.6000132553,5276728.612205878],[516931.56531010167,5276722.829929036],[516927.8834194285,5276723.374924007],[516926.184370221,5276713.589685222],[516929.7163744365,5276712.933113634],[516929.2801526254,5276710.553454332],[516928.7551579681,5276707.706749968],[516929.88242199935,5276707.487747482],[516929.2177593815,5276703.59592319],[516921.55255449604,5276705.018461959],[516920.4427280361,5276699.235969102],[516916.98582455836,5276699.892764501],[516915.2867498799,5276690.107529321],[516917.46585283754,5276689.780439993],[516916.92644224904,5276686.722529388],[516915.9140868067,5276680.995890634],[516915.5382229847,5276681.105938616],[516915.4653745536,5276680.327748648],[516922.83017745096,5276678.904328797],[516922.16421489965,5276675.457060817],[516930.50543339254,5276674.036488025],[516931.1707449344,5276677.706034619],[516932.59844783455,5276677.487906138],[516933.48326521803,5276683.158607106],[516936.9405037601,5276682.390682658],[516938.56540619,5276691.842289163],[516935.1078498296,5276692.721351475],[516936.06744708994,5276698.503410238],[516934.7899651426,5276698.72197469],[516935.530055753,5276702.502879187],[516937.78458643256,5276702.0648770565],[516938.301937118,5276704.95601591],[516943.7877234522,5276703.971716674],[516944.3795320918,5276707.085352278],[516948.06175809825,5276706.429228894],[516949.61152771395,5276715.880620312],[516947.8079713718,5276716.208790512],[516948.91809078096,5276721.88014998],[516948.6173366287,5276721.9904144285],[516949.2832779883,5276725.437685735],[516949.58370849624,5276725.438560159],[516949.6575221999,5276725.883334114],[516947.55321503984,5276726.321768803],[516947.9970682928,5276728.656995875],[516942.58576532593,5276729.863787326],[516942.58414859365,5276730.41948151],[516934.3932227944,5276731.840473764],[516934.17016246414,5276731.061846671],[516934.5457002343,5276731.0629387265],[516933.952596158,5276728.393859355]]]},"properties":{"id_build":996,"id_source":"w145197250","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516705.5795588951,5277594.491553363],[516717.9819558492,5277590.526118292],[516720.7385001287,5277598.20268824],[516710.80914689606,5277601.352780142],[516707.8852207535,5277602.277963323],[516706.6207028572,5277598.051017989],[516705.5795588951,5277594.491553363]]]},"properties":{"id_build":997,"id_source":"w145197294","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.23641539493,5277253.03281632],[517188.920263162,5277258.366597944],[517181.9378602126,5277257.679149429],[517175.2020675897,5277249.768343674],[517181.67714066914,5277244.230452918],[517189.23641539493,5277253.03281632]]]},"properties":{"id_build":998,"id_source":"w145197297","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.04941684846,5276721.261790785],[517237.6867085034,5276716.926264696],[517243.1255623684,5276716.586719156],[517247.90333697974,5276716.289676592],[517248.47951024945,5276724.626868696],[517238.4127826103,5276725.375039259],[517238.04941684846,5276721.261790785]]]},"properties":{"id_build":999,"id_source":"w145197384","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4892138693,5276965.732311008],[517300.1147778631,5276970.421300479],[517299.86526424054,5276973.510247198],[517288.5274637775,5276972.476315251],[517289.2268328933,5276964.587462017],[517293.13127948245,5276964.932475722],[517300.4892138693,5276965.732311008]]]},"properties":{"id_build":1000,"id_source":"w145197402","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517152.1290000574,5277586.898845336],[517156.87776726385,5277580.911280667],[517157.55592941865,5277580.135299593],[517166.02185662545,5277586.93979262],[517160.89530939906,5277593.704215986],[517156.6170303424,5277590.390750008],[517152.1290000574,5277586.898845336]]]},"properties":{"id_build":1001,"id_source":"w145197430","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.799526758,5277673.598046585],[517236.5150039781,5277670.836466519],[517238.0188873112,5277670.174079485],[517243.01933968544,5277680.636045571],[517239.3943480605,5277682.448005543],[517235.94985057885,5277684.171590167],[517230.799526758,5277673.598046585]]]},"properties":{"id_build":1002,"id_source":"w145197465","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517195.9297337866,5277758.405886916],[517183.59622382955,5277764.482167706],[517189.1820750364,5277754.718339794],[517195.02991513617,5277757.95866912],[517195.9297337866,5277758.405886916]]]},"properties":{"id_build":1003,"id_source":"w145197471","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.6207028572,5277598.051017989],[516700.4569985866,5277600.056079828],[516695.12012293184,5277601.796783432],[516692.81316916394,5277594.4549345365],[516704.46331718675,5277590.931873472],[516705.5795588951,5277594.491553363],[516706.6207028572,5277598.051017989]]]},"properties":{"id_build":1004,"id_source":"w145197477","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.90740549844,5277627.636759148],[517249.39351929695,5277632.975880612],[517247.13899510883,5277633.524900913],[517243.3950619032,5277629.846191687],[517243.32358690724,5277628.623440358],[517247.90740549844,5277627.636759148]]]},"properties":{"id_build":1005,"id_source":"w145197515","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.20242831856,5277030.4267440755],[517303.8103961898,5277035.982572462],[517303.26188265334,5277043.649593439],[517295.4530957932,5277042.959554712],[517296.318189978,5277029.847619942],[517298.42076373845,5277029.965005702],[517304.20242831856,5277030.4267440755]]]},"properties":{"id_build":1006,"id_source":"w145197524","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.7855070063,5276737.256604633],[516763.340054562,5276737.691646007],[516764.4040849555,5276738.56159918],[516766.06763064815,5276739.900065578],[516764.74103647866,5276741.530000843],[516763.79125975625,5276742.716462097],[516761.69308301876,5276741.03221205],[516760.50907271187,5276740.095230195],[516762.7855070063,5276737.256604633]]]},"properties":{"id_build":1007,"id_source":"w145197541","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516398.71353328717,5276852.160967351],[516395.64595459565,5276850.640829004],[516398.44146399066,5276844.758294202],[516401.8168546667,5276846.323756878],[516400.987557888,5276847.432818555],[516398.71353328717,5276852.160967351]]]},"properties":{"id_build":1008,"id_source":"w145197614","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.5225783435,5277627.248403805],[516657.7868080399,5277631.586477376],[516647.11365200067,5277634.890145277],[516646.10169063206,5277631.61973844],[516644.806969002,5277627.43717614],[516655.5555513221,5277624.022579865],[516656.5225783435,5277627.248403805]]]},"properties":{"id_build":1009,"id_source":"w145197624","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516437.70996790734,5277274.779926541],[516436.28453248367,5277274.253545288],[516436.8823133031,5277272.665933349],[516438.30023900885,5277273.192293544],[516437.70996790734,5277274.779926541]]]},"properties":{"id_build":1010,"id_source":"w145197666","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.4847510935,5277583.673046141],[517218.44777502865,5277584.204970552],[517217.6217128813,5277584.202527483],[517217.12496027804,5277574.420742365],[517225.9129166315,5277573.891038037],[517226.19893277495,5277578.748700365],[517226.4847510935,5277583.673046141]]]},"properties":{"id_build":1011,"id_source":"w145197682","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516303.3444011681,5277144.124067225],[516313.11609516956,5277141.1506617665],[516314.2410718799,5277141.709512615],[516313.48662430514,5277142.929936474],[516303.9402396403,5277145.903972187],[516303.3444011681,5277144.124067225]]]},"properties":{"id_build":1012,"id_source":"w145197685","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.00279723626,5277408.821199094],[517299.0230549008,5277408.642663084],[517299.7029731745,5277407.288776134],[517299.9279394684,5277407.400584525],[517302.405870972,5277407.519087884],[517303.00279723626,5277408.821199094]]]},"properties":{"id_build":1013,"id_source":"w145197688","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516488.553915277,5277433.7202963885],[516501.6655935462,5277444.538010367],[516488.4023324022,5277460.726852673],[516475.2906663447,5277449.909168261],[516477.8531293653,5277446.693364192],[516488.553915277,5277433.7202963885]]]},"properties":{"id_build":1014,"id_source":"w145197691","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.3562025153,5277681.870183982],[517023.53809343197,5277677.478345369],[517026.61446550535,5277673.219567837],[517035.45718591067,5277679.580414108],[517029.12382127834,5277688.230801185],[517028.67422527476,5277687.896066208],[517020.3562025153,5277681.870183982]]]},"properties":{"id_build":1015,"id_source":"w145197695","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516757.70626089524,5277304.232842191],[516767.69522173895,5277304.039320911],[516767.80125239235,5277319.37692727],[516762.2888192831,5277319.394396514],[516747.7492431721,5277319.430353633],[516747.5674201805,5277304.314809626],[516757.70626089524,5277304.232842191]]]},"properties":{"id_build":1016,"id_source":"w145197731","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"commercial","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517259.3541438978,5277743.478540203],[517258.8324362067,5277742.143313647],[517256.52229591005,5277736.134906062],[517260.7929086393,5277734.380440959],[517265.394335932,5277732.493592102],[517268.67707155395,5277739.7274280405],[517264.2110827069,5277741.525763957],[517259.3541438978,5277743.478540203]]]},"properties":{"id_build":1017,"id_source":"w145197749","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.76970354444,5277551.530776469],[517218.12374147336,5277541.415130632],[517226.9110900095,5277541.107705671],[517227.3309335036,5277546.421437592],[517227.70723082277,5277551.223796955],[517225.0037393766,5277551.215797633],[517218.76970354444,5277551.530776469]]]},"properties":{"id_build":1018,"id_source":"w145197784","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.22487834597,5277760.403671911],[516425.6788933333,5277759.182413941],[516425.90574410337,5277758.627354479],[516431.307513518,5277760.420837036],[516430.7014268743,5277762.308504815],[516425.22487834597,5277760.403671911]]]},"properties":{"id_build":1019,"id_source":"w145197795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.67053687305,5277436.524044345],[517083.02790318645,5277437.323606809],[517084.0789553536,5277437.437830778],[517083.22645798855,5277446.437662605],[517074.8177264459,5277445.635016322],[517075.27521374635,5277440.723973731],[517075.67053687305,5277436.524044345]]]},"properties":{"id_build":1020,"id_source":"w145197802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517228.6724637682,5276717.344148237],[517218.6053976645,5276718.203491889],[517217.9537444933,5276709.977219691],[517222.7093523363,5276709.557837115],[517227.7955011659,5276709.117208302],[517228.2343115845,5276713.119539407],[517228.6724637682,5276717.344148237]]]},"properties":{"id_build":1021,"id_source":"w145197803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.4424478932,5276826.170246362],[517311.90393475426,5276839.844790589],[517310.3673415558,5276826.170023098],[517310.4424478932,5276826.170246362]]]},"properties":{"id_build":1022,"id_source":"w145197856","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.2354639504,5277557.601636666],[517129.83852818364,5277556.825431443],[517136.356584154,5277562.06819058],[517130.17575219576,5277569.829797029],[517126.9766412319,5277567.26416619],[517123.65769944526,5277564.587044739],[517129.2354639504,5277557.601636666]]]},"properties":{"id_build":1023,"id_source":"w145197878","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.20811512624,5277481.529333127],[516689.3149054349,5277478.748275497],[516697.80829968036,5277476.216411311],[516700.4863212017,5277485.115283402],[516692.14217836445,5277487.980991221],[516690.87014563434,5277483.742914728],[516690.20811512624,5277481.529333127]]]},"properties":{"id_build":1024,"id_source":"w145197922","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.44402513717,5277507.275605005],[516983.29454351787,5277515.163186],[516973.5364122937,5277513.578769837],[516974.1402779822,5277509.946255066],[516974.91246984026,5277505.24728795],[516984.5951929073,5277506.942626253],[516984.44402513717,5277507.275605005]]]},"properties":{"id_build":1025,"id_source":"w145197925","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516856.236948171,5277486.3421167955],[516854.9371193109,5277494.340426582],[516849.75807943475,5277493.391860189],[516845.02936702775,5277492.533513268],[516846.40556683176,5277484.090862744],[516856.3130113121,5277486.008917313],[516856.236948171,5277486.3421167955]]]},"properties":{"id_build":1026,"id_source":"w145197931","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517010.4522160435,5277524.689364563],[517011.6794280985,5277515.912896374],[517011.8328704512,5277514.801945506],[517019.4895611541,5277515.935722661],[517017.9586993752,5277525.822700926],[517013.7550690623,5277525.188031369],[517010.4522160435,5277524.689364563]]]},"properties":{"id_build":1027,"id_source":"w145197956","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.598562462,5277470.247614064],[517054.56431404693,5277471.004466187],[517055.1425036389,5277471.028387892],[517054.5749823992,5277477.61732267],[517053.9763163746,5277484.584042068],[517045.5676361629,5277483.781437856],[517046.598562462,5277470.247614064]]]},"properties":{"id_build":1028,"id_source":"w145197957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.73845716915,5277680.476060629],[516851.17133207485,5277679.7109106155],[516853.63853812456,5277683.496810434],[516840.84983762156,5277691.23959685],[516837.78604365437,5277686.007157752],[516846.73845716915,5277680.476060629]]]},"properties":{"id_build":1029,"id_source":"w145197963","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517097.262896585,5277653.421428921],[517097.15548805695,5277664.423969185],[517077.03021461214,5277664.253760147],[517077.13758510526,5277653.251219603],[517082.24409024045,5277653.266201008],[517097.262896585,5277653.421428921]]]},"properties":{"id_build":1030,"id_source":"w145198005","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.2735769887,5277749.1731302375],[517268.4991899578,5277749.0626594825],[517272.7858380244,5277746.963716769],[517273.98009430204,5277749.4123400925],[517269.5425994045,5277751.7331144195],[517268.2735769887,5277749.1731302375]]]},"properties":{"id_build":1031,"id_source":"w145198043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517260.63113729557,5276755.337461616],[517260.344543638,5276750.668739946],[517269.5847204794,5276750.0292960545],[517270.1585517689,5276759.144462703],[517265.6209563901,5276759.508882837],[517260.8429526967,5276759.894821873],[517260.63113729557,5276755.337461616]]]},"properties":{"id_build":1032,"id_source":"w145198100","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.05208952754,5277755.271882219],[517230.99153994734,5277760.954639639],[517221.5751908865,5277763.305171748],[517218.97875634657,5277760.141115759],[517225.3782134565,5277754.603048323],[517226.05208952754,5277755.271882219]]]},"properties":{"id_build":1033,"id_source":"w145198118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516467.78104707506,5277741.852393426],[516462.90336166136,5277740.6160586905],[516465.0755514202,5277731.96440314],[516466.776878814,5277725.178567001],[516467.15675360523,5277723.623682846],[516471.95967214345,5277724.748669588],[516467.78104707506,5277741.852393426]]]},"properties":{"id_build":1034,"id_source":"w145198122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517049.09251673607,5277434.11221624],[517058.55199572816,5277435.140183624],[517058.1117235049,5277439.306640426],[517057.62509040267,5277443.917521117],[517050.8678651311,5277443.342028119],[517048.16497466015,5277443.111833115],[517049.09251673607,5277434.11221624]]]},"properties":{"id_build":1035,"id_source":"w145198152","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516314.71602842933,5277159.826629046],[516324.79714656295,5277153.631056283],[516326.6778150262,5277152.524931469],[516330.1175500117,5277157.869287499],[516318.2305604537,5277165.282327454],[516314.71602842933,5277159.826629046]]]},"properties":{"id_build":1036,"id_source":"w145198168","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516768.6121288577,5277689.697396852],[516768.7469531611,5277695.032501799],[516768.81884699565,5277696.144108185],[516753.5732621676,5277696.54477404],[516753.44162234647,5277690.0982793905],[516768.6121288577,5277689.697396852]]]},"properties":{"id_build":1037,"id_source":"w145198201","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.55089302716,5276971.812587597],[517214.5462931591,5276973.368531876],[517214.52066530683,5276982.037364343],[517209.2633624945,5276982.021824433],[517209.21814806544,5276971.907964595],[517214.55089302716,5276971.812587597]]]},"properties":{"id_build":1038,"id_source":"w145198231","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.8316908911,5277618.351167357],[517264.31788289215,5277614.348604867],[517272.5840672777,5277612.483744386],[517274.2819302838,5277622.380239104],[517270.7425975534,5277623.147718105],[517265.7153751935,5277624.244206309],[517264.8316908911,5277618.351167357]]]},"properties":{"id_build":1039,"id_source":"w145198240","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.8205342926,5277679.713908819],[516929.8151957845,5277673.3818245465],[516942.61284830334,5277675.51959992],[516949.48080676084,5277676.662104977],[516948.4864479479,5277682.883046969],[516928.8205342926,5277679.713908819]]]},"properties":{"id_build":1040,"id_source":"w145198250","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.33585802716,5277498.531987958],[516883.7117883284,5277490.200485019],[516883.8645622765,5277489.311808819],[516893.6227578269,5277490.896074467],[516892.1694586032,5277500.005330021],[516887.26016869093,5277499.268678694],[516882.33585802716,5277498.531987958]]]},"properties":{"id_build":1041,"id_source":"w145198257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.52041002514,5277762.039496896],[516881.126642796,5277760.151875611],[516888.7047164715,5277762.396654348],[516888.47653194936,5277763.396251952],[516888.17325328063,5277764.39563172],[516880.52041002514,5277762.039496896]]]},"properties":{"id_build":1042,"id_source":"w145198269","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68603405985,5277216.274875673],[517311.6909906801,5277214.607791896],[517317.0979558385,5277214.735010451],[517317.15884368366,5277219.514207313],[517311.8269842338,5277219.387211989],[517311.68603405985,5277216.274875673]]]},"properties":{"id_build":1043,"id_source":"w145198282","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517194.6379432247,5277616.076223713],[517196.72491842194,5277608.691580712],[517206.1262330477,5277611.508971352],[517204.07728758606,5277618.727013513],[517199.2675667814,5277617.379122672],[517194.6379432247,5277616.076223713]]]},"properties":{"id_build":1044,"id_source":"w145198287","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.6943018657,5277600.412466364],[517131.56845467334,5277606.9546376085],[517131.04114566697,5277607.508785695],[517124.37359732424,5277602.043312268],[517130.02609658544,5277595.169264499],[517133.51754333824,5277597.913581467],[517136.6943018657,5277600.412466364]]]},"properties":{"id_build":1045,"id_source":"w145198288","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516497.4462509334,5277687.922390335],[516496.9815075305,5277692.922368944],[516493.67795138183,5277692.690728686],[516494.2976056599,5277686.024090221],[516497.52575540286,5277686.366657019],[516497.4462509334,5277687.922390335]]]},"properties":{"id_build":1046,"id_source":"w145198307","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.92921163514,5277611.790659849],[517158.34637505485,5277617.70293306],[517154.1629849796,5277622.969752894],[517149.9796024498,5277628.236575758],[517142.6368856515,5277622.546812207],[517150.92921163514,5277611.790659849]]]},"properties":{"id_build":1047,"id_source":"w145198309","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.52229591005,5277736.134906062],[517258.8324362067,5277742.143313647],[517259.3541438978,5277743.478540203],[517249.20420137566,5277747.560636712],[517246.2221535472,5277740.216562557],[517251.1090625661,5277738.286092185],[517256.52229591005,5277736.134906062]]]},"properties":{"id_build":1048,"id_source":"w145198320","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516365.93990097067,5276837.776194898],[516370.24094784446,5276830.675341124],[516373.7728272958,5276832.685786314],[516375.0550810935,5276833.422914182],[516379.1642120366,5276835.812861056],[516374.86253294686,5276843.135986039],[516365.93990097067,5276837.776194898]]]},"properties":{"id_build":1049,"id_source":"w145198340","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.1479783252,5277091.334204552],[517308.4518460283,5277091.566304306],[517308.0591527476,5277097.344410737],[517305.0556996871,5277097.113204004],[517304.75528831035,5277097.112311196],[517305.1479783252,5277091.334204552]]]},"properties":{"id_build":1050,"id_source":"w145198351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.64495246415,5276963.001836839],[517312.2674094054,5276970.21291108],[517312.8910454839,5276962.546115093],[517316.64495246415,5276963.001836839]]]},"properties":{"id_build":1051,"id_source":"w145198355","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516940.587916735,5277584.278934081],[516941.1996849695,5277580.501956726],[516941.8114539777,5277576.724979456],[516948.1614272399,5277577.843746841],[516955.9225024057,5277579.211138613],[516954.62320348853,5277586.987149617],[516940.587916735,5277584.278934081]]]},"properties":{"id_build":1052,"id_source":"w145198359","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516742.0360632537,5276738.852896258],[516742.55628572573,5276738.165325393],[516744.20753024495,5276735.947277856],[516744.7638377596,5276738.382838178],[516750.3096415697,5276742.62209828],[516749.6913314309,5276743.4649819955],[516749.17855538684,5276744.1748016],[516742.0360632537,5276738.852896258]]]},"properties":{"id_build":1053,"id_source":"w145198419","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.21977109084,5277266.704324083],[516438.39552622783,5277268.7025137395],[516432.92712247267,5277266.408711072],[516430.2178254396,5277263.089098466],[516434.0888168294,5277264.58929683],[516439.21977109084,5277266.704324083]]]},"properties":{"id_build":1054,"id_source":"w145198430","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517028.78603338404,5277495.624300791],[517028.3208194305,5277500.624236567],[517024.5672378405,5277500.168699529],[517024.8003306171,5277497.502023031],[517024.95702590316,5277495.279682827],[517028.78603338404,5277495.624300791]]]},"properties":{"id_build":1055,"id_source":"w145198466","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.44777502865,5277584.204970552],[517226.4847510935,5277583.673046141],[517226.7527214056,5277589.553142789],[517226.9781984168,5277594.566222096],[517218.94156604086,5277594.987006811],[517218.91353260435,5277594.308970155],[517218.44777502865,5277584.204970552]]]},"properties":{"id_build":1056,"id_source":"w145198496","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516569.444219957,5276718.098484374],[516569.1460026441,5276717.319657694],[516569.525652173,5276715.875921313],[516570.72895723255,5276715.323646533],[516571.6258224656,5276716.882154985],[516569.444219957,5276718.098484374]]]},"properties":{"id_build":1057,"id_source":"w145198528","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516320.9921737129,5277144.618066646],[516321.9669446135,5277145.176497971],[516326.6778150262,5277152.524931469],[516324.79714656295,5277153.631056283],[516320.0105495,5277146.504691626],[516320.9921737129,5277144.618066646]]]},"properties":{"id_build":1058,"id_source":"w145198533","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517206.6812177112,5277652.410118041],[517209.0318520954,5277644.748408378],[517218.06473892834,5277647.698097697],[517220.36046598817,5277648.4495256655],[517217.93472249206,5277656.111008729],[517211.25745413237,5277653.979604906],[517206.6812177112,5277652.410118041]]]},"properties":{"id_build":1059,"id_source":"w145198537","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.65975057654,5277273.3286337815],[516417.619397477,5277272.478217547],[516420.7201475874,5277264.818314036],[516425.02609687555,5277266.542012722],[516421.93285204144,5277274.201935156],[516419.65975057654,5277273.3286337815]]]},"properties":{"id_build":1060,"id_source":"w145198623","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.85725529277,5276929.777185755],[517149.4091715445,5276929.498373813],[517149.43071833707,5276934.933175176],[517149.49784583616,5276950.392924101],[517138.4574502347,5276950.360419199],[517130.8718722981,5276950.3380980315],[517130.85725529277,5276929.777185755]]]},"properties":{"id_build":1061,"id_source":"w145198655","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.594872084,5277674.907166976],[516992.895589884,5277678.622475713],[516989.7137552253,5277683.003217119],[516982.2194649065,5277677.757773318],[516988.1012251639,5277669.439437679],[516988.7003671664,5277669.996885787],[516995.594872084,5277674.907166976]]]},"properties":{"id_build":1062,"id_source":"w145198663","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517260.63113729557,5276755.337461616],[517256.6118783907,5276755.670083226],[517252.8180075433,5276755.981147388],[517252.24414876866,5276746.86598256],[517260.0566318601,5276746.444573673],[517260.344543638,5276750.668739946],[517260.63113729557,5276755.337461616]]]},"properties":{"id_build":1063,"id_source":"w145198696","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.29001413047,5277409.2963406835],[517309.2352066186,5277409.10646048],[517309.9898625848,5277407.875050837],[517312.6176608958,5277408.105144051],[517312.5422315854,5277408.216059689],[517313.29001413047,5277409.2963406835]]]},"properties":{"id_build":1064,"id_source":"w145198701","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.0188873112,5277670.174079485],[517236.5150039781,5277670.836466519],[517230.799526758,5277673.598046585],[517225.7239507906,5277663.135868979],[517228.7471659696,5277661.666653488],[517233.0187458184,5277659.60097891],[517238.0188873112,5277670.174079485]]]},"properties":{"id_build":1065,"id_source":"w145198709","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.99153994734,5277760.954639639],[517226.05208952754,5277755.271882219],[517230.1477155177,5277751.738637133],[517234.4089490773,5277748.07251721],[517239.4975989311,5277754.089143456],[517231.2158358977,5277761.288723498],[517230.99153994734,5277760.954639639]]]},"properties":{"id_build":1066,"id_source":"w145198727","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.9804047673,5277139.4038074305],[517286.9645665943,5277144.738474908],[517281.4086508811,5277144.166283085],[517281.7993357643,5277139.0550079355],[517286.9053024706,5277139.403584457],[517286.9804047673,5277139.4038074305]]]},"properties":{"id_build":1067,"id_source":"w145198752","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.96685196826,5277396.478042028],[516795.974226132,5277393.921846064],[516795.91259292787,5277389.253793339],[516795.9199670508,5277386.697597406],[516795.8560893919,5277382.807517402],[516806.2207336119,5277382.504006795],[516806.08817971125,5277376.390930879],[516809.91824026156,5277376.401987762],[516812.39683566446,5277376.298004606],[516816.6023924247,5277376.310150188],[516819.3062856879,5277376.206820714],[516826.6663313575,5277376.116947264],[516829.36990366125,5277376.124761416],[516833.5006826781,5277376.025563175],[516836.0540565685,5277376.032946171],[516843.6394005285,5277375.943745667],[516846.41839374206,5277375.840646045],[516850.3986531884,5277375.852164152],[516852.87692793837,5277375.859337179],[516856.9326083959,5277375.759938181],[516856.9781039489,5277385.98493918],[516849.4678718758,5277386.074339614],[516846.23861044773,5277386.06499503],[516831.9694595723,5277386.1348653985],[516828.8152973029,5277386.125747588],[516814.6209251395,5277386.307016496],[516811.2414656909,5277386.297257548],[516805.6838115704,5277386.392352721],[516805.82695209485,5277388.837843242],[516805.8176487976,5277392.060872907],[516805.98455877596,5277412.288813229],[516806.0509956642,5277415.289781872],[516806.1594873648,5277429.738280173],[516806.22560307465,5277432.850387863],[516806.46728671837,5277453.189685249],[516806.45926616655,5277455.968159376],[516806.4701151141,5277457.413009286],[516806.51254834945,5277463.525825855],[516796.599919438,5277463.386079696],[516796.5373260273,5277459.051443348],[516796.5443799553,5277456.606386101],[516796.4089325517,5277451.4935603915],[516796.416307038,5277448.937364209],[516796.3023412614,5277436.37822806],[516796.3090744112,5277434.04430986],[516796.3241438367,5277428.820778686],[516796.25609902584,5277426.3755049],[516796.20280279365,5277418.817838991],[516796.2095358689,5277416.483920857],[516796.07376632886,5277411.48223444],[516796.1552775183,5277409.259671939],[516795.96685196826,5277396.478042028]]]},"properties":{"id_build":1068,"id_source":"w145198754","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516975.8024655923,5277457.570860223],[516983.6130010012,5277457.482499225],[516986.1663393261,5277457.48994814],[516990.8224268599,5277457.503534341],[516993.1504706268,5277457.5103288395],[516995.55361257825,5277457.5173434885],[516995.4895450287,5277453.738399509],[516995.4976557851,5277450.959925434],[516995.4368323774,5277446.069591873],[516995.4446186602,5277443.402256795],[516995.39028361184,5277436.289144086],[516995.3974209982,5277433.8440869665],[516995.4123446139,5277428.731694843],[516995.41948199185,5277426.286637752],[516995.30562019657,5277413.838636095],[516995.3127574956,5277411.393579065],[516995.3276809325,5277406.281187121],[516995.335142646,5277403.724991164],[516995.27074965026,5277400.057186459],[517005.2589069572,5277400.0863510035],[517005.31355526915,5277407.088324472],[517005.3038168743,5277410.422493128],[517005.31951109186,5277430.761141661],[517005.3113956983,5277433.539615642],[517005.3452677645,5277447.654483011],[517005.41095211543,5277450.877732269],[517005.4578083502,5277460.547041437],[516995.6196266261,5277460.629453708],[516995.6752586634,5277467.298010833],[516988.11259217444,5277467.375964834],[516985.303859935,5277467.389997932],[516970.97521519114,5277467.325985126],[516967.82854175055,5277467.339041585],[516953.5899498634,5277467.297562002],[516950.4358961197,5277467.266150402],[516936.43716531934,5277467.3810069775],[516932.88512419834,5277467.337333161],[516927.48557387304,5277467.321631608],[516927.58910779457,5277457.541621001],[516931.7946060732,5277457.553849934],[516934.3479443126,5277457.561276126],[516938.62854077114,5277457.573728427],[516941.33207537653,5277457.581594661],[516948.84189372056,5277457.603451896],[516951.3204573603,5277457.499527947],[516956.20183937385,5277457.513742424],[516958.7551776576,5277457.521179318],[516965.9646033933,5277457.5421836525],[516968.893432598,5277457.550719215],[516973.0238327579,5277457.562759047],[516975.8024655923,5277457.570860223]]]},"properties":{"id_build":1069,"id_source":"w145198761","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516444.3315919081,5277323.455641031],[516442.83524355944,5277321.4508980205],[516444.8676501007,5277319.789540621],[516447.7258434793,5277318.241656498],[516448.399545355,5277319.021538524],[516451.7095960551,5277317.030373559],[516455.54346441495,5277315.707529894],[516458.6241351962,5277315.160538381],[516464.25757844344,5277314.843046264],[516468.91189286974,5277315.52304847],[516472.5132341596,5277316.755774417],[516475.6633451306,5277318.20950539],[516477.9116260808,5277319.882965389],[516478.6645128423,5277319.218257187],[516483.38825853734,5277321.898984551],[516480.52376562916,5277325.669630109],[516481.94531472446,5277327.5630313065],[516477.35321563715,5277331.439927978],[516474.58552977786,5277327.542201708],[516473.0882495321,5277325.870867725],[516471.0646403859,5277324.420324818],[516468.81510178815,5277323.191423235],[516464.1611077654,5277322.400282134],[516459.72958455107,5277322.610032187],[516457.3251308673,5277323.047794618],[516455.9714478861,5277323.710807467],[516452.8106570585,5277326.0358112985],[516449.79692841467,5277329.472630669],[516448.8174909188,5277330.581261884],[516444.3231167041,5277326.456392571],[516445.6045231288,5277324.792914377],[516444.3315919081,5277323.455641031]]]},"properties":{"id_build":1070,"id_source":"w145198767","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517253.71572939714,5277286.932264318],[517265.970993213,5277287.346469401],[517265.63424418634,5277297.070212888],[517271.36386684765,5277297.26503016],[517271.5531145891,5277291.697482023],[517273.3628677684,5277291.758420723],[517273.4866627987,5277288.002259033],[517281.76196609804,5277288.282437341],[517281.70444768254,5277289.949365278],[517287.2913862273,5277290.14377468],[517287.19271927245,5277293.022005442],[517289.6257715266,5277293.095913856],[517289.4937300776,5277297.09655861],[517290.8078526864,5277297.144917004],[517290.7173872094,5277299.789778283],[517290.6107465962,5277302.823581238],[517284.7910097163,5277302.62847747],[517284.57773484517,5277308.696083625],[517282.587779741,5277308.623492515],[517282.47228091693,5277312.112942996],[517274.354688707,5277311.844345386],[517274.40423320944,5277310.332989555],[517268.9600038604,5277310.139015679],[517269.07516497944,5277306.760703896],[517267.0852090499,5277306.688118091],[517267.2165757329,5277302.909750673],[517265.36927587,5277302.848702527],[517265.4182578338,5277301.526282829],[517263.00773891475,5277301.45245132],[517262.97496381024,5277302.374815405],[517262.00906827365,5277303.927910415],[517261.1862612081,5277302.814071922],[517260.50838265754,5277303.478901765],[517259.61179287283,5277301.920285125],[517258.1809358969,5277303.249722645],[517257.35911624494,5277301.802467893],[517255.70197105524,5277303.464655042],[517254.58106746234,5277301.571954662],[517253.37551212276,5277302.902061041],[517252.25361971743,5277301.3427779125],[517250.89720590226,5277302.894717617],[517249.99896709557,5277301.891797135],[517250.54409618955,5277295.336157581],[517250.02004055097,5277294.77890539],[517251.22526749165,5277293.559937258],[517250.17715591914,5277292.445432805],[517251.1557651793,5277291.670352894],[517251.45715441153,5277291.337826165],[517250.1837414244,5277290.222654161],[517251.9904308959,5277288.783188382],[517250.64257562894,5277287.445515896],[517252.74999702035,5277285.895801468],[517252.9752982436,5277285.896469079],[517253.71572939714,5277286.932264318]]]},"properties":{"id_build":1071,"id_source":"w145198772","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.5810001403,5277528.995463378],[517286.63751346356,5277528.070200271],[517284.9577295636,5277529.78788214],[517278.07289532485,5277536.824832636],[517275.82066322037,5277539.118746039],[517276.5395180197,5277539.821060907],[517277.99965728074,5277541.259099455],[517278.1263328721,5277541.592895262],[517278.0505760943,5277541.814950341],[517277.9744894904,5277542.148144402],[517277.8236356259,5277542.369976617],[517277.6727817719,5277542.591808835],[517277.29597700876,5277543.035250427],[517276.9945992006,5277543.367775921],[517276.7085376706,5277543.600320924],[517276.32478399936,5277543.8548040325],[517275.98658329906,5277543.942712411],[517275.5884038816,5277543.997100842],[517275.3180543947,5277543.99629863],[517273.1016107561,5277541.822493115],[517267.50488664134,5277547.540712478],[517263.6710246765,5277543.783926254],[517264.0476306101,5277543.407167169],[517260.88018410164,5277540.308084745],[517261.656057049,5277539.510177449],[517265.21141942375,5277535.886443514],[517264.48508601607,5277535.17299389],[517269.77296408534,5277529.776161401],[517270.5666872441,5277530.556495558],[517274.20493145246,5277526.844101012],[517278.31020214973,5277522.655192957],[517277.50896920095,5277521.87483547],[517282.8270093339,5277516.444762345],[517283.62820933363,5277517.236234456],[517286.9275085393,5277513.867375482],[517287.78622680577,5277512.991919687],[517291.2082791726,5277516.336280679],[517291.584888658,5277515.959523383],[517295.2315689725,5277519.526833844],[517289.53687819623,5277525.34476699],[517291.813234844,5277527.574326631],[517291.8943564318,5277528.074697364],[517291.6824335717,5277528.629767697],[517291.38793676154,5277529.173478796],[517291.1391585311,5277529.495045788],[517290.7555353284,5277529.705072355],[517290.356958714,5277529.892826549],[517290.0263327246,5277529.958528616],[517289.69580576086,5277529.990889011],[517289.2451891935,5277530.000664807],[517288.8998738112,5277529.955183364],[517288.6824547941,5277529.832283772],[517288.33766744303,5277529.608980005],[517287.95552944543,5277529.318881376],[517287.5810001403,5277528.995463378]]]},"properties":{"id_build":1072,"id_source":"w145198776","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8020198006,5277219.555926856],[517299.7346895066,5277219.6846907595],[517299.6638810031,5277218.239661671],[517305.7470848416,5277218.257739056],[517305.67594748177,5277216.923848815],[517305.6779294405,5277216.257015304],[517311.68603405985,5277216.274875673],[517311.8269842338,5277219.387211989],[517317.15884368366,5277219.514207313],[517317.14363855065,5277224.626597609],[517312.1748206831,5277253.952756548],[517312.1000503148,5277253.841394322],[517312.2677661277,5277247.951477924],[517310.5404454466,5277247.946342236],[517310.70948150445,5277241.611870156],[517310.80077339703,5277236.166286236],[517310.89305669884,5277230.3872856],[517310.90197824576,5277227.386534737],[517305.27005155873,5277227.147513353],[517305.1866924229,5277229.925763161],[517299.103830978,5277229.796547409],[517299.1743092522,5277231.352715437],[517275.89494281186,5277230.61675739],[517275.7351776161,5277233.839340454],[517275.4172964689,5277239.728812033],[517275.2492880214,5277245.729868251],[517275.09941591375,5277245.618283683],[517270.14374361694,5277245.270162741],[517263.235116873,5277245.027395216],[517263.5523264002,5277239.360200797],[517261.9007632028,5277239.133024376],[517261.90142218943,5277238.91074653],[517262.0690875191,5277233.020828944],[517262.2353008839,5277230.1539123375],[517262.3853079628,5277227.687051336],[517263.1722367564,5277215.575135687],[517263.33924480824,5277209.907496184],[517264.46576563176,5277209.910836336],[517265.7424892333,5277209.914622106],[517278.2080004745,5277210.396159421],[517278.20437265426,5277211.618687517],[517277.8861581888,5277217.619297683],[517277.8097377198,5277218.063630502],[517276.3077120479,5277218.059173567],[517276.3014464867,5277220.170813034],[517277.95334432827,5277220.286854604],[517277.9477377607,5277222.176216242],[517281.62736818875,5277222.298276383],[517281.5582045634,5277220.297552924],[517281.56051362946,5277219.519580488],[517281.8619083071,5277219.18705536],[517288.0195523988,5277219.427614972],[517293.8020198006,5277219.555926856]]]},"properties":{"id_build":1073,"id_source":"w145198792","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.0722881948,5277078.6994201355],[517279.72377498174,5277079.233365161],[517278.9468784715,5277090.478414992],[517272.26403647126,5277090.014028072],[517272.4837864961,5277086.824965532],[517271.5151559016,5277086.755408363],[517271.6642140699,5277084.610850938],[517272.0722881948,5277078.6994201355]]]},"properties":{"id_build":1074,"id_source":"w145198805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.04941684846,5276721.261790785],[517229.18407889927,5276722.124673508],[517228.6724637682,5276717.344148237],[517228.2343115845,5276713.119539407],[517232.47898728156,5276712.7653371645],[517237.3246575328,5276712.368460998],[517237.6867085034,5276716.926264696],[517238.04941684846,5276721.261790785]]]},"properties":{"id_build":1075,"id_source":"w145198829","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516388.0159817567,5276759.595907595],[516386.78580745275,5276769.706161083],[516372.29421101866,5276768.220583519],[516373.6029050229,5276756.888010903],[516376.90637177246,5276757.3418591395],[516376.7530318722,5276758.452825169],[516379.9517225836,5276758.773012809],[516388.0159817567,5276759.595907595]]]},"properties":{"id_build":1076,"id_source":"w145198855","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516707.2041310714,5277525.589477363],[516697.88409707794,5277528.341236534],[516695.85405287094,5277521.322487316],[516694.09174130316,5277515.215853709],[516701.83315344923,5277513.01525898],[516704.43414080795,5277522.580751888],[516706.23807149095,5277522.030228563],[516707.2041310714,5277525.589477363]]]},"properties":{"id_build":1077,"id_source":"w145198859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.7507537666,5277625.46647911],[516736.4114120963,5277624.265576548],[516741.1694968629,5277622.712184226],[516743.5505152978,5277630.387685748],[516731.599080129,5277634.243222365],[516728.9205378256,5277625.566611593],[516732.3781485362,5277624.465148969],[516732.7507537666,5277625.46647911]]]},"properties":{"id_build":1078,"id_source":"w145198861","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.30244434276,5277349.331020035],[516536.0125784041,5277347.854876917],[516542.1998948657,5277350.8287728885],[516541.45962505013,5277352.338171601],[516535.30244434276,5277349.331020035]]]},"properties":{"id_build":1079,"id_source":"w145198914","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.83120904403,5277140.802400232],[517316.56476083334,5277141.492233982],[517315.70558471355,5277152.603667785],[517308.6473060833,5277152.138122174],[517308.7316588048,5277149.026456032],[517308.20594357885,5277149.024893284],[517308.51083461946,5277144.991421646],[517308.83120904403,5277140.802400232]]]},"properties":{"id_build":1080,"id_source":"w145198926","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516441.41824926453,5276865.773750677],[516442.0979671754,5276864.441992847],[516444.9485357922,5276865.6725795865],[516440.6402060732,5276875.329572671],[516429.689201371,5276870.186236119],[516433.392278691,5276862.083483495],[516437.6978014937,5276864.062809163],[516441.41824926453,5276865.773750677]]]},"properties":{"id_build":1081,"id_source":"w145198952","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.4361986754,5276735.114747594],[516432.6521126781,5276738.449548707],[516421.19606512896,5276739.184097037],[516420.26040760643,5276724.733294286],[516430.3342521982,5276724.083755826],[516430.80178691895,5276731.4091829285],[516431.0464593106,5276735.199737985],[516432.4361986754,5276735.114747594]]]},"properties":{"id_build":1082,"id_source":"w145198991","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.6060773505,5276928.914093929],[517255.9100391946,5276929.146163577],[517255.9834974633,5276929.70208049],[517263.2667057507,5276930.390507137],[517262.9239870775,5276934.523893388],[517262.6437909012,5276937.83503016],[517251.9064247215,5276936.914089875],[517252.6060773505,5276928.914093929]]]},"properties":{"id_build":1083,"id_source":"w145199005","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516847.04784737,5277573.5603475105],[516837.96211284737,5277573.200642968],[516836.7769578576,5277567.529079743],[516842.55265655194,5277569.879724056],[516844.95639510837,5277569.664398686],[516847.5119354086,5277568.893814017],[516847.04784737,5277573.5603475105]]]},"properties":{"id_build":1084,"id_source":"w145199019","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516517.87437857996,5276866.545821611],[516516.29841780796,5276866.0967924455],[516514.1004930917,5276873.092363711],[516504.7210995466,5276869.953858616],[516505.7983120077,5276866.178160099],[516507.60378830886,5276859.848311828],[516518.8595815456,5276863.436703045],[516517.87437857996,5276866.545821611]]]},"properties":{"id_build":1085,"id_source":"w145199024","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516813.8172490181,5277560.572051392],[516816.03580577805,5277572.470429654],[516814.98381001706,5277572.689670962],[516812.879818738,5277573.128154147],[516813.25016676163,5277574.907462288],[516815.2790928568,5277574.457648437],[516818.5277698792,5277593.7053518165],[516809.73731661006,5277595.124782849],[516809.5155572343,5277593.901603477],[516806.0599348033,5277594.302844678],[516802.66121607705,5277574.988031464],[516801.6089646943,5277575.296186379],[516799.5411504937,5277563.198196851],[516813.8172490181,5277560.572051392]]]},"properties":{"id_build":1086,"id_source":"w145199036","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516315.57610974263,5276718.826502036],[516315.1912301204,5276722.159615141],[516304.0777872128,5276721.239372078],[516305.17099253146,5276706.349711508],[516315.30868450925,5276707.044943266],[516314.785628106,5276714.123077524],[516314.44980570575,5276718.712206853],[516315.57610974263,5276718.826502036]]]},"properties":{"id_build":1087,"id_source":"w145199043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.0120262327,5276815.816218573],[516460.1773733125,5276818.814632372],[516449.37115493056,5276815.561044628],[516451.1070425362,5276809.920049414],[516453.54032015026,5276802.013774434],[516462.9955855617,5276804.930131058],[516459.81126551563,5276815.479405185],[516461.0120262327,5276815.816218573]]]},"properties":{"id_build":1088,"id_source":"w145199057","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.3548190538,5277722.977347649],[517016.63143001386,5277722.98107907],[517016.6720892632,5277734.762033749],[517013.81816925673,5277734.864832293],[517013.8246654388,5277732.6420520535],[517015.4019776696,5277732.535522075],[517015.3548190538,5277722.977347649]]]},"properties":{"id_build":1089,"id_source":"w145199086","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.25642012747,5277390.035091541],[516641.2040805077,5277390.365503206],[516643.36257283395,5277397.1512048],[516635.9962065575,5277399.464089047],[516634.37305314565,5277394.558183361],[516632.49671915994,5277388.895803838],[516641.0653181156,5277386.364071518],[516642.25642012747,5277390.035091541]]]},"properties":{"id_build":1090,"id_source":"w145199089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517083.6209491524,5277537.217911613],[517083.7768180354,5277535.284534146],[517084.5651427995,5277535.3535314035],[517084.51816027303,5277536.009119142],[517089.0079275006,5277536.377943924],[517088.87677173625,5277537.566756242],[517084.07185824646,5277537.108094824],[517083.6209491524,5277537.217911613]]]},"properties":{"id_build":1091,"id_source":"w145199105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.3047489782,5277631.085358018],[517090.352082201,5277628.505787879],[517092.73306788615,5277620.688525489],[517094.4467520017,5277615.069875689],[517100.59908714844,5277616.977323107],[517103.3750319928,5277617.874597277],[517099.13015157694,5277631.310062161],[517098.3047489782,5277631.085358018]]]},"properties":{"id_build":1092,"id_source":"w145199118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516395.1962089976,5276716.9384642085],[516390.7871916845,5276711.658030072],[516388.68373153027,5276709.140352355],[516387.7805611541,5276709.804648988],[516385.6096270558,5276707.242326631],[516394.3421613572,5276700.1539621595],[516403.1000502829,5276710.736897519],[516395.1962089976,5276716.9384642085]]]},"properties":{"id_build":1093,"id_source":"w145199120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.3900979841,5277269.19752716],[516448.81370690383,5277268.12066759],[516450.2239341949,5277268.713692828],[516449.8078351132,5277269.790573517],[516449.4899321151,5277270.66767997],[516448.0120205106,5277270.107805649],[516448.3900979841,5277269.19752716]]]},"properties":{"id_build":1094,"id_source":"w145199125","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516397.5495825426,5276814.748052596],[516393.843453552,5276813.270573248],[516387.7215832955,5276810.830495691],[516391.2024476307,5276801.615694405],[516404.1824317789,5276806.431253263],[516400.0972550886,5276816.866882117],[516397.1709207943,5276815.858383732],[516397.5495825426,5276814.748052596]]]},"properties":{"id_build":1095,"id_source":"w145199128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517064.16151769436,5277161.085653414],[517073.32461489085,5277160.890234871],[517074.9020831122,5277160.783720737],[517075.4215547496,5277214.132382513],[517056.4199420832,5277214.410108076],[517055.974747306,5277161.283946206],[517064.16151769436,5277161.085653414]]]},"properties":{"id_build":1096,"id_source":"w145199129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517052.2106550375,5277497.693381194],[517051.7847276643,5277502.093274695],[517051.43624209,5277505.693187603],[517041.0753803781,5277504.7737325495],[517041.47429078986,5277496.772825716],[517044.7776126296,5277497.115915505],[517051.30980850407,5277497.579602831],[517052.2106550375,5277497.693381194]]]},"properties":{"id_build":1097,"id_source":"w145199142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.62179970986,5277685.440208232],[517138.62212689593,5277685.32906923],[517128.2596361006,5277685.076291969],[517128.521218064,5277672.740525662],[517140.6112524874,5277672.887249405],[517140.4240857207,5277685.445514334],[517138.62179970986,5277685.440208232]]]},"properties":{"id_build":1098,"id_source":"w145199160","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.1399599993,5277584.007911696],[517039.9611442825,5277577.567125485],[517048.36480787414,5277580.036806809],[517046.4540198661,5277586.299504196],[517045.104416194,5277590.696694272],[517034.52556964697,5277587.331533109],[517035.73914669896,5277583.222906441],[517038.1399599993,5277584.007911696]]]},"properties":{"id_build":1099,"id_source":"w145199169","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516513.09519844904,5277280.528004139],[516517.1458937331,5277282.206591331],[516518.9464122128,5277282.878538367],[516518.2657788424,5277284.543704842],[516516.60158964456,5277288.76229739],[516510.9002664704,5277286.523330353],[516513.09519844904,5277280.528004139]]]},"properties":{"id_build":1100,"id_source":"w145199220","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.92417471454,5277529.437573266],[517038.9303636166,5277519.215644675],[517043.50967772846,5277519.784748219],[517043.3555787487,5277521.117976226],[517050.0366405903,5277522.026657791],[517048.9592409092,5277530.91469692],[517043.5618315636,5277530.187598127],[517037.92417471454,5277529.437573266]]]},"properties":{"id_build":1101,"id_source":"w145199224","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516865.7419256131,5277627.183916397],[516859.8847599863,5277627.055811127],[516859.8186760143,5277623.943701801],[516857.5661167781,5277623.826038912],[516857.67403805,5277612.490079046],[516862.9005392137,5277612.571899287],[516865.93429616815,5277612.625143362],[516865.7419256131,5277627.183916397]]]},"properties":{"id_build":1102,"id_source":"w145199243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.6725980245,5277648.964976726],[517059.2697021393,5277651.531735],[517059.8917261743,5277651.967003548],[517060.5437232487,5277652.424587992],[517058.130892278,5277655.751716249],[517053.2597684313,5277652.292106977],[517055.6725980245,5277648.964976726]]]},"properties":{"id_build":1103,"id_source":"w145199261","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.87093862,5276861.754107158],[517313.56727119745,5276861.410864172],[517314.11052624724,5276855.522067973],[517316.7151083504,5276863.643021023],[517316.87093862,5276861.754107158]]]},"properties":{"id_build":1104,"id_source":"w145199267","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.55961742136,5276833.147087084],[516456.90853687277,5276832.69786177],[516454.63556519826,5276839.6932427175],[516445.2554584294,5276836.777111489],[516446.8247209985,5276831.624659187],[516448.439426805,5276826.338968002],[516459.54510831233,5276829.926819849],[516458.55961742136,5276833.147087084]]]},"properties":{"id_build":1105,"id_source":"w145199282","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.0974204299,5277687.200262669],[516668.8131746561,5277688.521673278],[516667.9206237235,5277685.518339965],[516661.68199376215,5277687.50100008],[516658.9995562189,5277680.158089009],[516664.00580257195,5277678.460862074],[516669.748686388,5277676.521240855],[516673.0974204299,5277687.200262669]]]},"properties":{"id_build":1106,"id_source":"w145199295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517099.34014271223,5277713.220828837],[517117.1363247266,5277713.717687192],[517117.0416231547,5277720.385806872],[517117.0324733625,5277723.497699123],[517116.9485556233,5277726.498231579],[517099.0015703528,5277726.223210577],[517099.34014271223,5277713.220828837]]]},"properties":{"id_build":1107,"id_source":"w145199323","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.18774175027,5277764.645070088],[517274.54622188455,5277761.083719093],[517272.9778157622,5277758.18942548],[517280.5738883456,5277754.322068908],[517284.0094209218,5277760.667247523],[517279.0456109926,5277763.208732012],[517276.18774175027,5277764.645070088]]]},"properties":{"id_build":1108,"id_source":"w145199334","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516418.09365731716,5276827.253589403],[516410.53133633314,5276824.253727934],[516407.36535613413,5276823.000041615],[516406.7610608908,5276824.220876153],[516403.6100385303,5276822.989461969],[516407.8454302954,5276812.554258718],[516421.80019286467,5276817.928302491],[516418.09365731716,5276827.253589403]]]},"properties":{"id_build":1109,"id_source":"w145199366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.831487615,5277293.82924783],[516772.5136142775,5277273.823157702],[516787.90986760077,5277273.645250027],[516788.09394418047,5277313.989550406],[516779.63017070084,5277313.965152176],[516775.627339054,5277313.953617635],[516775.6105185767,5277293.726114336],[516772.831487615,5277293.82924783]]]},"properties":{"id_build":1110,"id_source":"w145199382","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.490244011,5276754.180993914],[516363.2393288448,5276756.42543583],[516368.26310862147,5276759.429213085],[516363.05635523173,5276768.083478931],[516351.4353575471,5276760.71561473],[516357.3205629337,5276751.174126531],[516360.2450632124,5276752.849437776],[516359.490244011,5276754.180993914]]]},"properties":{"id_build":1111,"id_source":"w145199406","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.15998487856,5276835.544942617],[516486.6031866017,5276823.001559063],[516495.75482801854,5276827.028507132],[516492.8374993587,5276833.45523536],[516491.37127959623,5276836.685249599],[516492.4966131985,5276837.132995665],[516491.136518817,5276840.018777314],[516481.15998487856,5276835.544942617]]]},"properties":{"id_build":1112,"id_source":"w145199410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517162.3005867164,5277626.494645106],[517163.2807666829,5277625.163855217],[517162.38125250686,5277624.605503624],[517163.4424266258,5277621.274433316],[517166.58990766184,5277623.50651254],[517163.64936600055,5277627.498881018],[517162.3005867164,5277626.494645106]]]},"properties":{"id_build":1113,"id_source":"w145199417","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.30045372434,5277496.507053572],[516566.74324686517,5277495.769366962],[516570.83964489703,5277494.525144275],[516573.146792844,5277501.866943221],[516562.6236435509,5277505.171193343],[516560.01830594044,5277497.050571295],[516564.07737411035,5277495.728439768],[516564.30045372434,5277496.507053572]]]},"properties":{"id_build":1114,"id_source":"w145199423","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.1088877172,5277599.814312529],[516736.50042925775,5277601.13761677],[516736.05336572556,5277599.913792564],[516732.8286022651,5277600.993694298],[516727.7847848193,5277602.668526363],[516725.10398694786,5277594.769890758],[516737.1305950232,5277590.914556757],[516740.1088877172,5277599.814312529]]]},"properties":{"id_build":1115,"id_source":"w145199470","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516519.2186466431,5276842.765726808],[516527.6239056912,5276845.12351173],[516524.3618608239,5276856.561649183],[516514.45607390796,5276853.643914397],[516515.2150135666,5276850.867572869],[516516.8663997754,5276851.20567589],[516517.5720731299,5276848.673691057],[516519.2186466431,5276842.765726808]]]},"properties":{"id_build":1116,"id_source":"w145199501","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516365.9803641554,5276796.654606386],[516371.41022994556,5276788.778948236],[516383.25427762134,5276796.925458705],[516377.14500580257,5276806.021732263],[516374.3710628611,5276804.235695841],[516375.1255665534,5276803.015280389],[516371.85729261715,5276800.738840313],[516365.9803641554,5276796.654606386]]]},"properties":{"id_build":1117,"id_source":"w145199508","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517131.56845467334,5277606.9546376085],[517136.6943018657,5277600.412466364],[517140.28294216463,5277603.301555473],[517143.8865327003,5277606.212918843],[517138.9869525679,5277612.422330082],[517136.06539792626,5277609.9686509995],[517135.83912787656,5277610.301404848],[517131.56845467334,5277606.9546376085]]]},"properties":{"id_build":1118,"id_source":"w145199530","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516457.12561083207,5276782.463311396],[516467.1905608224,5276782.269484921],[516467.3725103388,5276797.60728369],[516455.73097471934,5276797.574374829],[516455.66623202333,5276793.90658043],[516457.2437874173,5276793.799898814],[516457.20280259114,5276789.698726571],[516457.12561083207,5276782.463311396]]]},"properties":{"id_build":1119,"id_source":"w145199542","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.7177350956,5277094.376954088],[517018.4107492735,5277165.619627101],[516968.4656840355,5277166.251840211],[516967.54836966057,5277094.452823486],[516979.03943255765,5277094.37518008],[516979.11323910276,5277094.819954682],[517017.7177350956,5277094.376954088]]]},"properties":{"id_build":1120,"id_source":"w145199594","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.38961499673,5277504.140748549],[517070.2318445564,5277503.636607871],[517070.8278235259,5277497.592343345],[517071.268785145,5277493.192495276],[517080.06025114213,5277494.06294363],[517079.02329491527,5277504.507054715],[517076.14787244523,5277504.220770451],[517075.38961499673,5277504.140748549]]]},"properties":{"id_build":1121,"id_source":"w145199628","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516460.22508897324,5277758.279730824],[516453.60746421723,5277764.218122583],[516455.34710162744,5277757.154541378],[516455.8023798273,5277755.488729661],[516460.6049599237,5277756.724846171],[516460.22508897324,5277758.279730824]]]},"properties":{"id_build":1122,"id_source":"w145199669","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516641.99311113067,5277560.967472024],[516642.9700054819,5277560.747984792],[516641.80945500743,5277556.910340945],[516640.21747027885,5277551.626645617],[516649.2367335291,5277548.985074123],[516653.7747313046,5277564.001939129],[516644.0026150976,5277567.308190554],[516641.99311113067,5277560.967472024]]]},"properties":{"id_build":1123,"id_source":"w145199672","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516950.0416367462,5277097.069191187],[516951.0485045119,5277163.978311386],[516933.39889491827,5277164.149235542],[516932.4627257536,5277098.685142985],[516946.50792204705,5277098.3925837],[516946.51148009725,5277097.170055785],[516950.0416367462,5277097.069191187]]]},"properties":{"id_build":1124,"id_source":"w145199681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.70864058106,5276833.494238675],[517231.7178490799,5276830.382350814],[517237.05105308595,5276830.175855278],[517237.46319948876,5276843.180434991],[517222.5306241548,5276843.636380942],[517217.5581066838,5276843.788386236],[517217.21149281523,5276834.007056805],[517231.70864058106,5276833.494238675]]]},"properties":{"id_build":1125,"id_source":"w145199683","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516350.14115640917,5276740.151132215],[516350.2065905175,5276743.596647285],[516338.86475332006,5276743.7870935155],[516338.52819376724,5276729.8936843565],[516348.29279937886,5276729.6988093],[516348.538234479,5276735.912208629],[516348.71380343806,5276740.25826458],[516350.14115640917,5276740.151132215]]]},"properties":{"id_build":1126,"id_source":"w145199695","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516788.67202937545,5277738.545643171],[516788.4225539184,5277731.309713717],[516790.3452653897,5277731.215232858],[516790.3401367104,5277732.993457078],[516794.2453778874,5277732.893581789],[516794.30476219987,5277738.339610129],[516788.67202937545,5277738.545643171]]]},"properties":{"id_build":1127,"id_source":"w145199712","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.9778157622,5277758.18942548],[517274.54622188455,5277761.083719093],[517276.18774175027,5277764.645070088],[517262.9029833845,5277762.271720974],[517272.52955811756,5277757.4101155335],[517272.9778157622,5277758.18942548]]]},"properties":{"id_build":1128,"id_source":"w145199726","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516619.6293858116,5277581.9090275755],[516618.2012820208,5277582.349510522],[516619.3169435474,5277586.131451677],[516611.12444702716,5277588.553148422],[516607.70329802216,5277576.873699197],[516617.2488183643,5277574.011299784],[516618.51346985856,5277578.215997581],[516619.6293858116,5277581.9090275755]]]},"properties":{"id_build":1129,"id_source":"w145199732","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.22431139875,5276770.278760565],[516430.2407983634,5276781.164857856],[516415.60247340694,5276778.456221229],[516417.2820850899,5276768.791799414],[516423.61041238345,5276769.943269086],[516428.4673920661,5276770.823859214],[516428.69647565734,5276769.490828693],[516432.22431139875,5276770.278760565]]]},"properties":{"id_build":1130,"id_source":"w145199742","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.598562462,5277470.247614064],[517047.87725226104,5277456.736744185],[517056.39114128397,5277457.528545718],[517055.88744014315,5277462.83955815],[517055.45341181435,5277467.43947929],[517054.9053587609,5277467.382303861],[517054.56431404693,5277471.004466187],[517046.598562462,5277470.247614064]]]},"properties":{"id_build":1131,"id_source":"w145199744","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.0659374689,5277257.856784983],[517129.59687434736,5277256.080108739],[517128.17126713664,5277255.631355234],[517128.6261222664,5277254.187874764],[517131.8525141051,5277255.19762614],[517130.7916201125,5277258.417561478],[517129.0659374689,5277257.856784983]]]},"properties":{"id_build":1132,"id_source":"w145199748","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.2027961482,5277444.580528358],[516360.1177173648,5277439.692946041],[516367.40757327614,5277437.824057725],[516367.0220833439,5277441.379449074],[516363.1138442752,5277442.479862051],[516362.50524873263,5277445.256647749],[516359.2027961482,5277444.580528358]]]},"properties":{"id_build":1133,"id_source":"w145199760","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516913.20762452687,5277651.438984495],[516913.17921107804,5277661.219216443],[516909.87468380295,5277661.320757027],[516909.80217077397,5277660.4314269],[516906.14469396824,5277660.53194443],[516898.912345889,5277660.733226169],[516898.7876405495,5277651.95280924],[516913.20762452687,5277651.438984495]]]},"properties":{"id_build":1134,"id_source":"w145199775","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.8210088191,5276856.949693304],[516426.7266689885,5276855.396291547],[516429.87704178755,5276856.849996086],[516425.6454039727,5276865.951517664],[516415.1437504848,5276861.254035217],[516418.6199284128,5276853.706332515],[516422.68553088605,5276855.540488871],[516425.8210088191,5276856.949693304]]]},"properties":{"id_build":1135,"id_source":"w145199782","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.5290364502,5277691.441493311],[517149.19156885636,5277691.806312729],[517149.1109080966,5277693.695454577],[517138.29786166846,5277693.441332153],[517136.19519754517,5277693.435142516],[517136.20108608407,5277691.434640453],[517138.5290364502,5277691.441493311]]]},"properties":{"id_build":1136,"id_source":"w145199789","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.23588252475,5277562.306815518],[517216.8850483616,5277553.970281655],[517218.76280078327,5277553.864695014],[517218.76970354444,5277551.530776469],[517225.0037393766,5277551.215797633],[517225.205769867,5277556.539999043],[517225.4220958865,5277562.108750697],[517217.23588252475,5277562.306815518]]]},"properties":{"id_build":1137,"id_source":"w145199793","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.2633734079,5277650.927055184],[517305.22921247734,5277645.144702261],[517310.78927409067,5277644.160972535],[517314.2198818245,5277652.173252719],[517308.81034903164,5277653.04628671],[517308.36704430747,5277650.599889224],[517306.2633734079,5277650.927055184]]]},"properties":{"id_build":1138,"id_source":"w145199826","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517181.52299790696,5277092.85748257],[517182.0444556251,5277145.205900331],[517162.89175147435,5277145.705113536],[517162.00294401177,5277039.56392373],[517180.85591068736,5277038.952681544],[517181.4613406588,5277088.300566147],[517181.52299790696,5277092.85748257]]]},"properties":{"id_build":1139,"id_source":"w145199836","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.90735496255,5277480.068134649],[516837.22177445004,5277491.621809321],[516832.71815926937,5277490.830807341],[516833.17613649525,5277488.27591377],[516830.29360244784,5277487.845248609],[516826.3451289783,5277487.255908231],[516827.64781108726,5277478.257341519],[516838.90735496255,5277480.068134649]]]},"properties":{"id_build":1140,"id_source":"w145199853","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516347.70144341077,5276779.821164273],[516355.6054611241,5276773.508393969],[516364.2866403355,5276784.646755586],[516355.8537592765,5276792.069426052],[516353.53325280425,5276789.284415678],[516354.7374584342,5276788.398679724],[516352.304789044,5276785.435531292],[516347.70144341077,5276779.821164273]]]},"properties":{"id_build":1141,"id_source":"w145199896","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.29454351787,5277515.163186],[516984.44402513717,5277507.275605005],[516990.5240071147,5277508.293604544],[516991.13678840635,5277504.183215878],[516994.96514305664,5277504.750089556],[516993.8779630814,5277511.870984921],[516993.1277669363,5277516.747837721],[516983.29454351787,5277515.163186]]]},"properties":{"id_build":1142,"id_source":"w145199899","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.86229650106,5277699.7561596595],[517293.07027974125,5277693.454462949],[517300.53983110504,5277706.924594038],[517292.0395733353,5277711.789498765],[517288.62542651204,5277705.822255464],[517285.988235351,5277701.213228996],[517283.43104415934,5277702.539316369],[517281.86229650106,5277699.7561596595]]]},"properties":{"id_build":1143,"id_source":"w145199900","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.0978999462,5277340.135488573],[516608.45780324604,5277338.703105773],[516611.2852740029,5277347.935779733],[516604.6707733305,5277349.92854328],[516598.8830691797,5277351.679163732],[516596.7260918505,5277344.337784533],[516604.54374372965,5277341.803857822],[516604.0978999462,5277340.135488573]]]},"properties":{"id_build":1144,"id_source":"w145199905","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516747.58180589415,5277299.31355737],[516747.3999494456,5277284.209127739],[516757.5385372797,5277284.227184975],[516757.64587497147,5277299.120234851],[516747.58180589415,5277299.31355737]]]},"properties":{"id_build":1145,"id_source":"w145199931","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.1107918204,5276719.106563762],[517264.788876457,5276718.429141201],[517264.9559898191,5276720.33012738],[517268.3217047266,5276720.040029338],[517274.5347934438,5276719.491643403],[517275.3633927734,5276728.807617557],[517258.1065014145,5276730.334635257],[517257.1107918204,5276719.106563762]]]},"properties":{"id_build":1146,"id_source":"w145199945","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517105.1140177535,5277537.192107653],[517099.4931554629,5277533.285698277],[517104.6213162743,5277525.965526657],[517114.4384807543,5277532.996193245],[517109.6129884832,5277539.539266256],[517106.83259978064,5277537.586146961],[517105.4911362543,5277536.637515979],[517105.1140177535,5277537.192107653]]]},"properties":{"id_build":1147,"id_source":"w145199966","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517294.1865497695,5276988.941818927],[517305.9746122551,5276990.088240136],[517305.6622053503,5276994.121688616],[517305.34999703453,5276998.088453809],[517301.22026099626,5276997.7427623775],[517301.06509950396,5276999.409399284],[517293.4812352975,5276998.831171728],[517294.1865497695,5276988.941818927]]]},"properties":{"id_build":1148,"id_source":"w145199990","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.4866465984,5276965.508386825],[517260.8639967018,5276955.500990055],[517264.6812251169,5276954.867695418],[517270.1064857473,5276953.972436591],[517271.30142522673,5276961.311210912],[517271.75228355284,5276961.2347503025],[517273.746307332,5276962.507659499],[517273.8956592887,5276962.797066166],[517271.50380653894,5276963.979167647],[517270.977744976,5276964.088747172],[517262.4866465984,5276965.508386825]]]},"properties":{"id_build":1149,"id_source":"w145200002","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516801.8644214753,5276731.99006071],[516802.6925284538,5276731.325611464],[516804.2640142084,5276733.330661753],[516803.4359073318,5276733.995110778],[516801.85512230464,5276735.213087047],[516800.2839568692,5276733.096898561],[516801.8644214753,5276731.99006071]]]},"properties":{"id_build":1150,"id_source":"w145200027","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.04269481613,5277044.820975417],[516722.8841005644,5277034.17406849],[516740.7961658343,5277047.340036239],[516729.5623222627,5277062.422764093],[516718.77042659174,5277054.38970123],[516721.93785431224,5277049.842064273],[516715.04269481613,5277044.820975417]]]},"properties":{"id_build":1151,"id_source":"w145200035","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516681.3854584009,5277598.978915342],[516674.09379117173,5277601.514244714],[516673.94550837734,5277600.8469806025],[516671.2920938017,5277601.71738694],[516668.23277813854,5277602.720000236],[516665.5534903734,5277594.265697289],[516678.25720111583,5277589.967620575],[516681.3854584009,5277598.978915342]]]},"properties":{"id_build":1152,"id_source":"w145200058","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517109.460130801,5277591.552309646],[517101.7431513346,5277585.416938798],[517107.7730823964,5277577.877138723],[517111.33164696494,5277580.788349344],[517115.4146423225,5277584.123435694],[517114.96242935996,5277584.677805995],[517110.2140351195,5277590.554265791],[517109.460130801,5277591.552309646]]]},"properties":{"id_build":1153,"id_source":"w145200093","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4484362991,5277181.676966661],[517304.3226958926,5277182.021899091],[517308.10683294863,5277182.366566201],[517307.4077922643,5277190.14428096],[517302.7525471536,5277189.77479758],[517302.2474771746,5277195.463659368],[517299.5797532132,5277196.000318094],[517300.0943450314,5277189.633531014],[517299.7490755641,5277189.565821217],[517300.4484362991,5277181.676966661]]]},"properties":{"id_build":1154,"id_source":"w145200110","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516392.9671682374,5276841.742107808],[516393.4963526662,5276840.521060376],[516396.4214234223,5276841.974112429],[516391.9645094298,5276851.075023747],[516381.4643654101,5276845.82190796],[516385.24280957284,5276837.608197567],[516389.35997577617,5276839.80923674],[516392.9671682374,5276841.742107808]]]},"properties":{"id_build":1155,"id_source":"w145200119","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516397.5427002329,5276763.846035065],[516401.9720165928,5276764.569803208],[516408.65354264394,5276765.655567564],[516406.89758495515,5276775.764335581],[516392.5590381258,5276773.278881102],[516394.468314754,5276762.059143272],[516397.69666987064,5276762.5127918655],[516397.5427002329,5276763.846035065]]]},"properties":{"id_build":1156,"id_source":"w145200135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.84511304816,5277434.358718482],[516638.5647813451,5277446.705873229],[516627.1399982051,5277450.118570387],[516624.83416661015,5277442.332194671],[516630.24664604285,5277440.458274535],[516628.9823531964,5277436.120208397],[516634.84511304816,5277434.358718482]]]},"properties":{"id_build":1157,"id_source":"w145200160","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516456.33729279035,5276875.373911835],[516456.7910677549,5276874.263796684],[516459.4911029859,5276875.605104937],[516454.4298165321,5276885.926798355],[516442.35477027786,5276879.891143606],[516446.73663578974,5276870.790058183],[516452.2420178158,5276873.417394235],[516456.33729279035,5276875.373911835]]]},"properties":{"id_build":1158,"id_source":"w145200167","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.67091734573,5276734.63150343],[516482.3431100308,5276735.967082732],[516479.259300415,5276737.514311505],[516474.2560263844,5276727.275299909],[516487.1176739292,5276720.86559488],[516491.5241622773,5276729.658110895],[516485.3188849595,5276732.785795686],[516481.67091734573,5276734.63150343]]]},"properties":{"id_build":1159,"id_source":"w145200169","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.42076373845,5277029.965005702],[517298.73537607916,5277025.186926093],[517296.7082345068,5277024.958624428],[517297.18295766466,5277016.846824441],[517305.0668832454,5277017.537088577],[517304.6818644773,5277023.259647444],[517304.20242831856,5277030.4267440755],[517298.42076373845,5277029.965005702]]]},"properties":{"id_build":1160,"id_source":"w145200180","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517122.9916130201,5276871.739061793],[517128.5497651029,5276871.644268381],[517128.57093036914,5276889.982401481],[517123.3132178237,5276890.078078239],[517123.2149694072,5276872.406557504],[517122.9896521962,5276872.405894954],[517122.9916130201,5276871.739061793]]]},"properties":{"id_build":1161,"id_source":"w145200185","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.34846033546,5277541.741286523],[516641.5601508885,5277539.038333818],[516640.04300398444,5277533.8437645435],[516647.70990899106,5277531.420605295],[516650.982082621,5277542.655091828],[516642.33861169324,5277545.186594972],[516641.3712451459,5277542.071912837],[516642.34846033546,5277541.741286523]]]},"properties":{"id_build":1162,"id_source":"w145200205","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.46799227374,5277355.730324723],[516578.74563293066,5277355.400543079],[516577.9271333248,5277352.730856059],[516582.5120027685,5277351.410234294],[516585.41175835335,5277361.643360244],[516579.774555322,5277363.294402484],[516577.59509083617,5277363.843895788],[516577.8175409433,5277364.8447878435],[516573.60849626164,5277366.055343231],[516571.15425800206,5277357.601728796],[516577.46799227374,5277355.730324723]]]},"properties":{"id_build":1163,"id_source":"w145200216","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516500.3904779438,5276807.9256037725],[516500.31318270427,5276811.348488988],[516500.2185358954,5276815.593759188],[516490.30479916185,5276815.454537258],[516490.26210903283,5276804.007022462],[516501.9784236097,5276804.151352078],[516501.96771547856,5276807.930073134],[516500.3904779438,5276807.9256037725]]]},"properties":{"id_build":1164,"id_source":"w145200225","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517284.9577295636,5277529.78788214],[517286.63751346356,5277528.070200271],[517287.5810001403,5277528.995463378],[517286.64662598795,5277530.05963249],[517284.9577295636,5277529.78788214]]]},"properties":{"id_build":1165,"id_source":"w145200236","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516551.8112818837,5276711.935654492],[516552.1899797671,5276710.825333514],[516555.1176043432,5276711.389354221],[516552.7620947842,5276720.940675693],[516541.57894383674,5276718.130405562],[516543.47936895303,5276710.133743138],[516548.9514122019,5276711.316258123],[516551.8112818837,5276711.935654492]]]},"properties":{"id_build":1166,"id_source":"w145200238","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.49243007647,5276796.93894674],[516426.27956246206,5276800.892100055],[516424.3845306017,5276807.043896418],[516414.70455638994,5276803.904689663],[516418.8723955338,5276790.801950476],[516429.678363154,5276794.166620211],[516428.69319645804,5276797.275753438],[516427.49243007647,5276796.93894674]]]},"properties":{"id_build":1167,"id_source":"w145200256","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.9829675512,5276832.693366587],[516569.28434117517,5276832.360804827],[516572.88216558855,5276834.927257573],[516571.9622642731,5276836.191632864],[516570.6955466802,5276837.921808367],[516567.09803936305,5276835.244218099],[516567.3243065448,5276834.911442556],[516568.3571825939,5276833.536248221],[516568.9829675512,5276832.693366587]]]},"properties":{"id_build":1168,"id_source":"w145200263","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516341.3364873339,5277468.758840528],[516343.8534089882,5277454.984564574],[516344.76925176714,5277449.763562897],[516345.249631054,5277449.853823395],[516361.2824375294,5277452.81072081],[516358.4610219769,5277468.0289518805],[516357.77452290576,5277471.80577792],[516341.3364873339,5277468.758840528]]]},"properties":{"id_build":1169,"id_source":"w145200300","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.981562874,5277620.111761936],[516802.687914643,5277617.776976093],[516802.5377224186,5277617.776542613],[516802.31628319185,5277616.442224479],[516804.3445202981,5277616.225798711],[516804.85992736695,5277619.783763868],[516802.981562874,5277620.111761936]]]},"properties":{"id_build":1170,"id_source":"w145200305","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.3915035117,5277180.120457434],[516339.0814534799,5277175.1211026665],[516337.4366978809,5277172.449132373],[516338.8661278391,5277171.564024977],[516340.51088303636,5277174.235995669],[516339.8938502769,5277180.013533476],[516338.3915035117,5277180.120457434]]]},"properties":{"id_build":1171,"id_source":"w145200339","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.76254435617,5277011.32254798],[517277.5950251812,5277012.009656357],[517276.73557668366,5277023.232232397],[517268.92675947386,5277022.542229338],[517269.17438073107,5277017.552783905],[517269.32601056475,5277014.541343354],[517270.527673101,5277014.544907327],[517270.76254435617,5277011.32254798]]]},"properties":{"id_build":1172,"id_source":"w145200374","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.4951723747,5276888.528430904],[516470.8729004365,5276887.751520998],[516473.7982426821,5276889.0934732575],[516469.1168697577,5276897.860272361],[516458.6171934405,5276892.495877841],[516462.69551077625,5276884.505343788],[516467.29281865904,5276886.874505619],[516470.4951723747,5276888.528430904]]]},"properties":{"id_build":1173,"id_source":"w145200376","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516644.518551423,5277596.984018195],[516642.4890430296,5277597.645055609],[516641.1493802703,5277593.417909969],[516651.7475122412,5277590.114016386],[516654.87040537194,5277601.014659677],[516646.60281840246,5277603.436091712],[516645.0321725196,5277598.574787229],[516644.518551423,5277596.984018195]]]},"properties":{"id_build":1174,"id_source":"w145200378","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.02691785205,5277104.379283665],[517277.35030776873,5277112.201523419],[517272.5899866835,5277111.787296812],[517269.3538533827,5277111.510962284],[517269.47826979397,5277110.07762686],[517266.48239806405,5277109.8242345005],[517267.04208807147,5277103.435351275],[517278.02691785205,5277104.379283665]]]},"properties":{"id_build":1175,"id_source":"w145200385","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.1345113902,5277729.1099529425],[516442.5891601256,5277727.666418305],[516450.99191315996,5277730.468654869],[516455.79325831763,5277732.149323381],[516452.8479544415,5277740.676543404],[516450.03895960626,5277748.804046494],[516445.2376265866,5277747.123382658],[516450.3867592378,5277732.022903478],[516442.1345113902,5277729.1099529425]]]},"properties":{"id_build":1176,"id_source":"w145200432","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.9303636166,5277519.215644675],[517037.92417471454,5277529.437573266],[517033.6227600857,5277528.858173137],[517029.5165325102,5277528.301575106],[517030.5935778348,5277519.524671458],[517032.77042661887,5277519.86445943],[517033.00124637067,5277517.975755988],[517038.9319899492,5277518.659949805],[517038.9303636166,5277519.215644675]]]},"properties":{"id_build":1177,"id_source":"w145200500","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517123.3132178237,5276890.078078239],[517123.16300680576,5276890.077636533],[517123.21915728773,5276896.523911494],[517120.59046737954,5276896.516182256],[517120.4357303834,5276872.5095255235],[517122.9896521962,5276872.405894954],[517123.2149694072,5276872.406557504],[517123.3132178237,5276890.078078239]]]},"properties":{"id_build":1178,"id_source":"w145200516","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.7868080399,5277631.586477376],[516656.5225783435,5277627.248403805],[516659.75456809474,5277626.257392514],[516659.8303001757,5277626.035329417],[516663.23513924645,5277625.000358727],[516669.60137252643,5277623.062521453],[516672.0582175055,5277630.51593054],[516658.67905466666,5277634.700947849],[516657.7868080399,5277631.586477376]]]},"properties":{"id_build":1179,"id_source":"w145200521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.55420472875,5277528.325899135],[517078.86837478017,5277536.837206027],[517073.77884034085,5277536.122096326],[517068.0205813332,5277535.527284486],[517068.72056784085,5277527.304981742],[517072.39935723913,5277527.649188128],[517072.5524849865,5277526.649377785],[517079.8349664755,5277527.337577407],[517079.55420472875,5277528.325899135]]]},"properties":{"id_build":1180,"id_source":"w145200548","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516857.9045713346,5277558.810165494],[516867.59142422176,5277559.060502693],[516867.3503558271,5277564.505660151],[516866.3740974016,5277564.502831784],[516866.2927220764,5277566.669824413],[516866.1294886282,5277571.170518171],[516857.1185263136,5277570.9221402835],[516857.6041838348,5277558.809295698],[516857.9045713346,5277558.810165494]]]},"properties":{"id_build":1181,"id_source":"w145200569","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.9901639523,5277484.975816006],[516417.83034318127,5277479.97689162],[516419.7347461199,5277470.424234589],[516426.4153325825,5277471.554478014],[516424.6608012175,5277481.21869559],[516424.2853119041,5277481.217636301],[516423.75210240134,5277483.883488706],[516416.9901639523,5277484.975816006]]]},"properties":{"id_build":1182,"id_source":"w145200654","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.9460208584,5277644.955494274],[517279.2427754291,5277646.178914755],[517275.0344447083,5277647.166685456],[517274.81245528755,5277646.054627018],[517274.5868382216,5277646.165097523],[517274.21564643545,5277644.719176468],[517278.6492661594,5277643.732073812],[517278.9460208584,5277644.955494274]]]},"properties":{"id_build":1183,"id_source":"w145200659","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.5062260521,5277719.369093528],[517235.8613374076,5277714.067982164],[517238.4004123977,5277718.854519274],[517237.14445315435,5277719.484298269],[517236.21937200613,5277719.959461192],[517237.26411785255,5277722.185354144],[517229.7444430467,5277725.608433282],[517227.78967767867,5277726.3806281],[517224.5062260521,5277719.369093528]]]},"properties":{"id_build":1184,"id_source":"w145200681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516508.9171726998,5276714.481249308],[516513.92480942386,5276723.164346831],[516508.2371254031,5276726.515754539],[516505.27294047805,5276728.252246232],[516506.1695061396,5276729.921883446],[516501.27932699374,5276732.797657613],[516495.22458035854,5276722.5556485355],[516495.29968800966,5276722.555861284],[516508.9171726998,5276714.481249308]]]},"properties":{"id_build":1185,"id_source":"w145200693","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.25540374493,5277004.144429533],[517286.7870710367,5277002.1454904],[517287.5374518078,5277002.369997866],[517287.6889797832,5277001.9258882925],[517291.2178810668,5277002.269785926],[517290.7484455252,5277008.603364075],[517285.94311015646,5277008.144537463],[517286.0667738064,5277006.966822038],[517286.25540374493,5277004.144429533]]]},"properties":{"id_build":1186,"id_source":"w145200729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.45600202936,5277477.323498359],[517071.5730002417,5277476.522398783],[517071.6494017313,5277476.078063125],[517072.02521736885,5277475.9680251945],[517072.3737824864,5277472.34588586],[517072.72192434024,5277468.868227221],[517080.75516502064,5277469.658655066],[517079.98136151535,5277477.436179493],[517079.45600202936,5277477.323498359]]]},"properties":{"id_build":1187,"id_source":"w145200754","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516401.9434454574,5277755.792408608],[516403.9194034861,5277752.786084737],[516411.86436620064,5277758.143192904],[516395.4794126012,5277763.209459601],[516399.41592445935,5277757.330132625],[516400.457825312,5277758.011021201],[516401.9434454574,5277755.792408608]]]},"properties":{"id_build":1188,"id_source":"w145200755","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.5085806403,5277712.053446559],[516588.9201583838,5277711.743989875],[516597.3317370849,5277711.434545348],[516600.9369260533,5277711.222544974],[516566.1638753689,5277712.568308689],[516580.5085806403,5277712.053446559]]]},"properties":{"id_build":1189,"id_source":"w145200776","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.2668703974,5276888.092453275],[517315.4063396285,5276899.648438233],[517315.7179976846,5276895.870610231],[517316.2668703974,5276888.092453275]]]},"properties":{"id_build":1190,"id_source":"w145200777","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.71210992924,5277468.034676799],[516643.532508123,5277469.059187256],[516639.36513459135,5277455.710490349],[516648.1589331835,5277453.179412319],[516649.997045989,5277459.063968099],[516651.3589138218,5277463.413432122],[516649.63006839337,5277463.964187192],[516650.53042772604,5277466.878626851],[516646.71210992924,5277468.034676799]]]},"properties":{"id_build":1191,"id_source":"w145200845","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.2671110201,5277560.869379301],[517240.1430519982,5277561.485485001],[517239.85977809585,5277555.705368568],[517243.9755834802,5277555.550847855],[517250.67505285447,5277555.292845093],[517250.9688542258,5277557.516514738],[517256.75197470345,5277557.311373778],[517256.97331223043,5277558.645709315],[517257.2671110201,5277560.869379301]]]},"properties":{"id_build":1192,"id_source":"w145200857","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.492125547,5277619.992168546],[517232.837453986,5277619.367774168],[517233.33713662665,5277628.149310471],[517228.8085193742,5277628.247046778],[517224.5502478552,5277628.345586466],[517224.33318030497,5277625.566445139],[517217.50535833044,5277623.545728966],[517217.7329473166,5277622.768422309],[517218.492125547,5277619.992168546]]]},"properties":{"id_build":1193,"id_source":"w145200865","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516664.68856172246,5277529.135242425],[516668.44660626666,5277528.0346017275],[516669.41427895945,5277531.038149338],[516670.2413031506,5277530.707097665],[516671.3491131231,5277534.600166014],[516672.99221013376,5277540.384145729],[516665.77588865324,5277542.808561535],[516661.98251607874,5277530.01661641],[516664.68856172246,5277529.135242425]]]},"properties":{"id_build":1194,"id_source":"w145200889","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516484.35889001976,5276793.3208933715],[516482.2942785682,5276779.756000815],[516491.98716199544,5276778.3386269305],[516493.08667636843,5276785.254632877],[516493.61055439146,5276788.568080999],[516494.8125779785,5276788.460345926],[516495.25408913556,5276791.684649112],[516488.5667554266,5276792.665967896],[516484.35889001976,5276793.3208933715]]]},"properties":{"id_build":1195,"id_source":"w145200957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.78731155,5276851.45582257],[516409.31618525565,5276850.345915415],[516412.01655567606,5276851.5760626905],[516407.70952305757,5276860.788524361],[516397.1346176939,5276855.42402968],[516398.71353328717,5276852.160967351],[516400.987557888,5276847.432818555],[516405.3449252073,5276849.679001557],[516408.78731155,5276851.45582257]]]},"properties":{"id_build":1196,"id_source":"w145201000","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516368.09814424283,5277753.1298174225],[516368.6976490901,5277753.576062651],[516366.398272881,5277756.770426963],[516365.88105948985,5277756.435553215],[516359.01516287745,5277751.881747486],[516367.3096024634,5277739.790812505],[516374.0556059052,5277744.255378751],[516370.4283106359,5277749.668804612],[516368.09814424283,5277753.1298174225]]]},"properties":{"id_build":1197,"id_source":"w145201057","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.48412443255,5276794.022096487],[517150.3646787903,5276783.574602619],[517154.9461986888,5276783.588097552],[517154.95864006644,5276779.364821479],[517158.4886661526,5276779.375221673],[517158.5516565704,5276783.487580205],[517158.5956533039,5276794.045991817],[517150.48412443255,5276794.022096487]]]},"properties":{"id_build":1198,"id_source":"w145201095","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.455862022,5277058.910266782],[517269.7972994655,5277058.220708096],[517270.34958614176,5277051.798461746],[517270.80858518643,5277046.442881533],[517278.54259641527,5277047.021525471],[517278.23327824735,5277050.021384053],[517281.23675660224,5277050.252576871],[517280.53443915286,5277059.141682099],[517277.455862022,5277058.910266782]]]},"properties":{"id_build":1199,"id_source":"w145201105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.9204221601,5277468.4681339385],[517263.27465006785,5277484.978604249],[517256.60444840905,5277480.402092193],[517235.66463721916,5277476.116746245],[517240.8042155304,5277467.551960543],[517242.45702595805,5277464.80058477],[517238.55850619066,5277462.566241595],[517249.2682095879,5277447.149510635],[517279.9204221601,5277468.4681339385]]]},"properties":{"id_build":1200,"id_source":"w145201128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"commercial","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5286628186,5276838.588707022],[516525.8491155407,5276835.3381762365],[516524.57357171696,5276834.889997462],[516525.63420512737,5276831.669954447],[516527.2101745297,5276832.118986097],[516528.3153058483,5276829.099121425],[516530.9190906311,5276822.015796167],[516540.2231256916,5276825.265268602],[516535.5286628186,5276838.588707022]]]},"properties":{"id_build":1201,"id_source":"w145201139","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516725.1170121146,5277564.09531439],[516721.4027114315,5277549.969877733],[516730.7230415868,5277547.10701719],[516732.382277303,5277552.479842853],[516733.84804692055,5277557.229729516],[516730.9163936324,5277558.221562932],[516732.1824998774,5277561.892818373],[516730.3782596405,5277562.554472655],[516725.1170121146,5277564.09531439]]]},"properties":{"id_build":1202,"id_source":"w145201165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517077.3087685207,5277390.072366343],[517077.579499518,5277400.186892098],[517074.42501860595,5277400.288780164],[517074.13928956015,5277395.286646349],[517074.815506419,5277395.17748955],[517074.67150121304,5277393.065408976],[517077.00804630754,5277390.1826241985],[517077.3087685207,5277390.072366343]]]},"properties":{"id_build":1203,"id_source":"w145201170","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.1820750364,5277754.718339794],[517191.95969335176,5277749.936408649],[517194.1938786001,5277746.086449609],[517194.91846210894,5277744.843821944],[517198.06730860664,5277746.586907161],[517201.5910343205,5277748.531153749],[517195.9297337866,5277758.405886916],[517195.02991513617,5277757.95866912],[517189.1820750364,5277754.718339794]]]},"properties":{"id_build":1204,"id_source":"w145201177","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516668.44660626666,5277528.0346017275],[516664.68856172246,5277529.135242425],[516660.5231889904,5277515.119695037],[516668.3403221837,5277512.696992754],[516669.9391656585,5277518.202994938],[516671.3149418472,5277522.930379633],[516670.3380400687,5277523.149862114],[516671.5284584642,5277527.043166983],[516668.44660626666,5277528.0346017275]]]},"properties":{"id_build":1205,"id_source":"w145201273","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.9053024706,5277139.403584457],[517287.61059075966,5277129.514228742],[517295.04408035695,5277130.092003033],[517294.82849551894,5277134.403590207],[517294.64480050263,5277138.092888778],[517290.2147539523,5277137.746312558],[517290.0589389628,5277139.635227917],[517286.9804047673,5277139.4038074305],[517286.9053024706,5277139.403584457]]]},"properties":{"id_build":1206,"id_source":"w145201286","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516898.84017796227,5277530.365884282],[516904.90584079665,5277531.139245124],[516907.7735222713,5277531.5032203095],[516907.6977795179,5277531.725280173],[516913.1028425986,5277532.407819203],[516912.8015367986,5277535.307695702],[516912.08241886954,5277539.851229287],[516897.84165613924,5277538.031640144],[516898.84017796227,5277530.365884282]]]},"properties":{"id_build":1207,"id_source":"w145201315","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516617.8382586354,5277551.673864068],[516621.0366504774,5277562.463563724],[516612.09188362164,5277565.327671136],[516607.40136638616,5277551.088383287],[516613.56470921607,5277549.216589817],[516614.68133178604,5277552.665112908],[516616.8536002688,5277551.982245266],[516617.8382586354,5277551.673864068]]]},"properties":{"id_build":1208,"id_source":"w145201316","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.21450936917,5277357.143414981],[516523.9059121814,5277363.913554696],[516540.6525228846,5277372.085429715],[516538.17480796756,5277377.168596342],[516535.19747266924,5277375.715321851],[516534.5704878453,5277377.002763502],[516537.5403127205,5277378.456016348],[516535.6669629954,5277382.285020421],[516532.6971396212,5277380.831768522],[516532.0399584471,5277382.174694634],[516534.994793036,5277383.61678965],[516532.50200496695,5277388.722143897],[516512.8005901205,5277379.10820679],[516517.90702816204,5277368.642204046],[516519.34694846265,5277369.346470374],[516522.36851956794,5277363.153440728],[516527.95840192406,5277351.710788192],[516532.9531511573,5277354.147817817],[516533.7914582054,5277352.494214627],[516535.30244434276,5277349.331020035],[516541.45962505013,5277352.338171601],[516542.1998948657,5277350.8287728885],[516544.8286762615,5277345.445959799],[516528.1494895336,5277337.307606836],[516535.4692950542,5277322.313397958],[516536.39176140307,5277322.76057721],[516539.9343111592,5277315.602119993],[516543.361676057,5277317.267840992],[516543.82243861735,5277316.335575543],[516549.7773223966,5277319.186564998],[516548.5988451632,5277321.6171778785],[516549.611304168,5277322.109070948],[516550.17787068133,5277320.943713062],[516555.8401098722,5277323.704965059],[516556.4519902603,5277322.450824753],[516571.55626721185,5277329.817910902],[516565.9360170613,5277341.338233226],[516556.8689822229,5277336.911304299],[516551.20345544163,5277348.520423908],[516546.27620381414,5277346.116912411],[516543.42833796766,5277351.954775716],[516544.43621918757,5277351.413054351],[516545.5481840443,5277356.528647182],[516544.26201875316,5277359.85918778],[516541.24793747807,5277363.407099033],[516539.14294470375,5277364.179097984],[516537.4150277062,5277364.396469481],[516534.56377651554,5277363.499252746],[516533.13941297476,5277362.6060890965],[516532.0918083343,5277361.269436191],[516530.67596366466,5277357.3755214745],[516529.1727123218,5277357.815812995],[516528.875469625,5277356.703570673],[516527.21450936917,5277357.143414981]]]},"properties":{"id_build":1209,"id_source":"w145201330","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516572.5243621491,5277390.747532919],[516564.4743941252,5277393.136359635],[516563.5526202322,5277389.810655515],[516565.2063802929,5277389.259661247],[516562.304706472,5277379.693378692],[516570.2724941996,5277377.159833235],[516571.97629099246,5277382.777245221],[516573.54617161665,5277387.949717139],[516571.8927267189,5277388.389570086],[516572.5243621491,5277390.747532919]]]},"properties":{"id_build":1210,"id_source":"w145201413","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.55420472875,5277528.325899135],[517084.4044124644,5277528.7068917435],[517084.70044689573,5277525.073484677],[517089.8884970626,5277525.488815237],[517089.0079275006,5277536.377943924],[517084.51816027303,5277536.009119142],[517084.5651427995,5277535.3535314035],[517083.7768180354,5277535.284534146],[517083.6209491524,5277537.217911613],[517078.86837478017,5277536.837206027],[517079.55420472875,5277528.325899135]]]},"properties":{"id_build":1211,"id_source":"w145201419","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.85723972163,5276716.977010619],[516645.94818407035,5276721.20629744],[516643.90661815676,5276725.979471208],[516642.4808440291,5276725.530837391],[516644.3702876456,5276721.424066816],[516642.80223768455,5276718.196532635],[516638.44980093907,5276716.850418482],[516639.12989868957,5276715.407544977],[516643.85723972163,5276716.977010619]]]},"properties":{"id_build":1212,"id_source":"w145201424","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.3696908357,5277743.113387293],[516474.2407467909,5277741.314970401],[516473.7094242488,5277743.31398521],[516467.78104707506,5277741.852393426],[516471.65489084227,5277726.303765908],[516480.2093945172,5277728.550774533],[516479.75379266666,5277730.3277233085],[516485.3818001258,5277731.788476628],[516481.3696908357,5277743.113387293]]]},"properties":{"id_build":1213,"id_source":"w145201433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516524.4826023722,5276787.544205692],[516524.33428096725,5276786.876946331],[516520.42714976956,5276787.421559415],[516519.6179999031,5276781.417717715],[516523.3746058953,5276780.98381671],[516522.8887074904,5276777.525991963],[516522.12301475013,5276772.089085999],[516532.0412420527,5276770.67241804],[516534.25153699174,5276785.793698716],[516524.4826023722,5276787.544205692]]]},"properties":{"id_build":1214,"id_source":"w145201452","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516810.37561806856,5276983.857381007],[516806.7545310764,5276963.397203874],[516787.44304853363,5276966.675691675],[516786.9997906903,5276964.118198313],[516779.8610158738,5276965.4313000385],[516775.86876843293,5276943.41411661],[516822.6837882295,5276934.991412053],[516826.74647328013,5276958.564789018],[516821.2609467921,5276959.549198286],[516822.36728806054,5276966.55420217],[516826.1241194602,5276966.009357691],[516827.96929290047,5276977.239810492],[516824.4377816636,5276977.785304772],[516825.6169717671,5276985.568498678],[516814.7220389032,5276987.204124691],[516814.1327580772,5276983.201389924],[516810.37561806856,5276983.857381007]]]},"properties":{"id_build":1215,"id_source":"w145201468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517049.09251673607,5277434.11221624],[517049.4023489533,5277430.890066093],[517046.32428537216,5277430.547633429],[517046.943296599,5277424.325610828],[517050.0964620503,5277424.668263732],[517050.17448990233,5277423.668233039],[517059.7087586544,5277424.807561128],[517059.16896802915,5277429.618337683],[517058.55199572816,5277435.140183624],[517049.09251673607,5277434.11221624]]]},"properties":{"id_build":1216,"id_source":"w145201470","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.944905521,5277060.61287338],[516640.7940636925,5277060.834721905],[516642.0679608506,5277061.838620922],[516639.05271414976,5277065.719897077],[516637.70371408906,5277064.715784116],[516637.7788173306,5277064.715998712],[516635.08081584057,5277062.7077737],[516638.24690320314,5277058.604646916],[516640.944905521,5277060.61287338]]]},"properties":{"id_build":1217,"id_source":"w145201471","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516598.5554321972,5276776.340816724],[516599.67506684165,5276778.789082731],[516598.622619486,5276779.119502028],[516598.8463563026,5276779.675838526],[516595.98880936485,5276780.890231319],[516594.571912951,5276777.329721398],[516597.50425152725,5276776.22668083],[516597.6531983781,5276776.671664361],[516598.5554321972,5276776.340816724]]]},"properties":{"id_build":1218,"id_source":"w145201474","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.95334432827,5277220.286854604],[517280.4313558937,5277220.405348379],[517280.656989503,5277220.2948781345],[517280.9573945232,5277220.295769717],[517281.1069373175,5277220.5184933515],[517281.5582045634,5277220.297552924],[517281.62736818875,5277222.298276383],[517277.9477377607,5277222.176216242],[517277.95334432827,5277220.286854604]]]},"properties":{"id_build":1219,"id_source":"w145201475","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516705.0589977392,5276990.6672399705],[516704.0794549482,5276991.775827899],[516692.31358566927,5276982.850903541],[516693.0674961487,5276981.852806606],[516689.9198045887,5276979.509848015],[516716.6829872374,5276944.355303653],[516738.34163051867,5276960.643931693],[516711.8040220187,5276995.687885306],[516705.0589977392,5276990.6672399705]]]},"properties":{"id_build":1220,"id_source":"w145201505","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517180.6197239343,5277678.89560096],[517178.07008982904,5277677.66553752],[517179.50674050034,5277674.335577796],[517182.2062385095,5277675.677224132],[517184.9280439812,5277669.461419743],[517192.20245716895,5277672.817096539],[517191.28022157686,5277674.870462554],[517187.9692230363,5277682.251494157],[517180.6197239343,5277678.89560096]]]},"properties":{"id_build":1221,"id_source":"w145201515","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.1128812888,5276760.544712285],[516523.1309403669,5276760.977971567],[516518.09655420756,5276761.741667409],[516517.1088430579,5276755.137165249],[516516.03263991023,5276747.954485718],[516526.2510206993,5276746.649798776],[516527.64840975485,5276757.100900196],[516528.7002260835,5276756.992745774],[516529.06661385304,5276760.216838226],[516527.1128812888,5276760.544712285]]]},"properties":{"id_build":1222,"id_source":"w145201532","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516610.1281548161,5277463.962495624],[516608.49165876576,5277458.467517283],[516606.7807587789,5277452.727819521],[516615.1233234934,5277450.417684329],[516615.1974702471,5277450.751315545],[516618.579747129,5277449.760710096],[516620.7366568126,5277457.102098765],[516617.4291647664,5277458.204056279],[516618.3214602743,5277461.318519602],[516610.1281548161,5277463.962495624]]]},"properties":{"id_build":1223,"id_source":"w145201536","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.2736425941,5277674.4959609145],[517270.0633943471,5277672.369597018],[517267.91182139947,5277668.595569571],[517276.8630246098,5277663.620827976],[517283.06328979955,5277674.642089369],[517274.3373840933,5277679.61748996],[517274.0383218586,5277679.17204266],[517272.53377720685,5277680.056698404],[517269.84452223853,5277675.269701135],[517271.2736425941,5277674.4959609145]]]},"properties":{"id_build":1224,"id_source":"w145201538","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.9654762633,5277128.128188331],[517277.32386682415,5277128.705717237],[517277.47407169716,5277128.706162933],[517277.0007028933,5277136.373410252],[517272.94583607005,5277136.139100308],[517272.71525401954,5277137.916654416],[517269.33663862216,5277137.573213214],[517269.60010072,5277132.305964193],[517269.81560101005,5277128.016603924],[517269.9654762633,5277128.128188331]]]},"properties":{"id_build":1225,"id_source":"w145201543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.03447190486,5277283.4181291675],[516474.6393633505,5277281.975022929],[516475.6222732689,5277279.643867795],[516476.076021034,5277278.533753506],[516479.9105494328,5277276.988648018],[516481.70257942437,5277280.661334836],[516483.8782899845,5277281.445472913],[516481.8367352992,5277286.329845872],[516474.03447190486,5277283.4181291675]]]},"properties":{"id_build":1226,"id_source":"w145201544","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517052.2106550375,5277497.693381194],[517051.30980850407,5277497.579602831],[517044.7776126296,5277497.115915505],[517045.0880901581,5277493.6714868825],[517041.5594732019,5277493.3277374655],[517041.9515531968,5277487.6607491365],[517045.70579234266,5277487.894019423],[517053.0634231252,5277488.582405263],[517052.5982854577,5277493.548997405],[517052.2106550375,5277497.693381194]]]},"properties":{"id_build":1227,"id_source":"w145201547","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.2735769887,5277749.1731302375],[517263.68622498517,5277751.382324515],[517262.5581611303,5277751.934679317],[517260.5464294135,5277746.593994809],[517265.35906745127,5277744.385466203],[517266.8517273876,5277747.501812975],[517267.52856643527,5277747.170400568],[517268.4991899578,5277749.0626594825],[517268.2735769887,5277749.1731302375]]]},"properties":{"id_build":1228,"id_source":"w145201562","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.2726181079,5277265.696563462],[517263.9936722968,5277267.813324472],[517265.0450812759,5277267.816442085],[517264.8876298101,5277270.261053119],[517263.91132188187,5277270.258158212],[517261.95376355667,5277271.91945282],[517260.602282438,5277271.804306281],[517260.85113777104,5277268.926520474],[517261.14643756056,5277265.582084779],[517262.2726181079,5277265.696563462]]]},"properties":{"id_build":1229,"id_source":"w145201597","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516609.2907062783,5277441.620992353],[516610.25842416444,5277444.624529618],[516604.39441433485,5277446.830600138],[516603.2771309917,5277443.604357583],[516600.64615348855,5277444.485974196],[516599.1939667794,5277440.191834814],[516597.5183201709,5277435.252447569],[516605.185336686,5277432.829232428],[516608.16296245053,5277442.062334715],[516609.2907062783,5277441.620992353]]]},"properties":{"id_build":1230,"id_source":"w145201620","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.6512433471,5277047.469987041],[516699.43232252443,5277040.886291875],[516694.530198495,5277047.985182768],[516691.90699353215,5277046.088285671],[516698.76818336523,5277036.772214335],[516710.1711734424,5277041.250519352],[516715.04269481613,5277044.820975417],[516711.4991146569,5277049.589816127],[516708.6512433471,5277047.469987041]]]},"properties":{"id_build":1231,"id_source":"w145201625","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.96430552274,5276762.49728415],[516469.6295689701,5276759.070405218],[516479.6151247489,5276755.097624438],[516483.32913405244,5276764.410531948],[516478.55442326615,5276766.308622293],[516476.291152944,5276767.202450142],[516476.9102020675,5276768.737930066],[516473.8724500676,5276769.940758801],[516473.49952437927,5276769.017244008],[516470.0331602116,5276770.396685848],[516467.4529366806,5276763.85437229],[516470.96430552274,5276762.49728415]]]},"properties":{"id_build":1232,"id_source":"w145201628","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516666.3712969358,5277649.615711893],[516676.2180656535,5277646.4208519915],[516678.67457367247,5277653.985403189],[516672.8943714942,5277655.835996859],[516668.6776251433,5277657.179828923],[516667.93239670235,5277655.177176808],[516665.1516315182,5277655.947195356],[516663.1431362439,5277649.2730515115],[516665.92454065406,5277648.280754004],[516666.3712969358,5277649.615711893]]]},"properties":{"id_build":1233,"id_source":"w145201630","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.7690603874,5276804.007617156],[517289.9651780321,5276804.4482580535],[517289.610466454,5276797.434281873],[517281.3474091607,5276797.854313639],[517280.9216036218,5276789.484221298],[517287.7724336316,5276789.137794064],[517294.0823963722,5276788.8231105395],[517294.40874383063,5276795.270189575],[517298.3149214394,5276795.070626046],[517298.7690603874,5276804.007617156]]]},"properties":{"id_build":1234,"id_source":"w145201671","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516810.3998160378,5277087.339735558],[516820.2912604613,5277087.23493294],[516820.36879652686,5277094.192510207],[516820.5990273748,5277115.887670372],[516820.812311659,5277135.648949178],[516820.9428936547,5277147.641314913],[516810.90885768377,5277147.7457042085],[516810.97947093146,5277154.50321026],[516802.83057358506,5277154.590828481],[516780.9674911249,5277154.827855065],[516776.829206206,5277154.871499817],[516776.72316277196,5277144.757469305],[516811.01618101646,5277144.389590974],[516810.3998160378,5277087.339735558]]]},"properties":{"id_build":1235,"id_source":"w145201678","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.2596361006,5277685.076291969],[517138.62212689593,5277685.32906923],[517138.62179970986,5277685.440208232],[517138.5290364502,5277691.441493311],[517136.20108608407,5277691.434640453],[517136.19519754517,5277693.435142516],[517136.10799822526,5277697.54706462],[517128.14791823155,5277697.523639407],[517128.2596361006,5277685.076291969]]]},"properties":{"id_build":1236,"id_source":"w145201708","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516730.8165008331,5277645.2438250035],[516732.8987379986,5277652.362764174],[516730.26751525165,5277653.355461321],[516730.3413333467,5277653.800233135],[516727.3496845844,5277654.780781831],[516723.9521373666,5277655.893533934],[516724.24996565655,5277656.783508855],[516720.7169608541,5277657.995899634],[516718.18860498234,5277649.319724858],[516730.8165008331,5277645.2438250035]]]},"properties":{"id_build":1237,"id_source":"w145201718","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.7432532724,5277583.287261583],[517011.5609752487,5277582.151947697],[517012.2482111683,5277578.2640581615],[517009.9211898245,5277577.923838955],[517011.08172090404,5277571.403315767],[517011.982573658,5277566.371309136],[517020.01370553864,5277567.839601394],[517018.029027234,5277578.836653027],[517020.4311443723,5277579.17709502],[517019.7432532724,5277583.287261583]]]},"properties":{"id_build":1238,"id_source":"w145201723","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517028.67422527476,5277687.896066208],[517022.11364461074,5277697.21263604],[517013.8697492571,5277691.52039956],[517016.2835147342,5277687.85983586],[517017.4076688561,5277688.641101465],[517017.78476928454,5277688.086504021],[517018.1618697825,5277687.531906603],[517016.962295452,5277686.861560348],[517020.3562025153,5277681.870183982],[517028.67422527476,5277687.896066208]]]},"properties":{"id_build":1239,"id_source":"w145201728","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516592.0997945436,5277412.897890353],[516594.7307849683,5277412.0162698915],[516596.9622040734,5277419.5801411895],[516594.25643483043,5277420.350407636],[516594.0330394523,5277419.682931736],[516583.96095479873,5277422.7661495935],[516581.35624213633,5277414.423241149],[516586.55006031384,5277412.859849288],[516591.57853732386,5277411.340446814],[516592.0997945436,5277412.897890353]]]},"properties":{"id_build":1240,"id_source":"w145201735","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.7153751935,5277624.244206309],[517266.6771202515,5277629.137217257],[517262.91233995947,5277629.959602338],[517259.16257993435,5277630.782034374],[517258.1263917516,5277625.666524069],[517258.9527775083,5277625.55783391],[517261.95859578706,5277624.89990579],[517261.0745782743,5277619.118006402],[517264.8316908911,5277618.351167357],[517265.7153751935,5277624.244206309]]]},"properties":{"id_build":1241,"id_source":"w145201747","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.04647822666,5276738.079651586],[516600.2698996992,5276738.747126941],[516597.9384012187,5276739.851878646],[516597.48997396545,5276739.072622334],[516597.0386958184,5276739.2936156355],[516595.46999113966,5276736.288371838],[516599.0044775752,5276734.742489036],[516600.5731808583,5276737.747733781],[516600.04647822666,5276738.079651586]]]},"properties":{"id_build":1242,"id_source":"w145201759","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.86627530097,5276894.471994372],[517293.6549089044,5276897.361002562],[517293.31809316424,5276902.027875713],[517289.33816903067,5276901.793777886],[517289.1013037164,5276905.682969149],[517282.7941067063,5276905.108546906],[517283.18183829414,5276900.997523502],[517285.65965579066,5276901.227157971],[517286.28227367415,5276893.893776621],[517293.86627530097,5276894.471994372]]]},"properties":{"id_build":1243,"id_source":"w145201771","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516602.98359054496,5276735.309531168],[516604.10893533163,5276735.757298706],[516602.66985246376,5276739.976505981],[516597.78090071474,5276742.407643878],[516593.27952377335,5276740.616579907],[516593.73333519144,5276739.506475578],[516597.85980933515,5276741.074191839],[516601.54514206375,5276739.306461034],[516602.98359054496,5276735.309531168]]]},"properties":{"id_build":1244,"id_source":"w145201773","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.81665981037,5277521.422476267],[516722.3066687181,5277522.854339191],[516722.6414782802,5277523.944471836],[516723.4970524785,5277526.747654764],[516718.0101635918,5277528.398994742],[516716.74499831774,5277524.394325681],[516717.94783190987,5277523.953219958],[516714.97169921704,5277514.27550392],[516723.6913032944,5277511.410907339],[516726.81665981037,5277521.422476267]]]},"properties":{"id_build":1245,"id_source":"w145201776","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517074.8177264459,5277445.635016322],[517083.22645798855,5277446.437662605],[517082.76151977543,5277451.326454804],[517090.5701084802,5277451.905071047],[517089.95105329354,5277458.127089386],[517078.6889342764,5277457.204922435],[517078.7514905819,5277456.360442555],[517078.8449990512,5277455.204861699],[517073.8901462684,5277454.634629352],[517074.8177264459,5277445.635016322]]]},"properties":{"id_build":1246,"id_source":"w145201778","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.46285137616,5276799.06162681],[517167.72140037076,5276799.074179949],[517172.77608021605,5276799.089083927],[517172.8882746008,5276811.981633281],[517163.4245257719,5276812.064872047],[517163.50258042733,5276811.064843774],[517144.1995479448,5276811.23026158],[517144.15781590587,5276799.893877926],[517163.46055839205,5276799.839598739],[517163.46285137616,5276799.06162681]]]},"properties":{"id_build":1247,"id_source":"w145201781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517048.89479992347,5277552.92021458],[517053.0979507363,5277553.710504165],[517050.96203517035,5277565.040521494],[517043.6064530121,5277563.685304104],[517042.91984518775,5277567.350911939],[517037.2901893003,5277566.445314971],[517039.6559224978,5277553.560006323],[517044.82743411366,5277554.486492149],[517048.437709151,5277555.141674716],[517048.89479992347,5277552.92021458]]]},"properties":{"id_build":1248,"id_source":"w145201783","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.3140977976,5276961.228161117],[517130.27070749016,5276950.4474693155],[517130.87154533603,5276950.449236907],[517130.8718722981,5276950.3380980315],[517138.4574502347,5276950.360419199],[517138.4489454403,5276953.250029925],[517138.5080217919,5276958.696055837],[517138.57625709096,5276961.030193273],[517130.3140977976,5276961.228161117]]]},"properties":{"id_build":1249,"id_source":"w145201788","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517011.6794280985,5277515.912896374],[517010.4522160435,5277524.689364563],[517005.39263689687,5277523.996630267],[517000.4681668699,5277523.326522886],[517001.7707861394,5277514.4391329745],[517002.5214360873,5277514.5524650505],[517002.98240733123,5277510.997333809],[517009.21257724555,5277512.01579153],[517008.75160226994,5277515.570922295],[517011.6794280985,5277515.912896374]]]},"properties":{"id_build":1250,"id_source":"w145201791","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516689.60807847267,5277698.694984154],[516689.6600077831,5277698.9174128715],[516636.9378743218,5277700.655884599],[516636.730057553,5277694.5425952785],[516636.9582013982,5277693.542988009],[516658.8882056398,5277692.827720934],[516677.7389961586,5277692.214854275],[516689.37970003695,5277691.914794207],[516689.60807847267,5277698.694984154]]]},"properties":{"id_build":1251,"id_source":"w145201794","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.49800025014,5277213.220217558],[516761.5446268322,5277223.111798014],[516752.17915517266,5277223.20709852],[516730.9322270828,5277223.423856467],[516707.8152174773,5277223.657553363],[516693.7256918652,5277223.806077918],[516693.74034961197,5277218.693687349],[516683.6013614437,5277218.775766508],[516683.26603045507,5277178.54218575],[516693.33030552795,5277178.348751615],[516693.38053145993,5277184.406016457],[516693.56634963,5277208.657261131],[516693.6038487702,5277213.914282948],[516761.49800025014,5277213.220217558]]]},"properties":{"id_build":1252,"id_source":"w145201796","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.84869128384,5277471.434697155],[517108.4640527,5277470.517992847],[517108.8506470628,5277466.740371465],[517108.0248948672,5277466.626805022],[517108.51287251175,5277461.5713724345],[517109.10925444565,5277455.4048592625],[517117.4428691984,5277456.207334335],[517116.1328727653,5277467.539755219],[517118.3854878027,5277467.657517988],[517117.84869128384,5277471.434697155]]]},"properties":{"id_build":1253,"id_source":"w145201808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.2103336844,5277697.664393235],[517138.29786166846,5277693.441332153],[517149.1109080966,5277693.695454577],[517151.66414300405,5277693.702976327],[517150.79630152544,5277733.377389455],[517156.8789667589,5277733.395312629],[517156.6173263522,5277745.731078981],[517137.0937447538,5277745.340154082],[517138.2103336844,5277697.664393235]]]},"properties":{"id_build":1254,"id_source":"w145201810","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.36218788003,5277721.510736306],[516433.58313144324,5277725.751610134],[516428.53171331104,5277732.850306545],[516417.88865075633,5277725.596187896],[516421.0788252476,5277720.759485979],[516422.7908130573,5277718.163641613],[516423.16566002596,5277718.38697887],[516424.97546088556,5277715.724727151],[516429.3228065987,5277718.626631699],[516427.36218788003,5277721.510736306]]]},"properties":{"id_build":1255,"id_source":"w145201821","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516483.4578926005,5277270.774859265],[516484.28494293033,5277270.443781251],[516482.19628420414,5277265.436576086],[516483.8507009681,5277264.663280883],[516486.0141444635,5277269.781838217],[516487.06681157503,5277269.3402595995],[516487.9617242665,5277271.565590292],[516484.35280644434,5277273.000189408],[516483.4578926005,5277270.774859265]]]},"properties":{"id_build":1256,"id_source":"w145201827","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516922.7291235034,5277631.016905863],[516923.64545945486,5277625.795992669],[516937.1562751129,5277628.058082432],[516936.92807718547,5277629.057677957],[516935.70552664576,5277636.2782172],[516929.7982605009,5277635.305232275],[516925.42223798856,5277634.581212754],[516925.1179771219,5277635.914007412],[516921.96491918655,5277635.571421824],[516922.7291235034,5277631.016905863]]]},"properties":{"id_build":1257,"id_source":"w145201840","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.4743941252,5277393.136359635],[516572.5243621491,5277390.747532919],[516573.3426689233,5277393.483902719],[516574.7256611537,5277393.076622209],[516575.8935460731,5277397.003184063],[516577.50784572324,5277402.39806338],[516572.5395703788,5277403.873193423],[516571.051347561,5277404.313516895],[516571.5869031086,5277406.126620921],[516564.8072332041,5277408.130073392],[516563.2822200361,5277403.024415236],[516568.6413242452,5277401.439249649],[516566.86341123126,5277395.477094006],[516565.3075343987,5277395.939454414],[516564.4743941252,5277393.136359635]]]},"properties":{"id_build":1258,"id_source":"w145201849","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.12374147336,5277541.415130632],[517211.6647328096,5277541.6183118345],[517211.5991640733,5277538.395059513],[517220.00971609884,5277538.531069982],[517219.2106016152,5277529.415230757],[517225.8959024374,5277528.8793075625],[517226.33563418576,5277532.548226912],[517226.4939422645,5277534.882634234],[517226.9110900095,5277541.107705671],[517218.12374147336,5277541.415130632]]]},"properties":{"id_build":1259,"id_source":"w145201852","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516389.1761863108,5277708.177460778],[516396.0714606529,5277712.975892134],[516392.21758941456,5277718.833225812],[516389.4346391009,5277723.07093441],[516388.0854366446,5277722.178017001],[516385.9740245307,5277725.283990756],[516379.0784438977,5277720.596710273],[516381.26557427336,5277717.268667322],[516382.54030962026,5277717.93909378],[516389.1761863108,5277708.177460778]]]},"properties":{"id_build":1260,"id_source":"w145201913","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517254.63904100156,5277611.430271562],[517245.14197493275,5277613.058117362],[517242.39210490935,5277613.505646277],[517241.95963114715,5277607.391667473],[517247.2265130237,5277606.518148647],[517253.8307691062,5277605.426318012],[517253.97865601524,5277606.204736043],[517263.220111785,5277604.676172615],[517264.0303515528,5277610.013293554],[517256.06652781216,5277611.212222592],[517254.63904100156,5277611.430271562]]]},"properties":{"id_build":1261,"id_source":"w145201917","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516771.5108877847,5276917.950550124],[516774.2471974396,5276932.740024608],[516759.5943754739,5276935.25404841],[516756.7822851298,5276920.686642459],[516751.22163009655,5276921.670901578],[516749.74510308146,5276912.775470929],[516764.0237307893,5276909.81578571],[516765.72459221276,5276919.045285326],[516771.5108877847,5276917.950550124]]]},"properties":{"id_build":1262,"id_source":"w145201929","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516330.16412933957,5276819.893400734],[516338.454831923,5276809.580661167],[516342.906209469,5276813.138509661],[516347.37254046166,5276816.718631525],[516339.08214392036,5276826.9202196635],[516336.1592338887,5276824.6892244825],[516336.6871607317,5276823.912727381],[516333.53955263307,5276821.4588236995],[516333.0122494365,5276822.013043363],[516330.16412933957,5276819.893400734]]]},"properties":{"id_build":1263,"id_source":"w145201949","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.2225135415,5277381.123801015],[516634.470886875,5277381.343933237],[516635.4389196126,5277384.236335458],[516629.4255936004,5277386.108534709],[516628.5329747514,5277383.105209021],[516627.4806346747,5277383.435623161],[516626.1856843593,5277379.308636276],[516624.28056703345,5277373.201617975],[516631.87257707876,5277370.778223567],[516635.2225135415,5277381.123801015]]]},"properties":{"id_build":1264,"id_source":"w145201956","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517209.0318520954,5277644.748408378],[517206.6812177112,5277652.410118041],[517195.8031773493,5277648.710358209],[517196.1816105146,5277647.711216326],[517192.80591264693,5277646.478706585],[517194.7003756553,5277640.705023521],[517196.8086971894,5277641.34474869],[517198.3767880634,5277641.827282718],[517198.5282929964,5277641.383170436],[517209.0318520954,5277644.748408378]]]},"properties":{"id_build":1265,"id_source":"w145201957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516867.59142422176,5277559.060502693],[516857.9045713346,5277558.810165494],[516857.9077894813,5277557.698775664],[516855.2046232239,5277557.579809076],[516855.3009565579,5277550.244853675],[516858.07922320574,5277550.364037755],[516858.15850382956,5277548.919448451],[516867.99492315657,5277549.392499153],[516867.8174414367,5277553.626415673],[516867.59142422176,5277559.060502693]]]},"properties":{"id_build":1266,"id_source":"w145201980","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.81398893544,5277526.844155254],[516639.3928129256,5277522.22778799],[516637.76326756214,5277516.943986337],[516645.95651141147,5277514.30004913],[516646.17957935884,5277515.078666123],[516649.0355065616,5277514.308853286],[516650.9711934708,5277520.204803065],[516648.03985373245,5277521.085539188],[516649.0072202961,5277524.200222327],[516640.81398893544,5277526.844155254]]]},"properties":{"id_build":1267,"id_source":"w145201981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.0787587174,5277278.581084946],[516568.3079473764,5277275.794703723],[516566.80150982965,5277277.346374888],[516557.88888723886,5277268.763254893],[516564.3668265252,5277262.00215068],[516573.35455063445,5277270.585494272],[516575.23776024947,5277268.590338036],[516578.15877289535,5277271.377150192],[516571.0787587174,5277278.581084946]]]},"properties":{"id_build":1268,"id_source":"w145201984","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.129186849,5276928.12142589],[517280.09813969815,5276927.773074372],[517279.5542655858,5276933.884152051],[517275.1991676878,5276933.537810618],[517275.8188017431,5276927.204677629],[517277.5455580296,5276927.432080518],[517278.3193627417,5276919.7657271335],[517285.82789634453,5276920.454850529],[517285.42428528774,5276924.854790354],[517285.129186849,5276928.12142589]]]},"properties":{"id_build":1269,"id_source":"w145202017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.12499784253,5276718.63915617],[516643.3942055795,5276721.310137338],[516642.49164305587,5276721.752116866],[516642.79048559594,5276722.308669652],[516639.70694327063,5276723.744674703],[516637.9148384485,5276720.071942647],[516640.99838226405,5276718.635936653],[516641.2975427052,5276719.081350522],[516642.12499784253,5276718.63915617]]]},"properties":{"id_build":1270,"id_source":"w145202021","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.49637277395,5276741.842710898],[516632.5117233147,5276744.729531979],[516629.51028493437,5276743.720702426],[516628.9807249113,5276745.052867203],[516625.3039542864,5276743.819831916],[516625.7584061779,5276742.487452376],[516627.6341870867,5276743.15964652],[516628.6939418057,5276740.273039097],[516633.49637277395,5276741.842710898]]]},"properties":{"id_build":1271,"id_source":"w145202028","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.063590856,5276774.233460432],[516602.3022250389,5276779.352270934],[516600.8622035109,5276783.904895468],[516599.36165027454,5276783.344919181],[516600.6514569064,5276778.791866063],[516599.2329788263,5276775.787049254],[516594.7313114974,5276774.107122857],[516595.1863875175,5276772.552463192],[516600.063590856,5276774.233460432]]]},"properties":{"id_build":1272,"id_source":"w145202032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517026.25879133854,5277615.092335448],[517026.1089240612,5277614.980757209],[517027.0920001378,5277612.649693573],[517024.61707602924,5277611.53105624],[517027.03868219233,5277605.20316161],[517029.8136685116,5277606.433817617],[517030.3435688213,5277604.990548467],[517039.1184493741,5277608.906121909],[517036.93463830015,5277613.523152377],[517034.2823730947,5277619.116844486],[517026.25879133854,5277615.092335448]]]},"properties":{"id_build":1273,"id_source":"w145202034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.1562751129,5277628.058082432],[516938.15063068754,5277621.837139045],[516941.8290441597,5277622.292402098],[516941.83001442935,5277621.9589851145],[516953.31453380524,5277623.770656275],[516952.1641452216,5277631.991661687],[516944.7031029442,5277630.769629621],[516940.37958130485,5277630.067979667],[516940.3808748906,5277629.623423686],[516936.92807718547,5277629.057677957],[516937.1562751129,5277628.058082432]]]},"properties":{"id_build":1274,"id_source":"w145202041","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516896.41437299247,5277589.92984013],[516896.564565942,5277589.930276029],[516896.3212136206,5277596.15340554],[516899.02436122263,5277596.272391274],[516898.78294207854,5277601.828686805],[516896.07979705255,5277601.709701176],[516896.0791519558,5277601.931979157],[516888.34519818693,5277601.576119021],[516888.55850324134,5277595.352902007],[516888.75549977086,5277589.57419744],[516896.41437299247,5277589.92984013]]]},"properties":{"id_build":1275,"id_source":"w145202043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.3705494745,5276849.101758041],[516484.1217604418,5276850.557192441],[516480.56535699585,5276859.882865472],[516476.6636249176,5276858.538147166],[516476.3603711807,5276859.537546906],[516473.4343858032,5276858.417871183],[516473.81274500396,5276857.41868377],[516471.71952215664,5276856.623670155],[516463.75923653785,5276853.611499427],[516467.39040855604,5276844.397167532],[516480.3705494745,5276849.101758041]]]},"properties":{"id_build":1276,"id_source":"w145202055","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.3136061747,5277607.46255786],[517303.0922812094,5277606.128220427],[517302.5755255739,5277603.1259054495],[517306.18080956873,5277602.914341629],[517309.04339138226,5277599.9220726285],[517313.5382658555,5277603.603057201],[517314.4076902588,5277614.275079991],[517310.55439732905,5277614.552585231],[517305.619455686,5277614.915789631],[517305.1913430734,5277607.356999123],[517303.3136061747,5277607.46255786]]]},"properties":{"id_build":1277,"id_source":"w145202058","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.48651434557,5277478.2827887675],[517285.48292923224,5277484.422114126],[517284.2927868124,5277485.6300061485],[517278.65090645745,5277491.359194578],[517275.86384685786,5277494.196106389],[517271.7480706545,5277491.794386121],[517280.9724630733,5277480.896702148],[517277.57106626104,5277478.174792485],[517283.4336128037,5277471.47934063],[517288.8870849158,5277476.096726118],[517291.48651434557,5277478.2827887675]]]},"properties":{"id_build":1278,"id_source":"w145202088","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516502.3441886207,5277417.088389127],[516502.2722400442,5277415.976786651],[516496.7281617816,5277411.293201357],[516507.20438776305,5277398.097252036],[516518.9083226804,5277407.477308763],[516517.227596908,5277409.595311597],[516508.71906881494,5277420.107237712],[516508.26690126193,5277420.661654885],[516511.71387437213,5277423.338786094],[516502.3441886207,5277417.088389127]]]},"properties":{"id_build":1279,"id_source":"w145202101","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516548.26122708694,5277458.896166238],[516546.1758507032,5277452.777546677],[516546.7772682996,5277452.556976188],[516545.8088873811,5277449.775727444],[516555.20470404567,5277446.801660651],[516555.9493663634,5277449.026575461],[516556.250391581,5277448.805151747],[516558.6326746712,5277456.147157885],[516553.0552068065,5277457.953991432],[516548.4098439145,5277459.4522879915],[516548.26122708694,5277458.896166238]]]},"properties":{"id_build":1280,"id_source":"w145202107","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.1643174669,5276876.594083089],[517268.9765862066,5276876.582412369],[517265.52248247823,5276876.316548362],[517265.45986059285,5276877.1721394295],[517264.52127024694,5276877.091558727],[517263.76286761224,5276877.033740335],[517263.614565511,5276878.922677891],[517253.40243529907,5276878.136660495],[517254.0115742754,5276870.269765025],[517269.5625511052,5276871.471717637],[517269.1643174669,5276876.594083089]]]},"properties":{"id_build":1281,"id_source":"w145202112","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516445.2376265866,5277747.123382658],[516439.46100443375,5277745.106548883],[516440.21759849694,5277743.108167176],[516432.1149230267,5277740.41793294],[516432.5695684141,5277738.974397503],[516435.97674881,5277729.092564567],[516441.4536372898,5277730.886268415],[516442.1345113902,5277729.1099529425],[516450.3867592378,5277732.022903478],[516445.2376265866,5277747.123382658]]]},"properties":{"id_build":1282,"id_source":"w145202130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517073.362226725,5277404.175560283],[517072.51006738556,5277413.064254227],[517068.21559114085,5277412.651559297],[517062.90003157494,5277412.146963053],[517063.28725135815,5277408.147061143],[517060.8844146353,5277408.0288796285],[517061.19523168856,5277404.47331336],[517063.59774414997,5277404.702633951],[517069.52892563597,5277405.275719592],[517069.75845818035,5277403.831573722],[517073.362226725,5277404.175560283]]]},"properties":{"id_build":1283,"id_source":"w145202134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517187.9692230363,5277682.251494157],[517187.28909989627,5277683.694305803],[517183.47271014925,5277691.840713767],[517181.6212013996,5277695.791832037],[517174.57176861155,5277692.547971906],[517176.38651295344,5277688.330007036],[517174.13660730433,5277687.323109557],[517175.5732533828,5277683.993148821],[517177.82316007884,5277685.000046849],[517180.6197239343,5277678.89560096],[517187.9692230363,5277682.251494157]]]},"properties":{"id_build":1284,"id_source":"w145202141","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.0117999632,5277681.809420065],[516734.0935818028,5277680.8180183675],[516733.20074383554,5277677.92581401],[516738.84526069177,5277676.25271391],[516745.8276294231,5277674.183363667],[516748.1332051059,5277681.969790743],[516736.18219196546,5277685.7141790185],[516736.6292487344,5277686.938003414],[516732.9463885986,5277688.038816006],[516732.12800758705,5277685.369105636],[516731.0117999632,5277681.809420065]]]},"properties":{"id_build":1285,"id_source":"w145202150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.12800758705,5277685.369105636],[516729.2715141692,5277686.361155758],[516728.82509453816,5277684.915053918],[516718.076580665,5277688.32951508],[516715.3961291446,5277680.319743817],[516720.84596521006,5277678.446015462],[516726.2958048062,5277676.572292211],[516726.8911390866,5277678.463381384],[516729.5974452757,5277677.470898497],[516731.0117999632,5277681.809420065],[516732.12800758705,5277685.369105636]]]},"properties":{"id_build":1286,"id_source":"w145202175","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.8987379986,5277652.362764174],[516730.8165008331,5277645.2438250035],[516734.2741002539,5277644.142363493],[516734.7965759137,5277645.255264522],[516744.3426873013,5277642.170795302],[516747.0227973513,5277650.29171847],[516741.4830673311,5277652.076251969],[516737.10090002685,5277653.486242817],[516736.3560140978,5277651.372442898],[516732.97319478507,5277652.5852580145],[516732.8987379986,5277652.362764174]]]},"properties":{"id_build":1287,"id_source":"w145202178","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.89703659376,5276965.977885288],[517270.977744976,5276964.088747172],[517271.50380653894,5276963.979167647],[517273.8956592887,5276962.797066166],[517276.70819764544,5276961.582871865],[517277.7378148338,5276963.8865217725],[517277.25619014003,5276974.332239018],[517274.7784034626,5276974.1026080195],[517270.27312653285,5276973.75582456],[517270.6720526215,5276965.866078142],[517270.89703659376,5276965.977885288]]]},"properties":{"id_build":1288,"id_source":"w145202214","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.2129406339,5277417.6231182525],[516616.94828163047,5277416.191813164],[516620.6316082653,5277414.979788353],[516621.450396627,5277417.53834274],[516622.8034422984,5277417.0976461945],[516623.9637800298,5277421.024196486],[516625.70436299726,5277426.886237666],[516617.36176036333,5277429.196357701],[516614.7586842304,5277420.297739303],[516613.10524532467,5277420.737580553],[516612.2129406339,5277417.6231182525]]]},"properties":{"id_build":1289,"id_source":"w145202219","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516868.312377776,5277543.50300351],[516859.67975470854,5277542.255458889],[516860.16967771424,5277539.044934224],[516861.0115500395,5277533.590402691],[516862.20559892064,5277525.814067214],[516870.1626923552,5277526.948518002],[516869.2402710429,5277534.28107931],[516866.50786017417,5277533.884173022],[516864.51107958436,5277533.600538788],[516863.59252943395,5277539.599433299],[516868.772298804,5277540.281278619],[516868.312377776,5277543.50300351]]]},"properties":{"id_build":1290,"id_source":"w145202223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.3915035117,5277180.120457434],[516320.3624122452,5277181.736991974],[516321.0523465412,5277176.737635091],[516315.2202547417,5277167.496687505],[516318.2305604537,5277165.282327454],[516330.1175500117,5277157.869287499],[516332.6299735316,5277161.799569056],[516338.8661278391,5277171.564024977],[516337.4366978809,5277172.449132373],[516339.0814534799,5277175.1211026665],[516338.3915035117,5277180.120457434]]]},"properties":{"id_build":1291,"id_source":"w145202249","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517004.8095162566,5277759.622722713],[517016.52455025684,5277759.5458144285],[517016.67473883764,5277759.546253437],[517004.8095162566,5277759.622722713]]]},"properties":{"id_build":1292,"id_source":"w145202275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516594.4095507822,5277498.371033446],[516597.5665034864,5277497.379773637],[516597.2686475138,5277496.489805484],[516601.3725297501,5277495.256739571],[516607.5659052465,5277493.40725323],[516610.24595884676,5277501.639249888],[516600.0989093214,5277504.722225659],[516600.39676443307,5277505.612193968],[516597.08962060977,5277506.603024074],[516595.67575627274,5277502.042258621],[516594.4095507822,5277498.371033446]]]},"properties":{"id_build":1293,"id_source":"w145202307","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516574.3817590134,5276835.820643687],[516572.88216558855,5276834.927257573],[516569.28434117517,5276832.360804827],[516568.9829675512,5276832.693366587],[516566.2100442642,5276830.573821967],[516566.58715646394,5276830.019196019],[516565.46277558175,5276829.238019055],[516572.3240150325,5276819.921801789],[516573.8229797904,5276821.037465439],[516577.3665843221,5276816.268542603],[516583.6612828744,5276821.287754547],[516580.2688381487,5276825.723684719],[516581.3925848166,5276826.727142255],[516574.3817590134,5276835.820643687]]]},"properties":{"id_build":1294,"id_source":"w145202397","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.7608254351,5276973.287598402],[517224.88604855316,5276981.734597439],[517225.7869717353,5276981.848402379],[517226.15455465415,5277035.307760408],[517209.10602855467,5277035.25734951],[517208.587423562,5276982.0198267875],[517209.2633624945,5276982.021824433],[517214.52066530683,5276982.037364343],[517214.5462931591,5276973.368531876],[517224.7608254351,5276973.287598402]]]},"properties":{"id_build":1295,"id_source":"w145202407","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516595.67575627274,5277502.042258621],[516592.51912315935,5277502.922380475],[516592.22190018103,5277501.810134625],[516581.9997630987,5277504.892927896],[516579.3941358508,5277496.88343609],[516585.5652581582,5277494.933837131],[516589.8422120533,5277493.579002279],[516590.3621953943,5277495.581001775],[516593.2938558206,5277494.589097666],[516594.4095507822,5277498.371033446],[516595.67575627274,5277502.042258621]]]},"properties":{"id_build":1296,"id_source":"w145202419","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.86229650106,5277699.7561596595],[517280.0695815685,5277696.527778667],[517281.2734127362,5277695.753372187],[517278.7335709922,5277691.233550098],[517275.52142997464,5277685.51142233],[517283.64557549905,5277680.867656882],[517287.53007000603,5277687.7698694505],[517291.2160079359,5277685.669156439],[517295.1011505933,5277692.349096133],[517293.07027974125,5277693.454462949],[517281.86229650106,5277699.7561596595]]]},"properties":{"id_build":1297,"id_source":"w145202469","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516689.60807847267,5277698.694984154],[516689.37970003695,5277691.914794207],[516696.1385825423,5277691.823034433],[516715.2146663542,5277691.2109352155],[516733.76476885,5277690.708526505],[516752.01449415076,5277690.2053125305],[516753.44162234647,5277690.0982793905],[516753.5732621676,5277696.54477404],[516753.19746686047,5277696.654832513],[516689.60807847267,5277698.694984154]]]},"properties":{"id_build":1298,"id_source":"w145202472","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.2129406339,5277417.6231182525],[516609.50716843025,5277418.393377617],[516608.6145444075,5277415.390054841],[516610.0426883125,5277414.949569565],[516608.32423513156,5277409.220964242],[516607.14141819853,5277405.272125118],[516614.73274497077,5277403.070986267],[516617.63336918375,5277412.970712412],[516616.205224211,5277413.41119583],[516616.94828163047,5277416.191813164],[516612.2129406339,5277417.6231182525]]]},"properties":{"id_build":1299,"id_source":"w145202503","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.63962748874,5276755.117091688],[516604.26897801284,5276758.652542909],[516601.72895790293,5276753.866291874],[516600.4505505619,5276754.418346164],[516595.1486579204,5276743.622679274],[516597.78090071474,5276742.407643878],[516602.66985246376,5276739.976505981],[516605.37752284243,5276738.650549312],[516610.52982057945,5276749.223519304],[516609.10056280624,5276749.997420917],[516611.63962748874,5276755.117091688]]]},"properties":{"id_build":1300,"id_source":"w145202505","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516595.1863875175,5276772.552463192],[516594.7313114974,5276774.107122857],[516593.2158710208,5276778.770674046],[516581.8854847436,5276774.959648295],[516582.1887609073,5276773.960254131],[516577.0120733317,5276771.945000113],[516579.51243789075,5276764.283475693],[516584.6149739093,5276765.965101457],[516585.14547148376,5276764.299516091],[516596.55066677596,5276768.221900979],[516595.1863875175,5276772.552463192]]]},"properties":{"id_build":1301,"id_source":"w145202506","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517216.0124770137,5277595.089484276],[517213.01124905574,5277594.191490311],[517213.39133166627,5277592.63665469],[517218.91353260435,5277594.308970155],[517218.94156604086,5277594.987006811],[517226.9781984168,5277594.566222096],[517227.049677323,5277595.788973149],[517225.0214166065,5277596.005251703],[517224.5659058915,5277597.671003381],[517216.0124770137,5277595.089484276]]]},"properties":{"id_build":1302,"id_source":"w145202513","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.5925347735,5277543.471027715],[516963.5949929652,5277543.9687910015],[516963.3198185102,5277545.623974069],[516973.58075711183,5277547.309865286],[516972.00608940097,5277556.796624214],[516965.63337419444,5277555.744448644],[516962.3832319247,5277555.20150665],[516962.138582788,5277556.69006885],[516958.50560834684,5277556.090443684],[516959.6599360129,5277549.103105004],[516960.5925347735,5277543.471027715]]]},"properties":{"id_build":1303,"id_source":"w145202521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516667.4861243016,5276242.011259175],[516671.37679920706,5276242.100192232],[516671.3823663296,5276240.155264033],[516675.97179240244,5276240.179516485],[516675.9166753097,5276254.182956638],[516672.8821137906,5276254.163154994],[516672.897385046,5276248.828494706],[516672.34154318186,5276248.826903553],[516671.6955647989,5276248.825054443],[516671.6942922878,5276249.269609466],[516667.43518309266,5276249.312989407],[516667.4861243016,5276242.011259175]]]},"properties":{"id_build":1304,"id_source":"w145337927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.0802982018,5276558.085091268],[517304.9366834798,5276555.861868829],[517310.94679094426,5276555.435171534],[517312.03874851,5276567.108095005],[517311.3624310167,5276567.217224354],[517311.57685778674,5276570.885474741],[517306.24209230253,5276571.536457754],[517305.80497528234,5276566.978427534],[517299.1185629094,5276567.514260883],[517298.2433260007,5276558.731618071],[517302.07504784083,5276558.365125446],[517305.0802982018,5276558.085091268]]]},"properties":{"id_build":1305,"id_source":"w145337928","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.97606548684,5276489.944335643],[516340.84603565175,5276492.7280741],[516335.27787507884,5276496.268922969],[516335.0528551159,5276496.157152137],[516330.865050711,5276489.588166587],[516324.50899434637,5276479.456636542],[516306.97788310447,5276463.4034102345],[516311.04788341245,5276458.413522644],[516329.85307834315,5276475.470590432],[516338.44966738205,5276490.165138192],[516338.97606548684,5276489.944335643]]]},"properties":{"id_build":1306,"id_source":"w145337929","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.5222984181,5276481.470739185],[516680.31343389687,5276481.453980959],[516682.61939806753,5276481.438358056],[516682.63804506185,5276485.417213035],[516681.706672203,5276485.414545161],[516681.7167281909,5276487.148353424],[516681.7266886661,5276488.91550333],[516682.41770682327,5276488.9174827095],[516682.4235602682,5276492.118323116],[516676.82018012024,5276492.146730802],[516674.56686129555,5276492.140278768],[516674.5222984181,5276481.470739185]]]},"properties":{"id_build":1307,"id_source":"w145337930","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516790.53429914545,5276207.044499045],[516790.60685031035,5276207.933825562],[516790.60044244904,5276210.156600517],[516783.5400215393,5276210.025111197],[516783.6316145111,5276206.913464361],[516783.7232716203,5276203.779589793],[516783.789704294,5276201.579215774],[516813.0150405297,5276202.241432401],[516817.3639058591,5276202.342899469],[516828.53293089947,5276202.54186923],[516830.95896437566,5276202.604449174],[516830.95318345027,5276204.604946605],[516830.94624633976,5276207.005543534],[516830.9429062476,5276208.161386503],[516820.5252917838,5276207.875670312],[516817.2730673067,5276207.788481165],[516814.46398502885,5276207.713687097],[516790.53429914545,5276207.044499045]]]},"properties":{"id_build":1308,"id_source":"w145337934","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.1929301007,5276439.103341156],[516667.1324668222,5276439.08313104],[516666.53157633083,5276439.081411425],[516666.5621089828,5276428.412087777],[516673.5471555676,5276428.5432209205],[516674.14836534153,5276428.433802469],[516674.13754677516,5276432.212521239],[516673.4615441722,5276432.210585865],[516673.4106546487,5276434.24429666],[516673.37656922603,5276435.655673255],[516674.2027941415,5276435.658038712],[516674.1929301007,5276439.103341156]]]},"properties":{"id_build":1309,"id_source":"w145337935","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517093.5543074549,5276512.004226442],[517101.4242536637,5276517.695458526],[517099.6144271219,5276520.135218955],[517100.81358084036,5276521.027858045],[517102.6123107282,5276522.366817149],[517099.5958267834,5276526.470130523],[517097.57209311804,5276525.019372009],[517095.0843213667,5276528.123982113],[517089.31355667056,5276523.772594992],[517094.51704104897,5276516.674921988],[517091.6690459535,5276514.554907656],[517093.5543074549,5276512.004226442]]]},"properties":{"id_build":1310,"id_source":"w145337938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.75980560255,5276423.970533366],[516706.7919672758,5276420.614206682],[516709.96912210225,5276420.645549544],[516713.1537880609,5276420.676915694],[516713.16410585836,5276419.69891594],[516717.14495489036,5276419.732569142],[516717.08253370575,5276425.77838972],[516717.07068399555,5276427.2898556525],[516713.48041974986,5276427.257323351],[516713.46962348727,5276428.402031297],[516706.71723159426,5276428.338201481],[516706.75980560255,5276423.970533366]]]},"properties":{"id_build":1311,"id_source":"w145337940","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.2249259165,5276602.041416175],[516945.7098333448,5276598.3723054],[516947.9637581893,5276598.156584816],[516947.6739942948,5276594.488129638],[516958.4191573518,5276592.963452916],[516959.1547155591,5276598.300303184],[516959.522494141,5276600.968728374],[516955.9907422586,5276601.514143123],[516955.98847713403,5276602.292114825],[516951.9008859025,5276602.847027683],[516946.37061667367,5276603.597796705],[516946.2249259165,5276602.041416175]]]},"properties":{"id_build":1312,"id_source":"w145337941","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516569.1589265336,5276316.772204441],[516568.4258190121,5276310.435157834],[516568.3522868567,5276309.879250319],[516572.40965245315,5276309.446235263],[516572.77889241796,5276311.670079272],[516583.3729831122,5276310.588837857],[516584.40082944895,5276318.927239749],[516573.6568442844,5276319.896913014],[516573.36240181775,5276317.784421429],[516573.21628739557,5276316.339189954],[516569.1589265336,5276316.772204441]]]},"properties":{"id_build":1313,"id_source":"w145337942","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516891.1347322494,5276613.995602714],[516892.5340797486,5276623.557680408],[516889.6038641444,5276623.882600728],[516889.01201742404,5276620.768971189],[516880.1452926307,5276622.076940648],[516879.1150273713,5276614.738730815],[516883.1728494146,5276614.083654859],[516882.80471455934,5276611.526373342],[516887.68906168407,5276610.7625569375],[516888.04971576895,5276613.308703106],[516888.2041896236,5276614.431662567],[516891.1347322494,5276613.995602714]]]},"properties":{"id_build":1314,"id_source":"w145337944","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.93107249046,5276084.046963248],[517222.7400981614,5276081.940657906],[517228.28454186884,5276086.736061721],[517226.5512889029,5276088.620310073],[517226.9258820266,5276088.95483705],[517219.1613510951,5276098.267612018],[517210.319697754,5276090.795120696],[517213.40995672974,5276087.247782346],[517215.8080800457,5276089.144244796],[517218.2807174098,5276086.161895977],[517220.40657546173,5276083.600853777],[517220.93107249046,5276084.046963248]]]},"properties":{"id_build":1315,"id_source":"w145337946","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516670.1818092707,5276449.650130074],[516667.1022510827,5276449.641316076],[516667.1324668222,5276439.08313104],[516674.1929301007,5276439.103341156],[516674.71870928205,5276439.104846507],[516674.7823651609,5276443.106057973],[516674.18179327704,5276442.99319878],[516674.1398465626,5276444.526806552],[516674.0974543964,5276446.216008638],[516674.6986623595,5276446.106590245],[516674.7635909636,5276449.663246592],[516670.1818092707,5276449.650130074]]]},"properties":{"id_build":1316,"id_source":"w145337949","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517166.8489588574,5276618.580577553],[517175.19589241466,5276615.2709951615],[517175.49403417914,5276616.049852931],[517174.89250628225,5276616.270358448],[517175.1906480341,5276617.0492162],[517174.1348607828,5276618.490919701],[517174.93262738036,5276620.493788491],[517175.7751310156,5276622.6079291245],[517168.02940658364,5276625.808143224],[517166.836837104,5276622.6927137375],[517168.1904365711,5276622.141005127],[517166.8489588574,5276618.580577553]]]},"properties":{"id_build":1317,"id_source":"w145337951","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.59483290475,5276652.920783607],[517309.7551011564,5276653.123507804],[517309.75311908126,5276653.790340725],[517297.8833252419,5276654.644189807],[517297.74169116555,5276651.754134288],[517297.38331389,5276645.973800211],[517303.8968531085,5276645.448565601],[517309.32856432424,5276645.009034507],[517309.32559129264,5276646.009283873],[517312.1052725983,5276645.7952669505],[517312.17737470445,5276646.806853484],[517312.59483290475,5276652.920783607]]]},"properties":{"id_build":1318,"id_source":"w145337952","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.22544057714,5276389.7889128225],[516685.2480469976,5276381.898059481],[516687.95239923423,5276381.794668082],[516687.95271768485,5276381.6835293025],[516690.4614602359,5276381.690718274],[516692.1589926209,5276381.69558328],[516692.3044387022,5276383.363095518],[516695.4591439988,5276383.372138076],[516695.5097240795,5276391.93003943],[516692.0545757373,5276391.920135724],[516691.91008540156,5276389.91920713],[516685.22544057714,5276389.7889128225]]]},"properties":{"id_build":1319,"id_source":"w145337956","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.95156708546,5276222.220368039],[517308.9872522494,5276229.123023099],[517299.882938141,5276234.31954081],[517299.06097571715,5276232.872282952],[517295.44923361024,5276234.973211502],[517291.56343471626,5276228.182150535],[517295.4759659422,5276225.970973048],[517295.6252040056,5276226.304835392],[517301.04233106703,5276223.32015171],[517301.4907047492,5276224.09946169],[517304.95156708546,5276222.220368039]]]},"properties":{"id_build":1320,"id_source":"w145337964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516903.1605693834,5276611.140861891],[516902.1296859319,5276604.024925684],[516910.6205745257,5276602.827037952],[516910.1792780093,5276599.60270373],[516913.4863443987,5276598.834329157],[516914.7354408043,5276608.39597576],[516911.8048935325,5276608.832023742],[516911.98872880475,5276610.188462598],[516912.3196837134,5276612.612270344],[516907.4353347972,5276613.376066096],[516906.9927467461,5276610.59628733],[516903.1605693834,5276611.140861891]]]},"properties":{"id_build":1321,"id_source":"w145337965","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517215.23307244317,5276385.329897137],[517221.0032245264,5276389.903685524],[517218.66621058446,5276392.786409125],[517219.7151487452,5276393.678628365],[517215.492784047,5276399.1119933855],[517207.6995410358,5276392.865136388],[517209.7347880091,5276390.426075682],[517211.2334143071,5276391.653041448],[517212.236016144,5276390.433467225],[517213.41954408935,5276388.992148424],[517212.6697382045,5276388.545373379],[517215.23307244317,5276385.329897137]]]},"properties":{"id_build":1322,"id_source":"w145337966","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517258.73528944195,5276634.7451551445],[517259.09370585,5276640.525486645],[517253.90988622623,5276640.954685055],[517254.27390485,5276644.845656377],[517250.5174833989,5276645.167947313],[517250.15346228937,5276641.276976232],[517243.9177929188,5276641.814207707],[517243.62788869074,5276638.256875921],[517243.1927025778,5276633.032017121],[517251.6671513403,5276632.323592836],[517258.5188558977,5276631.74373931],[517258.73528944195,5276634.7451551445]]]},"properties":{"id_build":1323,"id_source":"w145337967","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516714.7056279539,5276586.590736155],[516716.56996442424,5276591.263956021],[516717.0171112226,5276592.487776591],[516712.28012014704,5276594.25241652],[516712.50321549096,5276595.031034864],[516707.0148162404,5276596.904662482],[516704.03148460796,5276589.560882434],[516709.74585575005,5276587.46562091],[516709.5975502636,5276586.798357005],[516711.3797162036,5276586.081062519],[516713.9589994075,5276585.032637068],[516714.7056279539,5276586.590736155]]]},"properties":{"id_build":1324,"id_source":"w145337970","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516672.45671105385,5276470.984351197],[516679.1492195798,5276470.959058283],[516680.2082832801,5276470.962091454],[516680.22591341246,5276475.296590501],[516679.71515966626,5276475.295127669],[516679.7182463222,5276476.839978434],[516679.7219059242,5276478.184779373],[516680.30777022295,5276478.186457332],[516680.31343389687,5276481.453980959],[516674.5222984181,5276481.470739185],[516672.4867966843,5276481.464911624],[516672.45671105385,5276470.984351197]]]},"properties":{"id_build":1325,"id_source":"w145337972","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5410906715,5276193.007678636],[516822.57344048034,5276193.1333510475],[516822.4903009915,5276195.911602712],[516829.0249372268,5276196.0416199295],[516829.85087504645,5276196.155146128],[516829.84766363876,5276197.266533581],[516831.04949460295,5276197.270006453],[516831.00483968365,5276199.726064193],[516830.977712736,5276201.3152831355],[516830.95896437566,5276202.604449174],[516828.53293089947,5276202.54186923],[516817.3639058591,5276202.342899469],[516817.3146952709,5276201.1757908175],[516817.3647058048,5276199.464384263],[516817.5410906715,5276193.007678636]]]},"properties":{"id_build":1326,"id_source":"w145337973","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516724.044408532,5276577.837508493],[516731.46364765783,5276583.638085228],[516727.0907001996,5276589.404789381],[516724.4621912561,5276589.2861004835],[516720.7143807936,5276586.60798516],[516720.7923620957,5276585.607951484],[516721.7735713633,5276583.94367284],[516721.0995009876,5276583.274899008],[516722.0115165932,5276582.166120387],[516722.9085106492,5276581.057298771],[516722.0842210842,5276580.388093476],[516724.044408532,5276577.837508493]]]},"properties":{"id_build":1327,"id_source":"w145337974","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.22544057714,5276389.7889128225],[516678.9160369596,5276389.770840486],[516678.91030791786,5276391.771338532],[516675.00512438064,5276391.537876761],[516674.80301729025,5276383.424100671],[516678.40871297836,5276383.323285548],[516678.41316875484,5276381.767342642],[516680.59908859455,5276381.718033058],[516682.76998606726,5276381.66868126],[516682.76934936194,5276381.890958817],[516685.2480469976,5276381.898059481],[516685.22544057714,5276389.7889128225]]]},"properties":{"id_build":1328,"id_source":"w145337976","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.0351038638,5276612.901207529],[517161.8425290167,5276609.785779142],[517163.0455851884,5276609.344765474],[517161.7788829818,5276605.895699325],[517170.2006132801,5276602.697469956],[517170.4246302057,5276603.142689561],[517169.8231011751,5276603.363195598],[517169.97102588066,5276604.141610179],[517169.21534667525,5276605.69533915],[517169.968510002,5276607.54248001],[517170.8559517485,5276609.70120827],[517163.0351038638,5276612.901207529]]]},"properties":{"id_build":1329,"id_source":"w145337977","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.60455288953,5276137.293740729],[517221.0826810887,5276134.393694421],[517218.3686753498,5276137.719861718],[517203.90689206216,5276125.674040223],[517216.4207206611,5276110.596016813],[517224.8132864835,5276117.51149124],[517244.96999132435,5276134.242090666],[517246.9183808155,5276135.803815571],[517236.9683052099,5276147.55516963],[517236.893519024,5276147.443808602],[517234.5856963713,5276145.503148445],[517232.77238257613,5276143.986283166],[517232.39746453374,5276143.762894508],[517231.4173509663,5276144.982531562],[517229.68345662387,5276147.089056583],[517229.00906453066,5276146.5313631445],[517227.0308250631,5276144.9028721005],[517221.81543128873,5276140.6196843],[517224.60455288953,5276137.293740729]]]},"properties":{"id_build":1330,"id_source":"w145337978","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516892.5340797486,5276623.557680408],[516891.1347322494,5276613.995602714],[516894.1403843917,5276613.559762225],[516893.9936160121,5276612.370141107],[516893.70004682196,5276610.002012767],[516898.73461495055,5276609.2386413915],[516899.10242046526,5276611.907062745],[516903.1605693834,5276611.140861891],[516904.19080504304,5276618.479076006],[516895.47429120983,5276619.787458179],[516895.9152717951,5276623.122930194],[516892.5340797486,5276623.557680408]]]},"properties":{"id_build":1331,"id_source":"w145337979","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.0351038638,5276612.901207529],[517170.8559517485,5276609.70120827],[517171.64555437793,5276611.926332057],[517172.1967736752,5276613.483914349],[517173.99808054394,5276613.933785289],[517174.4454573831,5276615.04650244],[517175.04698538885,5276614.825996876],[517175.19589241466,5276615.2709951615],[517166.8489588574,5276618.580577553],[517165.43204284256,5276615.131067739],[517164.22866011487,5276615.683219731],[517163.0351038638,5276612.901207529]]]},"properties":{"id_build":1332,"id_source":"w145337982","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516337.7194217889,5276509.501393433],[516336.8165382499,5276510.054559013],[516338.9093395303,5276513.728039486],[516333.0413823327,5276517.04577006],[516332.4436167754,5276515.93269684],[516329.28368619515,5276517.813210448],[516326.069521855,5276512.247215236],[516328.32657180267,5276510.919866787],[516326.2334512828,5276507.357528953],[516328.71614607715,5276505.919673548],[516328.7201969911,5276504.4748691],[516330.37512018386,5276503.590391959],[516331.5750177125,5276504.260594733],[516333.7566498249,5276503.044176574],[516335.02885198756,5276504.714839953],[516337.7194217889,5276509.501393433]]]},"properties":{"id_build":1333,"id_source":"w145337983","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.0308125049,5276390.070834495],[516706.1067906644,5276381.913398913],[516708.6830064428,5276381.965245157],[516708.68332528963,5276381.854106377],[516710.2833395235,5276381.81424102],[516713.04014316876,5276381.755467638],[516713.11047124065,5276383.422764866],[516716.2651765342,5276383.431818691],[516716.23997613665,5276392.211782271],[516712.78482793004,5276392.201866265],[516712.7154566658,5276390.201152683],[516706.0308125049,5276390.070834495]]]},"properties":{"id_build":1334,"id_source":"w145337984","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516518.01120495045,5276421.098210783],[516515.542924623,5276417.42360129],[516512.1559710244,5276419.859070581],[516506.7703039064,5276411.952886395],[516515.12408589997,5276406.1973059615],[516516.15665657003,5276407.6005940605],[516516.77024022694,5276408.424767763],[516518.3507381535,5276407.3178534545],[516521.9415973603,5276412.440464414],[516520.43652702443,5276413.436452032],[516523.20399110124,5276417.556471117],[516518.01120495045,5276421.098210783]]]},"properties":{"id_build":1335,"id_source":"w145337985","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.9109585862,5276147.123309944],[516651.94601089903,5276147.053543425],[516651.9847312733,5276144.019541784],[516652.006204453,5276141.763468368],[516650.6090945178,5276141.748360285],[516650.5914979999,5276142.648541111],[516645.8443485774,5276142.590516405],[516645.88357398397,5276139.378692774],[516658.22464775696,5276139.536229144],[516658.9006525393,5276139.549276541],[516658.8038267275,5276147.139837461],[516656.9109585862,5276147.123309944]]]},"properties":{"id_build":1336,"id_source":"w145337986","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517185.4517021284,5276525.055753925],[517192.57208048436,5276530.189199169],[517191.07122076186,5276532.274196267],[517189.9323995975,5276533.849019433],[517190.3787955135,5276535.295154067],[517189.7749624222,5276536.293629645],[517190.67398688564,5276537.074261716],[517190.2974524023,5276537.406569576],[517182.5775115519,5276531.826798953],[517184.84032601543,5276528.610422386],[517183.6418425066,5276527.495488347],[517185.4517021284,5276525.055753925]]]},"properties":{"id_build":1337,"id_source":"w145337988","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516939.75023026107,5276581.461724694],[516932.1806521488,5276575.771584197],[516933.9900680072,5276573.442910543],[516933.11319242243,5276572.784636334],[516930.84225058317,5276571.09982353],[516933.85794598,5276567.218700421],[516935.8059493202,5276568.891461273],[516938.3693747487,5276565.564724015],[516944.1402097498,5276569.915961681],[516939.2383643544,5276576.681226521],[516941.71148300875,5276578.577796315],[516939.75023026107,5276581.461724694]]]},"properties":{"id_build":1338,"id_source":"w145337989","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517193.5219631019,5276513.743317912],[517200.56723801396,5276518.876551078],[517199.2998708262,5276520.7399561405],[517198.22864443064,5276522.314977304],[517198.675039196,5276523.761112549],[517197.84521643835,5276524.98119944],[517198.66978779854,5276525.539333328],[517198.21748549945,5276526.093696459],[517190.49753709306,5276520.513915453],[517192.83579871163,5276517.1866249405],[517191.6366581993,5276516.293966872],[517193.5219631019,5276513.743317912]]]},"properties":{"id_build":1339,"id_source":"w145337990","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.69625532243,5276340.116551329],[516683.4151561387,5276339.993146712],[516683.26811453886,5276338.881328673],[516683.64367756026,5276338.8824044885],[516683.5781158651,5276335.548026198],[516683.5921238596,5276330.657920306],[516686.2213871341,5276330.554312891],[516686.287265812,5276333.777552421],[516686.2821711685,5276335.555772751],[516687.78442411334,5276335.560076935],[516687.69625532243,5276340.116551329]]]},"properties":{"id_build":1340,"id_source":"w145337992","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516921.06230761996,5276550.62168593],[516919.02691462793,5276553.171986505],[516920.19630336796,5276553.9755900735],[516921.95038587163,5276555.180995868],[516919.00915629003,5276559.2846208885],[516916.7471466441,5276562.278822899],[516914.3487999168,5276560.493620743],[516908.6527205466,5276556.25376962],[516913.7044442876,5276549.600054381],[516911.08172980713,5276547.480782793],[516913.2679867197,5276544.708638124],[516921.06230761996,5276550.62168593]]]},"properties":{"id_build":1341,"id_source":"w145337993","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.98697083746,5276600.338721499],[516935.31114238163,5276609.900591022],[516932.1552669371,5276610.335973511],[516932.35311750934,5276612.036987029],[516932.5949347147,5276614.116003569],[516927.710584307,5276614.879782319],[516927.1928969579,5276612.099783666],[516923.58636884077,5276612.533860923],[516922.5558335386,5276605.30678221],[516930.8968293532,5276603.997348706],[516930.53065338323,5276600.773231274],[516933.98697083746,5276600.338721499]]]},"properties":{"id_build":1342,"id_source":"w145337994","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.21283725597,5276248.830284825],[516647.40364599053,5276248.8000267865],[516647.4797155816,5276243.209919151],[516646.60842683614,5276243.196314863],[516645.9474568325,5276243.183311799],[516645.94640863425,5276243.550069687],[516641.6650471949,5276243.493379202],[516641.76127849024,5276236.102866662],[516645.88490611163,5276236.159106383],[516645.90507457627,5276234.35870151],[516650.4042731609,5276234.416017822],[516650.21283725597,5276248.830284825]]]},"properties":{"id_build":1343,"id_source":"w145337995","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.2913073146,5276546.461011791],[517172.1018109079,5276543.798995568],[517173.5259508554,5276544.803452926],[517175.9393031106,5276541.476377037],[517183.3594535098,5276546.832974877],[517182.8317164687,5276547.498256398],[517182.0819287676,5276547.051485136],[517181.62897392944,5276547.828127171],[517179.825680018,5276548.045086785],[517178.68656990404,5276549.719937094],[517177.4116726045,5276551.594438706],[517170.2913073146,5276546.461011791]]]},"properties":{"id_build":1344,"id_source":"w145337996","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516410.34324121574,5276565.831123986],[516406.429397881,5276568.709728772],[516407.2524726923,5276569.823444545],[516395.81109204615,5276578.571257717],[516389.8248519773,5276570.552349262],[516398.7816723657,5276563.909181891],[516398.1829854005,5276563.129518242],[516400.7420361269,5276561.247349669],[516402.1637996821,5276563.140728616],[516406.00284796226,5276560.150770581],[516410.34324121574,5276565.831123986]]]},"properties":{"id_build":1345,"id_source":"w145337997","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.93243625667,5276344.531260802],[516520.19928003236,5276338.194220101],[516523.3549554954,5276337.869753061],[516523.5771402256,5276338.981780086],[516524.62903192913,5276338.873624824],[516524.5573879519,5276337.650885211],[516524.4103159842,5276336.539071262],[516534.6291043454,5276335.345536942],[516535.7296039574,5276344.573253854],[516521.15241432877,5276346.421259166],[516520.93243625667,5276344.531260802]]]},"properties":{"id_build":1346,"id_source":"w145337999","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516487.63356162235,5276485.584289026],[516490.76429409895,5276494.039769613],[516482.1702829003,5276497.149580479],[516473.39582706837,5276500.325577396],[516470.264758569,5276491.981244912],[516477.55835021206,5276489.223384053],[516476.8876996676,5276487.332111892],[516477.41693334345,5276486.111072652],[516481.7777572805,5276484.5674567],[516482.9031598715,5276485.015200502],[516483.64860486373,5276487.01782474],[516487.63356162235,5276485.584289026]]]},"properties":{"id_build":1347,"id_source":"w145338000","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516316.73461361456,5276627.028351085],[516318.6082869731,5276628.478417172],[516316.1215987521,5276631.36108177],[516306.68029370735,5276623.332579293],[516316.62799029966,5276611.468494874],[516317.67702611885,5276612.360551712],[516319.2592995232,5276610.586750302],[516323.3055333292,5276614.043420827],[516321.7980571497,5276615.928570478],[516324.270735652,5276618.0471553905],[516316.73461361456,5276627.028351085]]]},"properties":{"id_build":1348,"id_source":"w145338001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.16350462975,5276534.828445533],[517136.6950320301,5276528.357414285],[517138.50487164233,5276525.917665318],[517137.4481724502,5276525.114349426],[517135.5821137629,5276523.686269593],[517138.6737348756,5276519.583195853],[517140.9227910876,5276521.0346318595],[517142.9586199269,5276518.373269908],[517148.804133197,5276522.836070202],[517143.67700664786,5276529.48936082],[517147.0491103948,5276532.166642715],[517145.16350462975,5276534.828445533]]]},"properties":{"id_build":1349,"id_source":"w145338002","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.5921238596,5276330.657920306],[516683.5781158651,5276335.548026198],[516683.64367756026,5276338.8824044885],[516683.26811453886,5276338.881328673],[516680.0382725543,5276338.872077657],[516679.96666119347,5276337.649336056],[516672.07951793866,5276337.737892767],[516672.02317574585,5276331.180490285],[516672.09987916943,5276330.6250114525],[516677.50799431826,5276330.640495148],[516683.5921238596,5276330.657920306]]]},"properties":{"id_build":1350,"id_source":"w145338003","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.8907887826,5276455.3037001835],[516706.29402528197,5276455.421733241],[516706.41396032204,5276465.98034944],[516699.35321085516,5276466.071238974],[516698.82743410417,5276466.069731393],[516698.6899587649,5276461.623748945],[516699.51618000487,5276461.6261180015],[516699.51997230115,5276460.30356637],[516699.52414701454,5276458.847648192],[516698.622814322,5276458.845063773],[516698.5579004369,5276455.288407075],[516703.8907887826,5276455.3037001835]]]},"properties":{"id_build":1351,"id_source":"w145338004","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516931.07396308734,5276336.373391101],[516927.83442863263,5276339.698165728],[516920.99611863465,5276332.976569873],[516912.6298168625,5276324.761272872],[516916.0195765015,5276321.436926186],[516919.861308765,5276317.669335677],[516922.6551400335,5276320.389261512],[516925.4789492201,5276323.131503772],[516924.34902742883,5276324.239617285],[516928.0936844841,5276328.029250035],[516929.22360626434,5276326.921137242],[516934.6903572907,5276332.605155218],[516932.6260010523,5276334.755263435],[516931.07396308734,5276336.373391101]]]},"properties":{"id_build":1352,"id_source":"w145338006","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516466.44843573053,5276380.641837062],[516462.45118617895,5276381.086209579],[516462.6269941489,5276382.664889826],[516462.75880293746,5276383.865570833],[516454.6891660625,5276384.765225329],[516453.9492169788,5276378.150324554],[516452.31127107184,5276378.323520774],[516451.7765466068,5276373.50966269],[516461.55928991997,5276372.425908458],[516461.7572236783,5276374.149132759],[516465.67933436437,5276373.715661284],[516466.44843573053,5276380.641837062]]]},"properties":{"id_build":1353,"id_source":"w145338009","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.5027590644,5276356.795546235],[516689.6768414376,5276356.682039718],[516689.8471307291,5276349.680727466],[516694.42867253604,5276349.804998043],[516695.85580934695,5276349.809089012],[516697.58307738026,5276349.92518048],[516697.57262623776,5276353.570532245],[516697.5642780681,5276356.482368125],[516696.88826666714,5276356.480430052],[516696.96274180355,5276356.7029229365],[516693.5826849343,5276356.693233713],[516690.5027590644,5276356.795546235]]]},"properties":{"id_build":1354,"id_source":"w145338011","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517198.21748549945,5276526.093696459],[517197.76518328825,5276526.648059623],[517196.94028381957,5276526.201064662],[517196.4128715408,5276526.75520614],[517194.91033945244,5276526.861909441],[517193.83927942056,5276528.381362023],[517192.57208048436,5276530.189199169],[517185.4517021284,5276525.055753925],[517187.56331626297,5276522.1723515475],[517188.8378944472,5276522.954091673],[517190.49753709306,5276520.513915453],[517198.21748549945,5276526.093696459]]]},"properties":{"id_build":1355,"id_source":"w145338013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.04806920385,5276323.662489892],[516608.56149847194,5276327.9984012665],[516607.43449042866,5276328.106327192],[516608.4584958795,5276337.778398909],[516600.34348234587,5276338.755520352],[516599.806342147,5276334.830758871],[516599.5340319732,5276332.862810514],[516598.5569336589,5276333.082305092],[516598.1176599608,5276329.080024957],[516601.04832350777,5276328.643819038],[516600.5342551537,5276324.530185876],[516608.04806920385,5276323.662489892]]]},"properties":{"id_build":1356,"id_source":"w145338015","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.46364765783,5276583.638085228],[516724.044408532,5276577.837508493],[516726.2305647635,5276575.065293717],[516727.0551738302,5276575.623360781],[516727.61321911484,5276574.846985543],[516728.48800172866,5276573.626961262],[516729.3874010967,5276574.296383215],[516730.4430857339,5276572.854599437],[516731.3450393911,5276572.634911201],[516734.8678447405,5276575.201246978],[516735.91203266074,5276577.760461424],[516731.46364765783,5276583.638085228]]]},"properties":{"id_build":1357,"id_source":"w145338016","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516985.0901306705,5276075.463537107],[516989.2966272776,5276075.475805147],[516989.2739353142,5276083.255515752],[516984.76665659907,5276083.353510267],[516984.6951056082,5276082.130765265],[516979.73713057814,5276082.227449451],[516978.4601598776,5276082.223726995],[516978.4851051405,5276073.666045341],[516982.5410469253,5276073.789009304],[516982.6113023103,5276075.45630915],[516985.0901306705,5276075.463537107]]]},"properties":{"id_build":1358,"id_source":"w145338017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.0777111475,5276366.793095081],[516564.35851729795,5276367.182618905],[516564.7822196793,5276371.3849037625],[516560.5446285673,5276371.817411478],[516560.4205404606,5276370.550066325],[516558.6097994609,5276370.7338553155],[516555.20623792417,5276371.068712525],[516554.3515285668,5276362.5863258075],[516563.3526048567,5276361.689458074],[516563.3015749905,5276361.144728541],[516567.4864689947,5276360.756528761],[516568.0777111475,5276366.793095081]]]},"properties":{"id_build":1359,"id_source":"w145338019","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516958.4191573518,5276592.963452916],[516957.90115898853,5276590.29459041],[516967.8198054437,5276588.878664076],[516968.4847798422,5276592.659353286],[516971.5658822164,5276592.112632766],[516971.93300774373,5276595.0033363495],[516972.2266431175,5276597.338127008],[516965.9222224142,5276598.264445005],[516962.5333377238,5276598.754702131],[516962.31092332315,5276597.7537965],[516959.1547155591,5276598.300303184],[516958.4191573518,5276592.963452916]]]},"properties":{"id_build":1360,"id_source":"w145338020","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.5972869465,5276537.873611258],[516973.9911678581,5276533.104492986],[516975.42344316264,5276531.33043173],[516977.3086481826,5276528.779712957],[516980.6060422239,5276531.345540525],[516978.72116059356,5276533.785119444],[516986.3661826561,5276539.364400306],[516981.0119826494,5276546.684009421],[516974.8287595672,5276542.087025882],[516972.61780850874,5276540.435713653],[516973.14616988716,5276539.548135539],[516970.5972869465,5276537.873611258]]]},"properties":{"id_build":1361,"id_source":"w145338022","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.0645910083,5276225.851110913],[517250.1718470764,5276219.179348579],[517244.29159818497,5276211.148762117],[517245.64661671704,5276210.152516642],[517242.0556074914,5276205.251737413],[517247.47568830906,5276201.26675535],[517251.066695476,5276206.167537895],[517251.8949283152,5276205.50315277],[517258.5531003182,5276214.63633515],[517259.68211909884,5276213.861702694],[517263.79726026667,5276219.319745112],[517255.0645910083,5276225.851110913]]]},"properties":{"id_build":1362,"id_source":"w145338024","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516531.5204305014,5276319.110321046],[516530.64052636665,5276311.550326414],[516530.56667518045,5276311.105558151],[516534.92480435653,5276310.562230992],[516535.21799902094,5276313.119275652],[516544.83592716284,5276311.924053209],[516545.6733025292,5276318.583697973],[516546.01184390683,5276321.040846358],[516541.1356008286,5276321.527123848],[516536.1692232072,5276322.013149503],[516535.7283280628,5276318.566568093],[516531.5204305014,5276319.110321046]]]},"properties":{"id_build":1363,"id_source":"w145338025","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.71665907174,5276538.906071527],[517027.51153036684,5276544.596984378],[517025.70141826384,5276547.147906587],[517026.67563779786,5276547.906505126],[517028.3992013609,5276549.26744951],[517025.23223908193,5276553.481500985],[517023.28360634064,5276552.030987819],[517021.1724093936,5276554.803310868],[517015.17661152466,5276550.340199717],[517020.3790072928,5276543.575876862],[517017.7556791211,5276541.678834776],[517019.71665907174,5276538.906071527]]]},"properties":{"id_build":1364,"id_source":"w145338032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516321.2221880637,5276660.605115925],[516321.994185258,5276661.185206059],[516322.8711471913,5276661.832274328],[516323.32366688765,5276661.166704494],[516328.721190726,5276664.849446475],[516324.7987307664,5276670.839993627],[516317.9015342072,5276666.263935217],[516317.4496383424,5276666.70722781],[516309.1275498303,5276661.349209609],[516318.3312640003,5276646.926831054],[516326.57763311255,5276652.506929346],[516321.2221880637,5276660.605115925]]]},"properties":{"id_build":1365,"id_source":"w145338034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516698.82386113843,5276572.097010564],[516704.3132373755,5276569.889958816],[516705.65596518334,5276573.116862421],[516705.12956049514,5276573.337631869],[516706.0842360913,5276575.685418647],[516707.2924340054,5276578.6785433255],[516704.58530366916,5276579.782174876],[516704.9579819943,5276580.783501425],[516700.4469509402,5276582.326519683],[516697.8366019438,5276575.872930472],[516700.0927567169,5276574.879142271],[516698.82386113843,5276572.097010564]]]},"properties":{"id_build":1366,"id_source":"w145338035","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.50711102615,5276661.309104884],[516576.64101115847,5276670.106600405],[516572.5018298336,5276672.984452699],[516571.0804647966,5276670.979892816],[516569.77852947265,5276671.876420064],[516568.82278835983,5276672.52942516],[516569.34664913855,5276673.197754032],[516564.3042778782,5276676.739880789],[516559.7410050175,5276670.28079855],[516564.707638415,5276666.960731891],[516563.8849235899,5276665.735854762],[516570.50711102615,5276661.309104884]]]},"properties":{"id_build":1367,"id_source":"w145338042","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516717.08253370575,5276425.77838972],[516717.14495489036,5276419.732569142],[516717.1417823032,5276418.221060105],[516721.27291931916,5276418.232919573],[516721.42027063435,5276419.233599947],[516723.67361771036,5276419.24007004],[516727.80475401296,5276419.251934143],[516727.6350588643,5276426.030968582],[516727.63250515686,5276426.920078873],[516720.8724728346,5276426.900666592],[516720.8759827639,5276425.678139944],[516717.08253370575,5276425.77838972]]]},"properties":{"id_build":1368,"id_source":"w145338044","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.7865106091,5276133.524856163],[516652.15747679595,5276133.517339207],[516652.1488977147,5276136.518085078],[516645.8395374322,5276136.388910493],[516645.8434759629,5276135.010790168],[516645.84779563895,5276133.499303358],[516647.6502440265,5276133.615594497],[516647.6689858203,5276127.058409124],[516655.0299708514,5276127.190592629],[516655.1000013947,5276128.9690271765],[516654.7865106091,5276133.524856163]]]},"properties":{"id_build":1369,"id_source":"w145338046","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.9107668768,5276683.189316969],[517276.6027573859,5276683.210631148],[517276.84039303707,5276686.656670076],[517272.51324132265,5276686.955025557],[517272.2972785305,5276683.798014588],[517270.75723135285,5276683.904586867],[517269.32987944863,5276684.0003797645],[517269.4017247879,5276685.100876873],[517265.5704179458,5276685.356252032],[517264.92297862767,5276675.729625664],[517276.3568324711,5276674.963328175],[517276.9107668768,5276683.189316969]]]},"properties":{"id_build":1370,"id_source":"w145338047","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516867.44372486806,5276598.9230702445],[516857.97577624145,5276600.340471974],[516857.5338069785,5276597.338419451],[516860.84054577403,5276596.681153819],[516859.5139966388,5276587.897273419],[516866.72771770274,5276586.806764136],[516867.242217293,5276590.698145364],[516869.94744211866,5276590.26142222],[516870.75851296174,5276595.48733987],[516868.20370223565,5276595.857814449],[516867.0014384791,5276596.032155814],[516867.44372486806,5276598.9230702445]]]},"properties":{"id_build":1371,"id_source":"w145338048","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516583.8013408294,5276368.549397242],[516578.15879979904,5276369.100145439],[516572.7341485042,5276369.629291173],[516572.4204320216,5276366.372005942],[516568.0777111475,5276366.793095081],[516567.4864689947,5276360.756528761],[516571.87429333857,5276360.324453531],[516572.0494714854,5276362.114300771],[516578.44336320716,5276361.487887548],[516578.0347556438,5276357.263416747],[516582.6554634321,5276356.8208985515],[516583.8013408294,5276368.549397242]]]},"properties":{"id_build":1372,"id_source":"w145338050","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517182.5775115519,5276531.826798953],[517190.2974524023,5276537.406569576],[517189.8451518176,5276537.960933362],[517189.09569144674,5276537.403022403],[517188.56828092324,5276537.957164598],[517186.9906418281,5276538.063648248],[517185.6176699348,5276540.0823403215],[517184.5011879971,5276541.723914333],[517177.45592683746,5276536.590700389],[517179.26643674914,5276533.928686421],[517180.4659033562,5276534.710203168],[517182.5775115519,5276531.826798953]]]},"properties":{"id_build":1373,"id_source":"w145338054","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.98307237215,5276656.081367511],[516649.91738840076,5276654.311520414],[516649.17011591804,5276652.97570714],[516648.57242477225,5276651.862601061],[516657.0743157097,5276646.774484944],[516659.24165640643,5276650.559435564],[516661.04712410585,5276649.564343061],[516661.705294692,5276655.790051327],[516653.4303272284,5276660.323110948],[516654.7001784105,5276662.771816661],[516651.766182946,5276664.430522536],[516646.98307237215,5276656.081367511]]]},"properties":{"id_build":1374,"id_source":"w145338061","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.53621929686,5276557.314148005],[516969.195111537,5276555.096186453],[516968.44576192903,5276554.4938483955],[516966.57241960877,5276552.976889803],[516969.438252237,5276548.984208704],[516971.6122289721,5276550.435360464],[516973.72372772015,5276547.551880719],[516978.0710310548,5276550.67646586],[516979.64509822184,5276551.792452486],[516974.59232890245,5276558.779527144],[516977.2156632806,5276560.676549824],[516975.3304685107,5276563.227268733],[516967.53621929686,5276557.314148005]]]},"properties":{"id_build":1375,"id_source":"w145338064","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517162.3773580354,5276581.2244326575],[517162.23630968464,5276578.112103324],[517163.8136098962,5276578.116751792],[517163.59974548506,5276574.226229416],[517170.4353729894,5276574.024099838],[517172.4633318353,5276574.030079369],[517172.46202096675,5276574.474634603],[517171.7857070303,5276574.583780151],[517171.8581949631,5276575.473112083],[517170.50229057216,5276576.802791488],[517170.7056504081,5276579.159554291],[517170.86538620194,5276581.027173483],[517162.3773580354,5276581.2244326575]]]},"properties":{"id_build":1376,"id_source":"w145338065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.71665907174,5276538.906071527],[517021.451336175,5276536.466066762],[517024.22423582914,5276538.58582723],[517029.5027376158,5276531.488315757],[517030.55167941074,5276532.380501118],[517035.34864906245,5276535.839863285],[517033.01048516145,5276539.167216891],[517035.1093398549,5276540.618172684],[517032.16867303965,5276544.499463059],[517029.9870355482,5276543.103836114],[517029.01990416204,5276542.489739438],[517027.51153036684,5276544.596984378],[517019.71665907174,5276538.906071527]]]},"properties":{"id_build":1377,"id_source":"w145338066","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.014077943,5276227.201428651],[517118.5764272356,5276227.448867779],[517118.6306353829,5276234.561968434],[517117.57544691226,5276235.781403955],[517115.54802352394,5276235.553166329],[517115.4676840565,5276237.331165581],[517110.4353774133,5276237.2052399935],[517110.4494168605,5276232.426273791],[517111.42589873617,5276232.429142539],[517111.35568248335,5276230.761840635],[517110.0039567562,5276230.646729833],[517110.014077943,5276227.201428651]]]},"properties":{"id_build":1378,"id_source":"w145338067","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.61650699284,5276500.243625821],[517217.5219264933,5276500.36631022],[517217.52619789797,5276498.921505893],[517220.6805126607,5276499.041971895],[517220.2799845521,5276507.487409828],[517217.68155738787,5276507.346359473],[517215.99934617773,5276507.252474575],[517214.8700612768,5276508.138254497],[517213.9690645233,5276508.024451509],[517213.890669071,5276509.135617456],[517213.2146752454,5276509.133619409],[517213.21763164084,5276508.133370247],[517213.61650699284,5276500.243625821]]]},"properties":{"id_build":1379,"id_source":"w145338070","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516524.86435684736,5276573.601313702],[516523.8219676539,5276570.375304455],[516521.1407221985,5276562.365638564],[516531.44116436166,5276558.727258372],[516534.64343184634,5276568.405503912],[516531.4105625127,5276569.507723146],[516531.93222847633,5276570.954020206],[516529.526197486,5276571.836308297],[516529.07964062,5276570.39022463],[516528.2150599641,5276570.676734046],[516527.4256520812,5276570.941228987],[516528.0224284892,5276572.3877388565],[516524.86435684736,5276573.601313702]]]},"properties":{"id_build":1380,"id_source":"w145338075","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.00442714687,5276588.3333323775],[517160.93914270547,5276584.998946751],[517162.44165913167,5276584.892234714],[517162.3773580354,5276581.2244326575],[517170.86538620194,5276581.027173483],[517171.46626217326,5276581.028945169],[517171.388531096,5276581.917834174],[517170.7122180445,5276582.02697985],[517170.86047088687,5276582.694255616],[517169.35467713565,5276583.912353576],[517169.4236921093,5276585.97975687],[517169.49244489707,5276588.136071223],[517161.00442714687,5276588.3333323775]]]},"properties":{"id_build":1381,"id_source":"w145338076","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517193.5219631019,5276513.743317912],[517195.40759779885,5276511.0815307675],[517196.8323981555,5276511.863716168],[517198.94402267784,5276508.980317952],[517200.0677249396,5276509.983894479],[517206.28908337106,5276514.33672287],[517206.0624388894,5276514.78061233],[517205.38775907794,5276514.334060001],[517204.48380820564,5276515.220507648],[517202.9812729836,5276515.327208873],[517201.78934285074,5276517.079696459],[517200.56723801396,5276518.876551078],[517193.5219631019,5276513.743317912]]]},"properties":{"id_build":1382,"id_source":"w145338078","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.98697083746,5276600.338721499],[516936.91752409743,5276599.902684671],[516937.4335917673,5276603.238378219],[516946.2249259165,5276602.041416175],[516946.37061667367,5276603.597796705],[516947.1803233535,5276609.268280538],[516943.4229269878,5276609.924186004],[516943.79071199655,5276612.59261023],[516938.90668206126,5276613.245240781],[516938.5076874937,5276610.976829219],[516938.24169093877,5276609.464554865],[516935.31114238163,5276609.900591022],[516933.98697083746,5276600.338721499]]]},"properties":{"id_build":1383,"id_source":"w145338079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.5693817131,5276164.126699312],[516653.76027672034,5276164.051982811],[516653.6845700563,5276166.885827417],[516647.067398986,5276166.711315355],[516647.1515668711,5276163.544075919],[516649.10442627047,5276163.594113673],[516649.15454644733,5276161.827136526],[516649.3326339671,5276157.3376037935],[516655.4770682107,5276157.34405705],[516656.83633087424,5276157.4590837695],[516656.64272719366,5276159.49238568],[516656.5693817131,5276164.126699312]]]},"properties":{"id_build":1384,"id_source":"w145338080","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516412.84039399575,5276665.863895654],[516414.04024854064,5276666.534115691],[516415.9057395312,5276670.873822884],[516414.0258388984,5276671.646501944],[516415.487372752,5276675.407143954],[516416.71031294623,5276678.544731337],[516418.0638274799,5276677.992848527],[516419.10719546885,5276680.885422798],[516408.58046294824,5276684.967922156],[516403.73412285687,5276672.284341343],[516409.82478462084,5276669.856427039],[516408.8558920649,5276667.18634379],[516412.84039399575,5276665.863895654]]]},"properties":{"id_build":1385,"id_source":"w145338083","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516557.51415128954,5276238.274487984],[516557.7334898829,5276240.386764942],[516558.1008442799,5276243.27744029],[516557.12404850434,5276243.3858030625],[516555.24651860923,5276243.269326335],[516553.6688122302,5276243.375981663],[516553.67355036084,5276241.708900328],[516552.321185148,5276241.816196485],[516552.2508090172,5276240.148901688],[516553.7530864893,5276240.153171241],[516553.7584563916,5276238.263812404],[516557.51415128954,5276238.274487984]]]},"properties":{"id_build":1386,"id_source":"w145338084","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516479.180492564,5276553.022158738],[516478.7326638324,5276552.020634249],[516473.91997456487,5276554.007532949],[516470.5623492207,5276546.107117375],[516475.07428962825,5276544.230504786],[516474.62708829745,5276543.006703014],[516474.6277170908,5276542.784425394],[516480.0425537985,5276540.3546723975],[516481.90677874355,5276545.138955127],[516482.80159357743,5276544.785840589],[516483.8618391455,5276544.366510612],[516486.248997278,5276550.152532255],[516479.180492564,5276553.022158738]]]},"properties":{"id_build":1387,"id_source":"w145338085","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.2916256427,5276543.91893362],[517254.42366225,5276543.597755083],[517254.71126009536,5276547.9330584975],[517253.43419379584,5276547.995958787],[517253.7505848675,5276552.753678642],[517254.153550987,5276558.7119646715],[517252.1249282664,5276558.928234314],[517246.790487916,5276559.46813298],[517246.50189743465,5276555.466246303],[517246.14214610454,5276550.130471603],[517243.6631904144,5276550.234270851],[517243.2299714789,5276544.34257998],[517250.2916256427,5276543.91893362]]]},"properties":{"id_build":1388,"id_source":"w145338088","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.5342551537,5276324.530185876],[516600.16977818793,5276320.639258501],[516599.02017168485,5276320.7693495825],[516597.2394274015,5276320.964326092],[516596.35897542466,5276313.626598846],[516601.5433513879,5276313.085676012],[516601.4710896037,5276312.085212997],[516608.8340600514,5276311.439367333],[516609.71227800887,5276319.55506786],[516607.83382289374,5276319.771990415],[516608.19829479913,5276323.662918273],[516608.04806920385,5276323.662489892],[516600.5342551537,5276324.530185876]]]},"properties":{"id_build":1389,"id_source":"w145338089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517173.41479020775,5276557.028499829],[517171.99695821106,5276558.980378973],[517170.9260083205,5276560.466494175],[517171.071640189,5276562.022880365],[517170.4678131524,5276563.021357977],[517171.3674914211,5276563.579709488],[517171.3665083366,5276563.913125907],[517163.569837313,5276558.88885277],[517165.83197567257,5276555.894746335],[517164.4071820134,5276555.11256845],[517166.4439926469,5276552.117798155],[517167.7182394286,5276553.010672509],[517173.41479020775,5276557.028499829]]]},"properties":{"id_build":1390,"id_source":"w145338091","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.05656647217,5276569.861295649],[516887.646485941,5276573.641757592],[516888.0877970104,5276576.866089937],[516884.5560374502,5276577.411548008],[516884.9989610868,5276580.08018608],[516879.96404750977,5276580.9547081655],[516879.6541927213,5276579.019978491],[516879.3738017139,5276577.28538578],[516876.4432415473,5276577.721451566],[516875.1173554576,5276568.715290208],[516878.04792004655,5276568.279223751],[516878.5653127924,5276571.1703565875],[516887.05656647217,5276569.861295649]]]},"properties":{"id_build":1391,"id_source":"w145338092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.12501634983,5276379.91073393],[516424.0117833797,5276379.932969521],[516423.92538842635,5276383.933753828],[516425.42762873217,5276383.937990368],[516428.35699733027,5276383.946252739],[516428.34530384414,5276388.091729307],[516428.32909597305,5276393.837604374],[516416.01074637886,5276393.802869985],[516416.0223371268,5276389.690735014],[516418.65125505574,5276389.698145654],[516418.74203273834,5276384.141418297],[516416.03800028807,5276384.133795905],[516416.12501634983,5276379.91073393]]]},"properties":{"id_build":1392,"id_source":"w145338094","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.4353729894,5276574.024099838],[517163.59974548506,5276574.226229416],[517162.17266338994,5276574.222023695],[517162.0316147279,5276571.109694397],[517163.5344623032,5276570.8918438265],[517163.3957070806,5276567.001542868],[517172.4095237747,5276566.805835438],[517172.33212009456,5276567.583585612],[517171.5059137246,5276567.581149442],[517171.6531837523,5276568.58184163],[517170.1473862113,5276569.799939364],[517170.2626792789,5276571.456261908],[517170.4353729894,5276574.024099838]]]},"properties":{"id_build":1393,"id_source":"w145338096","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516655.1000013947,5276128.9690271765],[516661.33393633546,5276129.209135633],[516661.4641379048,5276136.211305709],[516664.84368671395,5276136.4432534585],[516664.9105342515,5276139.333075521],[516664.45888925076,5276139.665202239],[516658.9006525393,5276139.549276541],[516658.22464775696,5276139.536229144],[516658.18482332723,5276137.702311093],[516658.1584326215,5276136.424129693],[516654.70345054474,5276136.3031097725],[516654.7865106091,5276133.524856163],[516655.1000013947,5276128.9690271765]]]},"properties":{"id_build":1394,"id_source":"w145338097","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.2233309667,5276179.523405319],[516614.4682841606,5276179.532660816],[516614.86823065684,5276178.889191739],[516615.29834992863,5276178.201352902],[516615.3975601072,5276169.755022709],[516620.1373029367,5276169.768545719],[516623.43484192394,5276169.777956237],[516623.7108762584,5276178.336496992],[516622.350882654,5276181.111106768],[516620.1728753135,5276180.993751698],[516620.0124977064,5276184.549762839],[516611.27679735696,5276184.480386129],[516611.2066591496,5276182.73529361],[516611.2233309667,5276179.523405319]]]},"properties":{"id_build":1395,"id_source":"w145338098","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.49244489707,5276588.136071223],[517169.5304002506,5276590.547916272],[517169.5554307463,5276592.248428652],[517170.75455888064,5276593.141082307],[517170.82639133855,5276594.252691873],[517171.5778123012,5276594.143767679],[517171.5755183821,5276594.921739357],[517169.62234846444,5276595.027120369],[517162.71196386,5276595.117890683],[517162.49678931833,5276591.671923487],[517161.144820856,5276591.667939357],[517161.00442714687,5276588.3333323775],[517169.49244489707,5276588.136071223]]]},"properties":{"id_build":1396,"id_source":"w145338100","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.8132272443,5276112.107452926],[516470.7333975235,5276113.774321521],[516467.504059421,5276113.542911195],[516468.1326356518,5276103.764401686],[516469.5642322124,5276102.212494814],[516480.0031063629,5276103.019998537],[516479.7664391873,5276107.0203553075],[516478.5649042043,5276106.905816235],[516478.5249253146,5276107.761478219],[516478.4853866309,5276108.4615459815],[516483.36726961733,5276108.697638814],[516483.1306003307,5276112.697995491],[516470.8132272443,5276112.107452926]]]},"properties":{"id_build":1397,"id_source":"w145338104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.21283725597,5276248.830284825],[516650.4042731609,5276234.416017822],[516654.7005686678,5276234.506099303],[516654.66556538106,5276236.23977794],[516658.8041520374,5276236.318297518],[516658.7408915234,5276240.0524092605],[516658.6775357079,5276243.819862649],[516654.7342503385,5276243.741901599],[516654.7430647198,5276243.2862541815],[516654.0745833543,5276243.273228711],[516653.4211247568,5276243.260246278],[516653.32993137604,5276248.883652526],[516650.21283725597,5276248.830284825]]]},"properties":{"id_build":1398,"id_source":"w145338105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516991.75136024825,5276109.49170499],[516998.00281841704,5276103.730682445],[517000.09956892586,5276105.95959532],[516999.5721377502,5276106.513754304],[517000.7404054028,5276107.728586583],[517002.5676782188,5276109.634408768],[517003.3913539503,5276110.5259306375],[517000.6797328067,5276113.074227864],[516993.82541274314,5276119.500326677],[516990.75508145255,5276116.268318813],[516990.83895044867,5276113.267792247],[516993.17401664477,5276111.051810871],[516991.75136024825,5276109.49170499]]]},"properties":{"id_build":1399,"id_source":"w145338107","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.592871686,5276405.782560502],[517175.7281365202,5276409.330583175],[517173.40524468303,5276407.434357463],[517174.611293084,5276405.993097215],[517172.06371959456,5276403.873930004],[517171.38509212853,5276404.761047069],[517165.91470833,5276400.410470887],[517171.04131744616,5276393.979478413],[517176.1894108717,5276398.095715384],[517178.16023059236,5276399.668598441],[517179.1402905492,5276398.448952066],[517182.21233509894,5276401.014228621],[517178.592871686,5276405.782560502]]]},"properties":{"id_build":1400,"id_source":"w145338109","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.2913073146,5276546.461011791],[517177.4116726045,5276551.594438706],[517176.0541880625,5276553.457583039],[517174.9983236491,5276554.921514028],[517175.36961179273,5276556.367426043],[517174.61556383607,5276557.365460191],[517175.2154589454,5276557.700648671],[517174.98881849647,5276558.144539361],[517173.41479020775,5276557.028499829],[517167.7182394286,5276553.010672509],[517169.75472483493,5276550.127042179],[517168.4056954595,5276549.122807157],[517170.2913073146,5276546.461011791]]]},"properties":{"id_build":1401,"id_source":"w145338110","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517225.1557395243,5276331.901020191],[517224.1743440904,5276333.565213808],[517221.1221869275,5276331.889092179],[517215.0253786237,5276328.536875948],[517219.02738371666,5276321.435763412],[517224.80219822505,5276324.45361226],[517225.70749640296,5276323.122612902],[517228.70674914774,5276324.909720132],[517228.3292125933,5276325.575441752],[517231.17922416644,5276327.028689592],[517229.59363635146,5276329.802492149],[517227.7056267491,5276333.242238998],[517225.1557395243,5276331.901020191]]]},"properties":{"id_build":1402,"id_source":"w145338113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.05656647217,5276569.861295649],[516886.615898793,5276566.4146858],[516895.2570582297,5276565.217211197],[516894.8157501911,5276561.992878357],[516898.1218683828,5276561.557911486],[516899.521862744,5276570.897712447],[516896.14064012916,5276571.332460602],[516896.47328071145,5276573.178345468],[516896.8798053026,5276575.44677576],[516891.7704210617,5276576.098792099],[516891.32878961565,5276572.985598283],[516887.646485941,5276573.641757592],[516887.05656647217,5276569.861295649]]]},"properties":{"id_build":1403,"id_source":"w145338114","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516709.7243320666,5276333.1779091945],[516712.8039518916,5276333.18674558],[516713.17983421375,5276333.076684531],[516713.1788774279,5276333.410100841],[516713.7053040352,5276333.189332147],[516713.60946045286,5276340.413136686],[516710.00405635,5276340.402791302],[516710.00086766575,5276341.514179018],[516700.9125652471,5276341.376971162],[516701.01126133837,5276333.15291751],[516707.1859698669,5276333.015031512],[516709.72496979136,5276332.955631655],[516709.7243320666,5276333.1779091945]]]},"properties":{"id_build":1404,"id_source":"w145338115","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517208.15169821994,5276341.519911849],[517201.25250048045,5276337.720780319],[517197.50310394703,5276335.598052925],[517201.0514521687,5276329.495846166],[517204.651282552,5276331.395854517],[517206.23751469667,5276328.399767663],[517213.21117607446,5276332.421404547],[517211.4743876427,5276335.528184345],[517210.7245746933,5276335.081409605],[517209.84827595076,5276336.768144133],[517208.98713159194,5276338.410467681],[517209.661831622,5276338.8570202505],[517208.15169821994,5276341.519911849]]]},"properties":{"id_build":1405,"id_source":"w145338117","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517168.4223475765,5276237.709299538],[517160.68561337603,5276237.686498987],[517160.0122076158,5276236.795397204],[517159.94462487684,5276234.23898468],[517158.8933567379,5276234.124747759],[517158.9071085086,5276229.456920345],[517163.63961993455,5276229.359724883],[517163.7111313033,5276230.582472459],[517165.36331210815,5276230.69848122],[517165.2931112669,5276229.031178631],[517168.3727867442,5276229.040255772],[517168.4223475765,5276237.709299538]]]},"properties":{"id_build":1406,"id_source":"w145338118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517243.2299714789,5276544.34257998],[517241.6523330323,5276544.449048827],[517241.43687403016,5276541.11421768],[517239.55879469606,5276541.219797642],[517239.2698692465,5276537.32905025],[517240.6225083982,5276537.110774886],[517240.1935623692,5276529.77427998],[517247.9312254374,5276529.352631911],[517248.2664356692,5276535.366286489],[517248.50149444793,5276539.690319932],[517250.0037280119,5276539.683655382],[517250.2916256427,5276543.91893362],[517243.2299714789,5276544.34257998]]]},"properties":{"id_build":1407,"id_source":"w145338120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.95981978177,5276251.664452645],[516692.96943168034,5276237.827591571],[516697.2586269867,5276237.773202544],[516697.26864751213,5276239.518124042],[516701.4225091547,5276239.507805973],[516701.40232353314,5276241.308210708],[516701.4468622833,5276246.731954242],[516697.0526416548,5276246.7415832],[516697.0544258795,5276246.119206172],[516696.4760496133,5276246.1175481165],[516695.98780990567,5276246.116148504],[516696.0019576822,5276251.662058526],[516692.95981978177,5276251.664452645]]]},"properties":{"id_build":1408,"id_source":"w145338122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.35817069875,5276538.691870197],[517100.75614411617,5276540.588286982],[517097.73999710276,5276544.580462604],[517095.7613026759,5276543.140950849],[517094.6670131553,5276542.348646341],[517092.8575232265,5276544.677270136],[517085.13782546064,5276538.986490019],[517087.1736224962,5276536.325108568],[517089.9468246009,5276538.333761579],[517095.2250807905,5276531.34744829],[517097.9979562342,5276533.467243926],[517100.84593973705,5276535.587261442],[517098.35817069875,5276538.691870197]]]},"properties":{"id_build":1409,"id_source":"w145338123","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516437.73578211525,5276337.027322271],[516436.6691829015,5276337.024312051],[516436.69665742305,5276332.612145166],[516442.1197299937,5276332.64968044],[516442.16816117434,5276326.137033229],[516439.6293498424,5276326.129866463],[516439.65886569035,5276320.995297646],[516450.07688929955,5276321.069169426],[516449.9979511671,5276333.06091557],[516446.71555877535,5276333.040531569],[516444.2594057685,5276333.022482221],[516444.23296104453,5276337.067891139],[516437.73578211525,5276337.027322271]]]},"properties":{"id_build":1410,"id_source":"w145338126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.2195319077,5276349.887232619],[516489.2924417599,5276350.665416705],[516485.1596843148,5276351.209415777],[516484.7181322147,5276347.985115683],[516475.40135506116,5276348.959009662],[516474.9607405311,5276345.401294008],[516475.7872925837,5276345.29249251],[516474.83283652837,5276337.510016129],[516483.69927066076,5276336.423706905],[516484.16920212517,5276340.237127396],[516484.433410504,5276342.427326575],[516488.26540922857,5276341.993615163],[516489.2195319077,5276349.887232619]]]},"properties":{"id_build":1411,"id_source":"w145338128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.1987808469,5276313.079136292],[516643.90736395563,5276313.095447069],[516643.8527998493,5276316.418367425],[516643.8170060755,5276318.429893264],[516645.2441505449,5276318.433971814],[516645.15792066266,5276322.323614037],[516641.4773926471,5276322.313096433],[516641.4691361152,5276325.202704427],[516634.7840987447,5276325.183606973],[516634.79393911624,5276321.738305135],[516635.7700883779,5276321.852232941],[516635.87027984066,5276313.072484819],[516638.1987808469,5276313.079136292]]]},"properties":{"id_build":1412,"id_source":"w145338129","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516684.5820054198,5276242.071321719],[516684.5969667422,5276239.470696389],[516688.5479571682,5276239.4820159245],[516688.5527020535,5276237.826048497],[516692.96943168034,5276237.827591571],[516692.95981978177,5276251.664452645],[516689.79749992717,5276251.666503965],[516689.7981142249,5276246.209548023],[516689.05448760645,5276246.207417172],[516688.2282358108,5276246.205049675],[516688.22648437304,5276246.816312825],[516684.59097685013,5276246.805897223],[516684.5820054198,5276242.071321719]]]},"properties":{"id_build":1413,"id_source":"w145338130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.56664931326,5276218.089596064],[517115.6737600498,5276218.326881197],[517115.74593483674,5276219.327350646],[517117.92424546706,5276219.333752356],[517118.5970063754,5276220.447126719],[517118.5764272356,5276227.448867779],[517110.014077943,5276227.201428651],[517110.0222401856,5276224.422959967],[517111.4490814482,5276224.538291446],[517111.4546322348,5276222.648932745],[517110.628703453,5276222.5353665855],[517110.56664931326,5276218.089596064]]]},"properties":{"id_build":1414,"id_source":"w145338134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516460.0192814614,5276529.295215216],[516462.10885667545,5276534.080128344],[516452.1814534157,5276538.60880241],[516450.389800583,5276534.713851931],[516449.4875379747,5276535.044722464],[516447.6968238742,5276530.816356422],[516448.4488667784,5276530.485061333],[516450.32913138374,5276529.601254632],[516448.7621772565,5276525.929218821],[516456.9595512985,5276522.2847674675],[516459.0488174855,5276527.18081824],[516460.0192814614,5276529.295215216]]]},"properties":{"id_build":1415,"id_source":"w145338136","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517195.0100752866,5276213.225856234],[517188.9087660774,5276218.987111863],[517183.6661854455,5276213.748075757],[517183.7449065264,5276212.525771179],[517185.62768172787,5276210.864230601],[517184.8033922383,5276210.194960204],[517188.41904515686,5276206.760298265],[517191.56433348963,5276209.992632878],[517190.7354521548,5276210.879304054],[517191.7837714631,5276211.99379541],[517192.8383236738,5276210.996650817],[517195.0100752866,5276213.225856234]]]},"properties":{"id_build":1416,"id_source":"w145338139","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.5161613529,5276516.04731395],[516690.2640070403,5276516.113623442],[516690.19194287265,5276520.292270214],[516689.1554530654,5276520.2781858975],[516689.12827006006,5276521.900747851],[516689.1013418531,5276523.434398761],[516690.10024413513,5276523.459489325],[516690.0988427043,5276523.948500059],[516689.93360022514,5276523.9480265],[516689.879966363,5276526.937531172],[516682.3166578448,5276526.815835304],[516682.4979184417,5276515.980232304],[516686.5161613529,5276516.04731395]]]},"properties":{"id_build":1417,"id_source":"w145338140","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517035.24264163716,5276520.724546939],[517042.96208691545,5276526.52639938],[517041.07685230725,5276529.077096964],[517042.22346849745,5276529.95845626],[517043.84974840627,5276531.196866759],[517040.908420631,5276535.300430292],[517040.0087255739,5276534.742098999],[517037.7469691818,5276537.625115263],[517035.34864906245,5276535.839863285],[517030.55167941074,5276532.380501118],[517035.8298693957,5276525.39413422],[517033.281973273,5276523.386166116],[517035.24264163716,5276520.724546939]]]},"properties":{"id_build":1418,"id_source":"w145338142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.35607418703,5276653.309460205],[516570.30898182234,5276651.75052454],[516573.9965765317,5276649.204804649],[516576.53982924693,5276652.879654369],[516583.38831619243,5276648.120144072],[516587.80199656077,5276654.356539101],[516589.0813743528,5276653.47106559],[516592.82160168514,5276658.81642831],[516586.87631975237,5276662.911661665],[516583.28599014255,5276657.677869325],[516580.89276198007,5276659.349264703],[516577.2652890049,5276661.88403742],[516571.35607418703,5276653.309460205]]]},"properties":{"id_build":1419,"id_source":"w145338143","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516658.6775357079,5276243.819862649],[516658.7408915234,5276240.0524092605],[516663.38286559604,5276240.087916058],[516663.3774283326,5276241.988388756],[516667.4861243016,5276242.011259175],[516667.43518309266,5276249.312989407],[516663.9574478511,5276249.291924211],[516663.95916494523,5276248.691774929],[516663.2906524201,5276248.689862277],[516662.539514752,5276248.687713322],[516662.5091984484,5276254.0334445145],[516658.64090658136,5276254.000151195],[516658.6775357079,5276243.819862649]]]},"properties":{"id_build":1420,"id_source":"w145338145","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.9166753097,5276254.182956638],[516675.97179240244,5276240.179516485],[516680.5387797818,5276240.170366392],[516680.5483278609,5276242.0819959855],[516684.5820054198,5276242.071321719],[516684.59097685013,5276246.805897223],[516684.59823127405,5276249.517725891],[516680.5946043756,5276249.528486185],[516680.5959093973,5276249.0728172865],[516679.8597945251,5276249.070709123],[516679.34150956536,5276249.06922486],[516679.35694626084,5276254.170579802],[516675.9166753097,5276254.182956638]]]},"properties":{"id_build":1421,"id_source":"w145338150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516677.5002887559,5276149.705097958],[516685.22726859554,5276153.172557282],[516685.602525208,5276153.284771935],[516684.16610790376,5276156.503707024],[516682.81594867515,5276155.833001745],[516681.9237987714,5276157.853188109],[516680.01855312224,5276162.159950058],[516679.71809358837,5276162.159089612],[516672.2161491262,5276158.803421301],[516675.0129014041,5276152.698746772],[516674.1875908461,5276152.362965078],[516675.62464001053,5276148.921750083],[516677.5002887559,5276149.705097958]]]},"properties":{"id_build":1422,"id_source":"w145338158","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517168.02940658364,5276625.808143224],[517175.7751310156,5276622.6079291245],[517176.7368249134,5276625.055840788],[517177.3406178152,5276626.613578679],[517179.0664834737,5276627.17436848],[517178.9156099779,5276627.396202988],[517179.2140784624,5276628.063922146],[517179.9661509629,5276627.732721403],[517180.26429143746,5276628.511579434],[517171.8425927453,5276631.7097943025],[517170.5007918277,5276628.260504637],[517169.2223024362,5276628.812434149],[517168.02940658364,5276625.808143224]]]},"properties":{"id_build":1423,"id_source":"w145338162","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.28058505175,5276627.536977323],[516693.3343394492,5276626.762019669],[516691.1647820996,5276623.755028219],[516690.6377454764,5276624.198076627],[516687.94560778525,5276620.078191362],[516694.8693338596,5276615.31902734],[516699.2074927832,5276621.666430204],[516700.3360394216,5276621.002828017],[516702.9546528442,5276624.566809505],[516693.17106003466,5276631.318280769],[516691.00150431856,5276628.311289359],[516692.28058505175,5276627.536977323]]]},"properties":{"id_build":1424,"id_source":"w145338164","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.61650699284,5276500.243625821],[517213.21763164084,5276508.133370247],[517210.91213532485,5276507.993188728],[517209.3125456883,5276507.899549927],[517207.58106497827,5276509.228110873],[517206.9050711646,5276509.22611356],[517206.82700544165,5276510.226140806],[517206.1510117455,5276510.22414358],[517206.466229555,5276505.223785419],[517206.77849258744,5276501.2236764645],[517210.15780944156,5276501.455941323],[517210.31197167333,5276500.122719714],[517213.61650699284,5276500.243625821]]]},"properties":{"id_build":1425,"id_source":"w145338165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516918.9141399428,5276457.547029952],[516918.74209725973,5276449.544469814],[516923.23393985356,5276449.490836693],[516923.30614449055,5276450.491304048],[516924.74076788116,5276450.495472991],[516926.8363695887,5276450.501563337],[516926.8389537269,5276449.612453029],[516929.46784515766,5276449.620094315],[516929.51937230397,5276457.733444249],[516926.9659186345,5276457.61488245],[516926.81246629736,5276458.725833736],[516923.1320240507,5276458.715137932],[516923.06046539044,5276457.492392985],[516918.9141399428,5276457.547029952]]]},"properties":{"id_build":1426,"id_source":"w145338167","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516826.7068914081,5276608.363241816],[516832.85234824265,5276613.04887096],[516831.0423427529,5276615.599853693],[516829.5433737272,5276614.484124202],[516828.11084214295,5276616.369360225],[516829.28764511854,5276617.206308969],[516833.1328672705,5276619.940346102],[516830.2671629628,5276623.933094411],[516826.6696411597,5276621.255344721],[516824.6339930244,5276623.916817231],[516820.13708702486,5276620.569634825],[516826.32010670047,5276612.252015339],[516824.89624500595,5276611.13650407],[516826.7068914081,5276608.363241816]]]},"properties":{"id_build":1427,"id_source":"w145338168","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.0640409757,5276406.097752944],[517207.50071864633,5276409.313231539],[517209.0744522152,5276410.54041872],[517206.88833243423,5276413.201313441],[517198.34562277986,5276406.396555798],[517200.6829494515,5276403.402685241],[517201.5072096003,5276404.071958158],[517202.5025258862,5276402.774562919],[517203.61854678486,5276401.299700805],[517202.8690700279,5276400.741788232],[517206.6387802639,5276395.973915243],[517212.9337258001,5276400.882665468],[517209.2397820927,5276405.428478812],[517210.0640409757,5276406.097752944]]]},"properties":{"id_build":1428,"id_source":"w145338169","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517118.70674584503,5276208.666640491],[517108.5669686363,5276208.414567558],[517108.5751301403,5276205.636098956],[517109.85174736875,5276205.750988746],[517109.9324119627,5276203.86185076],[517108.6554678604,5276203.858099696],[517108.6688527743,5276199.30141123],[517113.7766331764,5276199.316417169],[517113.847828873,5276200.65030279],[517117.3030912938,5276200.660456452],[517117.43862178316,5276205.662141412],[517118.71556549455,5276205.665894403],[517118.70674584503,5276208.666640491]]]},"properties":{"id_build":1429,"id_source":"w145338170","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.2505477502,5276532.568018746],[516714.23746242846,5276532.497688316],[516714.2306059921,5276529.652491807],[516714.26983634545,5276526.4517804785],[516715.83957543614,5276526.478513787],[516715.87804108317,5276523.544535608],[516721.9242226208,5276523.628576779],[516721.8850518765,5276526.807060297],[516723.25950437726,5276526.833234881],[516723.2309395809,5276528.933693571],[516723.7792437077,5276528.935268075],[516723.7603918769,5276530.268890587],[516723.25715395657,5276530.267445493],[516723.2505477502,5276532.568018746]]]},"properties":{"id_build":1430,"id_source":"w145338171","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516746.6498233929,5276604.909424253],[516745.3007343536,5276603.905287303],[516749.07057756523,5276598.914840215],[516751.2570576102,5276596.031495917],[516753.3681107647,5276593.259075188],[516754.11920402327,5276593.261235964],[516757.21051877,5276589.157960011],[516757.0631781359,5276588.157278442],[516759.62649265316,5276584.830462674],[516761.4361563201,5276582.3905967325],[516765.4323156312,5276577.067392436],[516766.85651699913,5276578.07175025],[516746.6498233929,5276604.909424253]]]},"properties":{"id_build":1431,"id_source":"w145338172","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.66891291726,5276166.062696697],[517261.24861324474,5276166.854245214],[517263.3508405639,5276167.193894862],[517265.37070494896,5276169.978374796],[517264.8435835888,5276170.421371127],[517266.0404783918,5276172.092014788],[517254.44843944017,5276180.282001447],[517252.1294314409,5276177.052080336],[517254.7640434519,5276175.170509617],[517252.37057719234,5276171.7180884415],[517255.45686827204,5276169.5044368245],[517254.18518431287,5276167.7224341],[517256.66891291726,5276166.062696697]]]},"properties":{"id_build":1432,"id_source":"w145338173","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.9873950573,5276656.711071435],[516634.58540593705,5276657.71303719],[516640.4543481174,5276654.062193169],[516643.0707596535,5276658.404119661],[516643.6937153677,5276658.561495666],[516644.4217593866,5276658.741400039],[516643.51092869946,5276662.07298891],[516642.9877106292,5276661.182375704],[516638.8494425941,5276663.726764408],[516639.44745191,5276664.728730676],[516642.81176658993,5276670.184191537],[516636.943156591,5276673.723894408],[516628.870813592,5276659.9195113005],[516633.9873950573,5276656.711071435]]]},"properties":{"id_build":1433,"id_source":"w145338174","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516769.1732608185,5276529.954917905],[516769.16046015033,5276534.400470076],[516768.48446938145,5276534.398523645],[516768.5458192307,5276539.177708527],[516767.7202489501,5276538.953052042],[516767.7879991769,5276541.509460828],[516761.5538697067,5276541.491514831],[516761.7117666988,5276538.824615848],[516760.6602263051,5276538.821589444],[516760.7141523292,5276535.743174237],[516760.75132915203,5276533.264865362],[516759.69978775654,5276533.261839131],[516759.7844929818,5276529.927891156],[516769.1732608185,5276529.954917905]]]},"properties":{"id_build":1434,"id_source":"w145338175","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.93918767857,5276541.493775966],[516721.6698886168,5276541.57691146],[516721.61665339366,5276544.421935509],[516723.17887662206,5276544.448649245],[516723.14264132734,5276546.604655826],[516723.76605371776,5276546.606446017],[516723.74688276247,5276548.051207375],[516723.093426563,5276548.049330915],[516723.05572327494,5276550.716576025],[516713.9752585327,5276550.579368537],[516714.03896736784,5276546.700775046],[516714.0836033935,5276544.23360131],[516715.8936895517,5276544.261024455],[516715.93918767857,5276541.493775966]]]},"properties":{"id_build":1435,"id_source":"w145338179","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516917.612213872,5276432.547923665],[516917.66488782293,5276440.272287482],[516914.0971977185,5276440.228583061],[516914.09971534816,5276439.361700527],[516912.19943133864,5276439.345067993],[516910.4643922148,5276439.328915884],[516910.4433353974,5276441.40716758],[516906.9807694978,5276441.37488673],[516907.0345278934,5276433.206273156],[516910.31683130166,5276433.238030603],[516910.3374040296,5276431.326487113],[516914.0102878692,5276431.359380732],[516914.0068019471,5276432.5596796125],[516917.612213872,5276432.547923665]]]},"properties":{"id_build":1436,"id_source":"w145338180","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516952.4676607564,5276418.456734214],[516952.5204505181,5276426.125528892],[516946.2107621838,5276426.218305673],[516946.14082482643,5276424.439866577],[516944.5257657056,5276424.490737292],[516942.9858181236,5276424.541826967],[516943.1341011858,5276425.209096694],[516938.77731100086,5276425.307563244],[516938.79929148115,5276417.750125986],[516942.5548712344,5276417.761050133],[516942.6332159819,5276416.649880814],[516946.4642314472,5276416.549887206],[516946.5335220414,5276418.550603853],[516952.4676607564,5276418.456734214]]]},"properties":{"id_build":1437,"id_source":"w145338184","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.5398204581,5276532.5226495825],[516743.47792336275,5276532.548339968],[516743.4230159062,5276535.971285588],[516743.38523936813,5276538.6607583035],[516741.6577086867,5276538.655791889],[516741.7993023718,5276541.656971491],[516735.9407230808,5276541.640132532],[516735.9490270524,5276538.750523577],[516734.52161715983,5276538.857561479],[516734.3784228789,5276536.412076101],[516733.85392984544,5276535.966010124],[516733.8571232766,5276534.854622072],[516734.45800390386,5276534.856348655],[516734.5398204581,5276532.5226495825]]]},"properties":{"id_build":1438,"id_source":"w145338195","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.9407230808,5276541.640132532],[516741.7993023718,5276541.656971491],[516741.7906759932,5276544.657719261],[516743.36766546307,5276544.773392644],[516743.4276277232,5276547.429804477],[516743.50063081825,5276550.775320117],[516734.48776536924,5276550.638274995],[516734.41840388905,5276548.63756063],[516733.7427341264,5276548.52447942],[516733.7468855757,5276547.079674926],[516734.4976654275,5276547.1929719625],[516734.42990067706,5276544.636563572],[516736.0072096726,5276544.641096151],[516735.9407230808,5276541.640132532]]]},"properties":{"id_build":1439,"id_source":"w145338197","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.2361503834,5276318.533266288],[517253.74663911655,5276315.759247394],[517252.9217138958,5276315.312244714],[517254.7346311889,5276311.872283555],[517255.7094534112,5276312.430870331],[517257.5213852983,5276309.324326331],[517264.19590050477,5276312.900578871],[517262.3081944142,5276316.229175714],[517261.55838283326,5276315.782394437],[517260.67485161655,5276317.369074164],[517259.8215636443,5276318.889159811],[517260.6464878336,5276319.336163471],[517259.13566736976,5276322.22131936],[517252.2361503834,5276318.533266288]]]},"properties":{"id_build":1440,"id_source":"w145338200","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517196.7809870162,5276224.01163696],[517200.3215243841,5276220.576760558],[517204.81524121994,5276225.035621655],[517203.8354752653,5276226.1441247165],[517206.45625961927,5276228.930359456],[517199.4338717642,5276236.278181116],[517193.3831360751,5276230.003150175],[517195.4925630577,5276227.897722971],[517196.6159924074,5276229.012437001],[517199.25253214093,5276226.464008639],[517196.7809870162,5276224.01163696]]]},"properties":{"id_build":1441,"id_source":"w145338201","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516606.46123879857,5276643.073465539],[516600.327988354,5276634.053661295],[516603.2626179878,5276632.172651934],[516601.54271900875,5276629.500395267],[516607.3368766277,5276625.73816508],[516608.9819821823,5276628.299070413],[516609.7346557943,5276627.745518464],[516615.26893090137,5276636.096785223],[516611.5062010233,5276638.642264748],[516611.1322423998,5276638.085499418],[516609.792580692,5276639.037479995],[516608.6485824473,5276639.856651227],[516609.3961828848,5276641.081320425],[516606.46123879857,5276643.073465539]]]},"properties":{"id_build":1442,"id_source":"w145338202","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.8345039249,5276502.443207164],[517277.228539854,5276502.654787982],[517277.2750568855,5276502.1659109825],[517276.3578750623,5276492.316206369],[517280.18950720155,5276491.994154794],[517279.9671431006,5276490.993237077],[517290.9356094198,5276490.247813581],[517292.0964610518,5276504.032592078],[517287.1378488911,5276504.462430177],[517287.0653775792,5276503.5730968695],[517286.9942258277,5276502.239208389],[517280.90895487915,5276502.665707625],[517280.8345039249,5276502.443207164]]]},"properties":{"id_build":1443,"id_source":"w145338203","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516929.51937230397,5276457.733444249],[516929.46784515766,5276449.620094315],[516932.92328274227,5276449.519000162],[516932.91714320844,5276451.630637145],[516934.89256666217,5276451.636380977],[516936.5224787879,5276451.64112069],[516936.4499532367,5276450.751791948],[516940.35605731857,5276450.6520128045],[516940.5497094071,5276461.544269597],[516936.94405674085,5276461.644922334],[516936.5743192698,5276459.643331942],[516932.74397861026,5276459.521054413],[516932.67403762514,5276457.742615396],[516929.51937230397,5276457.733444249]]]},"properties":{"id_build":1444,"id_source":"w145338204","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.46003083343,5276648.912729059],[517200.4081818678,5276649.020762026],[517201.1336627775,5276657.691808532],[517197.60257824854,5276658.014799131],[517197.53107999306,5276656.792050285],[517186.93815461494,5276657.649896245],[517186.7128290891,5276657.6492312495],[517186.06210734585,5276649.089547068],[517193.04884952056,5276648.554471071],[517192.97669394413,5276647.553999942],[517194.55955385853,5276645.669296844],[517201.17075761734,5276645.133121772],[517201.3369748681,5276647.345294545],[517201.46003083343,5276648.912729059]]]},"properties":{"id_build":1445,"id_source":"w145338206","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.07562002866,5276432.444959823],[516931.35802074615,5276432.4433874935],[516931.3607024894,5276431.520935576],[516935.11633798527,5276431.509627191],[516935.1138495501,5276432.365395836],[516938.74179512984,5276432.353718493],[516938.74937427836,5276440.077951492],[516934.9036107215,5276440.088995429],[516934.9062607169,5276439.17765738],[516933.2988461837,5276439.184097523],[516931.3759641212,5276439.189620974],[516931.3729592661,5276440.223211688],[516928.083051803,5276440.224762169],[516928.07562002866,5276432.444959823]]]},"properties":{"id_build":1446,"id_source":"w145338207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.1694914565,5276212.204530228],[517153.02383305336,5276212.212935702],[517152.9277711106,5276219.325594177],[517150.74946044624,5276219.319179377],[517150.81999285845,5276220.875343006],[517149.990137538,5276222.095436217],[517144.7321487854,5276222.079956254],[517144.7502402669,5276215.93398361],[517143.39808645204,5276215.963345438],[517143.4196767319,5276208.62818829],[517148.22666461766,5276208.753478848],[517148.2916351401,5276212.199001075],[517150.1694914565,5276212.204530228]]]},"properties":{"id_build":1447,"id_source":"w145338208","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517137.26007426437,5276183.1590691805],[517137.1059209849,5276184.492292038],[517133.72543661663,5276184.593486359],[517133.72968680627,5276183.148682741],[517131.0255602422,5276183.140728618],[517131.1215956647,5276176.028070246],[517144.11644196353,5276176.066305886],[517144.0318403648,5276179.289108207],[517144.933216487,5276179.291761453],[517144.989029153,5276185.849168193],[517140.5572682053,5276185.836124351],[517140.489676149,5276183.279712285],[517137.26007426437,5276183.1590691805]]]},"properties":{"id_build":1448,"id_source":"w145338212","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516472.2916240235,5276704.819517863],[516467.8866590367,5276695.471322679],[516479.16952724947,5276689.612834393],[516478.1236748109,5276687.609359921],[516484.29166231304,5276684.403764095],[516485.41230671946,5276686.518591123],[516488.19539767335,5276685.0816538725],[516490.0624010054,5276688.865690915],[516487.2045179701,5276690.191275802],[516491.8350946696,5276699.428984851],[516485.59264015715,5276702.412082437],[516483.8749104945,5276698.961888449],[516478.60977452254,5276701.6254547695],[516472.2916240235,5276704.819517863]]]},"properties":{"id_build":1449,"id_source":"w145338218","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516850.4259418468,5276613.766531414],[516847.11985696864,5276614.20152532],[516846.9738184785,5276612.756286128],[516844.64479415596,5276612.9718285315],[516844.8210697217,5276614.350471276],[516845.4529910249,5276619.197992164],[516841.0947409788,5276619.852225562],[516840.2078952966,5276614.848372341],[516836.8263814645,5276615.394293713],[516836.165822641,5276610.057676158],[516846.30973216536,5276608.642194402],[516846.0905131278,5276606.529905075],[516849.32149311254,5276606.0946932705],[516850.4259418468,5276613.766531414]]]},"properties":{"id_build":1450,"id_source":"w145338219","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517154.95552610647,5276219.442706056],[517155.1267047752,5276212.330268847],[517157.98071891523,5276212.449815496],[517159.933689407,5276212.455569078],[517159.86872577504,5276209.0100467],[517164.37558342,5276209.023326639],[517164.20341082336,5276216.469179802],[517163.0015836535,5276216.465638177],[517162.9104220321,5276221.911215372],[517157.2765350528,5276222.005756129],[517156.5270306747,5276221.44784974],[517156.53292345355,5276219.447352314],[517154.95552610647,5276219.442706056]]]},"properties":{"id_build":1451,"id_source":"w145338220","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.07320472837,5276199.448356732],[516622.06495814346,5276202.3379641725],[516612.8255744459,5276202.42274308],[516612.9945063363,5276195.865985478],[516614.6501945016,5276194.759311744],[516614.5858591499,5276190.980380097],[516621.34616501443,5276190.999668357],[516621.4903679083,5276193.111733252],[516622.76699691836,5276193.226516247],[516622.7558953051,5276197.116372383],[516621.4041527149,5276197.001375026],[516621.32206072134,5276199.446213108],[516622.07320472837,5276199.448356732]]]},"properties":{"id_build":1452,"id_source":"w145338221","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3291203006,5276479.350491839],[516520.185895406,5276480.608567302],[516517.5389702382,5276481.668000585],[516518.2096082715,5276483.559277439],[516513.9986800682,5276485.214430894],[516508.7061447024,5276470.973545554],[516511.71373149066,5276469.870674905],[516512.6826105288,5276472.540774473],[516520.2015795396,5276469.783605893],[516519.3081296599,5276467.002579336],[516522.46625775244,5276465.789001548],[516526.3436438832,5276475.802575204],[516522.58400322945,5276477.236723719],[516523.3291203006,5276479.350491839]]]},"properties":{"id_build":1453,"id_source":"w145338223","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516713.5019786626,5276482.560503212],[516713.3997573128,5276492.007085394],[516710.1474670169,5276491.997752814],[516707.54112814233,5276491.990275126],[516707.46984353376,5276490.656394076],[516704.3155151093,5276490.536206076],[516704.40879600204,5276484.201510084],[516707.56376553036,5276484.099420532],[516707.5679104008,5276482.65461618],[516709.82155180443,5276482.549942175],[516709.8985758397,5276481.883324906],[516711.4755829067,5276481.998989597],[516711.54909910547,5276482.554899107],[516713.5019786626,5276482.560503212]]]},"properties":{"id_build":1454,"id_source":"w145338224","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.738653627,5276391.394490513],[516662.5365448377,5276391.502190849],[516662.5314573531,5276393.280411342],[516663.7332477862,5276393.283849786],[516663.79818393645,5276396.840505698],[516655.98686873337,5276396.707021366],[516655.995768342,5276393.595135488],[516654.71854825964,5276393.702622632],[516654.6593272215,5276388.145468803],[516655.034887062,5276388.146542782],[516655.0450574332,5276384.590101827],[516663.6829390307,5276384.61481002],[516663.738653627,5276391.394490513]]]},"properties":{"id_build":1455,"id_source":"w145338225","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516679.7911977476,5276608.718577493],[516676.65475527104,5276602.374630508],[516681.0925652695,5276600.16454578],[516682.5113631012,5276603.058242875],[516685.74551662325,5276601.51155217],[516688.3593705692,5276606.742609218],[516691.668632794,5276605.19613703],[516693.6103208222,5276609.091593199],[516681.80163442605,5276614.837021242],[516680.4576299114,5276612.054678212],[516681.736394427,5276611.391502696],[516680.2424891474,5276608.497590617],[516679.7911977476,5276608.718577493]]]},"properties":{"id_build":1456,"id_source":"w145338226","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516917.66488782293,5276440.272287482],[516917.612213872,5276432.547923665],[516920.62427802355,5276432.523332062],[516920.611742045,5276431.667519773],[516924.8932218904,5276431.635504636],[516924.9057249408,5276432.502430815],[516928.07562002866,5276432.444959823],[516928.083051803,5276440.224762169],[516924.4699719576,5276440.292059188],[516924.4577918405,5276439.313994211],[516922.4447762645,5276439.319258682],[516920.8147961189,5276439.336750676],[516920.82717059035,5276440.2481323695],[516917.66488782293,5276440.272287482]]]},"properties":{"id_build":1457,"id_source":"w145338228","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516704.3132373755,5276569.889958816],[516698.82386113843,5276572.097010564],[516697.7051836036,5276569.315309854],[516695.6753118087,5276569.976328517],[516693.0652704569,5276563.411602785],[516697.27587522054,5276561.867717424],[516698.0228299015,5276563.314675488],[516700.8047576158,5276562.322395105],[516701.9456810869,5276565.204185934],[516702.7435853025,5276567.218103334],[516703.1945620245,5276567.108257054],[516704.3132373755,5276569.889958816]]]},"properties":{"id_build":1458,"id_source":"w145338229","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.6698886168,5276541.57691146],[516715.93918767857,5276541.493775966],[516715.9787060476,5276538.193039662],[516714.19859822415,5276538.187930481],[516714.2140515414,5276535.420595778],[516714.23746242846,5276532.497688316],[516723.2505477502,5276532.568018746],[516723.23671775765,5276534.768545516],[516723.83008738415,5276534.770249436],[516723.82625756215,5276536.103915099],[516723.23288807244,5276536.102211179],[516723.2108449735,5276538.547221761],[516721.7236663702,5276538.542951449],[516721.6698886168,5276541.57691146]]]},"properties":{"id_build":1459,"id_source":"w145338230","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.6829390307,5276384.61481002],[516655.0450574332,5276384.590101827],[516655.1300220341,5276381.14501447],[516654.6039198111,5276381.254649679],[516654.54469843995,5276375.697495963],[516656.1220531408,5276375.702006795],[516656.0555227497,5276372.701044989],[516663.5667394776,5276372.722530914],[516663.63199404714,5276376.168047928],[516662.27965787705,5276376.27531851],[516662.4251126563,5276377.9428299675],[516663.70170036674,5276378.057622066],[516663.6829390307,5276384.61481002]]]},"properties":{"id_build":1460,"id_source":"w145338232","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.9052339006,5276489.29388101],[516770.8973907668,5276484.192545373],[516770.8703505026,5276467.499282166],[516770.8633392615,5276462.10898584],[516767.69362231303,5276462.110972967],[516767.68050489173,5276456.231644396],[516777.6028083989,5276456.215764356],[516777.61085090315,5276458.638633276],[516782.1476231432,5276458.629476707],[516782.1968181045,5276491.082415818],[516776.12030294153,5276491.087136646],[516776.117978227,5276489.286666501],[516772.2948132484,5276489.286768766],[516770.9052339006,5276489.29388101]]]},"properties":{"id_build":1461,"id_source":"w145338233","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.5827982815,5276451.9718759945],[517313.73202941124,5276452.305738937],[517308.6949573406,5276453.846723315],[517308.17446406465,5276452.066940161],[517305.54326160945,5276452.837099425],[517302.6863962326,5276453.717729195],[517302.38925350277,5276452.6054487415],[517299.0663692744,5276453.595835566],[517297.2077686019,5276447.1330948165],[517300.53062317317,5276446.153820813],[517300.4561722259,5276445.931320119],[517310.9809959665,5276442.850681019],[517313.5827982815,5276451.9718759945]]]},"properties":{"id_build":1462,"id_source":"w145338234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517188.9087660774,5276218.987111863],[517195.0100752866,5276213.225856234],[517196.95746704104,5276215.12098089],[517196.05281513993,5276216.229707025],[517197.1762466521,5276217.344421134],[517197.92935752816,5276216.67980656],[517200.9247351218,5276219.800563972],[517200.3215243841,5276220.576760558],[517196.7809870162,5276224.01163696],[517196.1820430038,5276223.343030277],[517195.2777206301,5276224.340617796],[517193.85153704596,5276224.002988285],[517188.9087660774,5276218.987111863]]]},"properties":{"id_build":1463,"id_source":"w145338237","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.65943577065,5276691.184176617],[516871.52862894896,5276692.625717314],[516872.80224565335,5276693.740804966],[516870.6918153858,5276696.29090522],[516864.3965829063,5276691.493661402],[516866.4322259192,5276688.83220252],[516867.85573867674,5276690.058862976],[516874.11386200285,5276681.74151089],[516878.9104780034,5276685.311883917],[516876.7249339155,5276687.861764275],[516880.4722854635,5276690.6511195805],[516877.5317970522,5276694.532488523],[516873.3790563128,5276691.675276613],[516872.65943577065,5276691.184176617]]]},"properties":{"id_build":1464,"id_source":"w145338241","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516649.1142526682,5276357.232781887],[516648.5216138456,5276354.341456013],[516647.018095097,5276354.781717043],[516645.5310938116,5276349.442762213],[516646.13262884674,5276349.222202095],[516645.3159207174,5276345.885677453],[516653.6597655042,5276343.686736506],[516655.3686021869,5276350.248864282],[516654.01530676085,5276350.689553109],[516654.5366445642,5276352.246999452],[516655.73939696216,5276351.917019906],[516656.5560982547,5276355.253546054],[516649.1142526682,5276357.232781887]]]},"properties":{"id_build":1465,"id_source":"w145338244","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.9746347262,5276368.635057004],[516710.97718584357,5276367.745946795],[516708.573275547,5276367.850189461],[516708.34793885244,5276367.849543001],[516706.545181537,5276367.866599394],[516700.6110603173,5276367.938491955],[516700.7094371466,5276359.825576729],[516712.0520375008,5276359.635833556],[516712.19875414134,5276360.858791143],[516716.40504415764,5276360.870862595],[516716.3878185531,5276366.872356463],[516712.0313083823,5276366.859853947],[516712.1013180469,5276368.638289899],[516710.9746347262,5276368.635057004]]]},"properties":{"id_build":1466,"id_source":"w145338251","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.93243625667,5276344.531260802],[516517.4005715451,5276345.076941581],[516517.2534984134,5276343.965127798],[516507.8609665791,5276345.161034403],[516507.7129466025,5276344.38263719],[516504.7822982025,5276344.818890046],[516504.12234742317,5276339.148896907],[516507.05331361794,5276338.6015049415],[516506.8317557026,5276337.267201009],[516516.07375959534,5276336.18200549],[516516.1911978349,5276337.149253622],[516516.36727632326,5276338.627910514],[516520.19928003236,5276338.194220101],[516520.93243625667,5276344.531260802]]]},"properties":{"id_build":1467,"id_source":"w145338253","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.59719628363,5276186.583967687],[516824.5453584517,5276186.581806259],[516824.5851630126,5276185.8039435465],[516824.6252886239,5276184.91494209],[516826.06742461986,5276184.941336013],[516827.85521617753,5276184.924273083],[516827.7601933753,5276191.814658166],[516829.11225447344,5276191.818564676],[516829.0593503114,5276194.530219816],[516829.0249372268,5276196.0416199295],[516822.4903009915,5276195.911602712],[516822.57344048034,5276193.1333510475],[516817.5410906715,5276193.007678636],[516817.5495304829,5276190.084729665],[516817.59719628363,5276186.583967687]]]},"properties":{"id_build":1468,"id_source":"w145338254","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.2195319077,5276349.887232619],[516488.26540922857,5276341.993615163],[516492.54808391974,5276341.561182456],[516492.32061658753,5276339.660050063],[516492.03456961387,5276337.22528142],[516500.7510971291,5276336.027433985],[516501.63103608286,5276343.587424312],[516501.85007576324,5276345.810838252],[516501.32208398945,5276346.587319942],[516497.038782696,5276347.242023744],[516496.81690803333,5276346.01885895],[516493.1348215582,5276346.564128925],[516493.42771788465,5276349.232310362],[516489.2195319077,5276349.887232619]]]},"properties":{"id_build":1469,"id_source":"w145338257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.56080596324,5276437.277283824],[516985.90549893363,5276444.93873306],[516983.26773300953,5276445.397827304],[516983.3933154922,5276446.120601776],[516979.76356369955,5276446.754628493],[516979.6232177536,5276445.942899273],[516975.9709329052,5276446.5768626565],[516974.64089321875,5276439.03771218],[516978.41345796664,5276438.370756673],[516978.59809345525,5276439.449350324],[516980.07102053217,5276439.198023168],[516982.1301401267,5276438.837265909],[516981.93809135834,5276437.725308608],[516984.56080596324,5276437.277283824]]]},"properties":{"id_build":1470,"id_source":"w145338260","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516743.47792336275,5276532.548339968],[516734.5398204581,5276532.5226495825],[516734.62035964173,5276530.633505735],[516734.0201172709,5276530.409501524],[516733.87436779967,5276528.853126629],[516734.47588775464,5276528.632575606],[516734.557065672,5276526.521154162],[516736.13437957544,5276526.525686761],[516736.2181132152,5276523.52515492],[516742.0767107299,5276523.541994114],[516742.1431944439,5276526.54295773],[516743.57028797537,5276526.547060494],[516743.5240737,5276529.558814103],[516743.47792336275,5276532.548339968]]]},"properties":{"id_build":1471,"id_source":"w145338262","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.9242226208,5276523.628576779],[516715.87804108317,5276523.544535608],[516715.8728122948,5276520.132531241],[516714.29517770524,5276520.239142935],[516714.33290896064,5276517.56078402],[516714.3875123328,5276514.237863183],[516723.25021374517,5276514.374445693],[516723.2435118315,5276516.708360529],[516723.7692840158,5276516.7098703245],[516723.8396070741,5276518.377168048],[516723.1632953218,5276518.4863656815],[516723.15818912274,5276520.264586523],[516721.8809954826,5276520.37205889],[516721.9242226208,5276523.628576779]]]},"properties":{"id_build":1472,"id_source":"w145338263","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516961.2935142561,5276439.032166732],[516964.2453244354,5276439.062992094],[516964.22470164706,5276440.985649337],[516965.8395621382,5276441.00146737],[516967.7999345842,5276441.018292471],[516967.8022659314,5276440.218093211],[516971.5051885522,5276440.251110634],[516971.4384226164,5276447.697278026],[516968.2687943224,5276447.665814367],[516968.2651676767,5276448.9105687905],[516964.35193920956,5276448.876940799],[516964.3725620328,5276446.954283528],[516961.22546668304,5276446.922889344],[516961.2935142561,5276439.032166732]]]},"properties":{"id_build":1473,"id_source":"w145338269","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.58686932287,5276483.809119226],[516722.56772193796,5276490.477447033],[516719.71351722395,5276490.469252187],[516719.63393963,5276492.024979718],[516716.9374680011,5276492.017239066],[516713.3997573128,5276492.007085394],[516713.5019786626,5276482.560503212],[516716.13085498934,5276482.568048232],[516716.057977225,5276481.789861074],[516717.7107330223,5276481.683465445],[516717.9335130409,5276482.5732226465],[516719.7361710934,5276482.57839762],[516719.7323422723,5276483.912063176],[516722.58686932287,5276483.809119226]]]},"properties":{"id_build":1474,"id_source":"w145338270","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.25204138266,5276327.520823335],[517248.76219629415,5276324.857941884],[517247.7873755022,5276324.299356256],[517249.7505127091,5276320.859838393],[517250.72566307895,5276321.307285584],[517252.2361503834,5276318.533266288],[517259.13566736976,5276322.22131936],[517257.32307995274,5276325.550140439],[517256.49815639574,5276325.103137245],[517255.5540108872,5276326.867461744],[517254.8364554151,5276328.210126689],[517255.51148242195,5276328.545545808],[517254.00099611084,5276331.319564293],[517247.25204138266,5276327.520823335]]]},"properties":{"id_build":1475,"id_source":"w145338272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.210311259,5276318.576462682],[516656.1979585347,5276317.642854069],[516654.2450872839,5276317.6150415605],[516654.1822638936,5276318.570663134],[516650.952728424,5276318.450289508],[516650.82410875376,5276310.892423843],[516654.27930511057,5276310.902302975],[516654.2080057519,5276309.568422991],[516659.9162744314,5276309.695888218],[516660.0655466543,5276310.029734234],[516662.69450080284,5276310.03725495],[516662.59490480996,5276318.594725128],[516656.210311259,5276318.576462682]]]},"properties":{"id_build":1476,"id_source":"w145338273","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.0075603635,5276378.701984249],[516994.4170223005,5276380.124646725],[516993.8261785769,5276376.677591326],[516992.69917241164,5276376.785442705],[516991.8829908082,5276373.337730071],[516993.7620921919,5276372.898653828],[516993.3952868537,5276369.896811112],[517001.21117466694,5276368.474805076],[517001.87777596805,5276371.699802908],[517000.14922235,5276372.028176259],[517000.4370665811,5276373.7739100875],[517000.6659239438,5276375.141596702],[517001.49215755524,5276375.1440085685],[517002.0075603635,5276378.701984249]]]},"properties":{"id_build":1477,"id_source":"w145338275","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.55012613995,5276564.172814664],[516957.4491773344,5276564.953410699],[516952.09568409534,5276572.050768931],[516954.86923889455,5276573.948218851],[516952.83351557713,5276576.609646534],[516945.18915757095,5276570.808131704],[516946.92314711335,5276568.590382335],[516946.2487449224,5276568.043835097],[516944.150557258,5276566.359519798],[516947.31777712516,5276562.034285497],[516949.2661018256,5276563.595912035],[516951.52812775155,5276560.60172261],[516955.50053169567,5276563.502920221],[516956.55012613995,5276564.172814664]]]},"properties":{"id_build":1478,"id_source":"w145338276","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.14172395587,5276318.369984738],[517274.029764628,5276314.930252298],[517274.85468830005,5276315.377257968],[517275.64795628865,5276313.83476853],[517276.5167332706,5276312.159135504],[517275.0167814494,5276311.376708154],[517277.88657056494,5276306.161653201],[517284.7109732007,5276309.849513673],[517281.8415095228,5276314.953426545],[517283.2663465896,5276315.735632761],[517281.45308381075,5276319.28672386],[517280.4031523028,5276318.727909898],[517278.74110702163,5276321.94603129],[517272.14172395587,5276318.369984738]]]},"properties":{"id_build":1479,"id_source":"w145338277","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.51724150917,5276231.391515956],[517137.9447346219,5276231.284576435],[517137.80497125624,5276227.727694468],[517134.9509642471,5276227.608157685],[517134.9646967994,5276222.940330313],[517141.57441170735,5276223.070919272],[517141.79615598853,5276224.294108692],[517145.0263892913,5276224.192476879],[517145.21181779896,5276237.752067465],[517137.9264213173,5276237.508346358],[517137.8607910276,5276234.285101619],[517136.58385358134,5276234.281344415],[517136.51724150917,5276231.391515956]]]},"properties":{"id_build":1480,"id_source":"w145338278","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.66666639573,5276514.518379316],[516743.6047969349,5276514.544069829],[516743.59533892985,5276517.83377836],[516743.5875424628,5276520.545565133],[516742.08533719886,5276520.541246441],[516742.0767107299,5276523.541994114],[516736.2181132152,5276523.52515492],[516736.22673666396,5276520.524407247],[516734.57463022775,5276520.408519994],[516734.6564469828,5276518.074820973],[516733.98077367316,5276517.961739751],[516734.0603548036,5276516.406012342],[516734.66123733413,5276516.4077389445],[516734.66666639573,5276514.518379316]]]},"properties":{"id_build":1481,"id_source":"w145338294","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.74391012086,5276360.147089336],[516659.6013721726,5276367.265342095],[516651.2578765536,5276369.353135764],[516650.3663797496,5276365.905256774],[516649.9153884969,5276366.015107145],[516648.57829976146,5276360.787719668],[516649.856480102,5276360.346814846],[516649.1142526682,5276357.232781887],[516656.5560982547,5276355.253546054],[516657.37343432906,5276358.367794786],[516656.02045847,5276358.697344377],[516656.6162716282,5276360.477283288],[516657.74391012086,5276360.147089336]]]},"properties":{"id_build":1482,"id_source":"w145338296","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.52295786253,5276383.657042472],[516608.61046170705,5276384.579751383],[516609.6380382744,5276385.093924391],[516610.4031030312,5276385.473981263],[516611.1735247641,5276383.975792851],[516614.4062873488,5276385.585425595],[516612.1246541245,5276390.224555987],[516615.40244841005,5276391.845431731],[516613.9439429355,5276394.942068175],[516609.2035281236,5276392.594613934],[516609.0133083009,5276390.815836497],[516603.6635327133,5276391.434078634],[516603.2532031125,5276387.820869112],[516602.8351083202,5276384.29654925],[516608.52295786253,5276383.657042472]]]},"properties":{"id_build":1483,"id_source":"w145338299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.92293880985,5276336.902989404],[517269.5219768378,5276340.590164418],[517269.8217681385,5276340.813332846],[517267.0274451074,5276345.917475919],[517268.75239708915,5276346.811708172],[517266.8640402251,5276350.362581228],[517265.66388799594,5276349.803324511],[517263.9267471643,5276353.021227577],[517257.2526072926,5276349.33383624],[517259.06551672914,5276345.893876265],[517259.89010776917,5276346.452018615],[517260.6004473832,5276345.009307105],[517261.4770231595,5276343.233669142],[517259.90229416447,5276342.33988425],[517262.92293880985,5276336.902989404]]]},"properties":{"id_build":1484,"id_source":"w145338300","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516449.89656465803,5276342.363018743],[516449.84357320546,5276350.487178316],[516445.84762238245,5276350.464779399],[516445.8346819051,5276352.387459008],[516448.49363028555,5276352.406081797],[516448.4664920674,5276356.695996134],[516444.6132590014,5276356.674001103],[516444.61448284244,5276356.240559874],[516443.1348004708,5276356.22526814],[516443.1326354066,5276356.992125701],[516436.6129449939,5276356.951494414],[516436.64076451893,5276352.417074733],[516440.32124183234,5276352.438576816],[516440.3341804901,5276350.515897199],[516436.69128954934,5276350.483387224],[516436.7190777594,5276345.9600814665],[516438.9348966716,5276345.966335335],[516438.9605848506,5276342.187659403],[516437.7062051957,5276342.184118971],[516437.73578211525,5276337.027322271],[516444.23296104453,5276337.067891139],[516444.26673191,5276341.069014235],[516444.26318599744,5276342.3248823825],[516449.89656465803,5276342.363018743]]]},"properties":{"id_build":1485,"id_source":"w145338302","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.2600855458,5276461.626969252],[516428.5791216488,5276464.967700927],[516430.159587432,5276463.860762662],[516432.6285287023,5276467.313058567],[516431.8004269264,5276467.977560147],[516432.75798968837,5276469.347280017],[516433.6706736231,5276470.650189602],[516434.4984616115,5276470.096827082],[516436.9667703053,5276473.771402468],[516427.40982255014,5276480.079399239],[516420.827650277,5276470.280544657],[516421.05329634994,5276470.170041208],[516418.8851065826,5276466.607458421],[516420.39014574944,5276465.6114445515],[516426.2600855458,5276461.626969252]]]},"properties":{"id_build":1486,"id_source":"w145338308","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.2413854295,5276452.159099749],[516908.3607748998,5276457.605292951],[516908.29536207416,5276459.438908533],[516905.17818871106,5276459.452087359],[516905.17454327457,5276460.707955686],[516901.12599371345,5276460.718433228],[516901.1160351851,5276458.973510627],[516894.9042858558,5276458.977715245],[516894.8966487886,5276451.253482216],[516901.43889546825,5276451.250236665],[516901.4486926655,5276453.050728638],[516903.19881445315,5276453.044693914],[516904.858802879,5276453.038398086],[516904.86131914385,5276452.171515531],[516908.2413854295,5276452.159099749]]]},"properties":{"id_build":1487,"id_source":"w145338311","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516555.56768535834,5276394.53132604],[516554.89142568427,5276394.618315464],[516555.08232532116,5276396.1636996595],[516555.7811183797,5276396.076774314],[516556.3025016201,5276400.268222429],[516546.0460139296,5276401.550522917],[516545.53181888285,5276397.470235846],[516545.0509136424,5276397.535553466],[516543.94911351526,5276388.774616846],[516556.1141623859,5276387.253230478],[516556.7238480338,5276392.089539735],[516556.7385544663,5276392.200721224],[516557.0103706281,5276394.346489783],[516555.56768535834,5276394.53132604]]]},"properties":{"id_build":1488,"id_source":"w145338318","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.5669686363,5276208.414567558],[517118.70674584503,5276208.666640491],[517118.6972728842,5276211.8896640865],[517117.1949877717,5276211.8852488315],[517117.03071449435,5276216.663773374],[517115.67833240406,5276216.770938757],[517115.6737600498,5276218.326881197],[517110.56664931326,5276218.089596064],[517108.46377886046,5276217.972279001],[517108.4768372265,5276213.526729176],[517109.8292199273,5276213.419562119],[517109.75900294166,5276211.752260286],[517108.5568483672,5276211.859868643],[517108.5669686363,5276208.414567558]]]},"properties":{"id_build":1489,"id_source":"w145338322","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.1064980724,5276431.212800068],[517024.8999839509,5276435.8946795],[517022.7152574896,5276438.111088088],[517023.3141990284,5276438.779677164],[517020.82805462595,5276441.328624632],[517020.22878827056,5276440.771174596],[517017.51698751736,5276443.430603741],[517012.1252085246,5276437.857864776],[517014.68678663054,5276435.197994265],[517015.3608407513,5276435.866801955],[517016.4606814496,5276434.769732011],[517017.92209645634,5276433.318071651],[517017.2480423306,5276432.649263671],[517019.4324439497,5276430.543991832],[517020.1064980724,5276431.212800068]]]},"properties":{"id_build":1490,"id_source":"w145338326","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.592871686,5276405.782560502],[517182.21233509894,5276401.014228621],[517183.41838700516,5276399.572970201],[517185.74127876095,5276401.469199881],[517185.0626489243,5276402.356315353],[517186.561441281,5276403.527705399],[517188.0602330334,5276404.699095831],[517188.73919106805,5276403.700841931],[517191.7361168739,5276406.2659018645],[517186.83581443876,5276412.364124906],[517183.98812929785,5276410.13292704],[517183.38494032586,5276410.909125557],[517180.4627971416,5276408.455430257],[517181.0663138374,5276407.568092662],[517178.592871686,5276405.782560502]]]},"properties":{"id_build":1491,"id_source":"w145338331","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.56080596324,5276437.277283824],[516987.566718537,5276436.78592205],[516987.7894591555,5276437.6756896],[516989.788263755,5276437.392556927],[516991.6217587373,5276437.131170585],[516991.47445428756,5276436.130483234],[516995.00663409085,5276435.473951109],[516996.1151416713,5276441.7010109825],[516996.2617964924,5276442.92397603],[516993.0300661102,5276443.581384016],[516993.0277961523,5276444.359355525],[516989.0449544882,5276445.014574181],[516988.8966772037,5276444.347303247],[516985.90549893363,5276444.93873306],[516984.56080596324,5276437.277283824]]]},"properties":{"id_build":1492,"id_source":"w145338333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1566535209,5276370.173300824],[517206.6267114142,5276374.635048669],[517204.06370559015,5276377.739389874],[517203.23944198375,5276377.070116631],[517202.0783821491,5276378.533731782],[517201.1284245366,5276379.731235263],[517202.77727956243,5276380.958642502],[517198.93245086796,5276385.72629608],[517192.71291729086,5276380.706644135],[517196.4075198662,5276375.93854293],[517195.0584544548,5276374.9343021],[517197.546016308,5276371.940873931],[517198.52050566726,5276372.610589973],[517200.6318527038,5276369.838331648],[517201.1566535209,5276370.173300824]]]},"properties":{"id_build":1493,"id_source":"w145338338","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.6063837174,5276415.116707488],[516989.7136053317,5276421.788321043],[516989.8615589015,5276422.566730759],[516986.7049295087,5276423.224361375],[516986.4821881524,5276422.334593889],[516985.0992931345,5276422.6195239285],[516983.2504474971,5276422.992007307],[516983.32361446973,5276423.65905904],[516979.1898887463,5276424.536123944],[516977.93534834695,5276416.86382542],[516981.84277226415,5276416.319518919],[516981.7709012688,5276415.207912088],[516985.67897494126,5276414.441330596],[516985.97618007683,5276415.553594671],[516988.6063837174,5276415.116707488]]]},"properties":{"id_build":1494,"id_source":"w145338348","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.7574501282,5276437.135354113],[516415.87040380493,5276443.593046903],[516414.74122916575,5276444.478981619],[516412.558931738,5276445.917647006],[516414.6529617249,5276449.146599213],[516411.7930997158,5276451.139053598],[516409.4602700991,5276452.6884356225],[516408.1808759615,5276453.573948355],[516405.8618236102,5276450.233224899],[516405.4856416745,5276450.454444568],[516400.6237598504,5276443.216672274],[516408.0741769689,5276438.125232954],[516408.7473606472,5276439.127386647],[516411.7574501282,5276437.135354113]]]},"properties":{"id_build":1495,"id_source":"w145338351","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516736.4203941551,5276505.409961984],[516736.35358777555,5276502.520137342],[516734.70115687494,5276502.515388868],[516734.78329323174,5276500.070551118],[516734.25720019685,5276500.18017913],[516734.18624116626,5276498.735158921],[516734.6372237863,5276498.625315074],[516734.64424958057,5276496.180261506],[516736.52233340056,5276496.074518717],[516743.73294894525,5276496.09524501],[516743.72313944314,5276499.507206125],[516743.7153749141,5276502.20787894],[516742.21252592123,5276502.425837824],[516742.203899438,5276505.426585411],[516736.4203941551,5276505.409961984]]]},"properties":{"id_build":1496,"id_source":"w145338353","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516918.9141399428,5276457.547029952],[516915.50383861514,5276457.626035541],[516915.5163752556,5276458.481847854],[516911.88074132823,5276458.560201091],[516911.85369831015,5276457.526523099],[516908.3607748998,5276457.605292951],[516908.2413854295,5276452.159099749],[516908.1887177204,5276449.602733157],[516911.72671263595,5276449.524094061],[516911.7537557266,5276450.557772038],[516913.2786093266,5276450.528858254],[516915.3518390593,5276450.4793096315],[516915.3393023691,5276449.623497328],[516918.74209725973,5276449.544469814],[516918.9141399428,5276457.547029952]]]},"properties":{"id_build":1497,"id_source":"w145338357","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517021.1333910655,5276372.834101894],[517018.6243845478,5276372.915681514],[517018.5614183725,5276368.758871893],[517019.49287497066,5276368.7393658385],[517019.4749531301,5276367.161129411],[517019.45003969007,5276365.405049001],[517017.91017314966,5276365.422777265],[517017.8297386527,5276359.532137021],[517025.59674534417,5276359.42146951],[517025.6774319027,5276365.223198862],[517027.1421862553,5276365.205253052],[517027.1912286631,5276368.984147007],[517025.8541660472,5276369.002466086],[517025.9030792792,5276372.8258155575],[517021.1333910655,5276372.834101894]]]},"properties":{"id_build":1498,"id_source":"w145338367","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.4170223005,5276380.124646725],[517002.0075603635,5276378.701984249],[517003.04095975443,5276384.928825599],[517001.38719757355,5276385.368556639],[517001.6306224202,5276386.8918814575],[517001.9035728187,5276388.59311604],[517002.8052409555,5276388.484608593],[517003.4705410981,5276392.154161829],[516996.706899856,5276393.356956026],[516990.31914514914,5276394.449714898],[516989.7295973714,5276390.558104729],[516994.1644452223,5276389.459646414],[516993.64774149144,5276386.346226482],[516995.3766148072,5276385.906712431],[516994.4170223005,5276380.124646725]]]},"properties":{"id_build":1499,"id_source":"w145338374","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.9977021609,5276383.280839401],[517028.99726463365,5276383.259768029],[517029.0039355657,5276386.116078494],[517029.9203020356,5276386.118757943],[517029.92378771264,5276390.064228433],[517029.00742186105,5276390.061548982],[517029.01194800757,5276393.651375411],[517023.9718739604,5276393.658868749],[517021.0874792336,5276393.683780127],[517021.0831106077,5276390.0383843295],[517021.96192048234,5276390.040952769],[517021.95973643474,5276388.218254878],[517021.95794217254,5276386.26219046],[517021.00401972537,5276386.259402504],[517020.9977021609,5276383.280839401]]]},"properties":{"id_build":1500,"id_source":"w145338378","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.8544528837,5276238.973575469],[516568.19170625164,5276234.303824679],[516567.8202463818,5276232.857952523],[516566.9318399751,5276228.298699677],[516566.78382478846,5276227.520301094],[516577.1520924534,5276226.6606846955],[516577.81673083466,5276230.663603941],[516578.1831268961,5276233.887696793],[516574.3519989143,5276233.987932896],[516574.4217362683,5276235.877505467],[516572.84402751137,5276235.984155605],[516573.06146317127,5276238.763265674],[516572.9112353868,5276238.762838204],[516568.8544528837,5276238.973575469]]]},"properties":{"id_build":1501,"id_source":"w145338380","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516667.7756059262,5276581.788361521],[516658.67464339006,5276586.2079100115],[516657.10656431934,5276582.980372732],[516658.68577036227,5276582.318051508],[516657.4089324939,5276579.680387807],[516655.1762855386,5276575.083931698],[516661.6446105789,5276571.990521818],[516660.9718037613,5276570.877199736],[516661.5010686672,5276569.656176991],[516664.283941104,5276568.330462735],[516665.4847412904,5276568.667318063],[516667.27655806224,5276572.45119647],[516666.747610259,5276573.561079886],[516664.26549600327,5276574.776513837],[516667.7756059262,5276581.788361521]]]},"properties":{"id_build":1502,"id_source":"w145338384","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516497.90198301576,5276307.678748896],[516497.8287589109,5276307.011703524],[516500.8342239156,5276306.6867987225],[516501.202546729,5276309.244054424],[516504.132582859,5276309.030077283],[516503.9154321479,5276306.139830783],[516510.9785766604,5276305.270732511],[516512.7456829545,5276317.834524093],[516508.73330105894,5276318.301050072],[516507.1854405613,5276318.485600257],[516507.3325162958,5276319.597413732],[516503.5756142074,5276320.031325464],[516503.2830358724,5276317.2520048665],[516499.2253662568,5276317.796206828],[516497.90198301576,5276307.678748896]]]},"properties":{"id_build":1503,"id_source":"w145338388","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.2879426624,5276209.420375863],[516654.794799036,5276209.43326149],[516654.8587901968,5276213.323332504],[516657.5625843595,5276213.4422043385],[516657.6160843406,5276220.999854182],[516657.39074196824,5276220.999209708],[516656.5648044446,5276220.885707958],[516656.26530143584,5276220.551432464],[516650.25585335644,5276220.645389605],[516650.26887971465,5276216.088700837],[516650.20202610263,5276213.19887861],[516648.8499700677,5276213.195013619],[516648.86077147734,5276209.416296142],[516650.2879426624,5276209.420375863]]]},"properties":{"id_build":1504,"id_source":"w145338393","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.64052636665,5276311.550326414],[516531.5204305014,5276319.110321046],[516527.91375191335,5276319.544643495],[516528.0822220952,5276321.056621021],[516528.27985419374,5276322.879872378],[516519.41370602715,5276323.854975013],[516518.7525060769,5276318.629535449],[516515.5968204683,5276318.954004997],[516514.7175259285,5276311.171735286],[516519.45090310404,5276310.740600263],[516519.3035142159,5276309.739925259],[516522.38409205084,5276309.415244625],[516522.75114405673,5276312.417056792],[516524.5544852845,5276312.199893692],[516530.64052636665,5276311.550326414]]]},"properties":{"id_build":1505,"id_source":"w145338396","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.19044781156,5276451.998679078],[517287.4951410668,5276460.00758287],[517283.6611786746,5276461.107601181],[517282.10033656267,5276455.545981012],[517282.8521073711,5276455.325932367],[517282.034129931,5276452.545010919],[517280.8762309257,5276452.941678206],[517280.07926129433,5276453.206048909],[517280.6748741627,5276454.986052398],[517276.014028198,5276456.305901807],[517273.04056848306,5276445.84994442],[517277.7014221085,5276444.530092634],[517278.29670688824,5276446.4212346375],[517283.11555875547,5276445.012944113],[517285.19044781156,5276451.998679078]]]},"properties":{"id_build":1506,"id_source":"w145338403","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.25204138266,5276327.520823335],[517254.00099611084,5276331.319564293],[517252.64139503974,5276333.871750657],[517250.99154945917,5276332.977745693],[517249.9949267588,5276334.70857374],[517249.33051195246,5276335.862459201],[517250.08032186865,5276336.309238923],[517248.11718959425,5276339.748756745],[517241.44269552414,5276336.172522429],[517243.33005423844,5276332.955057531],[517242.3552342925,5276332.3964728005],[517244.24292378005,5276329.067869446],[517245.66809146677,5276329.738927716],[517247.10214496334,5276327.409239705],[517247.25204138266,5276327.520823335]]]},"properties":{"id_build":1507,"id_source":"w145338409","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.4491757341,5276402.257021621],[516965.37386895146,5276394.588161428],[516971.63094886474,5276394.517479869],[516971.60621550377,5276392.694716358],[516975.33189627185,5276392.661118538],[516975.34371167835,5276393.761436227],[516979.06188060687,5276393.727818901],[516979.09127153666,5276396.528625603],[516979.1378174082,5276401.1744017415],[516975.3220078806,5276401.207734398],[516975.30922068516,5276400.440833037],[516973.18345902546,5276400.467979365],[516971.7337685312,5276400.474868623],[516971.75128210086,5276402.197585368],[516965.4491757341,5276402.257021621]]]},"properties":{"id_build":1508,"id_source":"w145338411","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.91471977375,5276502.59077222],[516760.9610071136,5276499.556791099],[516761.0058231467,5276497.034048458],[516761.0128600093,5276494.588994903],[516761.7665249673,5276493.702046251],[516763.71940082725,5276493.707667203],[516764.61848866416,5276494.488233295],[516764.53601979604,5276497.04420943],[516769.11744436854,5276497.168539069],[516769.1056039107,5276501.280674611],[516769.7815985237,5276501.282621105],[516769.7678374289,5276506.061589475],[516760.00347881654,5276506.033481069],[516760.1636148198,5276502.588610598],[516760.91471977375,5276502.59077222]]]},"properties":{"id_build":1509,"id_source":"w145338416","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.37386895146,5276394.588161428],[516965.4491757341,5276402.257021621],[516962.57271765143,5276402.137503437],[516962.5835628833,5276400.992795884],[516960.6231769592,5276400.975972568],[516959.0909283549,5276400.960396606],[516959.0881127937,5276401.927303986],[516954.8969390763,5276401.892873167],[516954.9651398686,5276393.946581672],[516958.6605807517,5276393.979568989],[516958.6629108061,5276393.179369787],[516962.5311095639,5276393.212862606],[516962.5284229156,5276394.1353144655],[516965.45021108974,5276394.166052872],[516965.37386895146,5276394.588161428]]]},"properties":{"id_build":1510,"id_source":"w145338432","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517241.3663652917,5276361.956716517],[517244.5368782814,5276356.631395526],[517245.8114852993,5276357.4131478425],[517246.55894846295,5276356.115026218],[517247.472515001,5276354.528433249],[517246.7974905583,5276354.193015046],[517248.8360588725,5276350.642580401],[517251.6863822711,5276351.984699611],[517255.81065220654,5276354.3308522655],[517253.77273939253,5276357.659006957],[517254.82266637956,5276358.217816164],[517252.8595385726,5276361.657332497],[517251.0598054475,5276360.651743671],[517248.19039600325,5276365.755673395],[517241.3663652917,5276361.956716517]]]},"properties":{"id_build":1511,"id_source":"w145338438","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517025.9030792792,5276372.8258155575],[517028.98274353467,5276372.812591427],[517028.9905518834,5276375.279916135],[517029.8318079135,5276375.282375948],[517029.84966618527,5276379.450167849],[517028.9558322918,5276379.447554301],[517028.99726463365,5276383.259768029],[517020.9977021609,5276383.280839401],[517020.9950873746,5276379.03529428],[517021.9940782633,5276379.03821395],[517021.9916018506,5276377.315540986],[517021.98863819416,5276375.759576188],[517021.1398710217,5276375.757095558],[517021.1333910655,5276372.834101894],[517025.9030792792,5276372.8258155575]]]},"properties":{"id_build":1512,"id_source":"w145338443","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516669.97290106723,5276362.560468145],[516669.51245342894,5276360.725345431],[516668.93309809035,5276358.4453237],[516667.05401709885,5276358.884504689],[516664.5313615009,5276347.985597024],[516665.13289741636,5276347.765038864],[516665.0581029385,5276347.653685163],[516671.0715559482,5276346.114939538],[516672.92709737364,5276353.90002906],[516674.12953230826,5276353.681192083],[516675.0958111562,5276357.240428505],[516674.1947809373,5276357.126709129],[516675.1607409508,5276360.797084357],[516674.784861146,5276360.907147859],[516669.97290106723,5276362.560468145]]]},"properties":{"id_build":1513,"id_source":"w145338444","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.8999839509,5276435.8946795],[517020.1064980724,5276431.212800068],[517024.626178753,5276426.780420932],[517025.8994999742,5276428.006680308],[517026.97658324963,5276426.987343627],[517028.4604387929,5276425.569093436],[517027.636486892,5276424.788706248],[517030.49852398265,5276422.12972114],[517035.7400772326,5276427.702037565],[517033.17913628323,5276430.139621248],[517033.92765019555,5276431.030928328],[517031.1480433985,5276433.75683667],[517033.5597390954,5276436.120052142],[517029.363752314,5276440.308863473],[517024.8999839509,5276435.8946795]]]},"properties":{"id_build":1514,"id_source":"w145338457","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.4663605341,5276345.110586284],[516563.4883828253,5276337.717016715],[516567.4406974566,5276337.239243653],[516568.84577774856,5276337.076531235],[516568.6842607949,5276335.764623622],[516567.27163731307,5276335.938428589],[516566.9634670231,5276333.370225582],[516571.6220654311,5276332.816666665],[516571.9010108464,5276335.095823629],[516578.38551027694,5276334.314072489],[516579.2734295273,5276341.674046351],[516568.14536984626,5276343.009397197],[516568.33610969025,5276344.610351089],[516564.4663605341,5276345.110586284]]]},"properties":{"id_build":1515,"id_source":"w145338463","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.92293880985,5276336.902989404],[517264.584641677,5276333.79600222],[517265.40989284706,5276334.131867808],[517266.1195434028,5276332.922548399],[517267.2218232723,5276331.025326724],[517265.3466408883,5276330.130649621],[517266.78202015394,5276327.356411385],[517274.0564218839,5276331.267873201],[517274.43165585055,5276331.380125876],[517272.9221500523,5276333.820723192],[517274.19675831235,5276334.602481694],[517272.3083942224,5276338.153352939],[517271.0334569188,5276337.482733607],[517269.5219768378,5276340.590164418],[517262.92293880985,5276336.902989404]]]},"properties":{"id_build":1516,"id_source":"w145338467","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.6063837174,5276415.116707488],[516988.4581055915,5276414.449436598],[516991.7646389782,5276413.903383989],[516991.46775910846,5276412.679980834],[516995.0753890971,5276411.912529097],[516995.59468428924,5276414.136839036],[517001.60686016694,5276413.0429896135],[517002.7869076445,5276420.492796415],[516996.3991814813,5276421.585548596],[516995.87891428784,5276419.694654905],[516994.1053082998,5276420.02289852],[516992.9479416098,5276420.241800951],[516992.945023127,5276421.242049992],[516989.7136053317,5276421.788321043],[516988.6063837174,5276415.116707488]]]},"properties":{"id_build":1517,"id_source":"w145338468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.7767381754,5276247.371737974],[516857.95687206986,5276243.581931158],[516860.1412861351,5276241.476600177],[516860.0671374338,5276241.142966482],[516860.7434840016,5276241.033784708],[516863.30443487264,5276238.596125901],[516865.62588566134,5276241.047920779],[516866.8280294573,5276240.940262303],[516866.52435551514,5276242.050779734],[516868.2468242171,5276243.834003021],[516866.06272991846,5276245.828192225],[516865.98471959226,5276246.828223487],[516865.1587896419,5276246.714692138],[516863.1246032447,5276248.8204562105],[516861.7767381754,5276247.371737974]]]},"properties":{"id_build":1518,"id_source":"w145338471","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.706899856,5276393.356956026],[517003.4705410981,5276392.154161829],[517004.2970967853,5276392.0454353215],[517004.96369357395,5276395.270433641],[517004.1368138433,5276395.490298829],[517004.45476530376,5276397.213892891],[517004.72829846654,5276398.715077838],[517005.4797414051,5276398.606132192],[517006.1440650769,5276402.609102136],[517000.0570901994,5276403.591588857],[516998.40365791507,5276403.920181968],[516997.81444091117,5276399.917432129],[516996.61232733645,5276400.025063522],[516996.02148702735,5276396.578007787],[516997.1488137828,5276396.359018278],[516996.706899856,5276393.356956026]]]},"properties":{"id_build":1519,"id_source":"w145338480","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.9469161132,5276297.45482438],[516459.1232106812,5276288.230731392],[516460.70561463776,5276286.456969012],[516461.7540592092,5276287.571328794],[516463.9389412433,5276285.24357192],[516465.5122357507,5276286.692835007],[516467.8476604637,5276284.254365541],[516468.67642084917,5276283.367591677],[516476.0915741239,5276290.834920383],[516473.07855817204,5276293.827168321],[516471.2808708088,5276292.043849592],[516468.87020887336,5276294.526560821],[516467.5142124374,5276295.923086327],[516462.70697072643,5276295.909496191],[516462.7025726972,5276297.465438914],[516458.9469161132,5276297.45482438]]]},"properties":{"id_build":1520,"id_source":"w145338489","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516793.284818073,5276243.061683366],[516794.11107035045,5276243.064065767],[516794.18137722055,5276244.731363657],[516796.58469901275,5276244.84943373],[516816.78871222876,5276245.4634331195],[516816.87120668974,5276242.907458672],[516820.626898998,5276242.918303923],[516820.31520988204,5276246.807292586],[516790.3457664222,5276246.387400227],[516790.5059262591,5276242.942531937],[516791.81274695083,5276243.001869273],[516793.284818073,5276243.061683366]]]},"properties":{"id_build":1521,"id_source":"w145338491","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516501.4542319284,5276432.498662402],[516497.4149022752,5276426.59681579],[516500.34991726966,5276424.604616235],[516499.3775610046,5276423.157045616],[516500.6569757586,5276422.271552915],[516499.235524196,5276420.267011559],[516500.9815444085,5276419.060535765],[516503.0737714529,5276417.61053421],[516502.10141468066,5276416.1629631575],[516504.96132489265,5276414.170553113],[516510.7964012383,5276422.52256842],[516512.0679403908,5276424.415547912],[516510.93874732684,5276425.301463993],[516512.95856436546,5276428.196822242],[516503.09975409013,5276434.948398019],[516501.4542319284,5276432.498662402]]]},"properties":{"id_build":1522,"id_source":"w145338495","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.3161640834,5276150.618807052],[516608.30697372387,5276153.841830496],[516608.22995729005,5276154.508448742],[516605.0751281389,5276154.499453729],[516605.30078993086,5276154.388957437],[516603.4980303809,5276154.383818127],[516603.4248162943,5276153.7167715635],[516602.6285974021,5276153.714501889],[516601.997631488,5276153.712703356],[516601.9957307556,5276154.379535795],[516598.9160165242,5276154.370758226],[516598.6377272768,5276146.590190226],[516601.8679925701,5276146.488257108],[516601.94500837434,5276145.821638783],[516608.33010806894,5276145.7287025545],[516608.3161640834,5276150.618807052]]]},"properties":{"id_build":1523,"id_source":"w145338500","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.32509231474,5276583.306686474],[516379.8734978811,5276583.638835374],[516378.59319917526,5276584.857771163],[516378.1378542419,5276586.523586009],[516378.43391592836,5276588.080374394],[516379.2554303965,5276589.749780326],[516375.1194155773,5276591.51638427],[516373.2529309679,5276587.510107267],[516379.7264049028,5276582.527024698],[516380.32509231474,5276583.306686474]]]},"properties":{"id_build":1524,"id_source":"w145338502","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.74110702163,5276321.94603129],[517278.8910029832,5276322.057615734],[517277.6822738593,5276324.387964407],[517278.35730001144,5276324.723386169],[517276.46860054863,5276328.385394787],[517275.7935747143,5276328.04997324],[517274.0564218839,5276331.267873201],[517266.78202015394,5276327.356411385],[517268.51917010354,5276324.138509278],[517269.2693096137,5276324.474152698],[517270.0547670186,5276323.031665099],[517271.0819042111,5276321.145335322],[517270.4072067887,5276320.698775642],[517271.6917057998,5276318.146370704],[517272.14172395587,5276318.369984738],[517278.74110702163,5276321.94603129]]]},"properties":{"id_build":1525,"id_source":"w145338507","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517241.3663652917,5276361.956716517],[517248.19039600325,5276365.755673395],[517250.66482164396,5276367.2078187],[517250.0616193538,5276367.984010293],[517250.2082228702,5276369.206981718],[517250.35219286405,5276371.319063318],[517248.40256701974,5276370.201891576],[517246.81764078845,5276372.753412078],[517245.69293257606,5276372.083243111],[517243.8055850471,5276375.300707414],[517237.05634601007,5276371.613116674],[517238.0455460934,5276369.84892247],[517238.86857873504,5276368.395427877],[517237.6684275782,5276367.836176912],[517241.1413573257,5276361.844910671],[517241.3663652917,5276361.956716517]]]},"properties":{"id_build":1526,"id_source":"w145338508","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517258.6167686017,5276294.545987371],[517260.35392365855,5276291.328082988],[517259.22887184215,5276290.769050282],[517256.7537570873,5276289.5391791],[517258.56767253566,5276285.76580298],[517261.3429123036,5276287.107704128],[517262.91765608604,5276288.001489299],[517264.1267161508,5276285.559998932],[517271.2509455648,5276289.47101156],[517269.89132730133,5276292.023193769],[517268.1666887077,5276291.017822542],[517267.0941168602,5276293.026271773],[517266.5049719115,5276294.1248085275],[517266.9546626347,5276294.459560907],[517265.0662901659,5276298.010434296],[517258.6167686017,5276294.545987371]]]},"properties":{"id_build":1527,"id_source":"w145338509","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516904.2342995978,5276111.793264396],[516914.8381780889,5276107.489602072],[516915.6660634856,5276106.93630803],[516915.89237861475,5276106.603546303],[516915.81952241034,5276105.825357049],[516915.8395342536,5276098.934755935],[516923.4355851261,5276095.73377122],[516925.9720804333,5276101.74268355],[516925.8769410035,5276108.633066409],[516907.2369855385,5276112.46881768],[516906.9871209924,5276120.914707061],[516904.05761952454,5276120.906204268],[516904.2342995978,5276111.793264396]]]},"properties":{"id_build":1528,"id_source":"w145338511","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.0662901659,5276298.010434296],[517265.29130015435,5276298.122241047],[517263.8575616788,5276300.340785745],[517263.0319761985,5276300.116059167],[517261.982369922,5276301.980095763],[517261.21970915585,5276303.33374018],[517261.9695223755,5276303.780521399],[517260.23171135044,5276307.220702881],[517253.2573933523,5276303.421287371],[517254.9945428354,5276300.203381355],[517254.46973874804,5276299.868407371],[517256.2823324004,5276296.539585521],[517256.8071366841,5276296.874559664],[517258.2418612804,5276294.322596972],[517258.6167686017,5276294.545987371],[517265.0662901659,5276298.010434296]]]},"properties":{"id_build":1529,"id_source":"w145338513","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.32245930226,5276149.963367406],[516409.9386209046,5276149.611959144],[516410.10074977454,5276145.389110272],[516408.59876104625,5276145.273739086],[516408.99030483933,5276139.606721447],[516410.4174929908,5276139.610742352],[516410.8143622468,5276132.0543663325],[516416.9728740716,5276132.405140339],[516416.81427969196,5276135.372121204],[516416.7346849706,5276136.961193445],[516422.4425001044,5276137.310702963],[516422.0537632669,5276141.977471055],[516422.5786291235,5276142.312369796],[516422.42338508443,5276144.090166047],[516416.715263342,5276143.851795269],[516416.32245930226,5276149.963367406]]]},"properties":{"id_build":1530,"id_source":"w145338518","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517023.8952692743,5276407.01764017],[517017.4582259587,5276406.987713912],[517017.4234207374,5276403.475596793],[517018.1444938431,5276403.4777037725],[517018.12770846015,5276401.510481536],[517018.1098513739,5276399.910017274],[517016.63759460766,5276399.92794339],[517016.5655475339,5276393.737250092],[517021.0874792336,5276393.683780127],[517023.9718739604,5276393.658868749],[517024.02941058396,5276399.671696197],[517026.02745026594,5276399.65530901],[517026.0758431098,5276403.656480719],[517025.00919086253,5276403.675590481],[517025.0446737692,5276406.95431622],[517023.8952692743,5276407.01764017]]]},"properties":{"id_build":1531,"id_source":"w145338521","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516423.2895993577,5276422.941984669],[516423.27204865025,5276429.165756854],[516419.516477052,5276429.155167548],[516411.7136572987,5276426.021263448],[516410.8129459673,5276425.796446002],[516411.802862143,5276421.020229619],[516415.70866204926,5276421.031237362],[516415.72213224514,5276416.252269489],[516412.3424235187,5276416.1316046165],[516412.4288102131,5276412.130819954],[516413.48043597635,5276412.111555669],[516420.8416285172,5276412.043394281],[516420.90577260253,5276415.933463602],[516423.3841420794,5276416.051591635],[516423.2895993577,5276422.941984669]]]},"properties":{"id_build":1532,"id_source":"w145338526","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.66666639573,5276514.518379316],[516734.6736922392,5276512.073325687],[516734.07248991716,5276512.182737886],[516734.0775994354,5276510.404517071],[516734.60337219207,5276510.406027843],[516734.60784315947,5276508.850084638],[516734.90860417596,5276508.739809156],[516734.83509055636,5276508.183899324],[516736.4124094263,5276508.188431988],[516736.4203941551,5276505.409961984],[516742.203899438,5276505.426585411],[516742.2700638671,5276508.5386877395],[516743.62173186505,5276508.653713382],[516743.61300878075,5276511.687802638],[516743.6047969349,5276514.544069829],[516734.66666639573,5276514.518379316]]]},"properties":{"id_build":1533,"id_source":"w145338533","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516556.40766212187,5276231.158404784],[516557.14490062004,5276236.050645225],[516557.51415128954,5276238.274487984],[516553.7584563916,5276238.263812404],[516553.7530864893,5276240.153171241],[516552.2508090172,5276240.148901688],[516552.321185148,5276241.816196485],[516549.8421122271,5276241.920291293],[516546.1669009858,5276240.020475203],[516546.106626439,5276234.796740335],[516550.0226571945,5276231.251397724],[516553.0269008627,5276231.371074812],[516553.9282687043,5276231.3736366145],[516554.90475053375,5276231.376412058],[516556.40766212187,5276231.158404784]]]},"properties":{"id_build":1534,"id_source":"w145338538","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516961.23922849126,5276449.934816116],[516956.5072241082,5276449.921036841],[516956.5124014432,5276448.142816235],[516952.68173005624,5276448.131664399],[516952.6739658084,5276450.79899531],[516951.2426483118,5276452.239645602],[516947.71242423105,5276452.229371518],[516947.89886939345,5276439.782264474],[516951.8800923794,5276439.682711618],[516951.8014226477,5276440.905019643],[516953.1834705089,5276440.909042548],[516955.1814310044,5276440.914858846],[516955.2617192405,5276439.136856935],[516961.2935142561,5276439.032166732],[516961.22546668304,5276446.922889344],[516961.23922849126,5276449.934816116]]]},"properties":{"id_build":1535,"id_source":"w145338540","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.55012613995,5276564.172814664],[516958.2844456117,5276561.843929879],[516959.8614264339,5276561.959661908],[516962.8777933662,5276557.856276211],[516964.8863973962,5276559.351399708],[516965.7258137017,5276559.976227641],[516967.53621929686,5276557.314148005],[516975.3304685107,5276563.227268733],[516973.44462754915,5276566.000265871],[516972.24578766373,5276564.996514158],[516967.5698818418,5276571.5401342595],[516965.1709068965,5276569.97718872],[516964.86949709913,5276570.309729938],[516959.6228273842,5276566.515696836],[516957.4491773344,5276564.953410699],[516956.55012613995,5276564.172814664]]]},"properties":{"id_build":1536,"id_source":"w145338546","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.2600855458,5276461.626969252],[516420.39014574944,5276465.6114445515],[516418.0717318442,5276462.048438553],[516419.65219640377,5276460.941497446],[516414.3418669551,5276452.924471395],[516413.4386541291,5276453.58876388],[516411.7930997158,5276451.139053598],[516414.6529617249,5276449.146599213],[516416.9103696637,5276447.708146332],[516417.5876235934,5276447.265496762],[516419.1580655176,5276449.714996908],[516420.96418052126,5276448.497552654],[516424.41946058033,5276453.775316782],[516426.4985843273,5276456.959775425],[516424.1654396621,5276458.6202903725],[516426.2600855458,5276461.626969252]]]},"properties":{"id_build":1537,"id_source":"w145338548","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.62988728215,5276084.462326389],[516749.3450857553,5276085.56139979],[516747.04014028463,5276077.3304384],[516747.87025082763,5276075.999149488],[516750.5015480074,5276075.228738509],[516751.77564337145,5276076.232659507],[516757.7149229012,5276074.471509791],[516758.2448919217,5276073.0282191895],[516761.101539972,5276072.258461361],[516763.77756920806,5276082.046451388],[516760.244242804,5276083.036540009],[516760.02113366075,5276082.257920496],[516758.3523132374,5276082.686563401],[516757.0142588361,5276083.027246647],[516753.4809341958,5276084.017339367],[516753.62988728215,5276084.462326389]]]},"properties":{"id_build":1538,"id_source":"w145338551","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.89903052815,5276456.48794284],[517294.1856359815,5276458.138070531],[517292.40111958224,5276452.020084556],[517295.10743181023,5276451.250142416],[517294.0670962184,5276447.468301066],[517292.97705947235,5276447.776255658],[517292.11255448195,5276448.018196233],[517292.6327230333,5276449.909116709],[517287.97187025176,5276451.228956553],[517284.99842930335,5276440.7729931],[517289.8849536665,5276439.342681051],[517290.4047937825,5276441.344740081],[517295.1407663358,5276440.025125238],[517297.2077686019,5276447.1330948165],[517299.0663692744,5276453.595835566],[517299.89903052815,5276456.48794284]]]},"properties":{"id_build":1539,"id_source":"w145338552","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.2459878492,5276080.870250399],[516743.32814840216,5276088.211451923],[516737.5394382774,5276089.861909276],[516736.5715550928,5276086.858357645],[516731.3089756685,5276088.399193367],[516729.5969530373,5276082.948433253],[516729.2210542963,5276083.058493241],[516727.510304808,5276077.163178894],[516731.19449957914,5276075.951224521],[516730.9707477967,5276075.394883592],[516738.9397514653,5276073.083847203],[516740.6501712098,5276079.0903036175],[516739.5979090052,5276079.309558667],[516740.11829059606,5276081.2004281785],[516741.2459878492,5276080.870250399]]]},"properties":{"id_build":1540,"id_source":"w145338554","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.76571607665,5276099.21892934],[516433.3134753618,5276091.44070165],[516442.476032776,5276092.022257921],[516442.0825711721,5276098.35610536],[516441.1814965001,5276098.242422183],[516441.1019888168,5276099.798152392],[516442.0033769783,5276099.800696826],[516442.07912012294,5276099.5786314085],[516445.3084669088,5276099.810027608],[516444.83957329893,5276106.25480159],[516438.38057293266,5276105.903150208],[516438.5402140748,5276102.569412226],[516433.8088691983,5276102.222642119],[516433.8126320877,5276100.888977331],[516432.76571607665,5276099.21892934]]]},"properties":{"id_build":1541,"id_source":"w145338555","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.6965743838,5276385.600337075],[516775.2223584145,5276385.601851488],[516776.0473099324,5276386.048786488],[516776.57117306476,5276386.717133697],[516776.49253951386,5276387.939443898],[516776.1150588329,5276388.605194762],[516775.4384108951,5276388.825525124],[516774.38652331097,5276388.93363508],[516773.7121161019,5276388.37599419],[516773.1882527928,5276387.707647238],[516773.1908134233,5276386.818537006],[516773.642765707,5276386.37527984],[516773.9444940577,5276385.931590048],[516774.6214623781,5276385.600120734],[516774.6965743838,5276385.600337075]]]},"properties":{"id_build":1542,"id_source":"w145338556","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.6600740396,5276382.999111387],[517178.5849619875,5276382.9988898365],[517172.88988204574,5276378.425365101],[517174.69912746677,5276376.207905351],[517173.87518801325,5276375.4274975015],[517176.2879543058,5276372.322700017],[517177.03743727034,5276372.8806091305],[517179.37443842064,5276369.997868947],[517183.7962219286,5276373.34510583],[517185.66943503276,5276374.906589375],[517183.1815526628,5276378.011161383],[517182.20673458,5276377.452586679],[517181.166318504,5276378.76096626],[517180.0957269223,5276380.113712912],[517183.0936524382,5276382.345351945],[517181.0577581526,5276385.00669946],[517178.6600740396,5276382.999111387]]]},"properties":{"id_build":1543,"id_source":"w145338561","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.4582259587,5276406.987713912],[517023.8952692743,5276407.01764017],[517023.8868877561,5276409.8850206975],[517025.6144568362,5276409.890070737],[517025.60276050103,5276413.891066846],[517024.62630908453,5276413.888212413],[517024.61591293314,5276417.444653417],[517019.7712146219,5276417.430493458],[517016.7892840334,5276417.42177995],[517016.808323127,5276413.476375159],[517018.01762073307,5276413.479908665],[517018.0223296589,5276411.868396338],[517018.02785046597,5276409.97903707],[517015.88716707844,5276409.972782275],[517015.8959018435,5276406.983149085],[517017.4582259587,5276406.987713912]]]},"properties":{"id_build":1544,"id_source":"w145338562","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.9318879585,5276596.987692128],[516745.3007343536,5276603.905287303],[516746.6498233929,5276604.909424253],[516747.09983923804,5276605.132997824],[516741.6708918263,5276612.452610879],[516739.7976373813,5276610.891269662],[516738.0640589347,5276612.9979418125],[516740.08753126045,5276614.559714278],[516739.3332461967,5276615.6689434955],[516724.1931374651,5276604.511471177],[516726.45503148995,5276601.5171944555],[516727.95402348426,5276602.632897335],[516730.8941384102,5276598.862592368],[516732.46823948633,5276599.9785121875],[516735.1072827768,5276596.42962378],[516735.9318879585,5276596.987692128]]]},"properties":{"id_build":1545,"id_source":"w145338565","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.06654172274,5276672.441753255],[516619.00020574266,5276670.8941682335],[516618.40251071396,5276669.781065233],[516621.4873450416,5276667.9004936535],[516622.0124691103,5276668.124271954],[516623.9159465544,5276666.99608004],[516627.805649836,5276664.695478448],[516631.9920406701,5276671.598096891],[516633.9359681641,5276674.715561713],[516629.64781457826,5276677.148389079],[516629.26878239965,5276678.369843833],[516625.8077754671,5276680.471616818],[516624.60731340613,5276680.023630733],[516624.3791333803,5276681.023236974],[516621.8216482872,5276682.34961352],[516620.32646304066,5276679.900271839],[516616.06654172274,5276672.441753255]]]},"properties":{"id_build":1546,"id_source":"w145338567","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517221.0032245264,5276389.903685524],[517215.23307244317,5276385.329897137],[517215.0083933978,5276385.106953524],[517216.8169957848,5276383.111784348],[517217.4916900107,5276383.558337872],[517218.35102305317,5276382.527278732],[517219.60238499567,5276381.008363912],[517218.8532357137,5276380.339310531],[517221.4920177151,5276377.012920362],[517229.2098265588,5276383.370712213],[517229.9593030623,5276383.928628161],[517227.8482758141,5276386.589737164],[517226.1239868924,5276385.473239408],[517223.8617519507,5276388.467321853],[517222.88726815046,5276387.797601541],[517221.15311982506,5276390.015268496],[517221.0032245264,5276389.903685524]]]},"properties":{"id_build":1547,"id_source":"w145338576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.00239075295,5276155.666328885],[517161.4534081096,5276155.556518066],[517174.82879095204,5276153.9288477115],[517174.97771007544,5276154.373845637],[517175.7839830609,5276161.15574498],[517175.78234437254,5276161.711438659],[517169.3195140428,5276162.69264126],[517166.2388208139,5276163.016979913],[517166.4602347516,5276164.3513089],[517162.7782961497,5276164.78501705],[517162.5585188146,5276162.894994527],[517160.15386004973,5276163.221328465],[517159.9330994931,5276161.664722252],[517148.0842498718,5276155.0725831585],[517150.8782312516,5276150.079523319],[517161.00239075295,5276155.666328885]]]},"properties":{"id_build":1548,"id_source":"w145338578","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516666.1306539605,5276657.914369378],[516664.51452276343,5276645.239814545],[516669.6992466992,5276644.4766751295],[516669.84532830014,5276645.921909847],[516671.8439500209,5276645.672009813],[516677.5843831466,5276644.943810257],[516678.2466744417,5276649.724715655],[516679.524157196,5276649.506094938],[516680.57440421556,5276649.9536620425],[516681.0972992295,5276650.955417449],[516681.3194414444,5276652.067451138],[516681.01614206407,5276653.066840001],[516680.11292946263,5276653.731091333],[516678.8351293061,5276654.060850746],[516670.4945818399,5276655.259506234],[516670.78928920004,5276657.260865148],[516666.1306539605,5276657.914369378]]]},"properties":{"id_build":1549,"id_source":"w145338580","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516866.54012591875,5276236.604980882],[516865.56396666844,5276236.491014438],[516863.30443487264,5276238.596125901],[516858.3623583107,5276233.2471142905],[516860.7721183689,5276231.142435817],[516860.6234990265,5276230.586307171],[516860.92492026306,5276230.253760708],[516861.4500748429,5276230.47756037],[516863.86048074666,5276228.1506056795],[516866.1081088388,5276230.157628213],[516866.8595708102,5276230.048664664],[516867.0091551313,5276230.271377219],[516866.7815601573,5276231.048695896],[516868.57850227295,5276233.054414267],[516866.5439880579,5276235.271315866],[516866.54012591875,5276236.604980882]]]},"properties":{"id_build":1550,"id_source":"w145338588","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.1151416713,5276441.7010109825],[516995.00663409085,5276435.473951109],[516994.7838944848,5276434.584183282],[517000.7960491288,5276433.490333038],[517001.241526524,5276435.269869167],[517002.6317682587,5276435.040534278],[517004.5480493437,5276434.723823822],[517004.4752094462,5276433.945633021],[517008.30751309806,5276433.401124977],[517009.56395734823,5276440.406597632],[517010.45036084694,5276445.521614336],[517005.11486678146,5276446.395150831],[517003.5378554812,5276446.279406645],[517002.41410717415,5276445.275868257],[517001.96992872807,5276443.05177686],[517001.52607437846,5276440.716546723],[516996.1151416713,5276441.7010109825]]]},"properties":{"id_build":1551,"id_source":"w145338590","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.7971642088,5276084.081712082],[517006.5502702177,5276083.4170729155],[517008.87107431085,5276086.091201731],[517001.79104186705,5276092.627771669],[516999.2452140571,5276089.841849236],[516999.7723223266,5276089.398828957],[516997.9005889228,5276087.281712623],[516997.2980404297,5276087.8356525935],[516995.5752402157,5276086.163530321],[516997.08988184715,5276081.944642627],[516998.0660645662,5276082.058631032],[516998.2966018332,5276080.281069102],[517001.2332606229,5276077.844567344],[517003.9290002161,5276080.742067881],[517003.7755238534,5276081.853016536],[517004.75639519945,5276082.933934884],[517005.7971642088,5276084.081712082]]]},"properties":{"id_build":1552,"id_source":"w145338593","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.3688220896,5276080.252424358],[516838.9454701356,5276090.265332247],[516835.41085074155,5276091.699930205],[516835.1883944382,5276090.699030327],[516833.68447222677,5276091.2503819065],[516833.2369893569,5276090.137692102],[516831.13085609605,5276091.13186258],[516830.6766286683,5276092.353086232],[516829.99994430726,5276092.573410235],[516827.01971462497,5276084.118186012],[516829.35087630677,5276083.235803884],[516829.57461840357,5276083.7921486255],[516829.1971122091,5276084.457895791],[516832.73109206394,5276083.24557152],[516832.06050882343,5276081.354259512],[516835.3688220896,5276080.252424358]]]},"properties":{"id_build":1553,"id_source":"w145338599","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516645.3159207174,5276345.885677453],[516644.49952925346,5276342.438014179],[516643.7480860769,5276342.54700639],[516642.4857812982,5276337.4309739545],[516641.5841122747,5276337.539537179],[516639.94846375776,5276331.644460848],[516647.1653182954,5276329.553430453],[516647.98329846887,5276332.445400181],[516650.3136981119,5276331.785223893],[516650.83821602265,5276332.231282146],[516651.5066041891,5276334.900545362],[516650.3113280208,5276335.241661132],[516650.6975608167,5276336.765378934],[516651.87771884125,5276336.45756192],[516653.6597655042,5276343.686736506],[516645.3159207174,5276345.885677453]]]},"properties":{"id_build":1554,"id_source":"w145338601","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.331655877,5276355.1459433865],[516894.9067382274,5276349.382848511],[516900.5985160091,5276355.178627104],[516897.2835746117,5276358.614339563],[516899.1034194762,5276360.475652849],[516900.8783247967,5276362.292380418],[516904.4186033097,5276358.85732402],[516909.9607831546,5276364.430398327],[516901.3731487334,5276372.96322854],[516898.3776909223,5276369.842624634],[516899.9592398149,5276368.402397433],[516898.75325437926,5276367.254159087],[516897.4873076371,5276366.061291146],[516898.1662201344,5276365.063003538],[516894.4966800395,5276361.273607683],[516893.7433001821,5276362.04940029],[516890.9939950871,5276359.518554745],[516887.8252184352,5276356.586391244],[516889.331655877,5276355.1459433865]]]},"properties":{"id_build":1555,"id_source":"w145338607","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1566535209,5276370.173300824],[517204.8506130209,5276365.627482569],[517203.4270909352,5276364.400740383],[517204.48260269396,5276363.070181413],[517204.70990948414,5276362.404014446],[517205.61421224335,5276361.406428221],[517204.1906892773,5276360.179685862],[517206.45259658806,5276357.296734676],[517214.77003244654,5276364.1008374775],[517212.43268289865,5276367.094702253],[517211.53330646426,5276366.425205863],[517210.2817464826,5276368.010805646],[517209.3468407643,5276369.197238287],[517210.9205848587,5276370.424425863],[517207.22596689034,5276375.192517854],[517206.6267114142,5276374.635048669],[517201.1566535209,5276370.173300824]]]},"properties":{"id_build":1556,"id_source":"w145338611","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.25250048045,5276337.720780319],[517208.15169821994,5276341.519911849],[517205.3571014069,5276346.735223147],[517203.7072523013,5276345.8412315715],[517202.7482349465,5276347.561064756],[517201.9704728948,5276348.9480142435],[517202.720284716,5276349.3947878685],[517200.8322972843,5276352.834543485],[517200.3078231038,5276352.38843558],[517197.90783480165,5276351.158811085],[517197.8327223399,5276351.158589287],[517191.98379229294,5276347.807128997],[517193.94688863686,5276344.367592294],[517195.14639254473,5276345.149111741],[517197.03405089857,5276341.8204930965],[517198.5340052117,5276342.602900393],[517201.25250048045,5276337.720780319]]]},"properties":{"id_build":1557,"id_source":"w145338612","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.9692420954,5276108.118328069],[517129.96858837805,5276108.340605524],[517123.8799778233,5276109.767518079],[517123.2114524412,5276107.209339881],[517115.1009594604,5276109.063762739],[517111.1847930066,5276109.952488088],[517111.25827606866,5276110.508402396],[517103.81693994586,5276112.153641406],[517102.11114636966,5276104.70227368],[517109.40226018237,5276103.056591189],[517109.1801778145,5276101.944541989],[517121.80810515943,5276099.092017354],[517121.58406481636,5276098.646800034],[517126.3947385423,5276097.549546352],[517126.4698542714,5276097.54976722],[517127.28632312024,5276100.886358591],[517128.26348070765,5276100.666952657],[517129.9692420954,5276108.118328069]]]},"properties":{"id_build":1558,"id_source":"w145338621","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.11668712634,5276072.9937920235],[516435.32011153834,5276072.441489542],[516435.32199313893,5276071.774657182],[516435.47630205983,5276070.330277646],[516443.7384411468,5276070.57587621],[516443.569697321,5276077.13263699],[516442.14280757,5276077.01746927],[516442.13841533975,5276078.573411461],[516443.5653047086,5276078.68857918],[516446.79466302786,5276078.919976176],[516446.475998009,5276085.36517403],[516439.56690669863,5276084.78997136],[516439.8774082097,5276081.234380087],[516434.9964414087,5276080.664907583],[516435.00083173387,5276079.1089653885],[516433.8740925302,5276079.105786233],[516434.11668712634,5276072.9937920235]]]},"properties":{"id_build":1559,"id_source":"w145338629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516566.9318399751,5276228.298699677],[516567.8202463818,5276232.857952523],[516568.19170625164,5276234.303824679],[516568.8544528837,5276238.973575469],[516569.15016588225,5276240.641511528],[516564.4915256738,5276241.1839586375],[516562.0118201676,5276241.510325776],[516562.08314159425,5276242.844204437],[516560.3548912897,5276243.061569522],[516558.1008442799,5276243.27744029],[516557.7334898829,5276240.386764942],[516557.51415128954,5276238.274487984],[516557.14490062004,5276236.050645225],[516556.40766212187,5276231.158404784],[516562.34419562184,5276230.286165967],[516563.24998843105,5276228.732786665],[516566.9318399751,5276228.298699677]]]},"properties":{"id_build":1560,"id_source":"w145338635","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516701.40232353314,5276241.308210708],[516704.1740888349,5276241.293931568],[516704.1638791378,5276239.615693297],[516711.1346390061,5276239.569005858],[516710.99320178357,5276244.358719779],[516710.3995155914,5276244.457042118],[516710.3196825707,5276246.101680176],[516710.9581498849,5276246.103512019],[516711.02526338695,5276254.127988783],[516704.57280545833,5276254.176162782],[516704.5268990849,5276249.2303158],[516703.0020259893,5276249.248170477],[516701.46967339655,5276249.254890141],[516701.4468622833,5276246.731954242],[516701.40232353314,5276241.308210708]]]},"properties":{"id_build":1561,"id_source":"w145338642","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.14764776285,5276487.862782901],[517306.2634705225,5276488.515105594],[517307.2813314543,5276499.8543873085],[517294.88578073826,5276500.595541797],[517292.6296242781,5276476.249232261],[517297.3632583928,5276475.707590745],[517298.02143052267,5276481.711093193],[517299.7719739233,5276481.560697233],[517301.7779601247,5276481.388832719],[517301.7763092465,5276481.94452667],[517306.13405544014,5276481.512915377],[517305.48018483486,5276474.064607738],[517309.23638948635,5276473.853490852],[517309.31117005163,5276473.964852879],[517310.06227886956,5276473.967085318],[517310.79191510985,5276481.193339164],[517310.49147195613,5276481.192446139],[517311.14764776285,5276487.862782901]]]},"properties":{"id_build":1562,"id_source":"w145338652","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5068044968,5276370.134745798],[516531.374371827,5276370.567573293],[516532.0355541894,5276375.793014757],[516531.2090053694,5276375.901808268],[516531.2096362893,5276375.67953071],[516525.91265467776,5276376.22019636],[516521.66755890276,5276376.652711037],[516521.080218463,5276371.87203895],[516517.0229003197,5276372.305089696],[516516.3639103076,5276366.301678554],[516520.4212325791,5276365.868627345],[516521.5476010713,5276365.982962152],[516523.34777259384,5276366.877186471],[516524.0196835536,5276368.323908516],[516530.85710370983,5276367.565333891],[516530.49132136494,5276364.118965824],[516534.69855529093,5276363.797489716],[516535.5068044968,5276370.134745798]]]},"properties":{"id_build":1563,"id_source":"w145338656","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.79945962655,5276238.340730637],[516578.6208402384,5276238.44566855],[516578.55173698295,5276236.333818409],[516578.1831268961,5276233.887696793],[516577.81673083466,5276230.663603941],[516577.1520924534,5276226.6606846955],[516582.8623422772,5276226.121241671],[516583.61095127114,5276227.012490365],[516587.5171980766,5276226.912474267],[516587.88675429375,5276229.025180196],[516588.47595451534,5276233.139025519],[516588.62206740654,5276234.58425719],[516584.8587748055,5276237.240891656],[516582.98029413534,5276237.457822257],[516582.91055957985,5276235.5682495665],[516580.6568251824,5276235.67297286],[516580.79945962655,5276238.340730637]]]},"properties":{"id_build":1564,"id_source":"w145338665","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517221.4920177151,5276377.012920362],[517223.3009534924,5276374.906614443],[517223.9756481822,5276375.353168713],[517225.2045123424,5276373.82307459],[517226.4635535152,5276372.248614088],[517225.93941176275,5276371.691365083],[517228.05011472024,5276369.14139421],[517235.6934726117,5276375.276694831],[517233.73233499995,5276378.049385029],[517232.68339613883,5276377.157163283],[517232.0047563222,5276378.044273276],[517232.22943499754,5276378.267217541],[517230.2692864374,5276380.706492588],[517229.29513084446,5276379.9256324405],[517228.7673735687,5276380.590909677],[517230.49166344,5276381.707408204],[517229.2098265588,5276383.370712213],[517221.4920177151,5276377.012920362]]]},"properties":{"id_build":1565,"id_source":"w145338677","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516591.55087812373,5276234.814878971],[516591.4770305646,5276234.370109981],[516590.2777399599,5276233.477576497],[516590.2038922842,5276233.032807523],[516588.47595451534,5276233.139025519],[516587.88675429375,5276229.025180196],[516587.5171980766,5276226.912474267],[516587.14795809815,5276224.688629619],[516595.78797667404,5276224.046404039],[516595.8592906126,5276225.380283093],[516598.03791522986,5276225.275351614],[516599.68662367883,5276226.613726152],[516600.8678581019,5276233.841170495],[516601.3096718954,5276236.954340191],[516597.1023424724,5276237.275768341],[516596.88523491344,5276234.385518599],[516591.55087812373,5276234.814878971]]]},"properties":{"id_build":1566,"id_source":"w145338681","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517249.6616656492,5276503.017631195],[517249.5209908671,5276499.794161227],[517244.41248643957,5276500.112451974],[517244.5528349538,5276503.447060609],[517238.99334207247,5276503.87516049],[517238.33379596286,5276498.3162198225],[517239.61659741163,5276496.319501191],[517239.766818594,5276496.319945876],[517239.99313736183,5276495.987196528],[517239.4818386566,5276491.095533248],[517244.3653477901,5276490.665432154],[517244.43650946533,5276491.999320065],[517247.299047962,5276491.729947337],[517251.19844297296,5276491.352507494],[517251.35063956864,5276490.686119721],[517255.0320499706,5276490.36360662],[517256.1982554453,5276502.370157042],[517249.6616656492,5276503.017631195]]]},"properties":{"id_build":1567,"id_source":"w145338682","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516436.29662345775,5276285.387777441],[516436.29693709867,5276285.276638676],[516439.301782318,5276285.173979644],[516439.3715627288,5276287.063550654],[516442.07595402293,5276286.96004501],[516442.00429199444,5276285.737306554],[516446.3614900309,5276285.527329412],[516446.4347203142,5276286.194374103],[516446.33575579367,5276294.64070814],[516441.227432924,5276294.848564857],[516441.07814779185,5276294.5147244865],[516440.35706136836,5276294.512688989],[516439.72611074796,5276294.510907999],[516439.79369493085,5276297.178450403],[516436.2630639608,5276297.279625326],[516436.3500954807,5276293.056564195],[516436.2906642983,5276287.499413966],[516436.29662345775,5276285.387777441]]]},"properties":{"id_build":1568,"id_source":"w145338706","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516911.3006987986,5276316.866494519],[516908.9792976236,5276314.414681026],[516910.6369451195,5276312.641258586],[516909.6858502048,5276311.660467764],[516907.4915253468,5276309.42018928],[516906.06860465737,5276307.960128667],[516904.1852957079,5276309.844037123],[516902.79976952815,5276308.439655702],[516900.66530548455,5276306.277351337],[516902.32327526645,5276304.39278779],[516899.4775248625,5276301.43932785],[516894.3851476415,5276296.14541842],[516901.01606892905,5276288.9405763345],[516904.5587647544,5276292.451758237],[516906.8581265884,5276294.7367963055],[516906.0289781616,5276295.734646743],[516907.75174145796,5276297.406743169],[516907.22433629737,5276297.960910619],[516920.7804222074,5276311.559322225],[516915.3561495757,5276317.100550912],[516914.2323610562,5276316.097029836],[516912.349374789,5276317.869796917],[516911.85498517886,5276317.401574565],[516911.3006987986,5276316.866494519]]]},"properties":{"id_build":1569,"id_source":"w145338718","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.01135526027,5276221.120412855],[516622.68738235015,5276221.122342198],[516622.6608652351,5276230.413541873],[516622.64138972346,5276237.237461336],[516618.8099459087,5276237.44880694],[516618.59633737383,5276233.33603008],[516617.7704008731,5276233.222533826],[516616.49060981086,5276234.219139428],[516615.7413726427,5276233.550163994],[516615.5920958893,5276233.216319163],[516614.3151584861,5276233.212676465],[516613.5678230437,5276231.876868789],[516613.42678849195,5276228.653416439],[516615.83329079224,5276227.660024373],[516615.6247526285,5276221.769027663],[516614.7252855072,5276221.099623805],[516614.5826661117,5276218.431865235],[516622.01928469015,5276218.341944081],[516622.01135526027,5276221.120412855]]]},"properties":{"id_build":1570,"id_source":"w145338720","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516718.59262317914,5276619.276975154],[516715.67932282126,5276613.7116255425],[516715.00748816045,5276612.264880652],[516720.8001412204,5276609.0584573345],[516724.1931374651,5276604.511471177],[516739.3332461967,5276615.6689434955],[516736.9204941441,5276618.885061201],[516734.2127380314,5276620.210956659],[516734.5860473593,5276620.990007545],[516733.0813133121,5276621.874801674],[516733.4539839935,5276622.876130127],[516730.7455919419,5276624.424304842],[516731.19273316377,5276625.648126578],[516728.6348800283,5276627.085595032],[516728.9327615153,5276627.975568631],[516725.69765344483,5276629.855651873],[516723.59715881856,5276628.960501607],[516718.59262317914,5276619.276975154]]]},"properties":{"id_build":1571,"id_source":"w145338723","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.83775619394,5276092.097335431],[516484.3148934068,5276092.362796266],[516483.99933279306,5276097.6966049895],[516471.00651517307,5276096.881871431],[516471.087916589,5276094.659309234],[516470.4175317566,5276092.656900374],[516470.57436307054,5276090.323411861],[516471.4066084218,5276088.214112568],[516471.8143398356,5276084.814393301],[516475.6445892514,5276085.058619612],[516475.78668259643,5276082.625063911],[516484.8661821392,5276083.362047332],[516484.5528223856,5276087.917884848],[516481.0981229358,5276087.685829259],[516480.88675655477,5276090.708228831],[516479.64747165464,5276090.660266511],[516479.59847158956,5276092.04937312],[516480.83775619394,5276092.097335431]]]},"properties":{"id_build":1572,"id_source":"w145338738","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4339716028,5276489.391515131],[516731.4314172638,5276490.280625509],[516731.35598731955,5276490.391548519],[516731.50141921564,5276492.0590620525],[516728.15918770805,5276491.982777189],[516725.868441132,5276491.931741917],[516725.8722713673,5276490.598076346],[516722.56772193796,5276490.477447033],[516722.58686932287,5276483.809119226],[516726.1925038598,5276483.708333815],[516726.1960149691,5276482.485807056],[516727.9235623013,5276482.490768844],[516727.9996307329,5276482.1575682005],[516728.2256014665,5276481.935937839],[516729.05213908135,5276481.827172299],[516729.4270543851,5276482.050528678],[516729.42545811913,5276482.606222657],[516731.52887846984,5276482.501125533],[516731.4339716028,5276489.391515131]]]},"properties":{"id_build":1573,"id_source":"w145338753","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.40777437977,5276143.749954367],[517191.16023786436,5276143.307616439],[517192.5136226498,5276142.867052349],[517195.06655337376,5276143.20800766],[517200.9894903464,5276147.004246234],[517197.8956606219,5276151.774117479],[517199.23014837806,5276152.644947647],[517203.8933737177,5276155.68171961],[517199.51635686215,5276162.559454377],[517186.39584582514,5276154.185246811],[517189.49032083305,5276149.193092],[517187.4664775112,5276147.74230337],[517188.82510874706,5276145.523518704],[517190.40777437977,5276143.749954367]]]},"properties":{"id_build":1574,"id_source":"w145338757","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517072.1498276077,5276190.958802422],[517072.11273681733,5276201.050178222],[517071.0685815919,5276201.069345686],[517071.0604379927,5276203.847814279],[517071.8115815715,5276203.850015905],[517071.84402134543,5276218.4094116865],[517059.9015193596,5276218.152139675],[517058.62295087654,5276218.704093306],[517056.069069237,5276218.69661394],[517055.9367410138,5276212.5835429765],[517055.8047379124,5276206.35933333],[517054.3775657397,5276206.355154244],[517053.1760619409,5276206.24049654],[517053.19753853127,5276198.905339446],[517054.1740260057,5276198.908198582],[517055.7517542982,5276198.801678791],[517056.1465284586,5276192.245592792],[517056.01257220976,5276186.688215785],[517054.2150290527,5276184.904717094],[517056.2499579439,5276182.576742275],[517060.7568358448,5276182.589941981],[517060.46451580606,5276179.810593393],[517056.1202324226,5276175.574561743],[517053.3406623045,5276175.677562471],[517053.4785263166,5276179.90127443],[517051.06867515447,5276182.005873219],[517049.94553429686,5276180.780048695],[517044.8380630195,5276180.653960036],[517044.8270730751,5276179.275795695],[517040.98887582053,5276179.208994857],[517040.9818515042,5276166.205630563],[517044.6998735809,5276166.272079665],[517044.6062289866,5276157.202807042],[517049.3384713778,5276157.216657316],[517049.46365104994,5276165.774779794],[517064.33639098296,5276165.818334634],[517066.2100287649,5276167.268640272],[517066.2756997666,5276170.491883761],[517067.4216667406,5276171.617752586],[517068.7473224384,5276172.9441996645],[517071.75191269314,5276172.953005518],[517071.8253986718,5276173.50891938],[517073.24866951146,5276174.846767585],[517073.36501723406,5276186.405636897],[517072.08774356294,5276186.5130326],[517072.1498276077,5276190.958802422]]]},"properties":{"id_build":1575,"id_source":"w145338759","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.6666615359,5276356.806696565],[516617.1081399331,5276360.031006879],[516615.1545852453,5276360.247712749],[516615.5225372552,5276362.916114795],[516617.24536346714,5276364.5881253155],[516617.6114115821,5276367.923360177],[516608.14283390145,5276369.452307075],[516607.77266050735,5276367.561876913],[516606.0441285078,5276367.890367176],[516605.2343713139,5276362.108795029],[516607.2630372961,5276361.892300015],[516607.26240347716,5276362.114577568],[516608.2394972642,5276361.895084454],[516608.1669203756,5276361.005760055],[516607.11503103614,5276361.113900226],[516606.8237719108,5276357.890019022],[516613.3607661315,5276357.130684523],[516616.6666615359,5276356.806696565]]]},"properties":{"id_build":1576,"id_source":"w145338765","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.6791482967,5276648.951790297],[517212.8817973125,5276647.168240877],[517212.66599764564,5276643.944549104],[517217.6999225736,5276643.403731047],[517217.77273114264,5276644.181924846],[517221.15327920805,5276643.969641061],[517221.1499926689,5276645.081029258],[517223.77287951513,5276647.089302364],[517223.69382643607,5276648.422746064],[517221.58355424507,5276650.861580563],[517221.5769809876,5276653.0843569795],[517216.54372117424,5276653.40289403],[517215.0362932718,5276655.1766743995],[517215.32522839494,5276659.067421284],[517209.84066631785,5276659.606909584],[517209.1866945341,5276652.1586109195],[517212.1165861346,5276651.944990197],[517213.15666525287,5276650.73664062],[517214.6791482967,5276648.951790297]]]},"properties":{"id_build":1577,"id_source":"w145338781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.5991968046,5276203.860901217],[516960.3700134714,5276206.758600955],[516962.46674089495,5276208.987500698],[516960.1317254007,5276211.203494604],[516958.5585327243,5276209.754097843],[516958.1823141526,5276209.975281809],[516957.955676979,5276210.419180693],[516958.1042875724,5276210.975311825],[516958.5540023526,5276211.310040289],[516958.09555065574,5276213.976057981],[516957.9453222086,5276213.97562058],[516957.86276552186,5276216.53159306],[516957.33696618566,5276216.530062196],[516953.9571511145,5276216.409083314],[516951.4787062343,5276216.290729712],[516951.3355939814,5276213.845240047],[516951.3462681769,5276210.177661411],[516953.6064899209,5276207.850306603],[516957.5991968046,5276203.860901217]]]},"properties":{"id_build":1578,"id_source":"w145338801","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68704818055,5276594.458551719],[517310.64276423794,5276594.544359361],[517310.20048706804,5276589.1972207595],[517314.9410795077,5276588.8112103185],[517315.013644526,5276589.6672024615],[517317.48679492256,5276599.088096617],[517317.5881803157,5276600.3553917445],[517312.20900328795,5276600.795071505],[517311.68704818055,5276594.458551719]]]},"properties":{"id_build":1579,"id_source":"w145338811","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.4904845518,5276346.236513612],[516613.76771420706,5276346.129017196],[516614.2817711917,5276350.242651691],[516614.8722080447,5276353.911945445],[516618.17810536455,5276353.58795834],[516618.5451050614,5276356.589776875],[516616.6666615359,5276356.806696565],[516613.3607661315,5276357.130684523],[516606.8237719108,5276357.890019022],[516606.458667628,5276354.221368584],[516605.55700190156,5276354.32993738],[516605.4131145696,5276352.1067335745],[516604.58656096697,5276352.21551668],[516603.9241734283,5276347.434622123],[516606.02795696224,5276347.218340811],[516605.8092739698,5276344.883784085],[516610.1670682449,5276344.451652014],[516610.38638344395,5276346.563931361],[516612.4904845518,5276346.236513612]]]},"properties":{"id_build":1580,"id_source":"w145338818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.58796949795,5276348.7103305925],[516854.62880876585,5276352.76704792],[516849.42332441197,5276352.818669685],[516846.7417142281,5276352.844254179],[516846.6948691638,5276348.26516297],[516841.69969585916,5276348.317400005],[516841.7467055425,5276352.840921782],[516833.50655083306,5276352.928238993],[516833.44304002775,5276346.3152432665],[516833.390311391,5276341.169322799],[516837.49158674915,5276341.136722225],[516837.5152378752,5276343.348470616],[516838.9874760163,5276343.341613067],[516841.6615792674,5276343.3160032695],[516841.6737093452,5276344.316295648],[516846.78155488987,5276344.264384484],[516846.769586428,5276343.208522711],[516848.2193230122,5276343.190488439],[516850.3225388284,5276343.174345134],[516850.2979922376,5276341.273785238],[516854.5119365473,5276341.241522621],[516854.58796949795,5276348.7103305925]]]},"properties":{"id_build":1581,"id_source":"w145338819","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.32509231474,5276583.306686474],[516379.7264049028,5276582.527024698],[516373.2529309679,5276587.510107267],[516375.1194155773,5276591.51638427],[516373.6907758033,5276592.068065847],[516363.88549297745,5276579.926279019],[516369.60630973865,5276575.496768899],[516369.9806078415,5276575.942379788],[516373.3680362444,5276573.284549932],[516373.0719724229,5276571.727761846],[516375.7821679928,5276569.512588202],[516376.68285837746,5276569.737400323],[516380.7253355825,5276574.527776321],[516380.4239595524,5276574.860347709],[516381.09838243935,5276575.417943184],[516381.70050930144,5276574.975078123],[516385.4434788718,5276579.431195893],[516381.3788128624,5276582.5316725075],[516380.32509231474,5276583.306686474]]]},"properties":{"id_build":1582,"id_source":"w145338822","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.67914262647,5276308.122993043],[516835.7446176896,5276311.457373111],[516835.7777728324,5276312.980082756],[516835.870048116,5276317.437051238],[516833.33107197407,5276317.485282242],[516826.05966309557,5276317.630980098],[516817.4060813487,5276317.806037716],[516814.7544362432,5276317.853951487],[516814.5773997516,5276311.52959189],[516814.5950181684,5276308.028742481],[516814.51129974297,5276305.805706969],[516819.03342538903,5276305.70762447],[516819.0794572078,5276307.9750071],[516820.84474126715,5276307.935649278],[516822.7151835625,5276307.896595731],[516822.74205070327,5276308.996956283],[516827.8876119082,5276308.900681452],[516827.86116318655,5276307.655840483],[516829.70903961355,5276307.62783795],[516831.3916995523,5276307.588244568],[516831.35215604905,5276305.676527585],[516835.62634486944,5276305.599969395],[516835.67914262647,5276308.122993043]]]},"properties":{"id_build":1583,"id_source":"w145338828","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516924.13591451995,5276139.080276816],[516921.7322284879,5276139.073292962],[516921.4994565952,5276141.628829166],[516914.73941534624,5276141.498053925],[516914.74716146174,5276138.830724304],[516909.6396510978,5276138.704754301],[516909.5706663656,5276136.592900283],[516912.42536744114,5276136.490049023],[516912.59270166914,5276130.600132387],[516914.09500761906,5276130.604494817],[516914.1004942235,5276128.715136365],[516915.45224725007,5276128.8302016165],[516917.47842406674,5276129.502924375],[516919.3537241283,5276130.397488905],[516921.15358545113,5276131.402974553],[516922.6520163407,5276132.741003984],[516923.5495245175,5276134.077287748],[516924.2210407032,5276135.635194332],[516924.2152278681,5276137.635691537],[516924.13591451995,5276139.080276816]]]},"properties":{"id_build":1584,"id_source":"w145338831","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517143.53960734274,5276193.402401632],[517143.85740329686,5276187.512932745],[517149.3407669662,5276187.529075339],[517150.5390002494,5276188.755140277],[517150.75910769927,5276190.534023675],[517157.66964464844,5276190.554376812],[517157.6748829742,5276188.776156965],[517158.8806448708,5276187.446032594],[517164.21345197415,5276187.572885353],[517164.4211093716,5276193.575041428],[517165.4730398231,5276193.4670018405],[517165.5265362716,5276200.802380174],[517160.7946565184,5276200.67729667],[517160.80382528534,5276197.565411891],[517147.73489403876,5276197.1935015265],[517147.6499634391,5276200.52744265],[517142.39228232426,5276200.400826104],[517142.316840817,5276200.511743769],[517142.48767730873,5276193.510445178],[517143.53960734274,5276193.402401632]]]},"properties":{"id_build":1585,"id_source":"w145338832","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9484894918,5276472.395866921],[516536.41449139855,5276473.719507672],[516533.4327738049,5276465.70898433],[516535.83884911105,5276464.826697896],[516534.79486834514,5276462.156381241],[516537.7270380663,5276461.164449566],[516538.70947798167,5276459.055585304],[516542.2431697976,5276457.843084745],[516542.6909950043,5276458.844613979],[516546.375541442,5276457.410265046],[516548.0926749926,5276461.082753665],[516548.9949547071,5276460.751898405],[516550.4864368273,5276464.534886256],[516547.2528753986,5276465.8593742475],[516546.5734033513,5276467.079980336],[516544.2418068218,5276468.184753302],[516543.4203220974,5276466.515324343],[516542.3977713732,5276466.879180746],[516541.2398948111,5276467.287108846],[516538.307411951,5276468.390177551],[516539.9484894918,5276472.395866921]]]},"properties":{"id_build":1586,"id_source":"w145338833","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.28672197775,5276439.0101173725],[516486.2590790525,5276440.45768567],[516482.4214835685,5276442.891896562],[516483.2442473258,5276444.116761634],[516483.6204326472,5276443.895546985],[516485.5648308931,5276446.901822007],[516480.37177933,5276450.554734077],[516478.277157254,5276447.548035733],[516479.8576372524,5276446.441110953],[516478.6608893044,5276444.659489755],[516476.7042241032,5276445.987629931],[516474.5351159952,5276442.758442882],[516476.64200432703,5276441.430726979],[516474.0244271891,5276437.422293638],[516477.4110401318,5276435.0979409525],[516477.936505183,5276435.21056733],[516478.41803545103,5276434.922966592],[516479.21559954534,5276434.436208701],[516478.54274186195,5276433.322908054],[516480.57452311524,5276431.994981063],[516485.28672197775,5276439.0101173725]]]},"properties":{"id_build":1587,"id_source":"w145338834","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517026.3884766497,5276260.742833107],[517029.3926966029,5276260.862755974],[517029.4017953378,5276257.750870861],[517053.3624024706,5276258.043257139],[517053.3207496998,5276272.269017753],[517029.66000508075,5276272.199787507],[517029.5006792982,5276275.311233439],[517016.6559572071,5276275.384830648],[517016.62510942016,5276285.943012645],[517013.3197996831,5276286.044496177],[517013.03926982527,5276304.937427216],[516998.8429029283,5276304.8959755255],[516998.95150196913,5276285.702465033],[517001.9934608432,5276285.755800163],[517002.0468019247,5276282.921893378],[517002.2572130463,5276267.451860794],[517004.5922222867,5276265.235883598],[517006.92690877523,5276263.131046093],[517009.4879115299,5276260.693451356],[517026.3884766497,5276260.742833107]]]},"properties":{"id_build":1588,"id_source":"w145338839","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517044.6062289866,5276157.202807042],[517044.717832516,5276149.8679142855],[517055.8946269752,5276150.011772415],[517056.796333061,5276149.903273276],[517056.7365148534,5276144.679532798],[517055.53857822495,5276143.34234858],[517054.86124027136,5276143.784923953],[517051.7909555883,5276140.552883676],[517057.44054198865,5276135.123581552],[517061.40960443753,5276139.247374948],[517060.50529232546,5276140.244983237],[517062.0778275653,5276141.9166848585],[517064.18202875915,5276141.589430156],[517063.57589795487,5276143.365889383],[517064.6236025008,5276144.70263511],[517061.91229576553,5276147.139765259],[517061.3864901431,5276147.138225017],[517061.5074202139,5276157.141151229],[517049.3384713778,5276157.216657316],[517044.6062289866,5276157.202807042]]]},"properties":{"id_build":1589,"id_source":"w145338841","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.23779169226,5276074.14962475],[516487.8170949443,5276075.812905753],[516485.02459221054,5276080.47286559],[516474.67682613427,5276073.997490351],[516474.4517924399,5276073.885714239],[516475.8865417126,5276071.222421708],[516476.34384004545,5276068.889783343],[516476.87185335235,5276068.113299672],[516478.60392537777,5276066.562245052],[516479.81144320825,5276064.565148326],[516485.2857990832,5276067.80368852],[516492.9495288851,5276067.158546316],[516490.60991677875,5276071.041808555],[516487.9479845124,5276069.378292434],[516486.8979953117,5276068.797394286],[516484.95028090815,5276072.226095653],[516484.21530751756,5276071.812798982],[516483.46037286695,5276073.144337894],[516485.23779169226,5276074.14962475]]]},"properties":{"id_build":1590,"id_source":"w145338842","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.0812416151,5276299.129172086],[517076.00160331355,5276299.120142069],[517075.99117617006,5276302.676582416],[517075.9553328199,5276314.901846257],[517078.80962399807,5276314.910215484],[517078.7074611919,5276324.134512638],[517079.38315053825,5276324.247633783],[517079.37760997756,5276326.136992791],[517079.37206941546,5276328.026351801],[517078.39527768234,5276328.134627155],[517078.30093708826,5276334.691594101],[517071.220474616,5276341.450359193],[517053.49455580174,5276341.176149894],[517053.60871928465,5276327.839717798],[517064.5000692231,5276327.871618789],[517064.6136066518,5276314.757464654],[517061.6090895603,5276314.748662304],[517061.7304343088,5276298.967178141],[517064.88518580527,5276298.976420693],[517064.61504900164,5276280.937653768],[517079.13306075416,5276281.458109418],[517079.0812416151,5276299.129172086]]]},"properties":{"id_build":1591,"id_source":"w145338853","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.5603365978,5276647.617103499],[516866.84950569813,5276648.489678403],[516866.33372374193,5276645.042852139],[516864.45504166675,5276645.370830628],[516863.71715021733,5276640.811963878],[516865.2952700922,5276640.527570596],[516866.7231083004,5276640.264970433],[516866.42975484795,5276637.819046214],[516865.3021579425,5276638.149199803],[516864.12037195865,5276631.255112727],[516865.1718957063,5276631.258157853],[516864.8791848262,5276628.589956111],[516863.56420024805,5276628.786199677],[516861.94865157024,5276629.026029161],[516861.28522134206,5276624.689657956],[516863.0888009664,5276624.361460949],[516862.57237091486,5276621.136912796],[516868.28322793706,5276620.264333672],[516869.90632816305,5276630.382752707],[516871.4088271532,5276630.275965619],[516872.5161399611,5276636.94755893],[516871.0129987283,5276637.276623376],[516872.5603365978,5276647.617103499]]]},"properties":{"id_build":1592,"id_source":"w145338854","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516807.1018573999,5276634.86902748],[516810.87205477554,5276629.767481259],[516812.5212410817,5276630.88363964],[516818.8554198298,5276622.233029365],[516823.2772163571,5276625.579993817],[516821.3163591283,5276628.352823294],[516824.7643034595,5276630.807858081],[516821.9737189912,5276634.800827507],[516818.1811097833,5276632.055835624],[516816.8769120599,5276631.118495444],[516815.51949745486,5276633.003951489],[516817.09357315366,5276634.119894304],[516813.02261728776,5276639.331707978],[516811.6735476366,5276638.327555551],[516810.2410276614,5276640.212796014],[516811.6498632488,5276641.3282604],[516815.0370751486,5276644.005393671],[516812.24746617454,5276647.66495134],[516808.649950894,5276644.987212667],[516806.69006934913,5276647.426630647],[516802.5683940692,5276644.191684312],[516808.52539586055,5276636.095673267],[516807.1018573999,5276634.86902748]]]},"properties":{"id_build":1593,"id_source":"w145338857","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516765.4323156312,5276577.067392436],[516761.4361563201,5276582.3905967325],[516759.86237581586,5276581.1635303],[516758.0527124337,5276583.603396722],[516759.62649265316,5276584.830462674],[516757.0631781359,5276588.157278442],[516757.21051877,5276589.157960011],[516754.11920402327,5276593.261235964],[516753.3681107647,5276593.259075188],[516751.2570576102,5276596.031495917],[516749.68295903574,5276594.915571019],[516747.4971185779,5276597.576638274],[516749.07057756523,5276598.914840215],[516745.3007343536,5276603.905287303],[516735.9318879585,5276596.987692128],[516740.15366146545,5276591.553979178],[516739.25426600856,5276590.884555532],[516751.6201533506,5276574.249152628],[516752.44412071706,5276575.029500913],[516756.2133490174,5276570.261336245],[516765.4323156312,5276577.067392436]]]},"properties":{"id_build":1594,"id_source":"w145338858","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.98274753377,5276611.230188506],[517056.7589703722,5276611.488683061],[517056.4806594279,5276616.755892983],[517056.4408263601,5276617.533754705],[517058.92657688016,5276617.663289344],[517058.98995221587,5276616.540963313],[517065.6736792762,5276616.893964939],[517065.61017238244,5276618.06074643],[517068.11845520104,5276618.190351026],[517068.17376765533,5276617.256939064],[517068.4285466469,5276612.334193958],[517073.24235504755,5276612.581698222],[517073.00357127155,5276617.171070716],[517076.1501832781,5276617.33589212],[517075.848246941,5276622.96979323],[517065.2594152983,5276622.416397604],[517065.16381320835,5276624.283265622],[517058.4425401331,5276623.930154551],[517058.5459439613,5276621.963283494],[517048.39267597743,5276621.433422382],[517048.71051863127,5276615.488375214],[517051.75197950035,5276615.652875592],[517051.98274753377,5276611.230188506]]]},"properties":{"id_build":1595,"id_source":"w145338859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.8994838646,5276120.16548458],[516411.98054930946,5276118.054060262],[516410.6287844529,5276117.939111888],[516410.70170795266,5276118.717294673],[516406.4961827375,5276118.372028213],[516406.41668455285,5276119.927758926],[516406.3334297812,5276122.817154475],[516401.67690200143,5276122.581760742],[516401.9952027613,5276116.247698914],[516406.2767843759,5276116.259757495],[516406.37421704514,5276113.670478875],[516406.51966182486,5276110.0366231175],[516409.5239705985,5276110.156226012],[516410.57715389767,5276109.603495165],[516411.8544314526,5276109.495954399],[516413.2061982478,5276109.610903051],[516414.18207403395,5276109.835932319],[516415.98265458853,5276110.618984138],[516417.93503208144,5276110.846766307],[516417.1478520223,5276123.625603566],[516411.8156000637,5276123.277157531],[516411.8994838646,5276120.16548458]]]},"properties":{"id_build":1596,"id_source":"w145338860","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517003.1943509317,5276623.101745652],[517003.0608573515,5276625.090757693],[516996.5651681031,5276624.649464875],[516996.7062028052,5276622.649360732],[516986.1629154577,5276621.929532244],[516986.5629254795,5276616.118089397],[516989.49159435334,5276616.326684163],[516989.78958901664,5276612.015330743],[516994.4905100146,5276612.340238394],[516994.1609439716,5276617.17385635],[516994.09800275293,5276618.151702597],[516996.92909351765,5276618.33778841],[516996.9681725736,5276617.8155455785],[517003.5464893336,5276618.257080053],[517003.5070202915,5276618.912689422],[517005.84245591477,5276619.075104451],[517005.9053341895,5276618.119486092],[517006.2504185748,5276613.119204409],[517011.04146872374,5276613.444388626],[517010.74300389417,5276617.91133535],[517013.7017146705,5276618.120030051],[517013.31708909,5276623.798148419],[517003.1943509317,5276623.101745652]]]},"properties":{"id_build":1597,"id_source":"w145338865","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516859.08606764546,5276468.47639035],[516860.2803315648,5276468.479847646],[516860.3220805495,5276474.814932792],[516859.0902624993,5276474.811366769],[516859.13789773395,5276484.302837227],[516856.72677882697,5276484.318085871],[516856.7380372816,5276485.618453255],[516850.4286084108,5276485.644650381],[516850.417637954,5276484.244258095],[516841.0435611499,5276484.306055021],[516841.0349345276,5276482.094349561],[516839.90827309596,5276482.091091672],[516839.8672732901,5276475.489273547],[516841.1742341703,5276475.481938828],[516841.12624808814,5276466.101607515],[516843.42470800795,5276466.086026544],[516843.41328579315,5276464.841228629],[516849.91054674744,5276464.804453256],[516849.92228912475,5276465.938112392],[516852.1005715951,5276465.922187148],[516859.07103057316,5276465.886791269],[516859.08606764546,5276468.47639035]]]},"properties":{"id_build":1598,"id_source":"w145338868","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.5452482719,5276338.936789073],[516933.84666813735,5276338.604246327],[516940.58773068583,5276345.181092954],[516935.0870650405,5276351.166640135],[516934.1886239223,5276350.163770361],[516932.96876459674,5276351.204936901],[516932.23085313936,5276351.8251739275],[516930.5832255265,5276350.153288413],[516925.0835437889,5276355.805428741],[516924.25989112764,5276354.913917544],[516922.2486419343,5276356.886360241],[516920.418180371,5276358.6815053215],[516921.31662252184,5276359.684372983],[516915.81695874874,5276365.3365221],[516914.15414646023,5276363.720166956],[516912.37147628184,5276361.992324532],[516908.92631251935,5276358.536990254],[516914.5007655962,5276352.996191607],[516917.79635027394,5276356.228815234],[516919.5441881385,5276354.433429303],[516921.56327140046,5276352.349868732],[516918.26736374607,5276349.228381768],[516923.8421575429,5276343.576453327],[516926.3882323311,5276346.251205329],[516928.8818866808,5276343.702239759],[516933.5452482719,5276338.936789073]]]},"properties":{"id_build":1599,"id_source":"w145338869","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.9068277589,5276613.331078938],[517020.9857801071,5276613.517900751],[517021.2463086239,5276609.184211377],[517025.9098056969,5276609.464579095],[517025.6174105446,5276614.420557803],[517025.56242980855,5276615.242831336],[517028.5136955394,5276615.429283837],[517028.5770325346,5276614.3180713765],[517035.3432537266,5276614.715735293],[517035.2645035112,5276615.960270325],[517037.3897317353,5276616.088741178],[517037.4607764105,5276614.910867489],[517037.7450204112,5276610.177145002],[517042.468603256,5276610.457701775],[517042.20006023056,5276614.95807649],[517045.38416368247,5276615.145218923],[517045.03683381353,5276620.901242337],[517034.8237032544,5276620.293431851],[517034.69741712435,5276622.382490091],[517028.05137914594,5276621.98517828],[517028.1777603898,5276619.862778258],[517017.5515918669,5276619.231562428],[517017.9068277589,5276613.331078938]]]},"properties":{"id_build":1600,"id_source":"w145338870","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.61973959376,5276373.8766322415],[516814.5399807173,5276373.923309771],[516814.5086815228,5276371.75599521],[516814.47102618695,5276369.188559385],[516811.85699269216,5276369.225468969],[516811.7816154316,5276364.112825142],[516814.49329718814,5276364.076197428],[516814.46270379314,5276361.664377597],[516814.43134029175,5276359.519290837],[516811.8849035668,5276359.5563955875],[516811.81607493805,5276354.777189838],[516821.58116885606,5276354.638676346],[516822.3173025305,5276354.629688579],[516822.3362730027,5276355.863394041],[516825.1155598439,5276355.826966523],[516825.147497362,5276357.772003546],[516825.172084152,5276359.661449487],[516822.37777667143,5276359.697833585],[516822.4662410746,5276365.477353575],[516825.12534370384,5276365.440578942],[516825.15012308984,5276367.263341645],[516825.1745171737,5276369.219470883],[516822.3651918377,5276369.255811574],[516822.42714236025,5276373.812718331],[516817.61973959376,5276373.8766322415]]]},"properties":{"id_build":1601,"id_source":"w145338871","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5568273174,5276377.455149015],[516830.83722665,5276377.293461186],[516850.8329394467,5276377.05120354],[516863.07672941446,5276376.908818009],[516863.2218582942,5276389.045694441],[516858.9402833788,5276389.099982747],[516858.91667288885,5276386.877120212],[516857.0388087837,5276386.893912581],[516855.2961462762,5276386.911096842],[516855.28453331755,5276385.732982318],[516849.913767698,5276385.8063531],[516849.92579974787,5276386.839987199],[516840.048155175,5276386.955899514],[516830.73385098856,5276387.073456534],[516830.72226518113,5276385.884228195],[516825.3515001305,5276385.957621626],[516825.363664968,5276386.946800151],[516823.5083346368,5276386.96366843],[516821.735627507,5276386.980775943],[516821.7594126901,5276389.148068903],[516817.48534959333,5276389.202409378],[516817.44862642454,5276386.312671],[516814.60926460085,5276386.348928659],[516814.55992407823,5276382.625606113],[516817.6171126473,5276382.589977414],[516817.5563780236,5276377.610743305],[516817.5568273174,5276377.455149015]]]},"properties":{"id_build":1602,"id_source":"w145338874","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516376.13867655554,5276068.718330577],[516372.6839617247,5276068.486339334],[516372.765638332,5276066.152637221],[516369.2358057413,5276065.9204368815],[516381.7714447512,5276069.067588847],[516381.0954000779,5276069.065687508],[516379.4431589674,5276068.949901398],[516376.13867655554,5276068.718330577]]]},"properties":{"id_build":1603,"id_source":"w145338876","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.06180487905,5276122.356559032],[516443.81694680755,5276122.589438592],[516443.42693690845,5276127.700760136],[516430.6598405544,5276126.775613852],[516430.6629757204,5276125.664226485],[516430.5913090398,5276124.44148849],[516430.29429619346,5276123.218114822],[516430.1468869944,5276122.217442417],[516430.1493950449,5276121.32833253],[516430.3027609421,5276120.217368958],[516430.7565886174,5276119.107252973],[516431.13467397116,5276118.219202591],[516431.2905483527,5276116.2191291675],[516437.2240430564,5276116.458150096],[516437.46193525294,5276112.01323667],[516444.521539257,5276112.477722358],[516444.13341076847,5276116.9222113695],[516440.37826519454,5276116.689331614],[516440.14162572264,5276120.689690015],[516439.01489456027,5276120.686509845],[516439.0105031043,5276122.242452145],[516440.06180487905,5276122.356559032]]]},"properties":{"id_build":1604,"id_source":"w145338878","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516424.0117833797,5276379.932969521],[516416.12501634983,5276379.91073393],[516416.20827332383,5276377.021337348],[516417.5606044925,5276376.914009641],[516417.6391628205,5276375.691694795],[516419.6671900976,5276375.697412022],[516419.6039845165,5276371.473926628],[516416.75003510783,5276371.354741615],[516416.8354854192,5276367.687373631],[516419.61432440113,5276367.806346915],[516419.7701888334,5276365.806272421],[516425.32849525736,5276365.821945555],[516425.3234802403,5276367.6001660125],[516428.77864263544,5276367.609911445],[516428.6797041557,5276376.056246802],[516427.32768604794,5276376.052433147],[516426.2783106121,5276375.271495726],[516425.7450145094,5276375.2699916335],[516425.30185296026,5276375.268741791],[516425.3747710034,5276376.0469250865],[516425.4498831204,5276376.047136924],[516425.514024717,5276379.937206081],[516424.0117833797,5276379.932969521]]]},"properties":{"id_build":1605,"id_source":"w145338880","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.12152029225,5276077.588554969],[516521.3216640528,5276074.907587441],[516522.75738037267,5276071.91089022],[516522.5351848861,5276070.7988637155],[516524.2707366151,5276068.025296662],[516525.1730756688,5276067.694437778],[516526.9840610519,5276064.809945931],[516529.5342248448,5276066.150857842],[516537.87116714544,5276066.507941823],[516536.0585992636,5276069.948123933],[516535.7584505065,5276069.836132199],[516532.51300223306,5276075.272760919],[516536.18737569446,5276077.50598383],[516532.64178308897,5276082.830620794],[516528.44223089673,5276080.373630525],[516527.99216603464,5276080.1500741495],[516528.74647923105,5276079.040818427],[516528.0716971592,5276078.594345117],[516528.6003472773,5276077.595588656],[516526.7256014936,5276076.47887274],[516526.12152029225,5276077.588554969]]]},"properties":{"id_build":1606,"id_source":"w145338883","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516815.86108190025,5276441.866827903],[516815.83774415485,5276439.543940489],[516811.1506700791,5276439.574864977],[516811.10620434396,5276434.162232595],[516812.24792939296,5276434.154414377],[516812.16384414834,5276421.650954073],[516820.02824715036,5276421.595863881],[516820.03973871947,5276422.818433895],[516825.6732637095,5276422.779136771],[516825.6621907332,5276421.412086321],[516833.59422679653,5276421.346095868],[516833.6570876381,5276430.782039244],[516833.6639241833,5276431.015452403],[516825.51407816826,5276431.080813434],[516825.4828498989,5276426.290601578],[516822.8088169546,5276426.305104832],[516819.9244718855,5276426.319001923],[516819.9551911652,5276431.287035796],[516817.25111597637,5276431.301454833],[516817.261645318,5276432.857441216],[516817.27310533193,5276434.091125129],[516820.63819147577,5276434.067501218],[516820.6908656109,5276441.836319387],[516815.86108190025,5276441.866827903]]]},"properties":{"id_build":1607,"id_source":"w145338888","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.87856965297,5276661.985135263],[516841.9551259475,5276659.976164184],[516839.4665839829,5276663.414300152],[516835.34429558855,5276660.401608118],[516838.1485491861,5276656.875471443],[516838.9626775959,5276655.855339724],[516837.2390375496,5276654.516678972],[516836.3345219798,5276655.625461416],[516833.63607652904,5276653.7282848125],[516833.7115063372,5276653.617363096],[516830.8631631608,5276651.608614744],[516831.6171398993,5276650.610536111],[516829.59306219325,5276649.271009316],[516828.8238390934,5276650.346841974],[516826.3502262179,5276653.818368543],[516822.37814142625,5276650.806119801],[516825.0926466699,5276647.1463499535],[516822.5440898989,5276645.360751354],[516825.7108555113,5276641.146589521],[516834.2555786151,5276647.283969909],[516835.46213612106,5276645.620361564],[516840.7839230398,5276649.414500458],[516839.8784418745,5276650.856698822],[516848.4231358262,5276656.99410016],[516844.87856965297,5276661.985135263]]]},"properties":{"id_build":1608,"id_source":"w145338893","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.5549465512,5276092.628576871],[516381.2388549352,5276098.184668406],[516373.35295619525,5276097.717936703],[516373.5209957135,5276091.383451327],[516371.26783449244,5276091.265978276],[516371.50817628816,5276085.931952605],[516373.23584099807,5276085.936808906],[516373.24146450113,5276083.936311773],[516371.13853215997,5276083.81926109],[516371.6092201097,5276076.707649218],[516376.41633009055,5276076.832302466],[516376.6429279369,5276076.388381145],[516381.2991809992,5276076.734893483],[516381.0653938012,5276079.735005385],[516381.2901164729,5276079.9579166155],[516381.0603927504,5276081.513225051],[516382.26224737806,5276081.516605262],[516382.02564659616,5276085.5169657115],[516381.5752639962,5276085.404559391],[516380.3734101729,5276085.40117932],[516380.13493553037,5276090.068372255],[516380.12805945316,5276092.513424331],[516381.5549465512,5276092.628576871]]]},"properties":{"id_build":1609,"id_source":"w145338897","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517142.9940053299,5276368.5569937145],[517143.02153825003,5276374.5141645735],[517143.04404608737,5276379.6266587],[517146.23637548595,5276379.613828217],[517146.3958572737,5276417.290669763],[517143.1735038825,5276417.303411673],[517143.19206581166,5276421.20447132],[517143.21675167576,5276428.1285500815],[517115.6802996924,5276428.247611403],[517090.39725864795,5276428.351187149],[517080.4447942154,5276428.388674038],[517080.38060932443,5276414.41822076],[517105.3857973532,5276414.313785133],[517105.36779759784,5276410.212675908],[517105.26420463476,5276384.1056476515],[517105.23709020345,5276377.992882689],[517103.5620574436,5276377.999077338],[517102.08231618453,5276378.00584593],[517102.09901312285,5276382.55151003],[517090.3812717642,5276382.6060249],[517087.30912357953,5276382.619238594],[517087.28335978225,5276376.039690925],[517095.65855886874,5276375.997585206],[517095.6435206162,5276370.8851134395],[517102.0356997514,5276370.859424294],[517102.04638170067,5276372.337614086],[517105.5767197211,5276372.325753847],[517105.5664956544,5276370.691969763],[517111.47795697383,5276370.664879107],[517111.4687468048,5276368.686564821],[517142.9940053299,5276368.5569937145]]]},"properties":{"id_build":1610,"id_source":"w145338899","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516804.7686613666,5276167.964387935],[516804.8347976775,5276171.07648939],[516811.29434730083,5276171.206269921],[516811.358876148,5276174.874065182],[516824.9539989864,5276175.135600706],[516824.6252886239,5276184.91494209],[516824.5851630126,5276185.8039435465],[516824.5453584517,5276186.581806259],[516817.59719628363,5276186.583967687],[516811.3251936286,5276186.543633131],[516811.41185655183,5276182.542855189],[516804.72729628877,5276182.3012855835],[516804.71543187153,5276186.413419077],[516801.8837406591,5276186.360793836],[516797.42963867565,5276186.28126283],[516797.2829352233,5276185.058303396],[516791.5745466677,5276184.930703848],[516791.4320072298,5276182.262940912],[516774.5767649354,5276182.047663175],[516774.81267154607,5276170.556501363],[516785.1553679233,5276170.797463643],[516785.239130436,5276167.796934116],[516804.7686613666,5276167.964387935]]]},"properties":{"id_build":1611,"id_source":"w145338902","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.14455339086,5276088.232489511],[516400.12105915864,5276088.235238948],[516400.2027465446,5276085.901537119],[516399.15112453053,5276085.898576182],[516399.389614557,5276081.231384021],[516401.3426284356,5276081.236883135],[516402.2446453962,5276081.017143951],[516403.8981346683,5276080.688381628],[516405.17479237745,5276080.803116846],[516406.1506733024,5276081.028144747],[516407.3509627051,5276081.587223782],[516410.2044280738,5276081.928681255],[516410.12211039325,5276084.484660396],[516414.2528572186,5276084.718578986],[516414.0074651031,5276091.830822659],[516409.57626017544,5276091.596057727],[516409.6529415212,5276091.040575696],[516404.24491748854,5276090.914202519],[516404.007675924,5276095.136839635],[516397.5486609935,5276094.78523357],[516397.78714942874,5276090.118041283],[516399.06411809294,5276090.121636436],[516399.14455339086,5276088.232489511]]]},"properties":{"id_build":1612,"id_source":"w145338904","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.91367436585,5276428.618896917],[516838.90286158706,5276427.162935397],[516845.2875294581,5276427.114715129],[516845.2980191803,5276428.681815453],[516852.07326502644,5276428.634732359],[516852.09623464977,5276431.079872578],[516855.6190889293,5276431.04561142],[516855.6607792567,5276437.402923904],[516854.57917597453,5276437.3997936305],[516854.6342170625,5276444.33507134],[516852.0277923832,5276444.3497568015],[516852.0473530576,5276447.972968239],[516845.7303080382,5276448.021376573],[516845.7185004887,5276446.909945235],[516843.47261084255,5276446.925677377],[516838.21466507,5276446.966043027],[516836.01384221076,5276446.981908342],[516835.9910908518,5276444.45897099],[516835.1723782537,5276444.456604291],[516835.1310833247,5276437.954811515],[516836.317874488,5276437.947128289],[516836.26345403993,5276430.789573305],[516836.25466471526,5276428.633437435],[516838.91367436585,5276428.618896917]]]},"properties":{"id_build":1613,"id_source":"w145338905","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516477.60912386206,5276126.1302671805],[516482.1088109036,5276128.699209971],[516479.91820312635,5276133.027456872],[516477.7382887149,5276133.57698754],[516473.61292259453,5276131.453665292],[516470.23367812677,5276131.110689788],[516467.9805340359,5276130.993179279],[516468.06004854286,5276129.437449342],[516468.06413353805,5276127.992645768],[516467.84224407206,5276126.769482537],[516467.5458676044,5276125.32382947],[516467.69986898534,5276123.990589388],[516468.30424851726,5276122.769762316],[516468.83414138894,5276121.326445452],[516468.9136562359,5276119.770715552],[516472.3686514056,5276119.89162523],[516472.680428519,5276115.891480529],[516479.8899417132,5276116.467572715],[516479.5769018764,5276120.912271985],[516477.999792704,5276120.796670396],[516477.6880121693,5276124.796814852],[516476.56159617787,5276124.682488683],[516476.4823937355,5276126.127079761],[516477.60912386206,5276126.1302671805]]]},"properties":{"id_build":1614,"id_source":"w145338908","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.6778472708,5276468.617399591],[516835.77843663236,5276468.653473103],[516835.7904708978,5276469.687107299],[516829.5559432066,5276469.780227488],[516829.5441968799,5276468.6465683915],[516820.37270230043,5276468.775667963],[516820.3349542344,5276466.241573337],[516819.0580036204,5276466.260113384],[516818.96315044357,5276460.091585071],[516820.53303548705,5276460.073891038],[516820.39529971033,5276450.548819456],[516823.0017856662,5276450.51189209],[516822.9900700989,5276449.367119166],[516829.41239745857,5276449.274534521],[516829.42452927225,5276450.274827035],[516836.17737706465,5276450.172090999],[516838.2805863266,5276450.144829554],[516838.5960853913,5276450.134627772],[516838.63276527205,5276453.035480475],[516839.42149647896,5276453.015533036],[516839.50897773704,5276459.128470548],[516838.53246971214,5276459.1478750575],[516838.5705633994,5276461.55971712],[516838.63339940924,5276465.805436129],[516838.6778472708,5276468.617399591]]]},"properties":{"id_build":1615,"id_source":"w145338913","height_wall":15.0,"height_roof":15.0,"nb_lev":5,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516904.06889381906,5276324.069581078],[516908.18751463195,5276328.415984886],[516906.60498506034,5276330.189626094],[516907.3538538601,5276330.969777923],[516902.60852865706,5276335.512732162],[516902.00924007886,5276334.955294432],[516900.1564054042,5276336.694811046],[516895.15528857923,5276341.381510719],[516893.58275999926,5276339.709853627],[516892.6794746715,5276340.374071836],[516890.73267131404,5276338.256771146],[516888.33583520213,5276335.915886731],[516888.86387971026,5276335.13944001],[516887.44092848804,5276333.690497763],[516886.7143978483,5276332.977097095],[516882.1978601015,5276328.5628712475],[516883.705269877,5276326.789005684],[516883.0315101596,5276326.009074645],[516887.77779446647,5276321.132688245],[516888.60177977884,5276321.913055443],[516895.3812786334,5276315.264336178],[516897.1788296026,5276317.047786194],[516897.85678033816,5276316.38291491],[516902.3656109978,5276320.863814279],[516901.67237967585,5276321.61755246],[516902.97547239583,5276322.955010599],[516904.06889381906,5276324.069581078]]]},"properties":{"id_build":1616,"id_source":"w145338916","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.2685430519,5276421.722388241],[516776.8462055179,5276421.615793016],[516776.7904989805,5276440.9539418705],[516772.35893282533,5276440.941177724],[516772.13904004084,5276439.051169395],[516771.4636783067,5276438.826945067],[516769.3644015333,5276437.487223557],[516769.2151388867,5276437.153374647],[516766.43601932225,5276437.145373238],[516766.4644952973,5276427.254021215],[516765.7130606857,5276427.3629976865],[516765.8764012784,5276422.806739934],[516762.7965088912,5276422.909014155],[516762.8006673837,5276421.46420995],[516753.5625871685,5276421.21534846],[516753.7249592568,5276416.992506787],[516756.7297429864,5276416.890011652],[516756.8218023441,5276410.999872225],[516771.39346756856,5276411.041816098],[516771.38034563995,5276415.59850622],[516773.33292761195,5276415.715269118],[516773.32428533223,5276418.716016289],[516773.3156430455,5276421.716763475],[516775.2685430519,5276421.722388241]]]},"properties":{"id_build":1617,"id_source":"w145338918","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.04564726265,5276276.339287541],[517148.79393807903,5276276.305866844],[517148.8633777085,5276285.886315178],[517148.8953561646,5276290.331998192],[517148.90126402176,5276290.8766002245],[517145.8966690665,5276290.889982175],[517145.8733636879,5276288.600435308],[517145.33254816505,5276288.598843231],[517145.3159686704,5276286.576051502],[517143.27282166865,5276286.592265204],[517141.0118461291,5276286.607838534],[517141.01135549886,5276286.77454667],[517134.28851981217,5276286.821448709],[517134.2898276485,5276286.376893678],[517132.1340106839,5276286.392779822],[517129.5876046019,5276286.407517996],[517129.59736465866,5276288.19689618],[517126.0819328111,5276288.231013907],[517125.99018824653,5276276.005375154],[517129.61078627186,5276275.971566634],[517129.6380792825,5276279.461434038],[517133.85958227376,5276279.429395521],[517133.8603996491,5276279.15154863],[517140.9212544347,5276279.105640843],[517140.9197825526,5276279.605765248],[517145.0661721613,5276279.573513791],[517145.04564726265,5276276.339287541]]]},"properties":{"id_build":1618,"id_source":"w145338919","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.9512591596,5276139.830577711],[516443.6938251961,5276139.593453319],[516443.3025613832,5276145.149329964],[516441.72514438035,5276145.144876916],[516441.4130762131,5276149.256162146],[516434.27840153227,5276148.791468155],[516434.44023448136,5276144.679758664],[516433.83931367006,5276144.678063129],[516433.5426161451,5276143.343550512],[516433.2456049142,5276142.120176648],[516433.4024201572,5276139.7866869895],[516433.78364037065,5276137.78724937],[516434.2384081278,5276136.343717409],[516434.31697279774,5276135.121403235],[516434.3955374964,5276133.899089063],[516439.0514276823,5276134.356786455],[516439.0495456165,5276135.023618882],[516440.0482957946,5276135.126463499],[516441.1521445056,5276135.251832876],[516441.15465424675,5276134.3627229715],[516442.50641472556,5276134.477678441],[516442.4347506528,5276133.254940282],[516443.33581987914,5276133.36862367],[516443.5617931477,5276133.146982377],[516449.2692966757,5276133.607656916],[516448.9512591596,5276139.830577711]]]},"properties":{"id_build":1619,"id_source":"w145338921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517187.02803176583,5276576.295840338],[517188.75227131665,5276577.412326977],[517189.48427833733,5276576.247519906],[517190.63886764826,5276574.417121653],[517189.1399563549,5276573.301299538],[517193.13782677683,5276567.533832638],[517189.1652150776,5276564.743611431],[517193.1624351067,5276559.198422222],[517194.73645905155,5276560.314467104],[517195.6490938372,5276559.027940383],[517196.8483933449,5276557.319929149],[517195.3498069564,5276556.092966672],[517203.34493476467,5276544.780322005],[517204.91896069254,5276545.896369607],[517205.8319283199,5276544.498705696],[517206.8052470705,5276543.012308427],[517205.3811123797,5276542.007842922],[517209.4541302414,5276536.240609316],[517216.34947236563,5276541.262279149],[517204.05466630176,5276558.786030029],[517203.15531869826,5276558.116534661],[517197.87531549425,5276565.658444711],[517198.7749907485,5276566.216800466],[517196.2107598976,5276569.765701073],[517200.33325576654,5276572.667509604],[517190.15146788425,5276586.863337964],[517183.3315950717,5276581.730781521],[517187.02803176583,5276576.295840338]]]},"properties":{"id_build":1620,"id_source":"w145338922","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516878.8984529734,5276344.779704896],[516878.9107699069,5276345.713314106],[516877.77650640823,5276345.732254938],[516877.7968892853,5276349.066505136],[516877.8582423119,5276351.222793202],[516877.9221465869,5276355.090640134],[516875.12783644965,5276355.126998927],[516875.1467313309,5276356.382932346],[516868.8294578893,5276356.475771365],[516868.810336317,5276355.297635111],[516864.0179078566,5276355.372668147],[516859.30810317554,5276355.447944297],[516859.27062828315,5276352.824938814],[516858.55699585873,5276352.8451010175],[516858.4938186032,5276348.721635169],[516858.45563553355,5276346.343135015],[516859.40211754583,5276346.323646835],[516859.248936014,5276336.965240561],[516861.4874212235,5276336.927264906],[516861.47519799345,5276335.960314121],[516868.12305355654,5276335.846196509],[516868.13521130563,5276336.835375059],[516877.8327679743,5276336.685646146],[516877.8698159784,5276339.4531321],[516878.816299194,5276339.433647073],[516878.8984529734,5276344.779704896]]]},"properties":{"id_build":1621,"id_source":"w145338924","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516821.5108072135,5276352.993605566],[516817.5896497165,5276353.082307302],[516817.5697154581,5276352.182018177],[516817.5039097194,5276348.958776898],[516817.41701427044,5276345.2353460975],[516818.7090460099,5276345.205735133],[516818.5894090734,5276339.815114326],[516817.64292617474,5276339.8346091425],[516817.592303268,5276336.555841918],[516817.4683326608,5276332.66559459],[516817.47090000566,5276331.776484438],[516813.902790073,5276331.85509421],[516813.8504002863,5276329.187590291],[516812.80626912665,5276329.206803998],[516812.71327063587,5276324.994341131],[516812.6473334504,5276321.815555557],[516817.62015569955,5276321.707659101],[516822.26248169906,5276321.598812288],[516822.39537273557,5276327.600739637],[516822.488460471,5276331.779861061],[516826.912919609,5276331.681502681],[516827.0919623258,5276339.906357552],[516822.2018113475,5276340.0033706585],[516822.25509599934,5276342.359686153],[516822.31457570463,5276345.171692311],[516826.9192947383,5276345.073854649],[516827.09204583126,5276352.876360657],[516821.5108072135,5276352.993605566]]]},"properties":{"id_build":1622,"id_source":"w145338925","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.99804703833,5276404.008195455],[516527.9738691112,5276404.233244021],[516528.8802568849,5276402.457581467],[516527.07978186005,5276401.674494142],[516529.04530522955,5276397.234484991],[516531.97151249455,5276398.354187327],[516532.27353723795,5276397.799346263],[516533.9985854296,5276398.693360734],[516533.7716723876,5276399.24841494],[516535.12179194606,5276399.91908602],[516537.37924886344,5276398.4806798315],[516538.4263960972,5276400.039608827],[516539.3264753614,5276400.486723565],[516537.966257481,5276403.372492587],[516540.0668619323,5276404.267575323],[516536.96897666017,5276410.7048796965],[516534.7184662273,5276409.698232783],[516534.4230678755,5276407.919159243],[516534.8768934637,5276406.809050874],[516533.9020186284,5276406.250584797],[516532.0125526445,5276410.357389225],[516530.36230386165,5276409.574727295],[516527.9432751749,5276415.0137061775],[516523.380700654,5276408.221239312],[516525.78869025514,5276406.67211605],[516526.99804703833,5276404.008195455]]]},"properties":{"id_build":1623,"id_source":"w145338927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.0264814498,5276091.247111155],[516521.6490109898,5276091.912878175],[516523.67461486306,5276092.807741225],[516523.97665442387,5276092.252899962],[516524.8770978517,5276092.588873409],[516525.7832170841,5276090.924349858],[516531.5576703155,5276094.274925021],[516528.08563086175,5276100.155471716],[516524.1104905551,5276098.0325401295],[516521.46914623416,5276102.359492708],[516522.5939893683,5276103.029521207],[516520.555149248,5276106.80248525],[516511.7811177963,5276101.665182762],[516513.5182307849,5276098.335918748],[516512.8434498007,5276097.889447184],[516514.0522334167,5276095.447802527],[516514.58434588043,5276093.226518743],[516516.3902757837,5276092.12024319],[516518.2763651248,5276089.235961553],[516522.0264814498,5276091.247111155]]]},"properties":{"id_build":1624,"id_source":"w145338935","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.82513065706,5276151.529340641],[516612.14417777275,5276151.629980571],[516611.9971175303,5276150.518164705],[516608.3161640834,5276150.618807052],[516608.33010806894,5276145.7287025545],[516608.33993223344,5276142.283401679],[516612.0208909455,5276142.182759335],[516612.3181816572,5276143.29500366],[516615.3982188049,5276143.192649565],[516615.1817505167,5276140.080122084],[516618.7131146392,5276139.756777939],[516621.1133114171,5276140.986162852],[516621.2587844014,5276142.653672619],[516620.958006721,5276142.763953943],[516621.3237505264,5276146.210326586],[516623.05139753025,5276146.215257029],[516623.1962354325,5276148.10504434],[516622.970573057,5276148.215539939],[516623.0393443222,5276150.43852909],[516622.0628488982,5276150.435742255],[516621.994394428,5276148.10161438],[516619.0649069764,5276148.093254896],[516619.13272838976,5276150.649660212],[516618.53180815093,5276150.64794562],[516618.45732732693,5276150.425453824],[516615.7525520465,5276150.640016443],[516615.82513065706,5276151.529340641]]]},"properties":{"id_build":1625,"id_source":"w145338937","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.56807812303,5276108.52896779],[516579.06766476517,5276107.857859007],[516582.08747536154,5276102.531753069],[516584.41289601,5276103.649770153],[516585.7713069146,5276101.430845506],[516586.5963132556,5276101.877753344],[516588.4710394491,5276102.994488623],[516591.5457154851,5276104.781480301],[516590.0348560708,5276107.777946832],[516591.3035898776,5276110.6711911755],[516593.48415702226,5276109.8994255215],[516594.1782354632,5276111.47958572],[516595.0514508079,5276113.460359082],[516592.79513606447,5276114.454187627],[516593.24266286084,5276115.566858899],[516595.79342256807,5276116.685522544],[516593.82838850754,5276120.903230082],[516594.20143247675,5276121.793409968],[516595.0283351961,5276121.573486616],[516597.4890916407,5276127.9154575495],[516592.1505215784,5276129.789621086],[516590.8840084484,5276126.118405315],[516586.4477722217,5276127.661725493],[516583.83708929387,5276121.208192777],[516584.6668397883,5276119.988019352],[516586.025879991,5276117.546817247],[516583.71818561124,5276110.20503045],[516580.56807812303,5276108.52896779]]]},"properties":{"id_build":1626,"id_source":"w145338938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516959.0391789594,5276645.712188606],[516964.3751310431,5276644.616332439],[516964.9679062775,5276647.396553388],[516966.7714848935,5276647.0683884835],[516966.9942203777,5276647.958155545],[516966.69378586946,5276647.957280235],[516968.32059310406,5276656.742061678],[516969.4478685125,5276656.523066845],[516970.4828702863,5276662.194211052],[516968.9046214474,5276662.523031366],[516969.57023404806,5276666.081443507],[516969.87066762004,5276666.082318968],[516969.77179604524,5276666.5043619815],[516953.2616828409,5276669.479276576],[516953.03862257337,5276668.700648838],[516953.6394894437,5276668.702398071],[516953.0476816798,5276665.588761707],[516951.61997507204,5276665.80688518],[516951.09440480755,5276663.160228869],[516950.5095236622,5276660.246664541],[516945.1735885517,5276661.342533403],[516943.0980364648,5276651.889614356],[516942.72249358863,5276651.88852176],[516942.72346361226,5276651.555105288],[516950.013201086,5276650.131501261],[516949.346927711,5276646.795369118],[516958.8157948785,5276645.044699497],[516959.0391789594,5276645.712188606]]]},"properties":{"id_build":1627,"id_source":"w145338939","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.75377190317,5276433.69039205],[517258.4969816237,5276436.359948605],[517260.05192278075,5276443.92206032],[517257.27214723115,5276444.136102247],[517255.6882248245,5276446.354204241],[517254.9384295767,5276445.907423687],[517253.052417473,5276448.680330184],[517253.200005925,5276449.569885492],[517250.63470342907,5276453.452178047],[517250.7750497298,5276456.7867865935],[517250.02097604686,5276457.784810883],[517250.0871990908,5276460.785780601],[517250.9134206394,5276460.788227882],[517251.043561189,5276467.568138903],[517240.60280840175,5276467.648361309],[517240.5405286411,5276463.31372623],[517239.639196438,5276463.311058078],[517239.3041059325,5276449.639875659],[517242.6972714056,5276445.20433034],[517243.898722347,5276445.319027309],[517246.0851762909,5276442.547007556],[517245.7870348716,5276441.768146385],[517245.6371413819,5276441.656562763],[517247.8996962765,5276438.5513497675],[517248.6498221708,5276438.886990625],[517251.1390306769,5276435.337891131],[517257.75377190317,5276433.69039205]]]},"properties":{"id_build":1628,"id_source":"w145338940","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.0286505661,5276356.110870862],[516722.9624734583,5276352.998769526],[516723.19929908734,5276348.998420724],[516723.1315263611,5276346.442013285],[516723.0090644684,5276336.772508826],[516723.0911976859,5276334.327671552],[516723.02916877536,5276329.770766324],[516729.8650650603,5276329.568119059],[516729.9318773445,5276332.457942826],[516731.5092438058,5276332.46247405],[516731.55553289206,5276334.652058864],[516731.64095088927,5276338.90895429],[516730.4391492019,5276338.905501861],[516730.5807543637,5276341.906680221],[516730.64788536465,5276344.685365282],[516731.4731653695,5276345.021155147],[516731.4356811818,5276347.610602227],[516731.3515733239,5276353.356282576],[516731.2871814142,5276357.468266155],[516730.3104013976,5276357.576599863],[516730.30178144167,5276360.577346772],[516730.21900696337,5276363.2444616],[516731.19514747756,5276363.358405428],[516731.19418965396,5276363.691821756],[516731.1469914224,5276367.048104882],[516731.1005594885,5276370.137654968],[516729.5228839885,5276370.244262606],[516729.56638701,5276370.788972066],[516722.9791752232,5276370.725598234],[516722.91875439684,5276368.22478166],[516722.9267323346,5276365.4463122655],[516723.0286505661,5276356.110870862]]]},"properties":{"id_build":1629,"id_source":"w145338942","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.1802017203,5276297.231328528],[517141.87497917947,5276297.046398677],[517141.93275569123,5276302.936974032],[517144.9369518144,5276303.056956563],[517144.9764038291,5276315.17130269],[517141.9718868498,5276315.162458883],[517141.9263162392,5276317.885248033],[517141.88041855476,5276320.719175964],[517140.3781614974,5276320.714754661],[517140.50418314215,5276328.939465338],[517138.9973494571,5276330.490987097],[517140.34512650716,5276331.939769888],[517137.91198752617,5276334.3109998945],[517135.9007239256,5276336.261141185],[517134.7034990997,5276334.701662609],[517133.04709702363,5276336.030466422],[517124.85949083074,5276336.117526156],[517124.9300284821,5276337.673689742],[517121.21172441536,5276337.740555661],[517119.2962542784,5276337.768266981],[517119.212321369,5276340.76879291],[517107.11919379985,5276340.733259387],[517107.0532216604,5276337.621153278],[517101.4201004631,5276337.493470274],[517101.08141254453,5276324.933686976],[517107.2406619149,5276324.951775231],[517107.2380503392,5276325.84088535],[517128.7196533148,5276326.126302158],[517130.1526801007,5276324.1300017685],[517130.2902279482,5276302.902719057],[517129.1792080572,5276302.677171954],[517129.1802017203,5276297.231328528]]]},"properties":{"id_build":1630,"id_source":"w145338943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.7677527793,5276700.074782072],[516995.20354109484,5276700.020483974],[516994.4846266261,5276696.717534543],[516992.9214397678,5276697.035278301],[516991.78082857985,5276691.530531162],[516989.54875722737,5276691.990805899],[516987.6356410279,5276683.527487967],[516986.96672446205,5276683.681132403],[516986.77368010377,5276682.91370486],[516994.1241246575,5276681.2680536555],[516993.28727171733,5276677.197895882],[517002.8845010654,5276675.203165086],[517003.7745723785,5276679.051200098],[517011.1397237159,5276677.51675305],[517011.2504706444,5276678.172801232],[517010.95715893933,5276678.305312166],[517012.57696421957,5276686.890034743],[517010.8709384248,5276687.25181232],[517011.15954224253,5276688.730814406],[517012.00320998434,5276693.034388337],[517010.47003191174,5276693.363329035],[517011.05562632374,5276696.021280305],[517011.3712098218,5276695.977746259],[517011.47415336076,5276696.733797471],[517008.8135123903,5276697.348408603],[517009.51804631343,5276700.429038285],[516998.4475080386,5276702.841788466],[516997.7717141675,5276700.20580314],[516994.9458712109,5276700.808824419],[516994.7677527793,5276700.074782072]]]},"properties":{"id_build":1631,"id_source":"w145338944","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0301025402,5276660.920479226],[516861.2464178667,5276664.03301875],[516860.56979856984,5276664.253339246],[516856.49721599085,5276670.020816959],[516853.4989935947,5276667.900483809],[516854.25361545075,5276666.680130427],[516852.0045449383,5276665.228804828],[516851.34849690413,5276666.127138445],[516848.5357320651,5276669.997777457],[516844.8631388567,5276667.319798942],[516847.3520038901,5276663.770526428],[516844.87856965297,5276661.985135263],[516848.4231358262,5276656.99410016],[516848.7235698536,5276656.994969371],[516856.743451604,5276662.797445433],[516857.04388533067,5276662.798315072],[516858.0241556562,5276661.467475596],[516859.8127020269,5276661.139234097],[516861.0301025402,5276660.920479226]]]},"properties":{"id_build":1632,"id_source":"w145338946","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.73268863297,5276311.860691237],[516732.7361051339,5276310.671506441],[516729.8442238768,5276310.674312818],[516726.8171392883,5276310.676732333],[516726.8158944614,5276311.11017352],[516726.81410701777,5276311.732550609],[516726.23573725903,5276311.730889583],[516723.2237077316,5276311.722240227],[516720.3393383239,5276311.725072892],[516720.3446666694,5276309.8690555],[516717.0096503737,5276309.859482127],[516717.01309779123,5276303.424504498],[516722.05321620224,5276303.427859214],[516724.83243143687,5276303.424725417],[516734.5220804062,5276303.4303304665],[516737.37640874187,5276303.427418473],[516741.8081114179,5276303.429041874],[516744.361955569,5276303.4363835305],[516753.82626548264,5276303.441372857],[516756.3050285546,5276303.437389803],[516761.3301244957,5276303.440735291],[516761.3261483479,5276310.0424211575],[516757.8258835427,5276310.032348849],[516757.82063918747,5276311.855024606],[516755.2893325975,5276311.8477418665],[516751.3233365985,5276311.847447606],[516751.3267568965,5276310.658262813],[516748.3973510506,5276310.649838084],[516745.5054697351,5276310.652636686],[516745.50198671845,5276311.864049237],[516744.9386395603,5276311.862429544],[516741.6862166742,5276311.864193466],[516736.2480068296,5276311.859677759],[516732.73268863297,5276311.860691237]]]},"properties":{"id_build":1633,"id_source":"w145338948","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516391.1103407889,5276113.771985595],[516391.93629849626,5276113.885449633],[516391.5478974666,5276118.441080802],[516390.6465122068,5276118.43854417],[516390.48971359176,5276120.772034861],[516393.79416592675,5276121.00361391],[516393.5584970369,5276124.670557949],[516393.4830688703,5276124.781485268],[516390.32884938683,5276124.550329139],[516390.2509193193,5276125.550366392],[516391.22741882433,5276125.553114353],[516390.91225779126,5276130.7757894555],[516382.57602479134,5276130.196638117],[516382.8145000029,5276125.529444987],[516381.46273634164,5276125.414503377],[516381.85831850505,5276118.3026805855],[516384.26138731814,5276118.531719092],[516384.65791121067,5276111.086480352],[516383.53117821633,5276111.083310921],[516383.69266355014,5276107.082739078],[516379.8623938275,5276106.849687072],[516380.2589127729,5276099.404448185],[516386.86784220365,5276099.867596479],[516386.396824594,5276107.090346152],[516388.1993484596,5276107.184329217],[516391.1284808979,5276107.3259390155],[516391.3585191134,5276105.659492177],[516394.81321119546,5276105.891494561],[516394.42293049075,5276111.11395789],[516391.19296257704,5276111.104867354],[516391.1103407889,5276113.771985595]]]},"properties":{"id_build":1634,"id_source":"w145338950","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.9805943173,5276502.172517679],[517227.1107613948,5276508.952428536],[517226.5095492299,5276509.061789924],[517226.9805943173,5276502.172517679]]]},"properties":{"id_build":1635,"id_source":"w145338954","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516794.68273239717,5276669.953359428],[516796.6368314002,5276669.514436247],[516796.1800909575,5276671.624774202],[516794.68273239717,5276669.953359428]]]},"properties":{"id_build":1636,"id_source":"w145338962","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7301105095,5276705.41738373],[516757.9224042862,5276707.190417573],[516757.5529414436,5276705.077699046],[516759.7301105095,5276705.41738373]]]},"properties":{"id_build":1637,"id_source":"w145338964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.820187011,5276376.050240463],[516738.67667055526,5276373.715894393],[516741.0051474138,5276373.722587027],[516738.820187011,5276376.050240463]]]},"properties":{"id_build":1638,"id_source":"w145338973","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517120.78024206817,5276193.224316435],[517119.3491466617,5276194.553786337],[517118.82171203423,5276195.107934606],[517117.69793465023,5276194.104374438],[517113.85697255534,5276197.538417996],[517111.8357396063,5276195.1985456105],[517110.7057575482,5276196.306622887],[517107.1116887236,5276192.4061759375],[517110.5767509245,5276189.082163351],[517111.62541596877,5276190.085501453],[517112.6799583104,5276189.088342403],[517111.6316197848,5276187.973865376],[517113.8912613316,5276185.868850156],[517119.28317874676,5276191.441680793],[517120.78024206817,5276193.224316435]]]},"properties":{"id_build":1639,"id_source":"w145338980","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.8817973125,5276647.168240877],[517214.6791482967,5276648.951790297],[517212.951321494,5276649.057822822],[517212.8817973125,5276647.168240877]]]},"properties":{"id_build":1640,"id_source":"w145338983","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516333.9822929634,5276502.933669749],[516335.02885198756,5276504.714839953],[516333.7566498249,5276503.044176574],[516333.9822929634,5276502.933669749]]]},"properties":{"id_build":1641,"id_source":"w145338990","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.66891291726,5276166.062696697],[517259.3789755552,5276164.0702118995],[517260.15674505243,5276165.228369685],[517261.24861324474,5276166.854245214],[517256.66891291726,5276166.062696697]]]},"properties":{"id_build":1642,"id_source":"w145338991","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516781.10702695005,5276102.879467578],[516783.92199508904,5276111.356419976],[516781.94456705544,5276112.006446141],[516781.49778041063,5276110.649255088],[516780.5128061236,5276110.9798362525],[516778.43763210566,5276111.662923895],[516776.6782319034,5276112.246896115],[516776.31339892093,5276111.12333479],[516774.3175862116,5276105.11604544],[516779.302554443,5276103.463309157],[516781.10702695005,5276102.879467578]]]},"properties":{"id_build":1643,"id_source":"w145338995","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.1255282266,5276243.330112025],[516886.1192127271,5276245.508431576],[516886.11263945117,5276247.775662143],[516881.1554517287,5276247.650152419],[516878.1431706264,5276250.308774884],[516875.5605050536,5276247.278291703],[516872.82812426996,5276244.069552478],[516875.6531044966,5276241.243675059],[516878.02611576783,5276238.861047994],[516873.23363687954,5276233.734736569],[516878.8842545663,5276227.860706073],[516886.15033909376,5276234.772428129],[516886.0765140101,5276234.327655354],[516891.4843967348,5276234.454476274],[516891.54951870674,5276237.899995407],[516890.34511770285,5276238.785620047],[516891.3941337699,5276239.677779752],[516891.3087057025,5276243.234001978],[516886.1255282266,5276243.330112025]]]},"properties":{"id_build":1644,"id_source":"w145338997","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.09797178453,5276238.709432776],[517051.0947181154,5276239.820820278],[517036.4484841748,5276239.444541673],[517036.45108487236,5276238.555431668],[517033.22118677676,5276238.545984924],[517033.3684893389,5276239.546673024],[517013.088386609,5276239.265119181],[517013.0844909088,5276240.59878419],[517007.3758358709,5276240.582111734],[517005.3526284618,5276238.909108709],[517005.51194217656,5276235.797662324],[517007.1689923309,5276234.246544953],[517006.16564540326,5276233.15444621],[517005.22219459637,5276232.129206335],[517003.41524087876,5276233.56874693],[517000.5612343272,5276233.449275999],[516998.23983699933,5276230.997427239],[516998.33019586006,5276225.774125263],[516999.4565825733,5276225.8885524245],[516999.63860021404,5276214.997393645],[516998.43709718244,5276214.882747229],[516998.4396920588,5276213.993637257],[516998.383390587,5276207.547370778],[517012.6551090745,5276207.589040175],[517012.86162319884,5276214.035745645],[517012.85902612173,5276214.924855615],[517012.3329020056,5276215.034458534],[517012.2431797464,5276220.035482742],[517014.04104941187,5276221.707829824],[517012.5335728286,5276223.481661524],[517012.1580023149,5276223.480564518],[517006.6749973252,5276223.353412243],[517006.8177615644,5276225.910042107],[517012.8090323254,5276232.040222791],[517015.0621274216,5276232.1579442015],[517015.22923882306,5276226.379168131],[517017.11196121364,5276224.717573171],[517018.5345824511,5276226.277685613],[517023.79191744654,5276226.515329154],[517023.71810275596,5276226.070554614],[517024.9947170736,5276226.185425816],[517031.00286759174,5276226.536410309],[517031.00741734204,5276224.980467838],[517031.01131712383,5276223.646802864],[517038.59816647583,5276223.557852887],[517038.66937904124,5276224.891737601],[517038.5149242408,5276226.336101845],[517044.749391785,5276226.354343496],[517051.05864802765,5276226.4839504715],[517051.09797178453,5276238.709432776]]]},"properties":{"id_build":1645,"id_source":"w145338999","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.5745534381,5276548.6361868745],[516773.99844046624,5276549.751685181],[516775.50640072476,5276547.755513597],[516777.1652222329,5276545.537497545],[516784.5103012858,5276551.0045087915],[516783.07776889123,5276552.889755707],[516783.75183573394,5276553.558536683],[516778.85048396396,5276560.212797124],[516778.3256762783,5276559.877865921],[516777.6480875577,5276560.431612462],[516778.1719346586,5276561.099960034],[516778.1687327422,5276562.211348126],[516777.6413637473,5276562.765527458],[516776.73940678034,5276562.985208528],[516775.83809017943,5276562.98261212],[516775.1598617858,5276563.758636572],[516775.75945885835,5276564.204922664],[516770.7075858369,5276570.969896118],[516769.73308104614,5276570.300251493],[516768.60227658146,5276571.741811899],[516761.55732783506,5276566.386824028],[516762.76356116636,5276564.834339647],[516764.49748271063,5276562.616536148],[516762.8485877333,5276561.38925274],[516760.89989277377,5276559.938827502],[516762.5583853715,5276557.831946079],[516761.28471775044,5276556.716882902],[516767.5425100012,5276548.510556871],[516768.8161782405,5276549.625621402],[516770.77575638215,5276547.297329815],[516772.5745534381,5276548.6361868745]]]},"properties":{"id_build":1646,"id_source":"w145339000","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.8682627871,5276212.216053325],[516888.3189482528,5276212.217360114],[516888.4085641628,5276207.216334315],[516894.79328039987,5276207.234851006],[516894.813751582,5276200.177540664],[516894.82380985457,5276196.710011829],[516894.8353510717,5276192.731244793],[516894.8455060484,5276189.230374376],[516889.58813274803,5276188.99284733],[516889.599090257,5276185.21413008],[516889.46465262596,5276179.767896093],[516893.52116676624,5276179.668520778],[516893.36674687365,5276181.112888685],[516895.92064482084,5276181.120296669],[516896.0744205412,5276179.8982063085],[516902.00847877923,5276179.915423455],[516902.07972323184,5276181.249306332],[516904.2580479067,5276181.255628094],[516904.33735583565,5276179.811042461],[516908.46866227937,5276179.8230343005],[516908.5921123022,5276189.047986015],[516910.92066315445,5276189.054746402],[516910.86838781787,5276207.059223007],[516902.60516849783,5276207.257516246],[516902.4819973702,5276223.816971651],[516900.5290308987,5276223.811304387],[516898.9513124408,5276223.9178662095],[516898.9464755107,5276225.584947446],[516888.7306394284,5276225.666455483],[516889.2806086989,5276217.3325740015],[516888.3047688973,5276217.107465006],[516888.30960277066,5276215.440383791],[516887.1106756437,5276214.436650365],[516887.8682627871,5276212.216053325]]]},"properties":{"id_build":1647,"id_source":"w145339001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516924.13591451995,5276139.080276816],[516932.5488156339,5276139.104728114],[516932.0280147531,5276163.220523637],[516927.4691553918,5276162.996107157],[516927.3656310178,5276170.186543421],[516894.90240606095,5276169.614386531],[516895.07407404564,5276162.224096162],[516906.1153175598,5276162.47841347],[516906.08955903805,5276145.473968713],[516906.1018174619,5276141.250696784],[516904.3744913377,5276141.134543652],[516904.2977633999,5276141.690019322],[516902.26417144487,5276143.573492026],[516900.0797056432,5276145.678807013],[516894.22104999615,5276145.550671055],[516894.17236858583,5276136.437076942],[516892.3702479204,5276136.209570766],[516892.37891852885,5276133.219938832],[516892.3873312707,5276130.319217902],[516894.2658585101,5276130.102387022],[516894.29293698625,5276120.766733539],[516904.05761952454,5276120.906204268],[516906.9871209924,5276120.914707061],[516913.97285526106,5276120.934988893],[516914.1004942235,5276128.715136365],[516914.09500761906,5276130.604494817],[516912.59270166914,5276130.600132387],[516912.42536744114,5276136.490049023],[516909.5706663656,5276136.592900283],[516909.6396510978,5276138.704754301],[516914.74716146174,5276138.830724304],[516914.73941534624,5276141.498053925],[516921.4994565952,5276141.628829166],[516921.7322284879,5276139.073292962],[516924.13591451995,5276139.080276816]]]},"properties":{"id_build":1648,"id_source":"w145339013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.73227031383,5276115.717451452],[516491.23457984196,5276115.721704803],[516491.16827512,5276112.609607583],[516489.8161958225,5276112.605779565],[516490.05444294645,5276108.049729485],[516493.1341815343,5276108.058449437],[516494.33760438766,5276107.506159122],[516496.06557754695,5276107.399913139],[516497.56663005915,5276107.848723049],[516498.0160643268,5276108.294554551],[516501.39657995006,5276108.192991202],[516501.31579684117,5276110.193275586],[516505.67218367866,5276110.316758763],[516505.6523420529,5276117.318498978],[516495.51207020617,5276117.17863253],[516495.4237351737,5276121.846246654],[516489.71590888815,5276121.49666565],[516489.73227031383,5276115.717451452]]]},"properties":{"id_build":1649,"id_source":"w145339016","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.94978598016,5276432.784140047],[516887.9477212564,5276430.905872791],[516887.94591434574,5276428.9386945125],[516889.3429872998,5276428.94274582],[516889.3416320744,5276426.819973248],[516884.3992324758,5276426.82787047],[516884.39758167183,5276422.215567368],[516889.0395390401,5276422.206798862],[516889.029476553,5276415.31610717],[516884.5828039164,5276415.325441873],[516884.58077027526,5276413.436060793],[516884.58021878044,5276411.035441323],[516887.68984233064,5276411.044457386],[516887.68009557325,5276398.863516328],[516884.4427109562,5276398.8763578525],[516884.44164382806,5276396.653560485],[516884.4410599959,5276394.264054955],[516888.8952599026,5276394.2547418885],[516888.88455234986,5276387.58632806],[516884.43785854237,5276387.595662924],[516884.436759156,5276385.3839794705],[516884.435885302,5276383.094498885],[516887.9061260174,5276383.082332516],[516887.8992569678,5276380.270477901],[516892.4436020866,5276380.261428886],[516892.45085576904,5276382.939916977],[516893.9906526411,5276382.944383307],[516894.00464120513,5276398.837402914],[516892.87796364084,5276398.834134815],[516892.88524926594,5276401.501509108],[516893.80161326454,5276401.504167145],[516893.81263741327,5276408.061442362],[516893.00143085263,5276408.059089333],[516893.0082328219,5276410.8931718385],[516893.8344613242,5276410.895568443],[516893.8486108114,5276426.733019354],[516892.98482881807,5276426.730513806],[516892.9922754363,5276429.3423188245],[516894.0288133654,5276429.345325498],[516894.0338738219,5276432.779557543],[516887.94978598016,5276432.784140047]]]},"properties":{"id_build":1650,"id_source":"w145339017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.3805132349,5276292.755204466],[516603.5644066999,5276289.196408526],[516607.17206065153,5276288.4287166],[516607.9881650952,5276291.987513049],[516604.3805132349,5276292.755204466]]]},"properties":{"id_build":1651,"id_source":"w145339024","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516714.7056279539,5276586.590736155],[516717.1871097732,5276585.597601289],[516718.8261164909,5276590.27017506],[516716.56996442424,5276591.263956021],[516714.7056279539,5276586.590736155]]]},"properties":{"id_build":1652,"id_source":"w145339035","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.2684971814,5276373.239420084],[517299.2327412356,5276377.354454929],[517297.6543963013,5276377.683186233],[517296.76493329706,5276373.6795134945],[517298.2684971814,5276373.239420084]]]},"properties":{"id_build":1653,"id_source":"w145339036","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.62708829745,5276543.006703014],[516475.07428962825,5276544.230504786],[516470.5623492207,5276546.107117375],[516470.0400371499,5276544.883103524],[516474.62708829745,5276543.006703014]]]},"properties":{"id_build":1654,"id_source":"w145339042","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.62649265316,5276584.830462674],[516758.0527124337,5276583.603396722],[516759.86237581586,5276581.1635303],[516761.4361563201,5276582.3905967325],[516759.62649265316,5276584.830462674]]]},"properties":{"id_build":1655,"id_source":"w145339045","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.93085935875,5276605.1575463],[517220.81863853266,5276604.736306405],[517221.16734892176,5276611.2723569255],[517221.52996283286,5276618.186323931],[517213.6418733046,5276618.71870164],[517212.93085935875,5276605.1575463]]]},"properties":{"id_build":1656,"id_source":"w145339046","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.82656602125,5276330.59547624],[517011.1089270179,5276330.627290348],[517011.1127701582,5276331.883180354],[517009.31003278727,5276331.8890291825],[517007.8077786942,5276331.884642067],[517007.82656602125,5276330.59547624]]]},"properties":{"id_build":1657,"id_source":"w145339049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516601.60455633124,5276107.144074419],[516603.2466446569,5276110.816363014],[516599.03574005025,5276112.360315971],[516597.6189962338,5276108.688670703],[516601.60455633124,5276107.144074419]]]},"properties":{"id_build":1658,"id_source":"w145339050","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517069.23561292206,5276224.1921451725],[517073.5171163621,5276224.204694433],[517073.57952446816,5276228.53932579],[517069.2225844643,5276228.637695088],[517069.23561292206,5276224.1921451725]]]},"properties":{"id_build":1659,"id_source":"w145339051","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517292.7263202494,5276570.162631318],[517279.12685876305,5276571.6782223685],[517278.3250534531,5276563.451499444],[517284.5385739918,5276562.81421286],[517291.9993136639,5276562.047268312],[517292.7263202494,5276570.162631318]]]},"properties":{"id_build":1660,"id_source":"w145339055","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.9938785768,5276196.215822712],[517000.05601747974,5276200.661591699],[516995.69970677496,5276200.53773855],[516995.78714484203,5276196.314685478],[516999.9938785768,5276196.215822712]]]},"properties":{"id_build":1661,"id_source":"w145339057","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516911.82672541926,5276239.1813747985],[516911.8973213659,5276240.7375354245],[516910.01915176277,5276240.843221824],[516909.87376409187,5276239.175704387],[516911.82672541926,5276239.1813747985]]]},"properties":{"id_build":1662,"id_source":"w145339060","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.89989277377,5276559.938827502],[516759.62590546376,5276558.934903493],[516761.28471775044,5276556.716882902],[516762.5583853715,5276557.831946079],[516760.89989277377,5276559.938827502]]]},"properties":{"id_build":1663,"id_source":"w145339065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9484894918,5276472.395866921],[516538.307411951,5276468.390177551],[516541.2398948111,5276467.287108846],[516542.88128635,5276471.181660244],[516539.9484894918,5276472.395866921]]]},"properties":{"id_build":1664,"id_source":"w145339066","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.9161430538,5276359.024367125],[517300.4923095203,5276357.9087399505],[517302.8297081723,5276354.9149104385],[517304.1784295954,5276356.030315008],[517301.9161430538,5276359.024367125]]]},"properties":{"id_build":1665,"id_source":"w145339067","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516567.4406974566,5276337.239243653],[516567.3598439908,5276336.616631498],[516567.27163731307,5276335.938428589],[516568.6842607949,5276335.764623622],[516568.84577774856,5276337.076531235],[516567.4406974566,5276337.239243653]]]},"properties":{"id_build":1666,"id_source":"w145339068","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.97824578144,5276278.252325465],[516971.04364387254,5276281.586707079],[516969.7667168838,5276281.582986424],[516969.6262046677,5276278.248385973],[516970.97824578144,5276278.252325465]]]},"properties":{"id_build":1667,"id_source":"w145339071","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517236.0138219792,5276267.027539883],[517233.2047999571,5276272.0205153935],[517226.35597976367,5276284.181168794],[517223.7055665777,5276288.885654757],[517214.9317683557,5276283.969566982],[517226.7899767379,5276261.887823262],[517236.0138219792,5276267.027539883]]]},"properties":{"id_build":1668,"id_source":"w145339073","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.5301723737,5276271.565737842],[516930.1356194126,5276271.576217162],[516929.98119268473,5276273.020584323],[516926.5259734621,5276273.010541685],[516926.5301723737,5276271.565737842]]]},"properties":{"id_build":1669,"id_source":"w145339082","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.7836708937,5276636.215326576],[516537.49133972154,5276631.45203645],[516534.7062522997,5276625.642634844],[516543.806426912,5276621.445170362],[516548.9586257435,5276632.129222247],[516539.7836708937,5276636.215326576]]]},"properties":{"id_build":1670,"id_source":"w145339095","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.5752639962,5276085.404559391],[516381.4640065946,5276087.57146886],[516381.3367883923,5276090.071752278],[516380.13493553037,5276090.068372255],[516380.3734101729,5276085.40117932],[516381.5752639962,5276085.404559391]]]},"properties":{"id_build":1671,"id_source":"w145339109","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.73227031383,5276115.717451452],[516489.77435891586,5276114.117160013],[516489.8161958225,5276112.605779565],[516491.16827512,5276112.609607583],[516491.23457984196,5276115.721704803],[516489.73227031383,5276115.717451452]]]},"properties":{"id_build":1672,"id_source":"w145339110","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516561.09299255005,5276432.556807063],[516566.0297959501,5276439.794927286],[516561.66480730247,5276442.783284447],[516557.4503615505,5276445.660933175],[516552.438757112,5276438.311467904],[516561.09299255005,5276432.556807063]]]},"properties":{"id_build":1673,"id_source":"w145339120","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516444.26673191,5276341.069014235],[516445.7989969304,5276341.0844547115],[516449.8549814634,5276341.129251059],[516449.89656465803,5276342.363018743],[516444.26318599744,5276342.3248823825],[516444.26673191,5276341.069014235]]]},"properties":{"id_build":1674,"id_source":"w145339121","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516986.32894031657,5276165.823705829],[516986.92791427224,5276166.4922908],[516984.6679873239,5276168.708493858],[516984.06901334,5276168.039909117],[516986.32894031657,5276165.823705829]]]},"properties":{"id_build":1675,"id_source":"w145339127","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.4600710029,5276678.646159892],[517296.8876132131,5276686.427216163],[517290.04394165677,5276686.8514523925],[517283.14018463594,5276687.2755183345],[517282.5624076757,5276679.494017303],[517296.4600710029,5276678.646159892]]]},"properties":{"id_build":1676,"id_source":"w145339134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517060.7946488022,5276164.552080686],[517058.4058008169,5276164.611767653],[517058.33719589404,5276162.388772921],[517060.8911022271,5276162.396253222],[517060.7946488022,5276164.552080686]]]},"properties":{"id_build":1677,"id_source":"w145339135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.16097781085,5276362.926295954],[516773.98930703895,5276370.372161231],[516772.7123996234,5276370.3684837315],[516772.5836195732,5276362.921753161],[516774.16097781085,5276362.926295954]]]},"properties":{"id_build":1678,"id_source":"w145339137","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.106626439,5276234.796740335],[516546.04193154303,5276231.128948064],[516547.16864138923,5276231.132148988],[516550.0226571945,5276231.251397724],[516546.106626439,5276234.796740335]]]},"properties":{"id_build":1679,"id_source":"w145339138","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.27544143784,5276074.362645796],[516586.43078190007,5276080.8718918655],[516584.2676092105,5276075.53103018],[516601.0377991353,5276068.799286335],[516603.27544143784,5276074.362645796]]]},"properties":{"id_build":1680,"id_source":"w145339140","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5186876564,5276165.015168298],[517003.3999323997,5276164.195307193],[517004.1562564213,5276164.997720922],[517004.83021348214,5276165.710982525],[517003.94896876364,5276166.530843414],[517002.5186876564,5276165.015168298]]]},"properties":{"id_build":1681,"id_source":"w145339142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.44084810856,5276638.354898156],[517008.6863842957,5276638.010512135],[517009.07523690554,5276633.454917364],[517012.6801353627,5276633.576587145],[517012.44084810856,5276638.354898156]]]},"properties":{"id_build":1682,"id_source":"w145339150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.8973907668,5276484.192545373],[516770.9052339006,5276489.29388101],[516758.0237864603,5276489.245686677],[516758.03881704184,5276484.02216325],[516770.8973907668,5276484.192545373]]]},"properties":{"id_build":1683,"id_source":"w145339156","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516986.23275753425,5276173.047504784],[516987.206656188,5276173.939462597],[516986.076045639,5276175.269841449],[516985.0273564029,5276174.266526034],[516985.6602000361,5276173.62376138],[516986.23275753425,5276173.047504784]]]},"properties":{"id_build":1684,"id_source":"w145339164","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517102.0470643067,5276075.361209519],[517103.3652123832,5276086.923606735],[517095.85134226544,5276087.679525575],[517095.3989001369,5276083.154812634],[517094.68373765773,5276076.006432273],[517102.0470643067,5276075.361209519]]]},"properties":{"id_build":1685,"id_source":"w145339165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.4543481174,5276654.062193169],[516634.58540593705,5276657.71303719],[516633.9873950573,5276656.711071435],[516640.0062374013,5276653.171794868],[516640.4543481174,5276654.062193169]]]},"properties":{"id_build":1686,"id_source":"w145339187","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516413.4386541291,5276453.58876388],[516411.1058250483,5276455.138145249],[516409.4602700991,5276452.6884356225],[516411.7930997158,5276451.139053598],[516413.4386541291,5276453.58876388]]]},"properties":{"id_build":1687,"id_source":"w145339195","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.7446176896,5276311.457373111],[516835.67914262647,5276308.122993043],[516838.9167059667,5276308.065668788],[516838.982179177,5276311.400048896],[516835.7446176896,5276311.457373111]]]},"properties":{"id_build":1688,"id_source":"w145339198","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517246.50189743465,5276555.466246303],[517243.9471760224,5276555.792100601],[517243.6631904144,5276550.234270851],[517246.14214610454,5276550.130471603],[517246.50189743465,5276555.466246303]]]},"properties":{"id_build":1689,"id_source":"w145339207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516588.4710394491,5276102.994488623],[516586.5963132556,5276101.877753344],[516587.4276495766,5276100.101886688],[516589.37717530894,5276101.3299749],[516588.4710394491,5276102.994488623]]]},"properties":{"id_build":1690,"id_source":"w145339212","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.8081114179,5276303.429041874],[516741.81146586855,5276302.2620848445],[516744.36531053286,5276302.2694265],[516744.361955569,5276303.4363835305],[516741.8081114179,5276303.429041874]]]},"properties":{"id_build":1691,"id_source":"w145339215","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517225.79176289716,5276675.547061226],[517223.470358274,5276675.729132691],[517223.0987117431,5276671.871482588],[517225.5031644131,5276671.54517488],[517225.79176289716,5276675.547061226]]]},"properties":{"id_build":1692,"id_source":"w145339217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516869.09666915133,5276183.821037245],[516873.37820191047,5276183.833439309],[516873.30450050905,5276191.123988522],[516873.2744320816,5276193.724569846],[516868.91811399756,5276193.600811544],[516868.97100453195,5276190.900270601],[516869.09666915133,5276183.821037245]]]},"properties":{"id_build":1693,"id_source":"w145339222","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516655.3686021869,5276350.248864282],[516655.53919959336,5276351.005101987],[516655.73939696216,5276351.917019906],[516654.5366445642,5276352.246999452],[516654.01530676085,5276350.689553109],[516655.3686021869,5276350.248864282]]]},"properties":{"id_build":1694,"id_source":"w145339223","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.6710180425,5276361.152011207],[516689.2584319407,5276361.14865616],[516689.2370941336,5276368.594954136],[516685.90975009627,5276368.540964507],[516682.7251192288,5276368.487385566],[516682.6710180425,5276361.152011207]]]},"properties":{"id_build":1695,"id_source":"w145339224","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516630.9159937305,5276627.583689729],[516625.006187861,5276619.231336073],[516627.7155059261,5276617.349695796],[516633.39934827544,5276625.923686236],[516630.9159937305,5276627.583689729]]]},"properties":{"id_build":1696,"id_source":"w145339228","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516693.5826849343,5276356.693233713],[516696.96274180355,5276356.7029229365],[516696.8664494065,5276361.470539501],[516693.749383969,5276361.4282622235],[516693.5826849343,5276356.693233713]]]},"properties":{"id_build":1697,"id_source":"w145339230","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.93246981147,5276271.554680221],[516964.2377866972,5276271.453166949],[516964.3083681817,5276273.009328327],[516960.8531489035,5276272.999265325],[516960.93246981147,5276271.554680221]]]},"properties":{"id_build":1698,"id_source":"w145339231","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.4904845518,5276346.236513612],[516610.38638344395,5276346.563931361],[516610.1670682449,5276344.451652014],[516612.2708530987,5276344.235372953],[516612.4904845518,5276346.236513612]]]},"properties":{"id_build":1699,"id_source":"w145339233","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516679.0084206257,5276179.150310319],[516675.92897395627,5276179.052581005],[516675.9784657722,5276177.50788151],[516679.0578814306,5276177.616724722],[516679.0084206257,5276179.150310319]]]},"properties":{"id_build":1700,"id_source":"w145339234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.3647746608,5276404.223941571],[517290.7353842108,5276405.892138199],[517286.3759333175,5276406.879454983],[517285.8550990502,5276405.210812761],[517290.3647746608,5276404.223941571]]]},"properties":{"id_build":1701,"id_source":"w145339235","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.70170036674,5276378.057622066],[516662.4251126563,5276377.9428299675],[516662.27965787705,5276376.27531851],[516663.63199404714,5276376.168047928],[516663.67404043576,5276377.223995266],[516663.70170036674,5276378.057622066]]]},"properties":{"id_build":1702,"id_source":"w145339237","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.26779284474,5276133.264985712],[517284.5346259386,5276141.472307868],[517274.4151736185,5276134.329345261],[517280.29856389016,5276126.122458956],[517284.8634261265,5276129.39239729],[517290.26779284474,5276133.264985712]]]},"properties":{"id_build":1703,"id_source":"w145339239","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.26887971465,5276216.088700837],[516648.91682434996,5276216.08483583],[516648.883428987,5276214.628810844],[516648.8499700677,5276213.195013619],[516650.20202610263,5276213.19887861],[516650.26887971465,5276216.088700837]]]},"properties":{"id_build":1704,"id_source":"w145339243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516583.18498464586,5276297.473821843],[516587.31778969854,5276296.9298922615],[516587.9044507871,5276301.932848107],[516583.8467622961,5276302.476991143],[516583.18498464586,5276297.473821843]]]},"properties":{"id_build":1705,"id_source":"w145339247","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.51120224,5276273.141986153],[516937.1914385768,5276273.26382699],[516937.1121235808,5276274.708412402],[516933.5066784682,5276274.697928759],[516933.51120224,5276273.141986153]]]},"properties":{"id_build":1706,"id_source":"w145339249","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516985.0901306705,5276075.463537107],[516982.6113023103,5276075.45630915],[516982.5410469253,5276073.789009304],[516983.94555469614,5276073.848674362],[516985.16978396644,5276073.907814042],[516985.0901306705,5276075.463537107]]]},"properties":{"id_build":1707,"id_source":"w145339257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.6733025292,5276318.583697973],[516544.83592716284,5276311.924053209],[516550.09572838445,5276311.2721591955],[516550.82790823875,5276317.942619768],[516545.6733025292,5276318.583697973]]]},"properties":{"id_build":1708,"id_source":"w145339258","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.51249786915,5276227.956751105],[517287.2769857186,5276229.836522171],[517285.3342458403,5276226.385424752],[517288.41953106987,5276224.505206689],[517290.51249786915,5276227.956751105]]]},"properties":{"id_build":1709,"id_source":"w145339259","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516739.25426600856,5276590.884555532],[516740.15366146545,5276591.553979178],[516735.9318879585,5276596.987692128],[516735.1072827768,5276596.42962378],[516739.25426600856,5276590.884555532]]]},"properties":{"id_build":1710,"id_source":"w145339265","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.1196319812,5276074.896031558],[517017.6969735898,5276073.335919437],[517019.3540728688,5276071.784805811],[517020.701615162,5276073.34469883],[517019.1196319812,5276074.896031558]]]},"properties":{"id_build":1711,"id_source":"w145339270","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.82456568035,5276617.18499649],[516526.4183654347,5276608.2813135395],[516539.5043977974,5276602.316919383],[516543.8354735872,5276611.220398819],[516536.803558648,5276614.445706444],[516530.82456568035,5276617.18499649]]]},"properties":{"id_build":1712,"id_source":"w145339271","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517054.1740260057,5276198.908198582],[517054.26834036096,5276192.351232707],[517056.1465284586,5276192.245592792],[517055.7517542982,5276198.801678791],[517054.1740260057,5276198.908198582]]]},"properties":{"id_build":1713,"id_source":"w145339272","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.8884261268,5276127.8098667115],[517109.98525461974,5276134.733114739],[517106.43819081207,5276140.39082023],[517100.8366804433,5276137.106864492],[517095.1901598518,5276133.800554143],[517098.8884261268,5276127.8098667115]]]},"properties":{"id_build":1714,"id_source":"w145339274","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.14455339086,5276088.232489511],[516399.14796412573,5276087.021077353],[516399.15112453053,5276085.898576182],[516400.2027465446,5276085.901537119],[516400.12105915864,5276088.235238948],[516399.14455339086,5276088.232489511]]]},"properties":{"id_build":1715,"id_source":"w145339279","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516927.29889621126,5276239.670880047],[516929.25185738684,5276239.676556299],[516929.3080719836,5276241.010395982],[516927.37013403006,5276241.004763371],[516927.29889621126,5276239.670880047]]]},"properties":{"id_build":1716,"id_source":"w145339282","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516644.0974332858,5276430.570637369],[516647.5547824309,5276429.802541166],[516648.0713492682,5276433.027068954],[516644.53889058536,5276433.794950184],[516644.0974332858,5276430.570637369]]]},"properties":{"id_build":1717,"id_source":"w145339285","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517006.5504874257,5276340.594324307],[517001.44283115026,5276340.579412101],[517001.4548350458,5276336.467277681],[517006.56249492767,5276336.48218989],[517006.5504874257,5276340.594324307]]]},"properties":{"id_build":1718,"id_source":"w145339289","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516814.5950181684,5276308.028742481],[516814.5773997516,5276311.52959189],[516811.7831975983,5276311.521525614],[516811.8083256352,5276308.020697885],[516814.5950181684,5276308.028742481]]]},"properties":{"id_build":1719,"id_source":"w145339301","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.49393148767,5276457.317624724],[516470.6796111519,5276451.527572661],[516473.1626799746,5276449.978640027],[516476.82677669456,5276455.768268703],[516474.49393148767,5276457.317624724]]]},"properties":{"id_build":1720,"id_source":"w145339313","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516830.6766286683,5276092.353086232],[516831.13085609605,5276091.13186258],[516833.2369893569,5276090.137692102],[516833.68447222677,5276091.2503819065],[516832.66931686824,5276091.625322911],[516830.6766286683,5276092.353086232]]]},"properties":{"id_build":1721,"id_source":"w145339315","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516954.2088142937,5276258.97631818],[516954.2881337157,5276257.531733022],[516957.51802117564,5276257.541136017],[516957.438700953,5276258.985721133],[516954.2088142937,5276258.97631818]]]},"properties":{"id_build":1722,"id_source":"w145339323","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.21025683306,5276357.448921624],[516763.9617004057,5276357.339944816],[516763.9517835137,5276360.785246815],[516763.2006602698,5276360.783084844],[516763.21025683306,5276357.448921624]]]},"properties":{"id_build":1723,"id_source":"w145339329","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516310.9906102125,5276478.863061379],[516313.44280439644,5276488.316801918],[516309.5342486067,5276489.30611186],[516306.7816054168,5276479.851531725],[516310.9906102125,5276478.863061379]]]},"properties":{"id_build":1724,"id_source":"w145339335","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.3455078276,5276336.555048697],[516764.0212016595,5276336.668133246],[516764.0867172879,5276340.002512559],[516763.26047877286,5276340.000134384],[516763.3455078276,5276336.555048697]]]},"properties":{"id_build":1725,"id_source":"w145339337","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.8678581019,5276233.841170495],[516605.3002152497,5276233.631526266],[516606.26782412664,5276236.746195434],[516601.3096718954,5276236.954340191],[516600.8678581019,5276233.841170495]]]},"properties":{"id_build":1726,"id_source":"w145339343","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.83775619394,5276092.097335431],[516479.59847158956,5276092.04937312],[516479.64747165464,5276090.660266511],[516480.88675655477,5276090.708228831],[516480.8621777544,5276091.430566814],[516480.83775619394,5276092.097335431]]]},"properties":{"id_build":1727,"id_source":"w145339357","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.06180487905,5276122.356559032],[516439.0105031043,5276122.242452145],[516439.01489456027,5276120.686509845],[516440.14162572264,5276120.689690015],[516440.10155844735,5276121.578693891],[516440.06180487905,5276122.356559032]]]},"properties":{"id_build":1728,"id_source":"w145339364","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516743.1508104361,5276385.065004051],[516744.12726657296,5276385.067811281],[516744.1972661771,5276386.846247691],[516743.22081033804,5276386.843440448],[516743.1508104361,5276385.065004051]]]},"properties":{"id_build":1729,"id_source":"w145339366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516971.8726272936,5276074.424751688],[516971.8017211463,5276072.979729427],[516972.44771911384,5276072.981611776],[516973.37915803946,5276072.984325984],[516973.45006379456,5276074.429348266],[516971.8726272936,5276074.424751688]]]},"properties":{"id_build":1730,"id_source":"w145339376","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.738653627,5276391.394490513],[516663.7355691186,5276392.472536685],[516663.7332477862,5276393.283849786],[516662.5314573531,5276393.280411342],[516662.5365448377,5276391.502190849],[516663.738653627,5276391.394490513]]]},"properties":{"id_build":1731,"id_source":"w145339399","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9458449956,5276413.634790798],[516861.00248358905,5276413.623373061],[516861.0217388928,5276409.566829255],[516864.9651030455,5276409.578246998],[516864.9458449956,5276413.634790798]]]},"properties":{"id_build":1732,"id_source":"w145339404","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516758.62475981284,5276437.011751106],[516748.2590751366,5276437.093072404],[516748.36678662355,5276425.75713215],[516758.9575061281,5276425.787598199],[516758.62475981284,5276437.011751106]]]},"properties":{"id_build":1733,"id_source":"w145339406","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.557471524,5276315.105698821],[516764.15837483003,5276315.107428415],[516764.2996433993,5276318.219746285],[516763.6990603037,5276318.106877908],[516763.557471524,5276315.105698821]]]},"properties":{"id_build":1734,"id_source":"w145339417","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.60257824854,5276658.014799131],[517201.1336627775,5276657.691808532],[517201.20516026573,5276658.9145574225],[517197.67407647206,5276659.237547982],[517197.60257824854,5276658.014799131]]]},"properties":{"id_build":1735,"id_source":"w145339425","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.49132136494,5276364.118965824],[516530.3442512383,5276363.007151673],[516534.5521170041,5276362.463397902],[516534.69855529093,5276363.797489716],[516530.49132136494,5276364.118965824]]]},"properties":{"id_build":1736,"id_source":"w145339433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517294.54228186025,5276717.428257263],[517293.8920560095,5276708.757420999],[517299.00074361806,5276708.316921271],[517302.68198633404,5276708.005552393],[517303.2570914447,5276716.676166492],[517294.54228186025,5276717.428257263]]]},"properties":{"id_build":1737,"id_source":"w145339436","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.0911976859,5276334.327671552],[516723.0090644684,5276336.772508826],[516721.9574876115,5276336.769489495],[516721.88939505897,5276334.324220889],[516723.0911976859,5276334.327671552]]]},"properties":{"id_build":1738,"id_source":"w145339442","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516477.60912386206,5276126.1302671805],[516476.4823937355,5276126.127079761],[516476.56159617787,5276124.682488683],[516477.6880121693,5276124.796814852],[516477.6485051287,5276125.485768763],[516477.60912386206,5276126.1302671805]]]},"properties":{"id_build":1739,"id_source":"w145339444","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.2067489602,5276309.184808479],[516983.293204752,5276305.295170807],[516984.87057873193,5276305.299770631],[516984.85923488665,5276309.189627331],[516983.2067489602,5276309.184808479]]]},"properties":{"id_build":1740,"id_source":"w145339457","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517177.3112994618,5276346.241221923],[517171.9779825131,5276346.33663432],[517172.29277893173,5276315.996415829],[517177.7009087921,5276316.0123639535],[517177.3112994618,5276346.241221923]]]},"properties":{"id_build":1741,"id_source":"w145339466","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.6551090745,5276207.589040175],[517014.15739522903,5276207.593428462],[517014.28879346803,5276214.039914561],[517012.86162319884,5276214.035745645],[517012.6551090745,5276207.589040175]]]},"properties":{"id_build":1742,"id_source":"w145339473","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516786.5493315647,5276521.1137989415],[516781.5172645809,5276520.98815692],[516781.712640882,5276505.318018877],[516786.4445999127,5276505.331656236],[516786.5493315647,5276521.1137989415]]]},"properties":{"id_build":1743,"id_source":"w145339475","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516981.95586162416,5276153.407765401],[516980.88515163807,5276152.226563099],[516982.21067567077,5276151.0301191835],[516983.2813856127,5276152.211321726],[516982.64873436716,5276152.787403387],[516981.95586162416,5276153.407765401]]]},"properties":{"id_build":1744,"id_source":"w145339481","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.91641029704,5276392.141043464],[517301.5100422443,5276394.587881566],[517300.0779640309,5276396.250723786],[517298.57935751625,5276395.023735101],[517300.91641029704,5276392.141043464]]]},"properties":{"id_build":1745,"id_source":"w145339485","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.00284796226,5276560.150770581],[516409.2388298845,5276557.937093668],[516413.12856347504,5276563.61617935],[516410.34324121574,5276565.831123986],[516406.00284796226,5276560.150770581]]]},"properties":{"id_build":1746,"id_source":"w145339492","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.8694511488,5276691.103725653],[516835.12628640357,5276683.851466578],[516839.197231338,5276678.639668017],[516848.790183557,5276685.891499217],[516844.8694511488,5276691.103725653]]]},"properties":{"id_build":1747,"id_source":"w145339508","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517100.5976526736,5276338.758048243],[517100.58721037756,5276342.314488804],[517096.90669429896,5276342.303683364],[517096.7672353575,5276338.635663045],[517100.5976526736,5276338.758048243]]]},"properties":{"id_build":1748,"id_source":"w145339513","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.237328742,5276576.619165476],[517293.3073959539,5276576.832743955],[517293.0906477962,5276573.942465878],[517296.0205820287,5276573.728887289],[517296.237328742,5276576.619165476]]]},"properties":{"id_build":1749,"id_source":"w145339518","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.3395547346,5276425.877620272],[516600.82089998334,5276434.781567596],[516595.8190901741,5276437.190157668],[516591.19334760617,5276439.421999839],[516586.6368798862,5276430.517845968],[516596.3395547346,5276425.877620272]]]},"properties":{"id_build":1750,"id_source":"w145339533","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.97734718176,5276239.996961635],[516962.90482276503,5276239.107632861],[516964.47470327053,5276239.112205241],[516965.9844926524,5276239.116603001],[516966.05669285497,5276240.117070567],[516962.97734718176,5276239.996961635]]]},"properties":{"id_build":1751,"id_source":"w145339535","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.10930430086,5276189.782597409],[516968.904233789,5276190.89048327],[516967.7814012244,5276189.553535872],[516968.29363710847,5276189.054899565],[516968.91135724244,5276188.445430936],[516970.10930430086,5276189.782597409]]]},"properties":{"id_build":1752,"id_source":"w145339537","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516443.5653047086,5276078.68857918],[516442.13841533975,5276078.573411461],[516442.14280757,5276077.01746927],[516443.569697321,5276077.13263699],[516443.5672500078,5276077.999519069],[516443.5653047086,5276078.68857918]]]},"properties":{"id_build":1753,"id_source":"w145339540","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.07057756523,5276598.914840215],[516747.4971185779,5276597.576638274],[516749.68295903574,5276594.915571019],[516751.2570576102,5276596.031495917],[516749.07057756523,5276598.914840215]]]},"properties":{"id_build":1754,"id_source":"w145339547","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.2331309151,5276258.926927454],[516933.47777187184,5276258.804868231],[516933.4075050703,5276257.137568524],[516937.08775152406,5276257.259409266],[516937.2331309151,5276258.926927454]]]},"properties":{"id_build":1755,"id_source":"w145339548","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516572.9112353868,5276238.762838204],[516572.98192186886,5276240.318994508],[516569.15016588225,5276240.641511528],[516568.8544528837,5276238.973575469],[516572.9112353868,5276238.762838204]]]},"properties":{"id_build":1756,"id_source":"w145339553","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.4110365673,5276671.810239225],[516782.5036513788,5276673.919279489],[516781.45565829094,5276672.693722154],[516781.4569393532,5276672.249166842],[516783.4110365673,5276671.810239225]]]},"properties":{"id_build":1757,"id_source":"w145339554","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.4859140658,5276369.53516734],[516753.48335645965,5276370.424277546],[516750.17841967224,5276370.414771524],[516750.2564086274,5276369.414738566],[516753.4859140658,5276369.53516734]]]},"properties":{"id_build":1758,"id_source":"w145339556","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.76356116636,5276564.834339647],[516761.1897761652,5276563.607272898],[516762.8485877333,5276561.38925274],[516764.49748271063,5276562.616536148],[516762.76356116636,5276564.834339647]]]},"properties":{"id_build":1759,"id_source":"w145339557","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.9873950573,5276656.711071435],[516628.870813592,5276659.9195113005],[516628.272801963,5276658.91754613],[516633.3887490936,5276655.931383394],[516633.9873950573,5276656.711071435]]]},"properties":{"id_build":1760,"id_source":"w145339560","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.5220804062,5276303.4303304665],[516734.5254972639,5276302.241145684],[516737.30468116427,5276302.249131711],[516737.37640874187,5276303.427418473],[516734.5220804062,5276303.4303304665]]]},"properties":{"id_build":1761,"id_source":"w145339561","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517056.0582766109,5276517.340139837],[517055.61607724125,5276514.4492112445],[517058.39678792265,5276513.901656746],[517058.83833486843,5276517.014863147],[517056.0582766109,5276517.340139837]]]},"properties":{"id_build":1762,"id_source":"w145339562","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.12152029225,5276077.588554969],[516526.7256014936,5276076.47887274],[516528.6003472773,5276077.595588656],[516528.0716971592,5276078.594345117],[516527.02909904794,5276078.057916516],[516526.12152029225,5276077.588554969]]]},"properties":{"id_build":1763,"id_source":"w145339565","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.2334780852,5276465.165278706],[516866.2288515798,5276473.776208694],[516864.21469652496,5276468.991367797],[516884.06879210443,5276460.491134204],[516886.2334780852,5276465.165278706]]]},"properties":{"id_build":1764,"id_source":"w145339566","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.57944157236,5276211.321770827],[516621.4383528619,5276211.338487916],[516621.28368409007,5276212.894001695],[516615.5756369294,5276212.655435825],[516615.57944157236,5276211.321770827]]]},"properties":{"id_build":1765,"id_source":"w145339567","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516431.7669368122,5276293.488190592],[516431.914968276,5276294.266585785],[516429.4359200896,5276294.370731794],[516426.9571854595,5276294.363740092],[516426.9600066232,5276293.363491201],[516431.7669368122,5276293.488190592]]]},"properties":{"id_build":1766,"id_source":"w145339569","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.66237964673,5276337.146211291],[516775.65549704415,5276339.53569485],[516775.6502150476,5276341.369484565],[516774.4484138466,5276341.366023054],[516774.53569020407,5276337.142966115],[516775.66237964673,5276337.146211291]]]},"properties":{"id_build":1767,"id_source":"w145339570","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.62958517805,5276462.721213016],[517265.10743221117,5276461.497127655],[517268.94172032294,5276460.2859583525],[517269.3133209612,5276461.620737397],[517267.4413755298,5276462.181999715],[517265.62958517805,5276462.721213016]]]},"properties":{"id_build":1768,"id_source":"w145339574","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.9267323346,5276365.4463122655],[516722.91875439684,5276368.22478166],[516721.6421656298,5276368.109976582],[516721.7249361272,5276365.442861621],[516722.9267323346,5276365.4463122655]]]},"properties":{"id_build":1769,"id_source":"w145339578","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.85580934695,5276349.809089012],[516694.42867253604,5276349.804998043],[516694.36694003403,5276345.136954287],[516695.86919051316,5276345.141260563],[516695.85580934695,5276349.809089012]]]},"properties":{"id_build":1770,"id_source":"w145339581","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.13807009574,5276330.476475642],[516578.80862700794,5276330.803263279],[516578.6612488463,5276329.802586719],[516581.0654886405,5276329.587151636],[516581.13807009574,5276330.476475642]]]},"properties":{"id_build":1771,"id_source":"w145339585","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.41557140806,5276234.833414604],[516947.4433247865,5276234.950454241],[516947.511324159,5276237.395725323],[516945.4006229702,5276237.389584017],[516945.41557140806,5276234.833414604]]]},"properties":{"id_build":1772,"id_source":"w145339589","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.0628488982,5276150.435742255],[516619.13272838976,5276150.649660212],[516619.0649069764,5276148.093254896],[516621.994394428,5276148.10161438],[516622.0628488982,5276150.435742255]]]},"properties":{"id_build":1773,"id_source":"w145339594","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.791189366,5276273.4232632015],[516957.47207233595,5276273.322839337],[516957.4681893303,5276274.656504424],[516953.93785759766,5276274.646226828],[516953.791189366,5276273.4232632015]]]},"properties":{"id_build":1774,"id_source":"w145339595","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.66937904124,5276224.891737601],[517044.75329471636,5276225.020678521],[517044.749391785,5276226.354343496],[517038.5149242408,5276226.336101845],[517038.66937904124,5276224.891737601]]]},"properties":{"id_build":1775,"id_source":"w145339599","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516900.52627091476,5276069.438292968],[516899.61623766826,5276069.82464132],[516898.7212277588,5276070.2110334],[516898.0490522239,5276068.875407395],[516899.85409570264,5276068.102666757],[516900.52627091476,5276069.438292968]]]},"properties":{"id_build":1776,"id_source":"w145339602","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.3195140428,5276162.69264126],[517169.5412549084,5276163.915831632],[517167.8729839693,5276164.15542142],[517166.4602347516,5276164.3513089],[517166.2388208139,5276163.016979913],[517169.3195140428,5276162.69264126]]]},"properties":{"id_build":1777,"id_source":"w145339603","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516455.2107974985,5276450.039029884],[516458.7262602135,5276455.2725287145],[516453.45843596366,5276458.814113713],[516449.9432846117,5276453.469479245],[516455.2107974985,5276450.039029884]]]},"properties":{"id_build":1778,"id_source":"w145339604","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.51092869946,5276662.07298891],[516639.44745191,5276664.728730676],[516638.8494425941,5276663.726764408],[516642.9877106292,5276661.182375704],[516643.51092869946,5276662.07298891]]]},"properties":{"id_build":1779,"id_source":"w145339607","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.74391012086,5276360.147089336],[516656.6162716282,5276360.477283288],[516656.02045847,5276358.697344377],[516657.37343432906,5276358.367794786],[516657.54387229437,5276359.179601949],[516657.74391012086,5276360.147089336]]]},"properties":{"id_build":1780,"id_source":"w145339613","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.5745534381,5276548.6361868745],[516774.15730330616,5276546.75137007],[516775.50640072476,5276547.755513597],[516773.99844046624,5276549.751685181],[516772.5745534381,5276548.6361868745]]]},"properties":{"id_build":1781,"id_source":"w145339614","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516518.01120495045,5276421.098210783],[516523.20399110124,5276417.556471117],[516524.9991008325,5276420.228916649],[516519.88142745546,5276423.770867784],[516518.01120495045,5276421.098210783]]]},"properties":{"id_build":1782,"id_source":"w145339615","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.67932282126,5276613.7116255425],[516718.59262317914,5276619.276975154],[516713.77767365845,5276622.041647647],[516710.7898989137,5276616.253807267],[516715.67932282126,5276613.7116255425]]]},"properties":{"id_build":1783,"id_source":"w145339616","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.1407663358,5276440.025125238],[517290.4047937825,5276441.344740081],[517289.8849536665,5276439.342681051],[517294.54581637814,5276438.022842738],[517295.1407663358,5276440.025125238]]]},"properties":{"id_build":1784,"id_source":"w145339617","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516764.13878232747,5276478.482733146],[516758.05480701063,5276478.465223476],[516758.07047716546,5276473.019422547],[516764.078707468,5276473.258993603],[516764.13878232747,5276478.482733146]]]},"properties":{"id_build":1785,"id_source":"w145339622","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.4402878488,5276463.609962823],[516644.30656143103,5276462.523898269],[516645.77447476395,5276474.531181486],[516636.9082191574,5276475.617243785],[516636.14497184986,5276469.346784297],[516635.4402878488,5276463.609962823]]]},"properties":{"id_build":1786,"id_source":"w145339623","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.1822638936,5276318.570663134],[516654.2450872839,5276317.6150415605],[516656.1979585347,5276317.642854069],[516656.210311259,5276318.576462682],[516655.22633272194,5276318.57364874],[516654.1822638936,5276318.570663134]]]},"properties":{"id_build":1787,"id_source":"w145339625","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.7621772565,5276525.929218821],[516450.32913138374,5276529.601254632],[516448.4488667784,5276530.485061333],[516446.80680153647,5276526.81281391],[516448.7621772565,5276525.929218821]]]},"properties":{"id_build":1788,"id_source":"w145339626","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5676782188,5276109.634408768],[517004.1493231504,5276108.19421022],[517005.0481144268,5276109.085951612],[517003.3913539503,5276110.5259306375],[517002.5676782188,5276109.634408768]]]},"properties":{"id_build":1789,"id_source":"w145339627","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516998.95150196913,5276285.702465033],[516998.97815554566,5276284.291068565],[516999.0048415706,5276282.868558227],[517002.0468019247,5276282.921893378],[517001.9934608432,5276285.755800163],[516998.95150196913,5276285.702465033]]]},"properties":{"id_build":1790,"id_source":"w145339629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.31223967264,5276348.113480887],[516763.9131395751,5276348.115210464],[516763.97801528435,5276351.671867386],[516763.2272107492,5276351.55856664],[516763.31223967264,5276348.113480887]]]},"properties":{"id_build":1791,"id_source":"w145339635","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.99117617006,5276302.676582416],[517076.00160331355,5276299.120142069],[517079.0812416151,5276299.129172086],[517079.0299815219,5276301.240676381],[517078.9956995068,5276302.685392169],[517075.99117617006,5276302.676582416]]]},"properties":{"id_build":1792,"id_source":"w145339638","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5039097194,5276348.958776898],[516817.5697154581,5276352.182018177],[516814.75280655245,5276352.2405686295],[516814.686999255,5276349.01732738],[516817.5039097194,5276348.958776898]]]},"properties":{"id_build":1793,"id_source":"w145339649","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.6409891206,5276191.088694231],[516958.45651978045,5276193.193987487],[516957.85754534334,5276192.525405418],[516960.0416910907,5276190.53125068],[516960.6409891206,5276191.088694231]]]},"properties":{"id_build":1794,"id_source":"w145339652","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517248.0033555812,5276276.732189821],[517245.73777672776,5276280.837650939],[517242.4383818015,5276278.938506864],[517244.6285165385,5276274.943960834],[517248.0033555812,5276276.732189821]]]},"properties":{"id_build":1795,"id_source":"w145339657","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516376.13867655554,5276068.718330577],[516379.4431589674,5276068.949901398],[516379.36022958555,5276071.728158342],[516375.9806327038,5276071.496376375],[516376.13867655554,5276068.718330577]]]},"properties":{"id_build":1796,"id_source":"w145339659","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.8876132131,5276686.427216163],[517296.4600710029,5276678.646159892],[517310.43284680997,5276677.798558897],[517310.93580895185,5276685.468700671],[517304.4300557743,5276685.9161524745],[517296.8876132131,5276686.427216163]]]},"properties":{"id_build":1797,"id_source":"w145339663","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.4683326608,5276332.66559459],[516817.592303268,5276336.555841918],[516814.79034516093,5276336.636663497],[516814.7349717848,5276335.002750102],[516814.6663726825,5276332.746416232],[516817.4683326608,5276332.66559459]]]},"properties":{"id_build":1798,"id_source":"w145339666","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517029.4017953378,5276257.750870861],[517029.3926966029,5276260.862755974],[517026.3884766497,5276260.742833107],[517026.4723625422,5276257.742306332],[517027.8093857164,5276257.746215087],[517029.4017953378,5276257.750870861]]]},"properties":{"id_build":1799,"id_source":"w145339668","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.35697633075,5276347.033884055],[516775.4836638599,5276347.0371292],[516775.4399293341,5276349.181999323],[516775.39542655327,5276351.593602511],[516774.3441724461,5276351.479434944],[516774.35697633075,5276347.033884055]]]},"properties":{"id_build":1800,"id_source":"w145339670","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516555.7811183797,5276396.076774314],[516555.08232532116,5276396.1636996595],[516554.89142568427,5276394.618315464],[516555.56768535834,5276394.53132604],[516555.6854949033,5276395.365208532],[516555.7811183797,5276396.076774314]]]},"properties":{"id_build":1801,"id_source":"w145339674","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517006.92690877523,5276263.131046093],[517004.5922222867,5276265.235883598],[517003.8433579193,5276264.455719334],[517006.1029308451,5276262.350662207],[517006.92690877523,5276263.131046093]]]},"properties":{"id_build":1802,"id_source":"w145339687","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.98307237215,5276656.081367511],[516646.0855823886,5276654.745125225],[516647.9588666154,5276653.6724247085],[516649.17011591804,5276652.97570714],[516649.91738840076,5276654.311520414],[516646.98307237215,5276656.081367511]]]},"properties":{"id_build":1803,"id_source":"w145339700","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516651.87771884125,5276336.45756192],[516650.6975608167,5276336.765378934],[516650.3113280208,5276335.241661132],[516651.5066041891,5276334.900545362],[516651.6847456027,5276335.645690531],[516651.87771884125,5276336.45756192]]]},"properties":{"id_build":1804,"id_source":"w145339707","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517151.7167505023,5276069.394577287],[517153.8895529558,5276071.290350546],[517150.72322423966,5276075.170915296],[517148.62553826487,5276073.275364359],[517151.7167505023,5276069.394577287]]]},"properties":{"id_build":1805,"id_source":"w145339722","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.3238100596,5276316.730594808],[516706.3928658032,5276318.84244685],[516704.7403828061,5276318.837707],[516704.6682025747,5276317.815014903],[516704.59589481127,5276316.836778313],[516706.3238100596,5276316.730594808]]]},"properties":{"id_build":1806,"id_source":"w145339726","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.08753126045,5276614.559714278],[516738.0640589347,5276612.9979418125],[516739.7976373813,5276610.891269662],[516741.6708918263,5276612.452610879],[516740.08753126045,5276614.559714278]]]},"properties":{"id_build":1807,"id_source":"w145339741","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.42762873217,5276383.937990368],[516423.92538842635,5276383.933753828],[516424.0117833797,5276379.932969521],[516425.514024717,5276379.937206081],[516425.42762873217,5276383.937990368]]]},"properties":{"id_build":1808,"id_source":"w145339752","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.0264814498,5276091.247111155],[516523.1290756915,5276091.817050961],[516523.97665442387,5276092.252899962],[516523.67461486306,5276092.807741225],[516521.6490109898,5276091.912878175],[516522.0264814498,5276091.247111155]]]},"properties":{"id_build":1809,"id_source":"w145339758","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.9367410138,5276212.5835429765],[517054.4341306908,5276212.690282655],[517054.3775657397,5276206.355154244],[517055.8047379124,5276206.35933333],[517055.9367410138,5276212.5835429765]]]},"properties":{"id_build":1810,"id_source":"w145339765","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.5862104722,5276407.409071394],[517278.1073766196,5276408.966574099],[517273.8230419209,5276409.954123105],[517273.5272099003,5276408.397289109],[517277.5862104722,5276407.409071394]]]},"properties":{"id_build":1811,"id_source":"w145339773","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516979.8083662509,5276238.156630529],[516979.7983220517,5276241.601931813],[516976.34340805945,5276241.480720918],[516976.35312627326,5276238.146558382],[516979.8083662509,5276238.156630529]]]},"properties":{"id_build":1812,"id_source":"w145339774","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517249.6616656492,5276503.017631195],[517247.7458540468,5276503.178666702],[517244.5528349538,5276503.447060609],[517244.41248643957,5276500.112451974],[517249.5209908671,5276499.794161227],[517249.6616656492,5276503.017631195]]]},"properties":{"id_build":1813,"id_source":"w145339797","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.16097781085,5276362.926295954],[516774.2488939568,5276358.48096132],[516775.22567467723,5276358.372634975],[516775.36309467943,5276362.818618641],[516774.16097781085,5276362.926295954]]]},"properties":{"id_build":1814,"id_source":"w145339802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517081.4476094306,5276260.615087243],[517074.01136044535,5276260.593282932],[517073.954166075,5276254.480431307],[517081.6157639796,5276254.502896409],[517081.4476094306,5276260.615087243]]]},"properties":{"id_build":1815,"id_source":"w145339808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.6936799623,5276233.466428232],[516892.2387596583,5276233.345267244],[516892.1729933541,5276230.122025626],[516895.5534463564,5276230.020691175],[516895.6936799623,5276233.466428232]]]},"properties":{"id_build":1816,"id_source":"w145339813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516584.6668397883,5276119.988019352],[516580.56807812303,5276108.52896779],[516583.71818561124,5276110.20503045],[516586.025879991,5276117.546817247],[516584.6668397883,5276119.988019352]]]},"properties":{"id_build":1817,"id_source":"w145339829","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.20775971754,5276268.77679256],[517316.2281522651,5276269.599408794],[517315.4436451674,5276280.822189774],[517300.6486216247,5276280.000244837],[517301.20775971754,5276268.77679256]]]},"properties":{"id_build":1818,"id_source":"w145339831","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8920560095,5276708.757420999],[517294.54228186025,5276717.428257263],[517284.6257508971,5276718.176794087],[517283.9755103804,5276709.505958955],[517288.0097253775,5276709.20674242],[517293.8920560095,5276708.757420999]]]},"properties":{"id_build":1819,"id_source":"w145339838","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.1294314409,5276177.052080336],[517254.44843944017,5276180.282001447],[517252.79229544825,5276181.499632317],[517250.4732870246,5276178.269711856],[517252.1294314409,5276177.052080336]]]},"properties":{"id_build":1820,"id_source":"w145339851","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.58656096697,5276352.21551668],[516605.4131145696,5276352.1067335745],[516605.55700190156,5276354.32993738],[516604.88067341194,5276354.439148764],[516604.7336489059,5276353.316218844],[516604.58656096697,5276352.21551668]]]},"properties":{"id_build":1821,"id_source":"w145339853","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.82626548264,5276303.441372857],[516753.8292387005,5276302.40778235],[516756.38308331254,5276302.415129277],[516756.3050285546,5276303.437389803],[516753.82626548264,5276303.441372857]]]},"properties":{"id_build":1822,"id_source":"w145339856","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.36022958555,5276071.728158342],[516379.4431589674,5276068.949901398],[516381.0954000779,5276069.065687508],[516380.9373538713,5276071.843733178],[516379.36022958555,5276071.728158342]]]},"properties":{"id_build":1823,"id_source":"w145339859","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.9947170736,5276226.185425816],[517024.8487121747,5276224.740182963],[517031.00741734204,5276224.980467838],[517031.00286759174,5276226.536410309],[517024.9947170736,5276226.185425816]]]},"properties":{"id_build":1824,"id_source":"w145339863","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516624.78831008566,5276116.657069926],[516625.90742832026,5276119.327615629],[516623.6514277123,5276120.210293507],[516622.60710689623,5276117.651101341],[516624.78831008566,5276116.657069926]]]},"properties":{"id_build":1825,"id_source":"w145339864","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.9581498849,5276246.103512019],[516710.3196825707,5276246.101680176],[516710.3995155914,5276244.457042118],[516710.99320178357,5276244.358719779],[516710.9581498849,5276246.103512019]]]},"properties":{"id_build":1826,"id_source":"w145339873","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.5243773496,5276252.372020749],[516590.50791520556,5276258.151236141],[516586.7525495835,5276258.029400496],[516586.84380520973,5276252.361537775],[516590.5243773496,5276252.372020749]]]},"properties":{"id_build":1827,"id_source":"w145339874","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.98280703305,5276386.196045883],[516749.9121699192,5276384.63988696],[516756.9726994396,5276384.660197274],[516757.0436544386,5276386.105217509],[516749.98280703305,5276386.196045883]]]},"properties":{"id_build":1828,"id_source":"w145339876","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516598.28452993964,5276086.018082235],[516597.67568554915,5276088.794838018],[516590.4563355466,5276091.663900704],[516587.681798964,5276089.988904057],[516598.28452993964,5276086.018082235]]]},"properties":{"id_build":1829,"id_source":"w145339880","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.2685430519,5276421.722388241],[516773.3156430455,5276421.716763475],[516773.32428533223,5276418.716016289],[516775.35197779915,5276418.832996192],[516775.31029242935,5276420.266578337],[516775.2685430519,5276421.722388241]]]},"properties":{"id_build":1830,"id_source":"w145339881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.2459878492,5276080.870250399],[516740.11829059606,5276081.2004281785],[516739.5979090052,5276079.309558667],[516740.6501712098,5276079.0903036175],[516740.94063186744,5276079.958027667],[516741.2459878492,5276080.870250399]]]},"properties":{"id_build":1831,"id_source":"w145339884","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.2959859256,5276327.663730957],[516764.047433339,5276327.554754161],[516764.1877419052,5276331.0004883995],[516763.43661482143,5276330.998326408],[516763.2959859256,5276327.663730957]]]},"properties":{"id_build":1832,"id_source":"w145339887","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.6320752299,5276443.855497638],[516773.2364437069,5276444.000046967],[516773.1762689579,5276449.245668025],[516761.57191093394,5276449.10111879],[516761.6320752299,5276443.855497638]]]},"properties":{"id_build":1833,"id_source":"w145339891","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516729.3349891194,5276383.358206829],[516726.4807318983,5276383.350008792],[516726.41551461973,5276379.904490946],[516729.3448856046,5276379.912904702],[516729.3349891194,5276383.358206829]]]},"properties":{"id_build":1834,"id_source":"w145339895","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.11668712634,5276072.9937920235],[516434.19525251637,5276071.771477966],[516435.32199313893,5276071.774657182],[516435.32011153834,5276072.441489542],[516434.11668712634,5276072.9937920235]]]},"properties":{"id_build":1835,"id_source":"w145339900","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.599090257,5276185.21413008],[516889.58813274803,5276188.99284733],[516886.3585295837,5276188.872343358],[516886.36916278093,5276185.204764847],[516889.599090257,5276185.21413008]]]},"properties":{"id_build":1836,"id_source":"w145339909","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516459.0488174855,5276527.18081824],[516460.25215079315,5276526.628520728],[516460.7672382854,5276527.7524874965],[516461.2226144267,5276528.742917906],[516460.0192814614,5276529.295215216],[516459.0488174855,5276527.18081824]]]},"properties":{"id_build":1837,"id_source":"w145339912","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516322.697496363,5276616.597929573],[516321.7980571497,5276615.928570478],[516323.3055333292,5276614.043420827],[516324.2046611298,5276614.823918977],[516322.697496363,5276616.597929573]]]},"properties":{"id_build":1838,"id_source":"w145339914","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.5425100012,5276548.510556871],[516769.27675820445,5276546.181616027],[516770.77575638215,5276547.297329815],[516768.8161782405,5276549.625621402],[516767.5425100012,5276548.510556871]]]},"properties":{"id_build":1839,"id_source":"w145339919","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.1315263611,5276346.442013285],[516723.19929908734,5276348.998420724],[516721.77216206136,5276348.994323054],[516721.77950121695,5276346.4381312905],[516723.1315263611,5276346.442013285]]]},"properties":{"id_build":1840,"id_source":"w145339927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516578.14227872144,5276485.7300872905],[516578.7349385473,5276488.6214065505],[516576.3298154476,5276489.170258893],[516575.73715448804,5276486.278939874],[516578.14227872144,5276485.7300872905]]]},"properties":{"id_build":1841,"id_source":"w145339928","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516781.18479896506,5276532.101171507],[516781.2149020738,5276521.654124008],[516786.99839132803,5276521.670791958],[516786.89316773164,5276532.117622949],[516781.18479896506,5276532.101171507]]]},"properties":{"id_build":1842,"id_source":"w145339929","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.08541060647,5276264.870442183],[516800.05734441924,5276264.864591884],[516800.0643971578,5276262.419539233],[516802.2426913836,5276262.4258229155],[516802.08541060647,5276264.870442183]]]},"properties":{"id_build":1843,"id_source":"w145339936","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516930.25240802416,5276257.239535998],[516926.6472751037,5276257.117917872],[516926.5770063238,5276255.45061826],[516930.1818172167,5276255.683375093],[516930.25240802416,5276257.239535998]]]},"properties":{"id_build":1844,"id_source":"w145339937","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516433.8088691983,5276102.222642119],[516432.5322167181,5276102.107900608],[516432.76571607665,5276099.21892934],[516433.8126320877,5276100.888977331],[516433.8088691983,5276102.222642119]]]},"properties":{"id_build":1845,"id_source":"w145339938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.6949573406,5276453.846723315],[517307.17642421374,5276454.27565552],[517305.9886444854,5276454.616659145],[517305.54326160945,5276452.837099425],[517308.17446406465,5276452.066940161],[517308.6949573406,5276453.846723315]]]},"properties":{"id_build":1846,"id_source":"w145339942","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.9624734583,5276352.998769526],[516723.0286505661,5276356.110870862],[516721.9022839126,5276355.996497086],[516721.8354680107,5276353.106673313],[516722.9624734583,5276352.998769526]]]},"properties":{"id_build":1847,"id_source":"w145339945","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516998.4396920588,5276213.993637257],[516996.78750344226,5276213.87767587],[516996.9562187373,5276207.543205762],[516998.383390587,5276207.547370778],[516998.4396920588,5276213.993637257]]]},"properties":{"id_build":1848,"id_source":"w145339948","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516900.5290308987,5276223.811304387],[516900.59898509784,5276225.589742334],[516898.9464755107,5276225.584947446],[516898.9513124408,5276223.9178662095],[516900.5290308987,5276223.811304387]]]},"properties":{"id_build":1849,"id_source":"w145339949","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.2570914447,5276716.676166492],[517302.68198633404,5276708.005552393],[517311.54669648485,5276707.365059155],[517311.85951730557,5276710.777981322],[517312.3471117539,5276716.036344006],[517303.2570914447,5276716.676166492]]]},"properties":{"id_build":1850,"id_source":"w145339953","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.3017242322,5276401.676447153],[517293.52210952475,5276403.344197893],[517290.3647746608,5276404.223941571],[517290.0696066397,5276402.444829184],[517293.3017242322,5276401.676447153]]]},"properties":{"id_build":1851,"id_source":"w145339954","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.83895044867,5276113.267792247],[516989.4159698002,5276111.818825661],[516991.75136024825,5276109.49170499],[516993.17401664477,5276111.051810871],[516990.83895044867,5276113.267792247]]]},"properties":{"id_build":1852,"id_source":"w145339960","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516473.91997456487,5276554.007532949],[516478.7326638324,5276552.020634249],[516479.180492564,5276553.022158738],[516474.3674895732,5276555.120195879],[516473.91997456487,5276554.007532949]]]},"properties":{"id_build":1853,"id_source":"w145339963","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516591.55087812373,5276234.814878971],[516596.88523491344,5276234.385518599],[516597.1023424724,5276237.275768341],[516591.61807709665,5276237.5935618],[516591.55087812373,5276234.814878971]]]},"properties":{"id_build":1854,"id_source":"w145339968","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3291203006,5276479.350491839],[516522.58400322945,5276477.236723719],[516526.3436438832,5276475.802575204],[516527.08875978045,5276477.9163438035],[516523.3291203006,5276479.350491839]]]},"properties":{"id_build":1855,"id_source":"w145339969","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4339716028,5276489.391515131],[516734.5889388699,5276489.289440222],[516734.5867034031,5276490.067411804],[516731.4314172638,5276490.280625509],[516731.4339716028,5276489.391515131]]]},"properties":{"id_build":1856,"id_source":"w145339973","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.3686753498,5276137.719861718],[517221.0826810887,5276134.393694421],[517224.60455288953,5276137.293740729],[517221.81543128873,5276140.6196843],[517227.0308250631,5276144.9028721005],[517224.1218502096,5276148.117320398],[517218.4941124783,5276143.566180893],[517221.3059296345,5276140.1847329885],[517218.3686753498,5276137.719861718]]]},"properties":{"id_build":1857,"id_source":"w145339979","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.2222799789,5276501.201554797],[516778.6446389925,5276501.308149067],[516778.7290351847,5276498.085340308],[516780.30635681783,5276498.089884855],[516780.2222799789,5276501.201554797]]]},"properties":{"id_build":1858,"id_source":"w145339983","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516587.5171980766,5276226.912474267],[516583.61095127114,5276227.012490365],[516583.4664191426,5276225.011565078],[516587.14795809815,5276224.688629619],[516587.5171980766,5276226.912474267]]]},"properties":{"id_build":1859,"id_source":"w145339984","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.9072451642,5276330.367395415],[516774.70544169203,5276330.363933855],[516774.67258220195,5276315.69340019],[516775.9495016069,5276315.697078091],[516775.9431951581,5276317.886511791],[516775.9072451642,5276330.367395415]]]},"properties":{"id_build":1860,"id_source":"w145339986","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.05321620224,5276303.427859214],[516722.05672624183,5276302.205332804],[516724.6853648431,5276302.324020259],[516724.83243143687,5276303.424725417],[516722.05321620224,5276303.427859214]]]},"properties":{"id_build":1861,"id_source":"w145339987","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516991.6556098473,5276168.062036567],[516992.1978955891,5276167.563490024],[516992.8606893995,5276166.95415543],[516993.6843584312,5276167.845676025],[516992.5540694681,5276169.064914876],[516991.6556098473,5276168.062036567]]]},"properties":{"id_build":1862,"id_source":"w145339994","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.56683235563,5276288.736152503],[516983.50144154794,5276285.401770694],[516984.85348100815,5276285.405713412],[516984.76864452,5276288.73965714],[516983.56683235563,5276288.736152503]]]},"properties":{"id_build":1863,"id_source":"w145340007","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516773.72267903294,5276384.708414491],[516772.5170459854,5276386.038618699],[516770.6462866736,5276383.588158045],[516771.14356226317,5276383.056119439],[516771.7764876937,5276382.36887593],[516773.72267903294,5276384.708414491]]]},"properties":{"id_build":1864,"id_source":"w145340021","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.8230419209,5276409.954123105],[517278.1073766196,5276408.966574099],[517277.5862104722,5276407.409071394],[517280.4427648834,5276406.639568106],[517280.2200676866,5276405.7497892985],[517282.1742926363,5276405.311028921],[517282.32253739156,5276405.978307359],[517285.8550990502,5276405.210812761],[517286.3759333175,5276406.879454983],[517290.7353842108,5276405.892138199],[517290.3647746608,5276404.223941571],[517293.52210952475,5276403.344197893],[517293.3017242322,5276401.676447153],[517295.1113385934,5276399.34788586],[517294.2864284072,5276398.900877229],[517296.9255754309,5276395.463382278],[517297.750155814,5276396.02153006],[517298.57935751625,5276395.023735101],[517300.0779640309,5276396.250723786],[517301.5100422443,5276394.587881566],[517300.91641029704,5276392.141043464],[517298.7668835222,5276382.465499843],[517297.7143243979,5276382.795792853],[517297.26992355456,5276380.682817669],[517298.3969349236,5276380.5750252195],[517297.6543963013,5276377.683186233],[517299.2327412356,5276377.354454929],[517298.2684971814,5276373.239420084],[517301.5006320538,5276372.471042597],[517301.27925733593,5276371.136707944],[517303.6844989838,5276370.588154815],[517304.0564277742,5276371.811797121],[517308.94235402066,5276370.603778608],[517313.46572034905,5276390.288960208],[517309.9324852835,5276391.278715618],[517311.41424251226,5276398.173784745],[517299.19759381923,5276414.47502896],[517294.1756740972,5276410.903642084],[517291.84556167206,5276411.452422145],[517292.8799653545,5276417.234760888],[517276.34453094134,5276420.853298491],[517273.8230419209,5276409.954123105]]]},"properties":{"id_build":1865,"id_source":"w145340023","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9984406455,5276239.670006835],[516922.8901305849,5276239.513586845],[516921.4445331818,5276238.097912695],[516921.3745855287,5276236.3194744475],[516918.3703509881,5276236.199607338],[516918.29071739805,5276237.7553316625],[516917.0092615154,5276239.30756512],[516912.7280921852,5276239.183992132],[516912.65523736336,5276238.405802752],[516911.0551497923,5276238.456726477],[516909.50013059477,5276238.507781486],[516909.4230807087,5276239.174395924],[516902.43748826644,5276239.154119204],[516902.551950971,5276225.5954096215],[516904.73025906255,5276225.601731601],[516904.886293561,5276223.601670147],[516937.6350705993,5276224.030233138],[516937.7237591556,5276219.362624146],[516952.8213805269,5276219.517688635],[516953.1079268353,5276224.297529346],[516955.58636827715,5276224.415883651],[516957.38910641416,5276224.42113199],[516973.83876799536,5276224.580187612],[516973.71830930945,5276240.139393686],[516966.05669285497,5276240.117070567],[516965.9844926524,5276239.116603001],[516964.47470327053,5276239.112205241],[516962.90482276503,5276239.107632861],[516962.97734718176,5276239.996961635],[516955.99175557034,5276239.976620678],[516955.94058441615,5276231.752134461],[516953.9879440763,5276231.635310514],[516954.0565877824,5276233.858304164],[516952.8515293902,5276234.966193396],[516948.11935036053,5276234.952421361],[516948.1229077757,5276233.729895107],[516946.6807842538,5276233.70347093],[516945.27621770423,5276233.677156378],[516945.11479224736,5276234.943679209],[516940.2327085595,5276234.818337765],[516939.1092315375,5276233.703673296],[516939.04122858046,5276231.258402337],[516937.4641577736,5276231.142676223],[516937.2142530602,5276239.588565974],[516929.77765462594,5276239.678084633],[516929.7885903656,5276238.500035701],[516928.48918438854,5276238.47403087],[516926.9268797258,5276238.447262269],[516926.9984406455,5276239.670006835]]]},"properties":{"id_build":1866,"id_source":"w145340026","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516954.2088142937,5276258.97631818],[516957.438700953,5276258.985721133],[516957.5057250184,5276261.764408699],[516959.1507130176,5276261.769198354],[516960.8858373497,5276261.774250959],[516960.9020197271,5276256.217313229],[516964.6580273955,5276256.117112622],[516964.7286089882,5276257.67327397],[516977.72294825397,5276257.8222775655],[516984.9888784794,5276264.734123623],[516984.7884149898,5276281.960192844],[516980.3570514915,5276281.836131963],[516980.4337465573,5276283.870212137],[516980.4969094137,5276285.393010226],[516983.50144154794,5276285.401770694],[516983.56683235563,5276288.736152503],[516983.293204752,5276305.295170807],[516983.2067489602,5276309.184808479],[516969.3866052065,5276308.92224619],[516969.53069093387,5276285.249908907],[516972.3098832135,5276285.258007053],[516972.32024698966,5276281.701566773],[516971.04364387254,5276281.586707079],[516970.97824578144,5276278.252325465],[516970.8480970048,5276271.3612847775],[516964.2377866972,5276271.453166949],[516960.93246981147,5276271.554680221],[516960.86091646,5276270.33193516],[516957.4808090943,5276270.322092901],[516957.47207233595,5276273.322839337],[516953.791189366,5276273.4232632015],[516937.1914385768,5276273.26382699],[516933.51120224,5276273.141986153],[516933.44449003175,5276270.2521600835],[516930.13917309424,5276270.353690837],[516930.1356194126,5276271.576217162],[516926.5301723737,5276271.565737842],[516923.52563317324,5276271.55700678],[516914.1847727111,5276280.754467255],[516904.1492584092,5276270.500479856],[516918.6104356445,5276256.983426885],[516926.6472751037,5276257.117917872],[516930.25240802416,5276257.239535998],[516930.3145991196,5276261.685304545],[516931.8243826313,5276261.689693462],[516933.61959785107,5276261.694912635],[516933.47777187184,5276258.804868231],[516937.2331309151,5276258.926927454],[516954.2088142937,5276258.97631818]]]},"properties":{"id_build":1867,"id_source":"w145340028","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516748.3165812212,5276312.616778243],[516748.3973510506,5276310.649838084],[516751.3267568965,5276310.658262813],[516751.3233365985,5276311.847447606],[516751.62155080226,5276312.62628313],[516748.3165812212,5276312.616778243]]]},"properties":{"id_build":1868,"id_source":"w145340039","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.1348096863,5276097.514587056],[517266.34193279874,5276095.739930126],[517269.58542074653,5276091.192818321],[517279.03056131356,5276097.778072674],[517274.50449966855,5276104.210750217],[517270.17945476674,5276101.119354857],[517265.1348096863,5276097.514587056]]]},"properties":{"id_build":1869,"id_source":"w145340040","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517282.5879415028,5276443.099774469],[517283.18322484725,5276444.990916969],[517283.11555875547,5276445.012944113],[517278.29670688824,5276446.4212346375],[517277.7014221085,5276444.530092634],[517282.5879415028,5276443.099774469]]]},"properties":{"id_build":1870,"id_source":"w145340047","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516413.1665898989,5276496.821332804],[516416.15785463195,5276501.497630539],[516409.00920531724,5276506.14535115],[516405.94313986314,5276501.357706669],[516405.9434529456,5276501.246567866],[516413.1665898989,5276496.821332804]]]},"properties":{"id_build":1871,"id_source":"w145340049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.26962416584,5276167.904067435],[516685.0874343887,5276167.898160603],[516685.1227927953,5276171.2880213335],[516683.9510342829,5276171.273550777],[516683.2674262466,5276171.293820569],[516683.26962416584,5276167.904067435]]]},"properties":{"id_build":1872,"id_source":"w145340050","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.74169116555,5276651.754134288],[517281.5887273293,5276653.262134636],[517280.86336554994,5276644.591077878],[517287.99302690936,5276643.989855934],[517297.31645791116,5276643.1951066535],[517297.38331389,5276645.973800211],[517297.74169116555,5276651.754134288]]]},"properties":{"id_build":1873,"id_source":"w145340055","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.7730003394,5276088.1511097625],[517252.0020650358,5276093.252365389],[517247.58010644733,5276089.905078621],[517248.7862383781,5276088.463834247],[517251.57540017384,5276085.137903768],[517255.7730003394,5276088.1511097625]]]},"properties":{"id_build":1874,"id_source":"w145340069","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516812.92877093604,5276099.414766988],[516813.7463813582,5276102.417897791],[516809.4622229198,5276103.294649536],[516809.3896731995,5276102.405322924],[516809.17074095143,5276100.181898022],[516809.02467911213,5276098.736661],[516812.4084146224,5276097.523890856],[516812.92877093604,5276099.414766988]]]},"properties":{"id_build":1875,"id_source":"w145340085","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516729.8442238768,5276310.674312818],[516732.7361051339,5276310.671506441],[516732.73268863297,5276311.860691237],[516732.7682015904,5276312.572087239],[516729.76368378376,5276312.563456083],[516729.8442238768,5276310.674312818]]]},"properties":{"id_build":1876,"id_source":"w145340087","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517013.7858695171,5276100.775992796],[517011.2247951925,5276103.213585201],[517003.9609640123,5276095.523737503],[517010.8143495687,5276089.431066938],[517014.3265361523,5276093.120048583],[517017.92859738466,5276096.89820672],[517013.7858695171,5276100.775992796]]]},"properties":{"id_build":1877,"id_source":"w145340098","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.0825711721,5276098.35610536],[516442.0806887805,5276099.022937746],[516442.07912012294,5276099.5786314085],[516442.0033769783,5276099.800696826],[516441.1019888168,5276099.798152392],[516441.1814965001,5276098.242422183],[516442.0825711721,5276098.35610536]]]},"properties":{"id_build":1878,"id_source":"w145340113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.7558953051,5276197.116372383],[516622.7528502893,5276198.1833043555],[516622.74923433375,5276199.450286076],[516622.07320472837,5276199.448356732],[516621.32206072134,5276199.446213108],[516621.4041527149,5276197.001375026],[516622.7558953051,5276197.116372383]]]},"properties":{"id_build":1879,"id_source":"w145340114","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516989.4338395002,5276182.948273253],[516991.4554499082,5276185.17696425],[516986.4839490272,5276189.941469646],[516979.520652989,5276182.25252747],[516981.72721480264,5276180.302902055],[516984.64173585724,5276177.7107317485],[516989.4338395002,5276182.948273253]]]},"properties":{"id_build":1880,"id_source":"w145340119","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.0753890971,5276411.912529097],[516995.22496380494,5276412.135245032],[517001.2377905388,5276410.8191176625],[517001.60686016694,5276413.0429896135],[516995.59468428924,5276414.136839036],[516995.0753890971,5276411.912529097]]]},"properties":{"id_build":1881,"id_source":"w145340120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3549554954,5276337.869753061],[516524.1063969395,5276337.760745317],[516524.5573879519,5276337.650885211],[516524.62903192913,5276338.873624824],[516523.5771402256,5276338.981780086],[516523.3549554954,5276337.869753061]]]},"properties":{"id_build":1882,"id_source":"w145340129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4731653695,5276345.021155147],[516730.64788536465,5276344.685365282],[516730.5807543637,5276341.906680221],[516732.0830056987,5276341.9109958345],[516731.9989530544,5276345.022665649],[516731.4731653695,5276345.021155147]]]},"properties":{"id_build":1883,"id_source":"w145340130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.6064899209,5276207.850306603],[516951.3462681769,5276210.177661411],[516951.3355939814,5276213.845240047],[516949.98353792785,5276213.841305152],[516949.8514216569,5276207.617098169],[516953.6064899209,5276207.850306603]]]},"properties":{"id_build":1884,"id_source":"w145340134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.97771007544,5276154.373845637],[517178.96044401976,5276153.829892636],[517181.6590108078,5276155.7272274615],[517182.2461604993,5276160.396827017],[517175.7839830609,5276161.15574498],[517174.97771007544,5276154.373845637]]]},"properties":{"id_build":1885,"id_source":"w145340135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.0653775792,5276503.5730968695],[517283.81971345947,5276503.863540947],[517280.97977823886,5276504.110734822],[517280.8345039249,5276502.443207164],[517280.90895487915,5276502.665707625],[517286.9942258277,5276502.239208389],[517287.0653775792,5276503.5730968695]]]},"properties":{"id_build":1886,"id_source":"w145340136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.4585400555,5276082.779420615],[516978.4601598776,5276082.223726995],[516979.73713057814,5276082.227449451],[516979.7309747853,5276084.339085201],[516978.37888865307,5276084.335143787],[516978.4585400555,5276082.779420615]]]},"properties":{"id_build":1887,"id_source":"w145340149","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516423.9007373334,5276286.130786277],[516423.75740559114,5276283.685309836],[516427.5888112573,5276283.473835986],[516427.7315144427,5276286.141590057],[516423.9755372062,5276286.2421368575],[516423.9007373334,5276286.130786277]]]},"properties":{"id_build":1888,"id_source":"w145340153","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.87330216554,5276219.409610847],[516955.6002806121,5276219.636917478],[516955.58636827715,5276224.415883651],[516953.1079268353,5276224.297529346],[516952.8213805269,5276219.517688635],[516953.87330216554,5276219.409610847]]]},"properties":{"id_build":1889,"id_source":"w145340160","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.8882106922,5276642.68990681],[517276.5242070212,5276638.79893405],[517280.80672521406,5276638.367081174],[517282.3843390052,5276638.26062298],[517282.6732300868,5276642.151373209],[517276.8882106922,5276642.68990681]]]},"properties":{"id_build":1890,"id_source":"w145340165","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.2871814142,5276357.468266155],[516731.8880803421,5276357.469992431],[516731.9539333214,5276360.693232677],[516730.30178144167,5276360.577346772],[516730.3104013976,5276357.576599863],[516731.2871814142,5276357.468266155]]]},"properties":{"id_build":1891,"id_source":"w145340172","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516757.0142588361,5276083.027246647],[516757.3115250099,5276084.139498331],[516753.77852066775,5276085.018452144],[516753.62988728215,5276084.462326389],[516753.4809341958,5276084.017339367],[516757.0142588361,5276083.027246647]]]},"properties":{"id_build":1892,"id_source":"w145340179","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.78722865693,5276151.068237939],[516688.01416588476,5276150.5131898895],[516692.4402196184,5276152.526386621],[516691.0037983431,5276155.74532003],[516686.502631579,5276153.731909179],[516687.78722865693,5276151.068237939]]]},"properties":{"id_build":1893,"id_source":"w145340187","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.602525208,5276153.284771935],[516685.22726859554,5276153.172557282],[516686.4367501761,5276150.508670565],[516687.78722865693,5276151.068237939],[516686.502631579,5276153.731909179],[516685.602525208,5276153.284771935]]]},"properties":{"id_build":1894,"id_source":"w145340206","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516891.40163040214,5276470.181553619],[516894.7854905747,5276468.857692302],[516894.7690477847,5276474.525770717],[516868.8996856695,5276485.231335993],[516867.0351146534,5276480.669206731],[516891.40163040214,5276470.181553619]]]},"properties":{"id_build":1895,"id_source":"w145340215","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516582.1441115197,5276082.637920553],[516567.17296965956,5276090.708511004],[516567.09816997516,5276090.59715862],[516564.40854004986,5276085.4770861585],[516579.5299233754,5276077.406916271],[516582.1441115197,5276082.637920553]]]},"properties":{"id_build":1896,"id_source":"w145340229","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517116.2351705334,5276129.527912303],[517116.2345173363,5276129.750189761],[517113.0022730373,5276130.518670037],[517111.6678291365,5276124.513206233],[517114.9000765821,5276123.744725217],[517116.2351705334,5276129.527912303]]]},"properties":{"id_build":1897,"id_source":"w145340241","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.07978186005,5276401.674494142],[516528.8802568849,5276402.457581467],[516527.9738691112,5276404.233244021],[516526.99804703833,5276404.008195455],[516526.2478755474,5276403.672647679],[516526.6486801279,5276402.717983781],[516527.07978186005,5276401.674494142]]]},"properties":{"id_build":1898,"id_source":"w145340243","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517061.40960443753,5276139.247374948],[517062.7314690056,5276139.306817014],[517064.5640191481,5276139.401097467],[517064.18202875915,5276141.589430156],[517062.0778275653,5276141.9166848585],[517060.50529232546,5276140.244983237],[517061.40960443753,5276139.247374948]]]},"properties":{"id_build":1899,"id_source":"w145340250","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517243.1927025778,5276633.032017121],[517243.62788869074,5276638.256875921],[517228.37752233335,5276639.323137448],[517227.80295472697,5276630.430254459],[517232.17554012645,5276630.020860213],[517242.90411369555,5276629.030130154],[517243.1927025778,5276633.032017121]]]},"properties":{"id_build":1900,"id_source":"w145340268","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.93384484365,5276174.652147025],[516683.9510342829,5276171.273550777],[516685.1227927953,5276171.2880213335],[516685.77629125695,5276171.289893432],[516690.2831772004,5276171.302806448],[516690.273495558,5276174.681424213],[516683.93384484365,5276174.652147025]]]},"properties":{"id_build":1901,"id_source":"w145340273","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.34793885244,5276367.849543001],[516708.573275547,5276367.850189461],[516710.97718584357,5276367.745946795],[516710.9746347262,5276368.635057004],[516708.3457069767,5276368.627514434],[516708.34793885244,5276367.849543001]]]},"properties":{"id_build":1902,"id_source":"w145340279","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516696.57362740434,5276204.218174295],[516694.17665807845,5276201.877370596],[516699.07311262505,5276197.001262104],[516699.44741018844,5276197.446893902],[516701.31953451777,5276199.452775766],[516696.57362740434,5276204.218174295]]]},"properties":{"id_build":1903,"id_source":"w145340283","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.5944334747,5276144.956409338],[517297.1189968445,5276145.69963347],[517296.53787112463,5276146.620367324],[517293.4419200097,5276144.488405841],[517289.4164521179,5276141.709076454],[517289.2662217863,5276141.708630512],[517290.47334323166,5276139.933978463],[517297.5944334747,5276144.956409338]]]},"properties":{"id_build":1904,"id_source":"w145340289","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.3367883923,5276090.071752278],[516381.7123674114,5276090.072808587],[516381.5549465512,5276092.628576871],[516380.12805945316,5276092.513424331],[516380.13493553037,5276090.068372255],[516381.3367883923,5276090.071752278]]]},"properties":{"id_build":1905,"id_source":"w145340294","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516404.51353591715,5276502.242797072],[516410.2719903253,5276511.150195136],[516405.0793563652,5276514.692035665],[516404.5529579529,5276514.912832251],[516398.49436977325,5276505.893455016],[516404.51353591715,5276502.242797072]]]},"properties":{"id_build":1906,"id_source":"w145340295","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.92335913266,5276328.514374193],[516747.52198853117,5276327.729490667],[516749.1882124525,5276322.955275623],[516754.0654298941,5276324.747538632],[516752.1741839583,5276329.409965378],[516749.92335913266,5276328.514374193]]]},"properties":{"id_build":1907,"id_source":"w145340297","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516693.5826849343,5276356.693233713],[516693.749383969,5276361.4282622235],[516690.4895732481,5276361.3966915095],[516690.5027590644,5276356.795546235],[516693.5826849343,5276356.693233713]]]},"properties":{"id_build":1908,"id_source":"w145340302","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.92335913266,5276328.514374193],[516752.1741839583,5276329.409965378],[516754.72545896407,5276330.306421763],[516751.1689496699,5276339.409646108],[516746.4426080367,5276337.395539865],[516749.92335913266,5276328.514374193]]]},"properties":{"id_build":1909,"id_source":"w145340304","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516972.5909987635,5276188.789571483],[516975.023741673,5276186.551639461],[516977.41128810385,5276184.358032586],[516984.44969888194,5276192.04719131],[516979.5549440142,5276196.2562279655],[516977.3086374184,5276193.804606725],[516972.5909987635,5276188.789571483]]]},"properties":{"id_build":1910,"id_source":"w145340309","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516607.2630372961,5276361.892300015],[516607.1816497041,5276361.458623195],[516607.11503103614,5276361.113900226],[516608.1669203756,5276361.005760055],[516608.2394972642,5276361.895084454],[516607.26240347716,5276362.114577568],[516607.2630372961,5276361.892300015]]]},"properties":{"id_build":1911,"id_source":"w145340324","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.8643134391,5276333.893210595],[516687.78442411334,5276335.560076935],[516686.2821711685,5276335.555772751],[516686.287265812,5276333.777552421],[516687.8646318855,5276333.782071824],[516687.8643134391,5276333.893210595]]]},"properties":{"id_build":1912,"id_source":"w145340326","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516445.7912196681,5276647.063104779],[516443.15771078237,5276648.722764026],[516443.0829159876,5276648.611413126],[516437.8482142841,5276640.483436051],[516440.6322565662,5276638.71305967],[516445.7912196681,5276647.063104779]]]},"properties":{"id_build":1913,"id_source":"w145340333","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.64095088927,5276338.90895429],[516732.0168332051,5276338.798894454],[516732.0830056987,5276341.9109958345],[516730.5807543637,5276341.906680221],[516730.4391492019,5276338.905501861],[516731.64095088927,5276338.90895429]]]},"properties":{"id_build":1914,"id_source":"w145340339","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516618.53180815093,5276150.64794562],[516618.60470344505,5276151.426131117],[516617.10224450956,5276151.477414261],[516615.82513065706,5276151.529340641],[516615.7525520465,5276150.640016443],[516618.45732732693,5276150.425453824],[516618.53180815093,5276150.64794562]]]},"properties":{"id_build":1915,"id_source":"w145340355","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.28058505175,5276627.536977323],[516691.30831061304,5276626.089374006],[516690.26124529104,5276624.53041678],[516690.6377454764,5276624.198076627],[516691.1647820996,5276623.755028219],[516693.3343394492,5276626.762019669],[516692.28058505175,5276627.536977323]]]},"properties":{"id_build":1916,"id_source":"w145340369","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516589.37717530894,5276101.3299749],[516587.4276495766,5276100.101886688],[516587.2026190347,5276099.990106209],[516584.2027383982,5276098.31446945],[516585.25973813154,5276096.428105398],[516583.3102098885,5276095.200018573],[516586.5566442332,5276089.430001715],[516587.681798964,5276089.988904057],[516590.4563355466,5276091.663900704],[516597.67568554915,5276088.794838018],[516598.28452993964,5276086.018082235],[516598.5887939902,5276084.68527374],[516605.2065956495,5276082.036785389],[516606.92253727745,5276086.15384392],[516607.7497624259,5276085.82278365],[516609.8381108678,5276091.052301263],[516607.05565754377,5276092.155763589],[516605.02943242167,5276091.483148973],[516603.88938914327,5276096.147763543],[516603.8884386868,5276096.481179734],[516603.3629453992,5276096.368542121],[516600.43691623467,5276095.137666045],[516597.95492958475,5276096.241989062],[516598.7755016371,5276098.244840841],[516594.8650519137,5276099.789653063],[516594.0438454785,5276098.009079294],[516591.7130424231,5276098.7804167885],[516590.86753621395,5276100.256165466],[516590.0522666272,5276101.665316617],[516589.37717530894,5276101.3299749]]]},"properties":{"id_build":1917,"id_source":"w145340372","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.6990603037,5276318.106877908],[516764.2996433993,5276318.219746285],[516764.15837483003,5276315.107428415],[516763.557471524,5276315.105698821],[516763.55971073743,5276314.327727456],[516764.2357270479,5276314.329673253],[516764.32203653856,5276310.440032653],[516766.0499548666,5276310.333866862],[516766.066911403,5276304.443512319],[516767.7948315431,5276304.337347046],[516768.2471097364,5276303.782950739],[516768.622995018,5276303.672893265],[516769.37188564526,5276304.453027267],[516775.4557226575,5276304.581687093],[516775.6656961372,5276309.916996853],[516776.942296667,5276310.031813734],[516776.939735526,5276310.920923857],[516777.5409594219,5276310.811516065],[516777.5332757224,5276313.478846442],[516776.93045138684,5276314.143948064],[516776.85117662314,5276315.588535656],[516775.9495016069,5276315.697078091],[516774.67258220195,5276315.69340019],[516774.70544169203,5276330.363933855],[516775.9072451642,5276330.367395415],[516776.5829394791,5276330.480481418],[516776.65453066165,5276331.703224242],[516777.40213596914,5276332.9279144],[516777.4714858602,5276334.928628626],[516776.7181182932,5276335.704436307],[516776.49278034765,5276335.703787214],[516776.5637312007,5276337.148807586],[516775.66237964673,5276337.146211291],[516774.53569020407,5276337.142966115],[516774.4484138466,5276341.366023054],[516765.7356750666,5276341.229795739],[516765.7334355444,5276342.007767135],[516764.1557517447,5276342.114365408],[516764.0096853021,5276340.6691289805],[516763.25855946384,5276340.666967007],[516763.26047877286,5276340.000134384],[516764.0867172879,5276340.002512559],[516764.0212016595,5276336.668133246],[516763.3455078276,5276336.555048697],[516763.3477470282,5276335.777077305],[516763.9483283066,5276335.889945653],[516764.03623689426,5276331.444611073],[516763.4353352731,5276331.442881487],[516763.43661482143,5276330.998326408],[516764.1877419052,5276331.0004883995],[516764.047433339,5276327.554754161],[516763.2959859256,5276327.663730957],[516763.29854499677,5276326.774620808],[516764.12510529003,5276326.665860219],[516764.1462186595,5276319.33070155],[516763.6952216137,5276319.440543113],[516763.6990603037,5276318.106877908]]]},"properties":{"id_build":1918,"id_source":"w145340383","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.5287825823,5276258.6596976705],[517119.54896461684,5276259.459962929],[517119.5616352829,5276260.260206107],[517116.4291682031,5276260.328797342],[517116.3540545731,5276260.328576597],[517110.59992598876,5276260.456150854],[517110.5800692339,5276259.544746875],[517110.5599512653,5276258.722253901],[517105.84245490126,5276258.83065043],[517105.5269449322,5276258.840837764],[517105.5596709144,5276260.485801613],[517097.36415416386,5276260.672903061],[517097.4106327723,5276262.751352106],[517094.3007014358,5276262.820021387],[517094.44703192986,5276269.266554164],[517093.38032216474,5276269.296765335],[517093.5186854602,5276275.898870366],[517093.72903568053,5276275.888373753],[517093.8144185443,5276280.067477592],[517090.1410809719,5276280.15672345],[517090.2407389143,5276284.591490481],[517102.6578513906,5276284.327862457],[517102.5853110656,5276280.893432232],[517100.72984778613,5276280.943553906],[517100.6765771185,5276278.6205774555],[517100.63078511204,5276276.308736943],[517100.9613168107,5276276.298593455],[517100.80882032344,5276269.396369477],[517099.84726946254,5276269.4268882265],[517099.8413243492,5276268.893400149],[517098.39153553406,5276268.922485707],[517098.37824207183,5276268.333406205],[517099.89563320804,5276268.304519119],[517106.03286539036,5276268.166945534],[517105.9863572737,5276266.099610271],[517107.87183811486,5276266.0606923895],[517110.34327002993,5276266.001268536],[517110.38941744785,5276268.190856464],[517116.9247844338,5276268.043350028],[517116.87818219565,5276266.0093562985],[517119.09419548017,5276265.960299484],[517121.2350952455,5276265.911022707],[517121.28169596446,5276267.94501648],[517127.65932514274,5276267.797058391],[517127.61942093424,5276266.04093354],[517129.72276397963,5276265.991549437],[517131.93877740443,5276265.942497513],[517131.9847205577,5276268.198768888],[517138.87312181346,5276268.052325533],[517138.86652618414,5276267.741114915],[517140.7895635389,5276267.702318208],[517143.31354193174,5276267.6541769635],[517143.3669920102,5276269.910470553],[517146.76238433504,5276269.831553913],[517146.6040010445,5276262.395840545],[517143.68185280694,5276262.465036295],[517143.6418225226,5276260.753366837],[517138.8191679673,5276260.861427125],[517138.8127358465,5276260.494647133],[517132.26984834264,5276260.64210694],[517132.22325138265,5276258.608113093],[517127.23534527945,5276258.715696891],[517127.2750862642,5276260.527391098],[517121.71625300904,5276260.655528674],[517121.6696850367,5276258.610421046],[517119.5287825823,5276258.6596976705]]]},"properties":{"id_build":1919,"id_source":"w145340387","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516737.28923768434,5276568.984380702],[516728.8021678025,5276568.848855382],[516728.8238767993,5276561.291416276],[516731.03948633175,5276561.342236997],[516734.1563487923,5276561.41787614],[516734.0837938576,5276560.528549838],[516737.3138324016,5276560.42669231],[516737.28923768434,5276568.984380702]]]},"properties":{"id_build":1920,"id_source":"w145340394","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.4609051296,5276170.539146926],[516656.5151910728,5276167.316252298],[516656.5693817131,5276164.126699312],[516656.64272719366,5276159.49238568],[516662.9746603319,5276159.5994087495],[516662.79285805457,5276170.635055953],[516659.73578214174,5276170.592969052],[516656.4609051296,5276170.539146926]]]},"properties":{"id_build":1921,"id_source":"w145340401","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.3148455045,5276546.247690347],[516646.42158587504,5276542.450507434],[516651.1289310974,5276553.689076037],[516640.23997561546,5276558.225795059],[516638.5017615793,5276554.075317246],[516640.27651291183,5276553.324637939],[516639.0903319225,5276550.498299969],[516637.3148455045,5276546.247690347]]]},"properties":{"id_build":1922,"id_source":"w145340409","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516989.3905898614,5276146.2720515635],[516986.9577274637,5276148.543319115],[516984.64537511393,5276150.70379942],[516983.61915087374,5276149.722777767],[516978.16778319434,5276143.872051493],[516977.60594231787,5276143.348057285],[516982.35148166993,5276138.80516501],[516989.3905898614,5276146.2720515635]]]},"properties":{"id_build":1923,"id_source":"w145340410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.2304757219,5276104.453664931],[517022.7714930366,5276110.471398941],[517021.60418129235,5276111.501586479],[517020.5121803587,5276112.465310521],[517021.33520338085,5276113.579112401],[517019.07621713716,5276115.4618858155],[517012.7866420573,5276108.552851367],[517017.2304757219,5276104.453664931]]]},"properties":{"id_build":1924,"id_source":"w145340420","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.10789369897,5276229.618760244],[517180.6144075908,5276229.743191536],[517180.68525971565,5276231.188216824],[517185.6424563575,5276231.313981463],[517185.47255250544,5276237.98186308],[517176.1587540177,5276237.843249116],[517176.10789369897,5276229.618760244]]]},"properties":{"id_build":1925,"id_source":"w145340422","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.22741933283,5276585.004929495],[517241.15734584,5276584.791323317],[517241.08684278186,5276583.235157635],[517250.92815868335,5276582.597462598],[517251.4315376739,5276590.15645906],[517244.0617935659,5276590.645875364],[517238.5852016031,5276591.007536846],[517238.22741933283,5276585.004929495]]]},"properties":{"id_build":1926,"id_source":"w145340425","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.3783753412,5276156.468280295],[517242.20892421016,5276153.461085539],[517250.0380015535,5276147.705002463],[517252.76106359,5276151.469589962],[517256.3967712376,5276156.503875327],[517249.62259938294,5276161.151676908],[517245.5074034312,5276155.693645137],[517244.3783753412,5276156.468280295]]]},"properties":{"id_build":1927,"id_source":"w145340431","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.7946397715,5276171.213987815],[516670.9564024517,5276171.15854472],[516671.0134957539,5276166.957629282],[516673.7776575393,5276166.987769591],[516673.75840305723,5276168.465871847],[516674.8324810868,5276168.491174663],[516674.7946397715,5276171.213987815]]]},"properties":{"id_build":1928,"id_source":"w145340432","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517009.42587351566,5276153.33232682],[517015.26666230743,5276159.573209172],[517010.37055960734,5276164.226774787],[517003.40661502886,5276156.760081832],[517005.4405597949,5276154.765505598],[517006.86385041283,5276156.103337493],[517007.7907178029,5276155.094672805],[517009.42587351566,5276153.33232682]]]},"properties":{"id_build":1929,"id_source":"w145340433","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516449.02716880164,5276644.849449745],[516449.9243914492,5276646.296800355],[516446.61396191345,5276648.287965118],[516440.6322565662,5276638.71305967],[516452.746741257,5276630.967492996],[516457.98111680715,5276639.2066221945],[516451.75096850976,5276643.13447836],[516449.02716880164,5276644.849449745]]]},"properties":{"id_build":1930,"id_source":"w145340437","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516902.00847877923,5276179.915423455],[516902.08520602505,5276179.359947726],[516904.26385396696,5276179.255130748],[516904.33735583565,5276179.811042461],[516904.2580479067,5276181.255628094],[516902.07972323184,5276181.249306332],[516902.00847877923,5276179.915423455]]]},"properties":{"id_build":1931,"id_source":"w145340443","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.4484841748,5276239.444541673],[517036.4449082128,5276240.667067926],[517034.74733448087,5276240.662102672],[517033.36523905344,5276240.658060529],[517033.3684893389,5276239.546673024],[517033.22118677676,5276238.545984924],[517036.45108487236,5276238.555431668],[517036.4484841748,5276239.444541673]]]},"properties":{"id_build":1932,"id_source":"w145340448","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516469.43851244403,5276598.228459754],[516468.390754303,5276596.891820274],[516466.1255344864,5276598.452484897],[516462.44549766544,5276600.987180204],[516457.0596187109,5276593.192178321],[516465.71541564056,5276586.7705422],[516472.5242790568,5276596.014393047],[516469.43851244403,5276598.228459754]]]},"properties":{"id_build":1933,"id_source":"w145340450","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.11479224736,5276234.943679209],[516945.27621770423,5276233.677156378],[516946.6807842538,5276233.70347093],[516948.1229077757,5276233.729895107],[516948.11935036053,5276234.952421361],[516947.4433247865,5276234.950454241],[516945.41557140806,5276234.833414604],[516945.11479224736,5276234.943679209]]]},"properties":{"id_build":1934,"id_source":"w145340453","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516621.9299621588,5276591.77104321],[516622.3780804312,5276592.661440021],[516618.6929660211,5276594.318018653],[516614.43995465164,5276584.414448492],[516625.570111478,5276579.556064796],[516629.52584367,5276588.347396985],[516625.59251457104,5276590.125516184],[516621.9299621588,5276591.77104321]]]},"properties":{"id_build":1935,"id_source":"w145340467","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516370.72102513135,5276633.181406043],[516369.6732507774,5276631.844784289],[516367.4748256748,5276633.705752115],[516361.69266892783,5276638.601878852],[516356.07699429436,5276632.362280622],[516366.7686823321,5276623.056583985],[516373.582346478,5276630.6332370285],[516370.72102513135,5276633.181406043]]]},"properties":{"id_build":1936,"id_source":"w145340468","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516322.8110251639,5276683.282069103],[516320.5110425571,5276689.232711249],[516318.04464360344,5276695.605218914],[516308.6670381053,5276691.689059537],[516314.5678098391,5276676.590587439],[516325.44697643135,5276680.73324478],[516324.1614141939,5276683.841552836],[516322.8110251639,5276683.282069103]]]},"properties":{"id_build":1937,"id_source":"w145340470","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516647.0248967697,5276441.748543914],[516648.44207499037,5276453.111072135],[516636.6228082623,5276454.577683124],[516635.46256034327,5276445.294204096],[516638.53572096926,5276444.913994131],[516641.0378460404,5276444.598837925],[516640.77338390547,5276442.51976993],[516647.0248967697,5276441.748543914]]]},"properties":{"id_build":1938,"id_source":"w145340476","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.38060234755,5276529.060900982],[516411.26403018396,5276532.269531371],[516409.0207477234,5276528.706740211],[516408.79635669896,5276528.372688906],[516412.55875493673,5276525.938217702],[516413.83813393896,5276525.052705867],[516416.38060234755,5276529.060900982]]]},"properties":{"id_build":1939,"id_source":"w145340479","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517085.797206348,5276339.826007755],[517085.7048137286,5276345.716142109],[517079.6958114312,5276345.69851712],[517079.6334098588,5276341.363884887],[517080.9857623297,5276341.256711185],[517081.0651122526,5276339.812127493],[517085.797206348,5276339.826007755]]]},"properties":{"id_build":1940,"id_source":"w145340489","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517192.86877385166,5276302.464730587],[517187.97884610214,5276302.4725256525],[517176.86952180817,5276302.473093067],[517164.1752787014,5276302.480124605],[517160.8702700485,5276302.4814995015],[517160.89744987444,5276293.256982466],[517166.75628006837,5276293.2742483085],[517166.75922828045,5276292.273999484],[517193.04885542335,5276292.351546981],[517192.86877385166,5276302.464730587]]]},"properties":{"id_build":1941,"id_source":"w145340490","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.6411216746,5276083.422964819],[516847.14434509614,5276086.399153117],[516845.2061180089,5276081.281123165],[516848.81521911523,5276080.069025887],[516848.5179701768,5276078.956769501],[516853.4053313475,5276077.303814135],[516855.6411216746,5276083.422964819]]]},"properties":{"id_build":1942,"id_source":"w145340493","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517165.4230368867,5276082.993995874],[517157.2563537128,5276075.8569940375],[517162.98514710827,5276069.094351078],[517166.3565277291,5276072.105057747],[517165.2258565024,5276073.435401758],[517167.2338236632,5276075.186212679],[517169.94604533445,5276077.561482526],[517165.4230368867,5276082.993995874]]]},"properties":{"id_build":1943,"id_source":"w145340496","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516599.9990412304,5276644.055299111],[516595.9727778566,5276646.833430877],[516593.7526714116,5276648.371946675],[516594.6501743543,5276649.7081808485],[516591.9405653751,5276651.70097537],[516585.73219303205,5276642.68097242],[516594.9128709823,5276636.594441548],[516599.9990412304,5276644.055299111]]]},"properties":{"id_build":1944,"id_source":"w145340497","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516544.49005647266,5276565.877255409],[516544.9372413556,5276567.101062633],[516541.3281897649,5276568.424487083],[516537.90218211926,5276558.189903903],[516548.4279717261,5276554.552193621],[516551.5573147579,5276563.452263346],[516546.96359619836,5276565.028507214],[516544.49005647266,5276565.877255409]]]},"properties":{"id_build":1945,"id_source":"w145340504","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516893.52116676624,5276179.668520778],[516893.5227785363,5276179.11282707],[516894.7095903427,5276179.116269494],[516896.0015626882,5276179.120017219],[516896.0744205412,5276179.8982063085],[516895.92064482084,5276181.120296669],[516893.36674687365,5276181.112888685],[516893.52116676624,5276179.668520778]]]},"properties":{"id_build":1946,"id_source":"w145340519","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.621782191,5276118.423359291],[517009.8396076474,5276114.545786709],[517016.42899196286,5276121.677973303],[517014.0948950421,5276123.560529213],[517012.9714104429,5276122.445850707],[517011.81919082504,5276123.453856356],[517010.9381010668,5276124.218146787],[517005.621782191,5276118.423359291]]]},"properties":{"id_build":1947,"id_source":"w145340522","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.784861146,5276360.907147859],[516674.3981628508,5276364.795929754],[516676.0503145649,5276364.911799802],[516676.04745055793,5276365.912048787],[516670.9394990607,5276366.008565147],[516669.97290106723,5276362.560468145],[516674.784861146,5276360.907147859]]]},"properties":{"id_build":1948,"id_source":"w145340523","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.7767123757,5276627.988929125],[516383.1246074021,5276629.437537065],[516380.564654364,5276631.653129974],[516372.7773966973,5276623.073474082],[516383.24348870275,5276613.878313064],[516389.68284872785,5276621.009373074],[516384.954217694,5276625.186033792],[516381.7767123757,5276627.988929125]]]},"properties":{"id_build":1949,"id_source":"w145340524","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516639.94080895506,5276623.497299625],[516640.98788788903,5276625.056247772],[516637.7518542983,5276627.26979626],[516632.2936640596,5276618.585306245],[516643.8075746186,5276610.838420515],[516648.4443221011,5276617.853476952],[516641.70172446046,5276622.324250274],[516639.94080895506,5276623.497299625]]]},"properties":{"id_build":1950,"id_source":"w145340527","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.81973907386,5276440.717592876],[516578.417149331,5276441.9418300325],[516574.80611490225,5276443.932066418],[516569.3523999701,5276433.580556692],[516579.808701351,5276428.053330167],[516584.51540411345,5276436.957906413],[516580.27983321535,5276439.335349909],[516577.81973907386,5276440.717592876]]]},"properties":{"id_build":1951,"id_source":"w145340528","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.9169899081,5276508.031454986],[516605.63048986107,5276507.6918074],[516606.77812675084,5276513.507686415],[516595.90351498465,5276515.63279754],[516593.6527143329,5276504.2012223415],[516602.8138767127,5276502.40464103],[516603.45057488646,5276505.651735554],[516603.9169899081,5276508.031454986]]]},"properties":{"id_build":1952,"id_source":"w145340530","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.66246391216,5276557.847549606],[516582.25089449476,5276559.583004556],[516578.94290138874,5276560.684983556],[516575.1740434486,5276549.538056626],[516588.6316921884,5276545.019646379],[516591.8120678301,5276554.4422399],[516585.03061028343,5276556.723515508],[516581.66246391216,5276557.847549606]]]},"properties":{"id_build":1953,"id_source":"w145340532","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516586.808469918,5276467.850157522],[516596.30816161464,5276465.887820409],[516597.18243530806,5276470.113620383],[516597.85672740196,5276473.349707263],[516599.45757087204,5276473.009736765],[516600.1318613543,5276476.245823928],[516589.0238959238,5276478.525878567],[516586.808469918,5276467.850157522]]]},"properties":{"id_build":1954,"id_source":"w145340537","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517072.11273681733,5276201.050178222],[517073.1343577337,5276201.030944892],[517073.152363656,5276202.575839484],[517073.16364001244,5276203.853979074],[517071.8115815715,5276203.850015905],[517071.0604379927,5276203.847814279],[517071.0685815919,5276201.069345686],[517072.11273681733,5276201.050178222]]]},"properties":{"id_build":1955,"id_source":"w145340538","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516902.26417144487,5276143.573492026],[516904.2977633999,5276141.690019322],[516904.3744913377,5276141.134543652],[516906.1018174619,5276141.250696784],[516906.08955903805,5276145.473968713],[516904.21297161677,5276145.023963365],[516902.26417144487,5276143.573492026]]]},"properties":{"id_build":1956,"id_source":"w145340543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.18131284905,5276702.787586663],[516462.38429603167,5276702.346428362],[516465.5919392864,5276710.13527778],[516461.6065129049,5276711.791106389],[516459.965136244,5276707.89657639],[516462.89748382807,5276706.793468139],[516461.18131284905,5276702.787586663]]]},"properties":{"id_build":1957,"id_source":"w145340545","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.35219286405,5276371.319063318],[517250.2082228702,5276369.206981718],[517250.0616193538,5276367.984010293],[517250.66482164396,5276367.2078187],[517254.0392759008,5276369.10719035],[517251.92658622627,5276372.32398446],[517250.35219286405,5276371.319063318]]]},"properties":{"id_build":1958,"id_source":"w145340546","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.767048109,5276496.827697093],[516643.8213333498,5276495.642143292],[516645.24028268276,5276506.382294427],[516634.59303786984,5276507.7855751775],[516634.1666031033,5276504.561305642],[516635.7595481711,5276504.354690229],[516635.164042102,5276499.840717091],[516634.767048109,5276496.827697093]]]},"properties":{"id_build":1959,"id_source":"w145340550","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516511.90918057266,5276639.3592777075],[516514.9989104654,5276643.6913741],[516516.9216065666,5276646.375294232],[516518.05075795477,5276645.489379101],[516520.0704942264,5276648.38474101],[516510.58821910666,5276654.915093283],[516503.48031075724,5276645.225790053],[516511.90918057266,5276639.3592777075]]]},"properties":{"id_build":1960,"id_source":"w145340552","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516495.5454952477,5276582.742790266],[516496.21612850693,5276584.634064899],[516493.1338091251,5276585.625592071],[516489.10936832166,5276574.500225283],[516499.4097687763,5276570.861788465],[516502.83867076685,5276580.096099726],[516498.0341999059,5276581.838494438],[516495.5454952477,5276582.742790266]]]},"properties":{"id_build":1961,"id_source":"w145340556","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.23779169226,5276074.14962475],[516483.46037286695,5276073.144337894],[516484.21530751756,5276071.812798982],[516484.95028090815,5276072.226095653],[516486.8979953117,5276068.797394286],[516487.9479845124,5276069.378292434],[516485.8265905757,5276073.128806765],[516485.23779169226,5276074.14962475]]]},"properties":{"id_build":1962,"id_source":"w145340559","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516888.3047688973,5276217.107465006],[516888.3756937034,5276218.552486533],[516887.1719336831,5276219.215834311],[516888.2212760396,5276219.996854659],[516888.29381211754,5276220.88618245],[516886.19126084563,5276220.657806898],[516886.20221626206,5276216.879089453],[516886.2157494133,5276212.211262058],[516887.8682627871,5276212.216053325],[516887.1106756437,5276214.436650365],[516888.30960277066,5276215.440383791],[516888.3047688973,5276217.107465006]]]},"properties":{"id_build":1963,"id_source":"w145340565","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516504.7908608275,5276633.33755434],[516505.76948024565,5276632.562349935],[516507.5645308836,5276635.234791133],[516499.28650669503,5276640.879457674],[516492.47931235534,5276631.079880542],[516499.5537120139,5276626.098632408],[516502.9653553656,5276630.809509339],[516504.7908608275,5276633.33755434]]]},"properties":{"id_build":1964,"id_source":"w145340566","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.0620686216,5276530.281592197],[516644.6752617223,5276527.99735327],[516647.25102258334,5276538.696355962],[516636.05191398197,5276541.365049068],[516635.29480800836,5276538.206518514],[516636.87319815846,5276537.833152296],[516636.2125923293,5276535.07500028],[516635.0620686216,5276530.281592197]]]},"properties":{"id_build":1965,"id_source":"w145340568","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.1568574699,5276119.858054962],[516770.4361549446,5276114.829588012],[516772.44381893915,5276114.112961226],[516771.92971430375,5276112.655551376],[516773.06511089916,5276112.258718143],[516775.315226616,5276118.644614377],[516772.1568574699,5276119.858054962]]]},"properties":{"id_build":1966,"id_source":"w145340574","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.9445336778,5276653.68460539],[516545.7721501352,5276651.280656264],[516543.58422422805,5276646.784395544],[516552.53447092505,5276642.47537906],[516557.61247429444,5276652.825809069],[516546.7820009719,5276658.018592858],[516545.0639784064,5276654.679519835],[516546.9445336778,5276653.68460539]]]},"properties":{"id_build":1967,"id_source":"w145340577","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516378.4251916238,5276511.060544665],[516391.6696423066,5276502.206632659],[516395.33409937896,5276507.885071622],[516395.7077741339,5276508.552961716],[516382.3888465947,5276517.184375714],[516382.08934329805,5276516.850114159],[516378.4251916238,5276511.060544665]]]},"properties":{"id_build":1968,"id_source":"w145340578","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.90423365426,5276706.872470948],[516428.75231116137,5276709.76449622],[516417.96540999564,5276712.901556956],[516414.67716130393,5276701.711631405],[516424.0057958772,5276698.992782522],[516425.4490659283,5276703.898114885],[516426.4459500797,5276707.29068827],[516427.90423365426,5276706.872470948]]]},"properties":{"id_build":1969,"id_source":"w145340580","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516398.63051615073,5276617.589230991],[516399.45358546363,5276618.7029457595],[516396.89424733387,5276620.6962538315],[516389.93319861655,5276612.1189014185],[516401.0756331288,5276602.814536187],[516407.28840398724,5276610.389536268],[516402.41738884454,5276614.443528021],[516398.63051615073,5276617.589230991]]]},"properties":{"id_build":1970,"id_source":"w145340581","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516712.2172260661,5276137.1458017565],[516710.51089434116,5276132.328559187],[516707.44091584464,5276123.684201528],[516714.17037604237,5276121.391803953],[516715.32490508875,5276124.79599037],[516716.51663956384,5276128.322537435],[516714.6444501427,5276128.9506605035],[516712.9752637923,5276129.512682879],[516715.22476865764,5276136.13194728],[516712.2172260661,5276137.1458017565]]]},"properties":{"id_build":1971,"id_source":"w145340582","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.41007720213,5276390.0626334],[516578.4108721772,5276391.373254841],[516577.38366357936,5276382.812575481],[516581.629170566,5276382.235620999],[516585.3487041668,5276381.723855557],[516585.8656264011,5276384.837238713],[516589.7130391004,5276384.259156433],[516590.41007720213,5276390.0626334]]]},"properties":{"id_build":1972,"id_source":"w145340585","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516626.24756656075,5276421.183918006],[516626.99455716833,5276422.6308665555],[516623.98533774086,5276424.289371625],[516618.5323255602,5276413.715538436],[516628.4613410312,5276408.742592888],[516633.16830286797,5276417.536069537],[516629.06853333185,5276419.691586121],[516626.24756656075,5276421.183918006]]]},"properties":{"id_build":1973,"id_source":"w145340586","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.11756001617,5276193.169595673],[516840.6758714676,5276193.241234174],[516848.7654767111,5276193.342427871],[516855.9161828299,5276193.429801572],[516859.5065587247,5276193.473535201],[516863.5175435104,5276193.529602795],[516868.91811399756,5276193.600811544],[516873.2744320816,5276193.724569846],[516880.0420858773,5276193.799749511],[516885.9684573583,5276193.872497952],[516885.8862542609,5276196.317332554],[516870.96900753275,5276196.107394536],[516835.1856071729,5276195.614865164],[516835.11756001617,5276193.169595673]]]},"properties":{"id_build":1974,"id_source":"w145340587","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516462.15769500594,5276676.227952937],[516458.6767520253,5276672.117058231],[516457.06729425857,5276670.212020538],[516455.7122039351,5276671.319588448],[516452.2688390424,5276667.197689855],[516461.2280966282,5276659.665507059],[516469.6861213402,5276670.0254151365],[516462.15769500594,5276676.227952937]]]},"properties":{"id_build":1975,"id_source":"w145340592","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516677.5002887559,5276149.705097958],[516680.14586579526,5276143.93341201],[516680.44568969874,5276144.156549947],[516687.797418264,5276147.511798322],[516686.9658987119,5276149.343220211],[516686.4367501761,5276150.508670565],[516685.22726859554,5276153.172557282],[516677.5002887559,5276149.705097958]]]},"properties":{"id_build":1976,"id_source":"w145340596","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.5128061236,5276110.9798362525],[516781.49778041063,5276110.649255088],[516781.94456705544,5276112.006446141],[516783.92199508904,5276111.356419976],[516785.8371545224,5276116.674414445],[516782.8293332421,5276117.77714347],[516780.5128061236,5276110.9798362525]]]},"properties":{"id_build":1977,"id_source":"w145340597","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.53803362144,5276140.862150645],[517025.728037038,5276139.776460164],[517026.7071985208,5276138.8679770585],[517025.60644878336,5276137.686678714],[517027.93377960473,5276135.548486336],[517034.6205075575,5276142.76989032],[517030.1240125398,5276146.902251577],[517024.53803362144,5276140.862150645]]]},"properties":{"id_build":1978,"id_source":"w145340600","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516421.1939280671,5276606.761119545],[516421.71781169414,5276607.429435014],[516419.00824275735,5276609.422309774],[516412.4227589521,5276600.845989404],[516423.26167947304,5276592.65220814],[516429.3232734794,5276600.560224479],[516424.302643282,5276604.391496499],[516421.1939280671,5276606.761119545]]]},"properties":{"id_build":1979,"id_source":"w145340601","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.79945962655,5276238.340730637],[516580.6568251824,5276235.67297286],[516582.91055957985,5276235.5682495665],[516582.98029413534,5276237.457822257],[516582.0038133147,5276237.455042103],[516582.07671230583,5276238.233227239],[516580.79945962655,5276238.340730637]]]},"properties":{"id_build":1980,"id_source":"w145340608","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.707091166,5276514.283912312],[517145.73062654276,5276510.579419049],[517142.3130507869,5276508.035371946],[517142.6908929682,5276507.258505815],[517140.2932463963,5276505.250933063],[517145.1944041167,5276498.819253892],[517155.9857694905,5276507.186515328],[517150.707091166,5276514.283912312]]]},"properties":{"id_build":1981,"id_source":"w145340614","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.98601893726,5276119.950240609],[516755.06880009937,5276119.564366495],[516755.5307431614,5276120.877143253],[516757.41796273424,5276120.24907654],[516759.36996549525,5276125.8227894725],[516756.4372693467,5276126.925748256],[516753.98601893726,5276119.950240609]]]},"properties":{"id_build":1982,"id_source":"w145340618","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516786.44589287025,5276108.751911492],[516788.8449769497,5276115.571686974],[516785.8371545224,5276116.674414445],[516783.92199508904,5276111.356419976],[516785.77907854127,5276110.761617485],[516785.22783551266,5276109.159617877],[516786.44589287025,5276108.751911492]]]},"properties":{"id_build":1983,"id_source":"w145340622","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.95172140555,5276561.945929143],[516655.6762102364,5276557.858704793],[516660.6057941624,5276567.541960992],[516650.2263630428,5276572.513563939],[516648.58221276436,5276569.619230738],[516650.3119584591,5276568.846197882],[516648.78117067565,5276565.707681375],[516646.95172140555,5276561.945929143]]]},"properties":{"id_build":1984,"id_source":"w145340628","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.3181013553,5276684.2172127785],[517037.31062291126,5276686.773405833],[517032.1278369931,5276686.8693850655],[517032.15709154936,5276676.866890558],[517039.8935671247,5276676.778382975],[517040.0219951673,5276684.225123962],[517037.3181013553,5276684.2172127785]]]},"properties":{"id_build":1985,"id_source":"w145340629","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.06602898974,5276125.906039263],[517043.2285759874,5276132.570221365],[517038.25002914394,5276137.145724565],[517032.79883419385,5276131.25049168],[517034.0114732069,5276130.131527175],[517034.99814913067,5276129.223067437],[517034.28679633734,5276128.454123179],[517037.06602898974,5276125.906039263]]]},"properties":{"id_build":1986,"id_source":"w145340631","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516610.4459319329,5276431.030261574],[516611.2674025821,5276432.699699924],[516607.6573018895,5276434.356499586],[516602.50344844523,5276424.228093191],[516613.710914045,5276418.703068765],[516618.11807832675,5276427.273398719],[516613.7479517816,5276429.417040654],[516610.4459319329,5276431.030261574]]]},"properties":{"id_build":1987,"id_source":"w145340634","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.5511308796,5276096.03868152],[516642.9090684559,5276084.144905878],[516646.1396868999,5276083.931858513],[516646.0690177223,5276082.375701664],[516647.4249159009,5276081.045901218],[516650.9563176823,5276080.722576563],[516652.7559225661,5276081.839117774],[516652.82658996567,5276083.395274705],[516656.4331065415,5276083.072168132],[516656.7259423284,5276085.740356817],[516660.0313584137,5276085.638670695],[516660.0358088613,5276084.082728514],[516661.76728938636,5276082.754005676],[516664.69776368374,5276082.428970381],[516666.49577536643,5276084.101209477],[516666.5680291326,5276085.101672959],[516669.9488797384,5276084.889068674],[516670.244571995,5276086.557009514],[516683.6934939802,5276085.4841200765],[516683.54740062443,5276084.038886311],[516698.7994313817,5276082.860057046],[516713.1194628133,5276092.347998964],[516707.40906920965,5276092.887314506],[516707.19137282483,5276090.21933865],[516698.4005924749,5276090.9721073685],[516698.75641647953,5276097.86378528],[516693.12114538904,5276098.403330171],[516692.82673436945,5276096.290833208],[516685.16301936435,5276096.935712418],[516685.52554452856,5276101.493476219],[516647.28341170575,5276104.273680792],[516646.924986146,5276098.2711159345],[516643.6189423409,5276098.59508694],[516643.5511308796,5276096.03868152]]]},"properties":{"id_build":1988,"id_source":"w145340635","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.77629125695,5276171.289893432],[516685.1227927953,5276171.2880213335],[516685.0874343887,5276167.898160603],[516690.3456621367,5276167.846542259],[516690.38092193793,5276171.269744647],[516690.2831772004,5276171.302806448],[516685.77629125695,5276171.289893432]]]},"properties":{"id_build":1989,"id_source":"w145340637","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.19418965396,5276363.691821756],[516731.19514747756,5276363.358405428],[516730.21900696337,5276363.2444616],[516730.30178144167,5276360.577346772],[516731.9539333214,5276360.693232677],[516731.9453125097,5276363.6939795995],[516731.19418965396,5276363.691821756]]]},"properties":{"id_build":1990,"id_source":"w145340638","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.95738518384,5276135.399521269],[516990.4914795466,5276129.382031658],[516990.11687554425,5276129.047519895],[516994.7863480456,5276124.837834885],[517001.52434747043,5276132.526136721],[516999.17468524666,5276134.597590615],[516997.0057552777,5276136.51397731],[516995.95738518384,5276135.399521269]]]},"properties":{"id_build":1991,"id_source":"w145340639","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.1587732574,5276594.188236292],[516604.18672958843,5276597.83311204],[516604.78380104783,5276599.168491069],[516601.70020324615,5276600.6045160955],[516597.14926422323,5276589.810991536],[516607.978641518,5276585.0628568325],[516609.91940955404,5276589.302815153],[516612.1587732574,5276594.188236292]]]},"properties":{"id_build":1992,"id_source":"w145340643","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.4125223566,5276615.834214726],[517291.31449095363,5276615.614613164],[517291.2033911241,5276612.557938975],[517291.0364936441,5276608.056281839],[517300.051242635,5276607.5273556635],[517300.69519868016,5276618.309828695],[517290.4780621569,5276619.057463333],[517290.4125223566,5276615.834214726]]]},"properties":{"id_build":1993,"id_source":"w145340645","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517074.79789526836,5276555.960548177],[517081.81081693637,5276546.534234166],[517088.5563624077,5276551.444173118],[517086.0151493906,5276554.848707687],[517083.4286778503,5276558.319794461],[517081.5551709339,5276556.8694820795],[517079.6696031221,5276559.531306113],[517074.79789526836,5276555.960548177]]]},"properties":{"id_build":1994,"id_source":"w145340646","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517180.77885511704,5276097.598569968],[517171.63799912366,5276089.680696335],[517177.3667958312,5276082.918067365],[517182.7390338271,5276087.535096286],[517184.1101784657,5276088.717222082],[517184.863960156,5276087.830328471],[517187.26176451077,5276089.837917871],[517180.77885511704,5276097.598569968]]]},"properties":{"id_build":1995,"id_source":"w145340648","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516665.35302038875,5276588.449811899],[516674.15386499744,5276583.918274801],[516679.3068139802,5276594.269025407],[516668.7017683238,5276599.351089029],[516666.90932475316,5276595.789487632],[516668.6397013743,5276594.794182568],[516667.3250298434,5276592.256434069],[516665.35302038875,5276588.449811899]]]},"properties":{"id_build":1996,"id_source":"w145340650","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.4914795466,5276129.382031658],[516995.95738518384,5276135.399521269],[516994.66199815227,5276136.562708091],[516993.6226518662,5276137.504362862],[516994.37088550953,5276138.506803078],[516992.4127025693,5276140.279324806],[516985.97192019207,5276133.7032969715],[516990.4914795466,5276129.382031658]]]},"properties":{"id_build":1997,"id_source":"w145340668","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516378.9430712898,5276674.103937554],[516371.9361304754,5276681.864014206],[516372.98483263387,5276682.867219994],[516370.8001350197,5276685.195012014],[516362.4089466636,5276677.725068364],[516371.60089482693,5276667.526048989],[516375.4367859004,5276670.971051103],[516378.9430712898,5276674.103937554]]]},"properties":{"id_build":1998,"id_source":"w145340674","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.44848438265,5276545.287587381],[516611.323737317,5276544.617540836],[516609.5737059533,5276547.235446622],[516607.09951542615,5276550.94045705],[516598.8529516835,5276545.471100946],[516604.9628410731,5276536.375062266],[516614.40895237285,5276542.6258269185],[516612.44848438265,5276545.287587381]]]},"properties":{"id_build":1999,"id_source":"w145340677","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516744.9386395603,5276311.862429544],[516745.50198671845,5276311.864049237],[516745.5054697351,5276310.652636686],[516748.3973510506,5276310.649838084],[516748.3165812212,5276312.616778243],[516745.01193117234,5276312.496136464],[516744.9386395603,5276311.862429544]]]},"properties":{"id_build":2000,"id_source":"w145340678","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516587.93970311026,5276606.0111510465],[516588.61188657244,5276607.346742369],[516585.527980596,5276608.893914777],[516580.82648332237,5276598.211113891],[516590.9792144777,5276593.6833006255],[516592.8755280316,5276597.711961165],[516595.23479239433,5276602.697743179],[516587.93970311026,5276606.0111510465]]]},"properties":{"id_build":2001,"id_source":"w145340679","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.8472771201,5276513.44331253],[516643.6467330414,5276512.056979207],[516645.3363294047,5276522.708992377],[516634.8912453084,5276524.3462436665],[516634.374806668,5276521.07726106],[516636.02045140124,5276520.826340377],[516635.5481903408,5276517.868675062],[516634.8472771201,5276513.44331253]]]},"properties":{"id_build":2002,"id_source":"w145340680","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.95500866266,5276488.517840442],[516635.5074685124,5276484.793381957],[516635.0894006649,5276481.269059179],[516644.10580535734,5276480.2056511985],[516645.3603406367,5276490.656368965],[516634.66083882557,5276491.937246675],[516634.271958199,5276488.713084487],[516635.95500866266,5276488.517840442]]]},"properties":{"id_build":2003,"id_source":"w145340682","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516482.9520393269,5276281.963159623],[516482.9479504375,5276283.407963546],[516479.4924235492,5276283.509324858],[516479.1448436231,5276273.616912339],[516491.0888245886,5276273.317299966],[516491.290563267,5276281.653345188],[516485.8442172016,5276281.860205736],[516482.9520393269,5276281.963159623]]]},"properties":{"id_build":2004,"id_source":"w145340687","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517010.9381010668,5276124.218146787],[517011.7614488391,5276125.220808598],[517009.39614029496,5276127.50337807],[517007.16643058194,5276129.652976825],[517000.3533198008,5276121.964449243],[517004.94768991554,5276117.754553149],[517005.621782191,5276118.423359291],[517010.9381010668,5276124.218146787]]]},"properties":{"id_build":2005,"id_source":"w145340693","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516512.08596099174,5276577.010399696],[516512.60700080806,5276578.67897266],[516509.59946987143,5276579.781842904],[516505.6507959553,5276568.434400026],[516517.38019291,5276564.133206938],[516520.8074941019,5276573.923222807],[516515.22872252564,5276575.896800256],[516512.08596099174,5276577.010399696]]]},"properties":{"id_build":2006,"id_source":"w145340701","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517053.4785263166,5276179.90127443],[517053.3406623045,5276175.677562471],[517056.1202324226,5276175.574561743],[517060.46451580606,5276179.810593393],[517060.7568358448,5276182.589941981],[517056.2499579439,5276182.576742275],[517053.4785263166,5276179.90127443]]]},"properties":{"id_build":2007,"id_source":"w145340704","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.9600066232,5276293.363491201],[516426.9571854595,5276294.363740092],[516421.4739240063,5276294.348277347],[516421.2658189354,5276288.235009904],[516423.9007373334,5276286.130786277],[516423.9755372062,5276286.2421368575],[516427.7315144427,5276286.141590057],[516431.86274465726,5276286.153244015],[516431.78919915087,5276285.597338278],[516436.29662345775,5276285.387777441],[516436.2906642983,5276287.499413966],[516436.3500954807,5276293.056564195],[516436.2630639608,5276297.279625326],[516432.3571810303,5276297.2686039945],[516432.28144076833,5276297.490669604],[516431.83201620897,5276297.044843024],[516431.914968276,5276294.266585785],[516431.7669368122,5276293.488190592],[516426.9600066232,5276293.363491201]]]},"properties":{"id_build":2008,"id_source":"w145340708","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1336627775,5276657.691808532],[517200.4081818678,5276649.020762026],[517201.46003083343,5276648.912729059],[517205.51688148873,5276648.591294106],[517206.1633059086,5276658.595785208],[517201.20516026573,5276658.9145574225],[517201.1336627775,5276657.691808532]]]},"properties":{"id_build":2009,"id_source":"w145340709","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9984406455,5276239.670006835],[516926.9268797258,5276238.447262269],[516928.48918438854,5276238.47403087],[516929.7885903656,5276238.500035701],[516929.77765462594,5276239.678084633],[516929.25185738684,5276239.676556299],[516927.29889621126,5276239.670880047],[516926.9984406455,5276239.670006835]]]},"properties":{"id_build":2010,"id_source":"w145340710","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.87743278395,5276586.696636637],[517015.7301783533,5276592.241505661],[517012.65718851046,5276590.00973252],[517011.67719546804,5276591.22940712],[517008.64956131426,5276588.8977428125],[517004.85749615886,5276585.985921202],[517010.0595237749,5276579.332727664],[517011.6259037933,5276580.5042704865],[517019.87743278395,5276586.696636637]]]},"properties":{"id_build":2011,"id_source":"w145340713","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.66606141155,5276135.731348239],[516724.8848492956,5276130.836088613],[516726.65194165247,5276130.185439086],[516726.092981248,5276128.65010673],[516727.43894981075,5276128.164957601],[516729.67386266513,5276134.62859023],[516726.66606141155,5276135.731348239]]]},"properties":{"id_build":2012,"id_source":"w145340718","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516606.53989781404,5276523.298415293],[516605.8033739656,5276523.451910734],[516606.3738633178,5276526.209802204],[516607.2479618423,5276530.491173529],[516598.1017058145,5276532.343360063],[516595.64231768524,5276520.311034842],[516605.517605199,5276518.305327457],[516606.53989781404,5276523.298415293]]]},"properties":{"id_build":2013,"id_source":"w145340719","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.9110310835,5276117.911203072],[516762.30234291696,5276124.830970901],[516759.36996549525,5276125.8227894725],[516757.41796273424,5276120.24907654],[516759.3879695881,5276119.565678823],[516758.9260272876,5276118.25290176],[516759.9110310835,5276117.911203072]]]},"properties":{"id_build":2014,"id_source":"w145340720","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.52273153834,5276607.654278189],[516572.3024503038,5276611.079058287],[516572.9740041878,5276612.63692545],[516569.13838228094,5276614.404246755],[516564.21248032857,5276603.387401706],[516575.41766787303,5276598.529135834],[516577.2537450183,5276602.613189684],[516579.52273153834,5276607.654278189]]]},"properties":{"id_build":2015,"id_source":"w145340725","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516507.2013660457,5276524.872031629],[516510.55769394356,5276533.217023379],[516497.2477809634,5276538.625149876],[516492.8455607688,5276528.276689207],[516499.4634410816,5276525.405802542],[516500.35846566875,5276527.631132276],[516503.3964121917,5276526.406089745],[516507.2013660457,5276524.872031629]]]},"properties":{"id_build":2016,"id_source":"w145340730","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.25894905085,5276691.800742965],[516547.12938696094,5276694.362271249],[516537.19587691745,5276701.113577762],[516531.13768947317,5276692.0940589635],[516539.3408798961,5276686.33808519],[516542.205650476,5276690.525076018],[516543.7539465021,5276692.796724836],[516545.25894905085,5276691.800742965]]]},"properties":{"id_build":2017,"id_source":"w145340731","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.33696618566,5276216.530062196],[516957.38910641416,5276224.42113199],[516955.58636827715,5276224.415883651],[516955.6002806121,5276219.636917478],[516953.87330216554,5276219.409610847],[516953.9571511145,5276216.409083314],[516957.33696618566,5276216.530062196]]]},"properties":{"id_build":2018,"id_source":"w145340736","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.17619177676,5276664.145831394],[516433.20417321083,5276662.587132395],[516430.24717574933,5276664.434822155],[516425.0780443309,5276667.676634144],[516419.39519100473,5276658.658291768],[516431.88640317426,5276650.469185152],[516438.61574423517,5276661.268729025],[516434.17619177676,5276664.145831394]]]},"properties":{"id_build":2019,"id_source":"w145340745","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516593.44312766456,5276488.12982429],[516602.9655119441,5276486.100878971],[516604.1959677301,5276491.850309523],[516605.4116207543,5276497.521900404],[516593.95023090445,5276499.956533404],[516593.0755478738,5276495.875214152],[516595.01457250724,5276495.469522175],[516593.44312766456,5276488.12982429]]]},"properties":{"id_build":2020,"id_source":"w145340761","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516745.77984305884,5276129.006751267],[516743.92439213005,5276123.811195295],[516745.75154912646,5276123.171838187],[516745.2672930913,5276121.781200305],[516746.5380216279,5276121.3402951285],[516748.77230879257,5276128.015098654],[516745.77984305884,5276129.006751267]]]},"properties":{"id_build":2021,"id_source":"w145340764","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516358.9090110873,5276693.719354116],[516360.33262889093,5276694.945890267],[516357.99741271965,5276697.38440394],[516349.3821496108,5276689.46929065],[516357.74443225376,5276680.490457033],[516361.3625717074,5276683.912610364],[516364.9357669719,5276687.290183801],[516358.9090110873,5276693.719354116]]]},"properties":{"id_build":2022,"id_source":"w145340768","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.4780101886,5276590.482740645],[516482.45034261665,5276591.930308711],[516479.3655135281,5276593.810953705],[516473.08462493203,5276583.790610337],[516482.5644564276,5276578.149308077],[516487.72309929744,5276586.610528368],[516483.18601232814,5276589.420633496],[516481.4780101886,5276590.482740645]]]},"properties":{"id_build":2023,"id_source":"w145340771","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516766.9063664702,5276114.597146554],[516768.06432898884,5276114.189263344],[516768.53378111025,5276115.502062747],[516770.4361549446,5276114.829588012],[516772.1568574699,5276119.858054962],[516769.2241558716,5276120.961007308],[516766.9063664702,5276114.597146554]]]},"properties":{"id_build":2024,"id_source":"w145340775","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.8946269752,5276150.011772415],[517055.8344825122,5276144.899170682],[517054.86124027136,5276143.784923953],[517055.53857822495,5276143.34234858],[517056.7365148534,5276144.679532798],[517056.796333061,5276149.903273276],[517055.8946269752,5276150.011772415]]]},"properties":{"id_build":2025,"id_source":"w145340776","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516678.300130347,5276132.703022092],[516683.01806694554,5276137.717817807],[516680.6824934411,5276140.156200781],[516676.93787267606,5276136.255590159],[516678.36888073257,5276134.926011889],[516677.2456526611,5276133.700259538],[516678.300130347,5276132.703022092]]]},"properties":{"id_build":2026,"id_source":"w145340777","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.26666230743,5276159.573209172],[517009.42587351566,5276153.33232682],[517008.2276033374,5276152.106291072],[517010.374321322,5276150.078703964],[517013.048274708,5276147.56364305],[517020.3113789418,5276155.47578037],[517015.56582329323,5276160.018641876],[517015.26666230743,5276159.573209172]]]},"properties":{"id_build":2027,"id_source":"w145340778","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516558.9441761684,5276501.45730691],[516562.3020241777,5276509.2466343045],[516551.5479702914,5276513.883928285],[516547.4437429604,5276504.425390849],[516551.7304091634,5276502.548197404],[516552.4764600002,5276504.328552963],[516554.82287623367,5276503.290509247],[516558.9441761684,5276501.45730691]]]},"properties":{"id_build":2028,"id_source":"w145340781","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.9577909081,5276663.1745154485],[516524.0869399849,5276662.288601468],[516526.4061547434,5276665.518234641],[516517.6759289262,5276671.717290536],[516510.79400854855,5276661.8063395005],[516518.09402760776,5276656.714613711],[516521.22180230345,5276660.868997949],[516522.9577909081,5276663.1745154485]]]},"properties":{"id_build":2029,"id_source":"w145340783","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517043.2285759874,5276132.570221365],[517037.06602898974,5276125.906039263],[517036.7742168642,5276125.51619682],[517039.3425111329,5276123.1786623895],[517041.5191666909,5276121.195630192],[517048.0324135952,5276128.661049143],[517043.43802069605,5276132.870911374],[517043.2285759874,5276132.570221365]]]},"properties":{"id_build":2030,"id_source":"w145340789","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.3364870518,5276699.455163351],[516580.8186451935,5276698.570265338],[516584.903970909,5276696.136824478],[516589.01528162544,5276703.039198399],[516576.3765905208,5276710.227291784],[516571.74172857526,5276702.545458724],[516578.6633630765,5276698.452989393],[516579.3364870518,5276699.455163351]]]},"properties":{"id_build":2031,"id_source":"w145340790","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.51576838526,5276076.65703624],[517271.670561467,5276071.971833312],[517275.74232184293,5276066.760342959],[517276.6566618438,5276067.463235031],[517277.6159394238,5276068.210716424],[517278.29462192,5276067.323612073],[517282.3419891116,5276070.3363914825],[517277.51576838526,5276076.65703624]]]},"properties":{"id_build":2032,"id_source":"w145340795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.53803362144,5276140.862150645],[517030.1240125398,5276146.902251577],[517030.55073870963,5276147.392513904],[517025.353828608,5276152.156327095],[517018.6155586762,5276144.579136055],[517020.6268809207,5276142.617840917],[517023.51200921426,5276139.814438729],[517024.53803362144,5276140.862150645]]]},"properties":{"id_build":2033,"id_source":"w145340796","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516487.04796895076,5276612.83758845],[516490.25033207156,5276617.192218178],[516492.2854600518,5276619.965360097],[516493.2637652643,5276619.301292427],[516495.1339347052,5276621.973942438],[516486.62994802126,5276627.840266286],[516479.52259554947,5276617.928715239],[516487.04796895076,5276612.83758845]]]},"properties":{"id_build":2034,"id_source":"w145340798","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.73532960116,5276127.239594564],[517238.0121524776,5276122.262862331],[517235.1431382534,5276122.121004389],[517229.24611871305,5276117.180069006],[517232.1784355163,5276113.698957105],[517239.1545859276,5276119.498864973],[517243.9489725602,5276113.756020617],[517250.49807233,5276119.17680285],[517247.61668252526,5276123.213754925],[517244.73532960116,5276127.239594564]]]},"properties":{"id_build":2035,"id_source":"w145340802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.4204377207,5276262.268975632],[517278.97888904467,5276259.51954745],[517276.685856254,5276255.144953765],[517285.036010884,5276250.946419266],[517290.2626302963,5276261.520207296],[517281.30959984456,5276266.3837838555],[517279.44231214473,5276262.821772299],[517280.4204377207,5276262.268975632]]]},"properties":{"id_build":2036,"id_source":"w145340803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.1870534222,5276183.618978079],[516683.1225049812,5276185.174748375],[516683.02568237786,5276187.508403829],[516673.03608265484,5276187.257519566],[516673.2060370855,5276180.367347473],[516683.87199878384,5276180.509029687],[516683.7128556694,5276183.620484187],[516683.1870534222,5276183.618978079]]]},"properties":{"id_build":2037,"id_source":"w145340804","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.8994838646,5276120.16548458],[516410.10444459214,5276120.082629203],[516406.41668455285,5276119.927758926],[516406.4961827375,5276118.372028213],[516410.70170795266,5276118.717294673],[516410.6287844529,5276117.939111888],[516411.98054930946,5276118.054060262],[516411.8994838646,5276120.16548458]]]},"properties":{"id_build":2038,"id_source":"w145340805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.87084797036,5276687.502018275],[516600.7571434927,5276694.292619408],[516591.5784497238,5276699.712308407],[516586.94454895373,5276691.697046845],[516590.10446955904,5276689.816672554],[516590.9268588121,5276691.152692287],[516592.8530134477,5276689.968984987],[516596.87084797036,5276687.502018275]]]},"properties":{"id_build":2039,"id_source":"w145340807","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516737.3138324016,5276560.42669231],[516740.54387106816,5276560.3248365745],[516740.6908958065,5276561.436656485],[516742.9818705536,5276561.398786612],[516746.0240066223,5276561.340849599],[516746.08665275556,5276565.675479162],[516743.1471504234,5276569.223498702],[516737.28923768434,5276568.984380702],[516737.3138324016,5276560.42669231]]]},"properties":{"id_build":2040,"id_source":"w145340810","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517063.6984623697,5276575.822033236],[517068.9447306069,5276579.727299153],[517070.44366309844,5276580.843090288],[517069.11632858904,5276582.68411984],[517065.4662444201,5276587.7191679785],[517063.6668750787,5276586.6024978],[517061.3293662733,5276589.707562672],[517056.2336463745,5276585.691604692],[517063.6984623697,5276575.822033236]]]},"properties":{"id_build":2041,"id_source":"w145340812","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516671.77373182547,5276460.301870441],[516677.75995424646,5276460.36346583],[516677.72045737127,5276463.664201936],[516677.7086496993,5276465.164554137],[516679.2108055493,5276465.191083946],[516679.1492195798,5276470.959058283],[516672.45671105385,5276470.984351197],[516671.65327894,5276470.893139448],[516671.77373182547,5276460.301870441]]]},"properties":{"id_build":2042,"id_source":"w145340818","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.87743278395,5276586.696636637],[517019.9525422027,5276586.696856147],[517025.00469240185,5276579.932098083],[517033.99702825956,5276587.071338014],[517030.1521479841,5276591.950242709],[517027.7535231078,5276590.276132468],[517026.62233341107,5276591.828781774],[517023.4897148157,5276589.4412328955],[517019.87743278395,5276586.696636637]]]},"properties":{"id_build":2043,"id_source":"w145340819","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.36916278093,5276185.204764847],[516886.3585295837,5276188.872343358],[516886.2689152814,5276193.873369042],[516885.9684573583,5276193.872497952],[516880.0420858773,5276193.799749511],[516873.2744320816,5276193.724569846],[516873.30450050905,5276191.123988522],[516873.37820191047,5276183.833439309],[516886.3727071771,5276183.98223868],[516886.36916278093,5276185.204764847]]]},"properties":{"id_build":2044,"id_source":"w145340823","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.8255744459,5276202.42274308],[516622.06495814346,5276202.3379641725],[516621.96460226394,5276208.550384411],[516621.8136069239,5276211.450698475],[516621.4383528619,5276211.338487916],[516615.57944157236,5276211.321770827],[516612.6503029235,5276211.202275749],[516612.8255744459,5276202.42274308]]]},"properties":{"id_build":2045,"id_source":"w145340828","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516765.7976703733,5276345.786701586],[516765.7334355444,5276342.007767135],[516765.7356750666,5276341.229795739],[516774.4484138466,5276341.366023054],[516774.35729642684,5276346.922745282],[516774.35697633075,5276347.033884055],[516765.7190386014,5276347.009011852],[516765.7976703733,5276345.786701586]]]},"properties":{"id_build":2046,"id_source":"w145340829","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516373.9193650266,5276697.762569255],[516373.0155696464,5276698.64914584],[516370.8436875874,5276696.420245568],[516376.86889120936,5276690.54678173],[516378.9021227548,5276688.663124815],[516388.41363867844,5276698.359039599],[516381.10847107467,5276705.340288143],[516376.5029638901,5276700.481643239],[516373.9193650266,5276697.762569255]]]},"properties":{"id_build":2047,"id_source":"w145340830","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517118.788082462,5276180.993093768],[517120.52094647364,5276179.219951966],[517124.2652438269,5276183.120848801],[517123.21102515334,5276184.006867009],[517125.38248664717,5276186.3471850185],[517121.76620511943,5276190.004163402],[517122.88965587306,5276191.118863092],[517120.78024206817,5276193.224316435],[517119.28317874676,5276191.441680793],[517113.8912613316,5276185.868850156],[517116.0006752742,5276183.763394343],[517117.27435754513,5276184.878534405],[517118.40434305865,5276183.770458411],[517117.2812166462,5276182.544620863],[517118.788082462,5276180.993093768]]]},"properties":{"id_build":2048,"id_source":"w145340832","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.16778319434,5276143.872051493],[516983.61915087374,5276149.722777767],[516982.21067567077,5276151.0301191835],[516980.88515163807,5276152.226563099],[516981.95586162416,5276153.407765401],[516979.7566391196,5276155.412981934],[516973.2494541728,5276148.425557603],[516978.16778319434,5276143.872051493]]]},"properties":{"id_build":2049,"id_source":"w145340833","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.4979184417,5276515.980232304],[516678.9300190825,5276516.025582875],[516678.88514644536,5276505.467181637],[516685.1193142669,5276505.485039049],[516685.1626258203,5276508.719328781],[516685.18073302176,5276510.26422267],[516686.6078305081,5276510.268311469],[516686.5161613529,5276516.04731395],[516682.4979184417,5276515.980232304]]]},"properties":{"id_build":2050,"id_source":"w145340837","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516562.6941762543,5276609.05120901],[516552.76682121475,5276613.579712032],[516553.3639027952,5276614.915085799],[516550.13010807586,5276616.350711133],[516548.8614660468,5276613.457473245],[516545.5775074416,5276606.112920895],[516558.51334604557,5276600.148142631],[516560.5365753596,5276604.455002734],[516562.6941762543,5276609.05120901]]]},"properties":{"id_build":2051,"id_source":"w145340842","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.7765466697,5276138.338035167],[516694.47558127705,5276139.517767079],[516692.1432681735,5276132.953843282],[516690.3311432628,5276133.593260249],[516688.93256656965,5276134.08938116],[516686.4064734528,5276126.991434225],[516692.95561269985,5276124.7096095625],[516696.00317309814,5276133.320553333],[516697.7765466697,5276138.338035167]]]},"properties":{"id_build":2052,"id_source":"w145340844","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516971.93300774373,5276595.0033363495],[516971.5658822164,5276592.112632766],[516970.82968680415,5276586.998058582],[516984.05412949633,5276585.258374974],[516985.4549525987,5276594.264780842],[516979.398613931,5276595.114010015],[516975.31098295155,5276595.680020333],[516975.16400389385,5276594.568194334],[516971.93300774373,5276595.0033363495]]]},"properties":{"id_build":2053,"id_source":"w145340846","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.5335728286,5276223.481661524],[517013.94130263606,5276224.997273456],[517015.22923882306,5276226.379168131],[517015.0621274216,5276232.1579442015],[517012.8090323254,5276232.040222791],[517006.8177615644,5276225.910042107],[517006.6749973252,5276223.353412243],[517012.1580023149,5276223.480564518],[517012.5335728286,5276223.481661524]]]},"properties":{"id_build":2054,"id_source":"w145340848","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516696.51532750734,5276434.166007302],[516696.5275943874,5276429.887163988],[516696.54432194214,5276424.052377692],[516706.75980560255,5276423.970533366],[516706.71723159426,5276428.338201481],[516706.7397202572,5276430.97227692],[516703.5850407293,5276430.963228191],[516703.65090820706,5276434.18646845],[516696.51532750734,5276434.166007302]]]},"properties":{"id_build":2055,"id_source":"w145340849","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516573.06146317127,5276238.763265674],[516572.84402751137,5276235.984155605],[516574.4217362683,5276235.877505467],[516574.3519989143,5276233.987932896],[516578.1831268961,5276233.887696793],[516578.55173698295,5276236.333818409],[516578.6208402384,5276238.44566855],[516573.06146317127,5276238.763265674]]]},"properties":{"id_build":2056,"id_source":"w145340850","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.23573725903,5276311.730889583],[516726.81410701777,5276311.732550609],[516726.8158944614,5276311.11017352],[516726.8171392883,5276310.676732333],[516729.8442238768,5276310.674312818],[516729.76368378376,5276312.563456083],[516726.30848830816,5276312.553532167],[516726.23573725903,5276311.730889583]]]},"properties":{"id_build":2057,"id_source":"w145340854","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.1944781963,5276526.806760082],[516519.38844864746,5276518.127066352],[516524.24669084116,5276515.984738782],[516534.8804160415,5276511.391508746],[516536.74618338863,5276515.620114875],[516534.3394977989,5276516.724678566],[516536.12983797805,5276521.064210095],[516523.1944781963,5276526.806760082]]]},"properties":{"id_build":2058,"id_source":"w145340856","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.4235602682,5276492.118323116],[516683.5201754362,5276492.121464474],[516683.5396495066,5276495.81135865],[516683.5505326919,5276497.256206069],[516684.5570142206,5276497.259089426],[516684.5857784996,5276502.949525065],[516676.864229345,5276502.994092675],[516676.82018012024,5276492.146730802],[516682.4235602682,5276492.118323116]]]},"properties":{"id_build":2059,"id_source":"w145340857","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517033.99702825956,5276587.071338014],[517039.0482189989,5276580.640008525],[517048.565651787,5276588.003086947],[517044.9464131702,5276592.77150274],[517044.7201093022,5276593.104259682],[517042.02267777367,5276590.873570176],[517040.8163750281,5276592.4259969415],[517037.8638299467,5276590.105651076],[517033.99702825956,5276587.071338014]]]},"properties":{"id_build":2060,"id_source":"w145340858","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.66606141155,5276135.731348239],[516723.26731119596,5276136.955238914],[516720.91227150214,5276130.469035964],[516719.1301887275,5276131.108530231],[516717.76916659105,5276131.604752032],[516715.32490508875,5276124.79599037],[516721.836692042,5276122.447407135],[516724.8848492956,5276130.836088613],[516726.66606141155,5276135.731348239]]]},"properties":{"id_build":2061,"id_source":"w145340860","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.5852016031,5276591.007536846],[517228.63874826353,5276591.644941628],[517223.56036934437,5276591.963339397],[517223.13370724954,5276583.848873494],[517233.95111420663,5276583.32517637],[517234.0987019883,5276584.21473138],[517238.15527063305,5276584.004457892],[517238.22741933283,5276585.004929495],[517238.5852016031,5276591.007536846]]]},"properties":{"id_build":2062,"id_source":"w145340861","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516966.02005650825,5276082.498668978],[516951.6799746239,5276082.612512055],[516951.62549494975,5276075.5216429],[516957.6349374579,5276075.4835657105],[516960.6096285297,5276075.458885016],[516960.59826226823,5276074.2029737085],[516965.9617407844,5276074.151910202],[516965.96067248995,5276074.518667985],[516966.02005650825,5276082.498668978]]]},"properties":{"id_build":2063,"id_source":"w145340867","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.6965743838,5276385.600337075],[516774.6214623781,5276385.600120734],[516773.9444940577,5276385.931590048],[516773.642765707,5276386.37527984],[516773.1908134233,5276386.818537006],[516772.5170459854,5276386.038618699],[516773.72267903294,5276384.708414491],[516774.6965743838,5276385.600337075]]]},"properties":{"id_build":2064,"id_source":"w145340870","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.836692042,5276122.447407135],[516728.3786900476,5276120.043348102],[516730.89038254065,5276126.907878781],[516729.1308321686,5276127.547434723],[516727.43894981075,5276128.164957601],[516726.092981248,5276128.65010673],[516726.65194165247,5276130.185439086],[516724.8848492956,5276130.836088613],[516721.836692042,5276122.447407135]]]},"properties":{"id_build":2065,"id_source":"w145340873","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516915.57037831744,5276639.006289835],[516915.887276741,5276641.096637808],[516910.57470249827,5276641.903642877],[516907.5990749046,5276642.350675981],[516906.4122810718,5276634.611903307],[516906.294300976,5276633.855810451],[516918.10673275654,5276632.056308758],[516919.0945604136,5276638.471942666],[516915.57037831744,5276639.006289835]]]},"properties":{"id_build":2066,"id_source":"w145340874","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.5145778916,5276166.161693045],[517001.14605286194,5276172.057417559],[516996.3631953153,5276176.522388016],[516989.92310617457,5276169.724077852],[516991.6556098473,5276168.062036567],[516992.5540694681,5276169.064914876],[516993.6843584312,5276167.845676025],[516995.5145778916,5276166.161693045]]]},"properties":{"id_build":2067,"id_source":"w145340875","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.50791520556,5276258.151236141],[516590.5243773496,5276252.372020749],[516592.5581468393,5276250.377300453],[516592.5647958208,5276248.043386567],[516598.8743527516,5276248.061364991],[516601.12079674867,5276250.512840151],[516600.8732811024,5276258.291910871],[516590.50791520556,5276258.151236141]]]},"properties":{"id_build":2068,"id_source":"w145340877","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516894.37288275093,5276093.204328826],[516894.3132402408,5276087.869452113],[516902.5863040721,5276084.336984994],[516904.9729168282,5276090.234313323],[516919.56217322784,5276084.497412228],[516921.35333112377,5276088.503643406],[516936.31948041427,5276082.323320482],[516937.5274384579,5276085.39428774],[516939.0784070181,5276089.333142193],[516937.80014514114,5276089.773983551],[516939.14350317064,5276092.778661134],[516940.27153291006,5276092.337383134],[516942.13617351436,5276096.899532895],[516934.5404368767,5276099.989354521],[516933.79380354506,5276098.431228453],[516925.9720804333,5276101.74268355],[516923.4355851261,5276095.73377122],[516915.8395342536,5276098.934755935],[516915.81952241034,5276105.825357049],[516915.89237861475,5276106.603546303],[516915.6660634856,5276106.93630803],[516914.8381780889,5276107.489602072],[516904.2342995978,5276111.793264396],[516904.237525112,5276110.681877102],[516901.003363917,5276112.117307333],[516898.3901197069,5276106.663881541],[516894.55471068353,5276108.208710683],[516894.43381456414,5276098.094650677],[516895.86262512277,5276097.543096875],[516894.37288275093,5276093.204328826]]]},"properties":{"id_build":2069,"id_source":"w145340878","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517246.790487916,5276559.46813298],[517252.1249282664,5276558.928234314],[517252.3361002781,5276563.7078704275],[517252.71164888964,5276563.708982975],[517252.99970784533,5276567.888692115],[517253.4321247181,5276574.047117097],[517245.09331479575,5276574.5781172095],[517244.31153618847,5276559.571931944],[517246.790487916,5276559.46813298]]]},"properties":{"id_build":2070,"id_source":"w145340881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.4361534763,5276466.023461445],[516726.91957317555,5276465.928068187],[516726.96292583155,5276469.140130322],[516726.9809583127,5276470.707252034],[516728.4831764227,5276470.711566798],[516728.61647866573,5276476.602354399],[516722.60793142585,5276476.473958718],[516721.25593646866,5276476.470076772],[516721.4361534763,5276466.023461445]]]},"properties":{"id_build":2071,"id_source":"w145340901","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516897.0251113974,5276654.800981086],[516896.5093478744,5276651.354152069],[516896.06740254816,5276648.35209633],[516908.0896218744,5276646.719892749],[516909.2678028349,5276654.836516116],[516906.630299391,5276655.240075571],[516900.7766677294,5276656.145544558],[516900.3314996623,5276654.254876706],[516897.0251113974,5276654.800981086]]]},"properties":{"id_build":2072,"id_source":"w145340905","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516390.4344471359,5276540.768627366],[516389.9856638759,5276540.100526188],[516391.1896135092,5276539.325936798],[516395.25337610114,5276536.558883584],[516395.7766432904,5276537.449474243],[516397.87064923457,5276540.678420934],[516392.7534718403,5276544.109345215],[516390.4344471359,5276540.768627366]]]},"properties":{"id_build":2073,"id_source":"w145340906","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.92199508904,5276111.356419976],[516781.10702695005,5276102.879467578],[516787.3178900074,5276100.707913823],[516788.532088676,5276104.245654405],[516789.6941214169,5276107.638763342],[516787.8895534067,5276108.255943883],[516786.44589287025,5276108.751911492],[516785.22783551266,5276109.159617877],[516785.77907854127,5276110.761617485],[516783.92199508904,5276111.356419976]]]},"properties":{"id_build":2074,"id_source":"w145340909","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516688.5475384418,5276200.305283572],[516690.6066234345,5276202.600660803],[516691.8420609111,5276203.982333048],[516692.6705483633,5276203.206729813],[516694.99208484765,5276205.6584563395],[516691.5269524236,5276209.0938543985],[516688.81519557734,5276211.75343552],[516682.97315651696,5276205.846296984],[516688.5475384418,5276200.305283572]]]},"properties":{"id_build":2075,"id_source":"w145340915","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517223.470358274,5276675.729132691],[517225.79176289716,5276675.547061226],[517237.33876741567,5276674.614312157],[517237.96904946025,5276682.4404196525],[517231.74857850996,5276682.933253015],[517227.6391416107,5276683.265628006],[517227.7188673162,5276684.243894093],[517224.18041798216,5276684.522390805],[517223.470358274,5276675.729132691]]]},"properties":{"id_build":2076,"id_source":"w145340929","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516691.5269524236,5276209.0938543985],[516694.22278403427,5276211.991211969],[516693.69507308234,5276212.656537398],[516694.9305713885,5276214.0159825785],[516696.5404931512,5276215.77660415],[516691.2668932515,5276221.207332314],[516685.42550299875,5276215.077913702],[516688.81519557734,5276211.75343552],[516691.5269524236,5276209.0938543985]]]},"properties":{"id_build":2077,"id_source":"w145340947","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.3580005194,5276171.215600691],[516683.2674262466,5276171.293820569],[516683.9510342829,5276171.273550777],[516683.93384484365,5276174.652147025],[516683.91452412086,5276176.15247702],[516683.8952989121,5276177.619465391],[516679.0578814306,5276177.616724722],[516675.9784657722,5276177.50788151],[516675.29482668004,5276177.53926611],[516675.3580005194,5276171.215600691]]]},"properties":{"id_build":2078,"id_source":"w145340948","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.50293789245,5276551.090502597],[517121.6138564258,5276548.429353903],[517119.81513897487,5276547.090388844],[517121.7909264959,5276544.406615028],[517124.71689276857,5276540.436414552],[517131.5368655295,5276545.568901776],[517124.37396903895,5276554.883575571],[517123.0249330065,5276553.87935107],[517119.50293789245,5276551.090502597]]]},"properties":{"id_build":2079,"id_source":"w145340957","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.86156171677,5276566.396145998],[517073.1847487064,5276568.181192549],[517077.4568739679,5276571.30563195],[517074.553357904,5276575.320377837],[517072.47943891987,5276578.18170358],[517070.9801803454,5276577.177050733],[517068.9447306069,5276579.727299153],[517063.6984623697,5276575.822033236],[517070.86156171677,5276566.396145998]]]},"properties":{"id_build":2080,"id_source":"w145340960","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516560.63958416146,5276565.589737603],[516558.47973147535,5276559.137492942],[516556.8412193121,5276554.242687237],[516567.21649213997,5276550.715722627],[516570.41965346655,5276560.060571411],[516566.0963853038,5276561.615341803],[516563.0513120615,5276562.70696375],[516563.6471322065,5276564.486893703],[516560.63958416146,5276565.589737603]]]},"properties":{"id_build":2081,"id_source":"w145340961","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.43732122966,5276548.1922605205],[516697.4649700194,5276548.309213435],[516697.4567807124,5276551.165480799],[516697.4509494133,5276553.1993209915],[516699.25358558825,5276553.204489678],[516699.3875521996,5276558.872999691],[516691.42591683764,5276558.8501753425],[516691.45617771894,5276548.2919885125],[516695.43732122966,5276548.1922605205]]]},"properties":{"id_build":2082,"id_source":"w145340962","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516676.93787267606,5276136.255590159],[516670.49673149735,5276129.67991209],[516675.69368777523,5276124.804644369],[516680.78593640315,5276130.265068428],[516679.4375534611,5276131.594882713],[516678.300130347,5276132.703022092],[516677.2456526611,5276133.700259538],[516678.36888073257,5276134.926011889],[516676.93787267606,5276136.255590159]]]},"properties":{"id_build":2083,"id_source":"w145340963","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.0027122569,5276349.305057677],[517161.4758642451,5276316.186812168],[517166.884649071,5276315.980472727],[517166.46921705775,5276354.989294],[517162.788381375,5276355.089585676],[517162.71326896537,5276355.089364331],[517162.7299718989,5276349.421287115],[517161.0027122569,5276349.305057677]]]},"properties":{"id_build":2084,"id_source":"w145340964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.1954257455,5276687.207484216],[517244.64174318523,5276678.881473555],[517251.08734681905,5276678.456004726],[517250.81408383173,5276674.35413662],[517257.31226877397,5276673.928830416],[517257.513547796,5276676.974657421],[517258.1316476113,5276686.367802383],[517251.63347647805,5276686.79310765],[517245.1954257455,5276687.207484216]]]},"properties":{"id_build":2085,"id_source":"w145340965","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516745.77984305884,5276129.006751267],[516742.62928480556,5276130.120204589],[516740.2820308832,5276123.545104435],[516738.7631351063,5276124.08532346],[516736.5374525672,5276124.868019145],[516734.15295119624,5276118.181674887],[516741.0405861895,5276115.745281187],[516743.92439213005,5276123.811195295],[516745.77984305884,5276129.006751267]]]},"properties":{"id_build":2086,"id_source":"w145340966","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517203.6539356513,5276287.603854497],[517206.5233438754,5276282.499903461],[517213.7975134657,5276286.522428257],[517213.41964770167,5276287.299289563],[517215.32447006635,5276288.338519025],[517229.0933380521,5276295.792253544],[517226.3757862515,5276300.340944129],[517208.7531009279,5276290.508551618],[517203.6539356513,5276287.603854497]]]},"properties":{"id_build":2087,"id_source":"w145340967","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516973.9911678581,5276533.104492986],[516970.5972869465,5276537.873611258],[516969.0895808534,5276539.75859366],[516966.61613068025,5276537.973151174],[516966.088741484,5276538.527313466],[516961.3295472146,5276534.979206759],[516954.546709278,5276529.93593971],[516959.8244862561,5276523.060642971],[516973.9911678581,5276533.104492986]]]},"properties":{"id_build":2088,"id_source":"w145340969","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517091.0850754668,5276585.571501407],[517094.8323913051,5276588.360994287],[517087.8939553439,5276598.009791176],[517085.81071067223,5276596.36992424],[517082.7907174182,5276594.004901684],[517082.49847564904,5276593.770650933],[517084.534578573,5276590.998129568],[517083.03565139254,5276589.882334773],[517086.60234649054,5276585.113788333],[517088.03506752686,5276583.195274129],[517091.0850754668,5276585.571501407]]]},"properties":{"id_build":2089,"id_source":"w145340970","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.4476048942,5276133.164074187],[516702.1436367559,5276129.481612459],[516700.90672902315,5276125.98828074],[516707.44091584464,5276123.684201528],[516710.51089434116,5276132.328559187],[516712.2172260661,5276137.1458017565],[516709.12683463295,5276138.237217866],[516706.89142225496,5276131.940301237],[516705.3123758386,5276132.50258436],[516703.4476048942,5276133.164074187]]]},"properties":{"id_build":2090,"id_source":"w145340977","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517042.96208691545,5276526.52639938],[517035.24264163716,5276520.724546939],[517037.1275512254,5276518.2849863],[517039.90077910625,5276520.293615364],[517044.9530095337,5276513.528875118],[517053.49769165326,5276519.666576057],[517047.9183838059,5276526.8743250575],[517045.66247897124,5276525.189511538],[517044.62069139443,5276524.419598129],[517042.96208691545,5276526.52639938]]]},"properties":{"id_build":2091,"id_source":"w145340979","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.10789369897,5276229.618760244],[517176.1587540177,5276237.843249116],[517168.4223475765,5276237.709299538],[517168.3727867442,5276229.040255772],[517171.22712011455,5276229.048670186],[517171.44689196337,5276230.9386932505],[517172.798944172,5276230.942679565],[517172.9531044874,5276229.60945754],[517176.10789369897,5276229.618760244]]]},"properties":{"id_build":2092,"id_source":"w145340980","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.58010644733,5276089.905078621],[517242.52925038815,5276096.002807698],[517229.7135455804,5276111.524441007],[517220.7213660682,5276104.16262798],[517233.4609604982,5276088.974169004],[517236.4006739231,5276085.537537054],[517240.01939480496,5276081.102659067],[517248.7862383781,5276088.463834247],[517247.58010644733,5276089.905078621]]]},"properties":{"id_build":2093,"id_source":"w145340981","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.87330409273,5276381.089249704],[516494.9884055601,5276381.645057851],[516495.2745434024,5276384.046485186],[516490.87146874383,5276384.567486577],[516486.49095995055,5276385.0774412025],[516485.46386681375,5276376.427867439],[516489.8443820108,5276375.917912031],[516489.8884108678,5276376.2847976005],[516498.1610882979,5276375.307969193],[516498.87330409273,5276381.089249704]]]},"properties":{"id_build":2094,"id_source":"w145340985","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.00347881654,5276506.033481069],[516769.7678374289,5276506.061589475],[516769.7543963527,5276510.729419077],[516768.6280604965,5276510.615036163],[516768.61526032165,5276515.060588199],[516760.87921569793,5276514.927179045],[516760.97072912904,5276511.837758162],[516761.04542934836,5276509.370671343],[516759.84366282116,5276509.367212761],[516760.00347881654,5276506.033481069]]]},"properties":{"id_build":2095,"id_source":"w145340987","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517263.03295058414,5276249.102925636],[517260.90403226216,5276245.106699823],[517259.2980099922,5276242.09005389],[517266.5204732807,5276238.221570475],[517266.8189520654,5276238.889293689],[517269.0759942171,5276237.673448403],[517270.95252416644,5276238.123571512],[517273.71624737844,5276243.355334609],[517270.2550781715,5276245.345585574],[517264.1538919049,5276248.517207629],[517263.03295058414,5276249.102925636]]]},"properties":{"id_build":2096,"id_source":"w145340989","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.8964585728,5276089.074826678],[517301.8031733583,5276093.62236513],[517299.6162330992,5276096.505501554],[517299.6903585624,5276096.839140827],[517296.317410711,5276094.384050276],[517296.9206472205,5276093.607863725],[517288.90074214526,5276087.693648832],[517293.65350018226,5276080.817096763],[517299.16254057206,5276084.867827235],[517304.8964585728,5276089.074826678]]]},"properties":{"id_build":2097,"id_source":"w145340992","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.3246404779,5276170.749210978],[516960.6989198449,5276171.194859591],[516958.64246174874,5276173.18938584],[516955.5765559197,5276176.181231245],[516950.1854387424,5276170.2751364885],[516955.1569264161,5276165.510600288],[516955.7562275057,5276166.068043307],[516958.9945793294,5276163.1878398005],[516963.33764753497,5276167.868353685],[516960.3246404779,5276170.749210978]]]},"properties":{"id_build":2098,"id_source":"w145340993","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.97315651696,5276205.846296984],[516678.2536843005,5276201.387194374],[516675.1962680936,5276193.598664158],[516683.5438439164,5276190.177239804],[516684.96083181584,5276193.73776787],[516683.9833885538,5276194.068386875],[516684.900292315,5276196.516085898],[516685.6979674135,5276198.630024535],[516688.5475384418,5276200.305283572],[516682.97315651696,5276205.846296984]]]},"properties":{"id_build":2099,"id_source":"w145340995","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517068.243085077,5276511.596570852],[517069.4958564388,5276519.824584308],[517066.33992181823,5276520.2598941615],[517066.4124265917,5276521.149224663],[517062.5950993403,5276521.727080077],[517057.0194117812,5276522.56652315],[517056.0582766109,5276517.340139837],[517058.83833486843,5276517.014863147],[517058.39678792265,5276513.901656746],[517058.323305227,5276513.345742751],[517068.243085077,5276511.596570852]]]},"properties":{"id_build":2100,"id_source":"w145340996","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.6019536271,5276561.51973853],[517040.07569733175,5276563.1940725],[517034.87329592597,5276569.958377981],[517028.95263387257,5276565.49547218],[517031.2150252251,5276562.390174796],[517027.01732865116,5276559.48826665],[517030.48537830426,5276555.052817074],[517034.78696224064,5276558.38847662],[517037.9794532451,5276560.85400439],[517037.6019536271,5276561.51973853]]]},"properties":{"id_build":2101,"id_source":"w145340997","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.46301023726,5276106.496668371],[516770.4361549446,5276114.829588012],[516768.53378111025,5276115.502062747],[516768.06432898884,5276114.189263344],[516766.9063664702,5276114.597146554],[516765.0866839952,5276115.247632528],[516763.40991326416,5276115.831846582],[516761.1893499014,5276109.612749567],[516760.9061814555,5276108.822843187],[516767.46301023726,5276106.496668371]]]},"properties":{"id_build":2102,"id_source":"w145341002","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.86156171677,5276566.396145998],[517068.31304418645,5276564.610439979],[517074.79789526836,5276555.960548177],[517079.6696031221,5276559.531306113],[517081.39289013913,5276560.98117729],[517079.18360227486,5276563.89767346],[517076.9441423901,5276566.858537904],[517075.14509461087,5276565.630725419],[517073.1847487064,5276568.181192549],[517070.86156171677,5276566.396145998]]]},"properties":{"id_build":2103,"id_source":"w145341004","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517125.0086314618,5276134.666126894],[517125.2310362819,5276135.667038037],[517119.14180211147,5276137.316232998],[517116.8380527343,5276128.862845856],[517122.8518529822,5276127.324566394],[517122.6291207044,5276126.434794087],[517125.7111051497,5276125.676991301],[517135.1074249234,5276123.359579192],[517137.18711219577,5276131.367755595],[517125.0086314618,5276134.666126894]]]},"properties":{"id_build":2104,"id_source":"w145341005","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.1987808469,5276313.079136292],[516638.2086231996,5276309.6338345185],[516636.8565895596,5276309.629972259],[516636.88611419266,5276299.294067049],[516645.2984652616,5276299.429242759],[516645.3244753006,5276306.09769748],[516645.3405447308,5276310.987889065],[516645.2593967971,5276313.099310968],[516643.90736395563,5276313.095447069],[516638.1987808469,5276313.079136292]]]},"properties":{"id_build":2105,"id_source":"w145341008","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516676.3134550907,5276223.16501222],[516676.2284764133,5276226.610098447],[516669.91921413527,5276226.480897529],[516670.0035528951,5276223.258088723],[516669.4780723134,5276223.145445092],[516669.48567450006,5276220.489228943],[516669.50224662083,5276214.698900063],[516676.78832454485,5276214.719757617],[516676.8392537653,5276223.166517716],[516676.3134550907,5276223.16501222]]]},"properties":{"id_build":2106,"id_source":"w145341012","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.98071891523,5276212.449815496],[517155.1267047752,5276212.330268847],[517154.95552610647,5276219.442706056],[517152.9277711106,5276219.325594177],[517153.02383305336,5276212.212935702],[517150.1694914565,5276212.204530228],[517150.1721094907,5276211.315420271],[517157.9085512839,5276211.449345516],[517157.98071891523,5276212.449815496]]]},"properties":{"id_build":2107,"id_source":"w145341013","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516863.5893772487,5276373.665022897],[516858.75950442336,5276373.706609853],[516858.68503834936,5276363.1036663465],[516861.24643203925,5276363.088853307],[516863.9205263762,5276363.063253751],[516866.7973917634,5276363.049356626],[516866.8195832188,5276365.76122972],[516868.1566458829,5276365.742874132],[516868.1776456937,5276368.8659607135],[516868.20890392317,5276373.633944694],[516863.5893772487,5276373.665022897]]]},"properties":{"id_build":2108,"id_source":"w145341016","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.7730003394,5276088.1511097625],[517257.4219269976,5276089.378531733],[517266.34193279874,5276095.739930126],[517265.1348096863,5276097.514587056],[517261.6649935628,5276102.394449694],[517257.7000020165,5276099.470840271],[517254.0947719402,5276096.815034564],[517255.07489829615,5276095.595401384],[517252.0020650358,5276093.252365389],[517255.7730003394,5276088.1511097625]]]},"properties":{"id_build":2109,"id_source":"w145341017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517069.4958564388,5276519.824584308],[517068.243085077,5276511.596570852],[517078.76375426556,5276509.849177945],[517079.3538817307,5276513.518520433],[517082.2093795291,5276513.082336369],[517083.8104217852,5276522.922901037],[517080.89283334,5276526.604183062],[517077.2651584163,5276523.98176013],[517076.80099102407,5276520.901827838],[517076.602136474,5276519.556453719],[517072.72462117026,5276520.167467944],[517072.65211734676,5276519.278137362],[517069.4958564388,5276519.824584308]]]},"properties":{"id_build":2110,"id_source":"w145341018","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517101.4242536637,5276517.695458526],[517093.5543074549,5276512.004226442],[517095.66588059074,5276509.120790905],[517098.5138769171,5276511.240807171],[517103.49139937584,5276504.364758302],[517111.8858129837,5276510.502103767],[517106.6068651345,5276517.710679421],[517104.34336462617,5276516.059162738],[517103.23408171645,5276515.255698666],[517101.4242536637,5276517.695458526]]]},"properties":{"id_build":2111,"id_source":"w145341020","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517111.5951743709,5276558.291346937],[517113.5552138666,5276555.8520315355],[517111.98182639154,5276554.513731032],[517114.2738857707,5276551.553034575],[517116.3623340949,5276548.869590002],[517117.7415143985,5276549.840559615],[517119.50293789245,5276551.090502597],[517123.0249330065,5276553.87935107],[517116.6912071379,5276562.196214416],[517115.2670617406,5276561.191770941],[517111.5951743709,5276558.291346937]]]},"properties":{"id_build":2112,"id_source":"w145341024","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5350048466,5276111.894195056],[516761.1893499014,5276109.612749567],[516763.40991326416,5276115.831846582],[516763.6404682047,5276116.632715634],[516761.7306161923,5276117.294057101],[516759.9110310835,5276117.911203072],[516758.9260272876,5276118.25290176],[516759.3879695881,5276119.565678823],[516757.41796273424,5276120.24907654],[516754.5350048466,5276111.894195056]]]},"properties":{"id_build":2113,"id_source":"w145341025","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516809.17074095143,5276100.181898022],[516809.3896731995,5276102.405322924],[516807.21003632084,5276102.84359163],[516807.8067923021,5276104.290129151],[516806.3763884279,5276105.397398185],[516804.11907216377,5276106.724561137],[516802.7650676394,5276107.387492854],[516801.2614734228,5276107.827714075],[516800.3597658013,5276107.936252769],[516799.30782704393,5276108.044358302],[516797.52043769567,5276102.704499972],[516795.9593536531,5276097.031875875],[516806.86043409316,5276093.840270916],[516806.5618951357,5276093.172571569],[516810.7722278355,5276091.851045984],[516812.4084146224,5276097.523890856],[516809.02467911213,5276098.736661],[516809.17074095143,5276100.181898022]]]},"properties":{"id_build":2114,"id_source":"w145341028","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.1221276677,5276658.992667148],[516885.75399710814,5276656.43538525],[516885.2385493169,5276652.877418413],[516896.5093478744,5276651.354152069],[516897.0251113974,5276654.800981086],[516897.7616849959,5276659.804407527],[516895.46252740955,5276660.086700053],[516889.87239443866,5276660.781778909],[516889.57840715337,5276658.55813107],[516886.1221276677,5276658.992667148]]]},"properties":{"id_build":2115,"id_source":"w145341029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517094.8323913051,5276588.360994287],[517091.0850754668,5276585.571501407],[517093.0457496546,5276582.909901419],[517091.32221111923,5276581.548937771],[517093.83271948365,5276578.366594827],[517096.37340491917,5276575.139885651],[517099.5208276983,5276577.594201127],[517103.1182520786,5276580.27211942],[517096.10631474137,5276589.364991823],[517094.8323913051,5276588.360994287]]]},"properties":{"id_build":2116,"id_source":"w145341031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.4396282992,5276158.6440572115],[516962.9902333824,5276158.198189671],[516968.1122956015,5276153.3229633635],[516973.8038702442,5276159.229950162],[516970.76893435046,5276161.899572764],[516968.3816727025,5276163.993157436],[516967.85716370464,5276163.547070683],[516965.37189838104,5276165.762624728],[516960.95371531224,5276161.081890604],[516963.4396282992,5276158.6440572115]]]},"properties":{"id_build":2117,"id_source":"w145341032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516694.7574757959,5276339.914508547],[516697.31162252586,5276339.810690836],[516697.22121594404,5276345.145136541],[516695.86919051316,5276345.141260563],[516694.36694003403,5276345.136954287],[516693.91594632773,5276345.24680125],[516693.92550318164,5276341.912638092],[516694.15657506464,5276339.912786106],[516694.7574757959,5276339.914508547]]]},"properties":{"id_build":2118,"id_source":"w145341033","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.7765466697,5276138.338035167],[516696.00317309814,5276133.320553333],[516692.95561269985,5276124.7096095625],[516699.62513293314,5276122.361453603],[516700.90672902315,5276125.98828074],[516702.1436367559,5276129.481612459],[516700.0834061116,5276130.198112702],[516698.5419493968,5276130.749391469],[516700.84436946205,5276137.257662301],[516697.7765466697,5276138.338035167]]]},"properties":{"id_build":2119,"id_source":"w145341034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.65090820706,5276434.18646845],[516703.7151818094,5276437.965402674],[516704.84153293475,5276438.079772985],[516704.82272492413,5276444.63696153],[516697.46150466136,5276444.726991658],[516697.47224281053,5276440.98161446],[516697.4796671049,5276438.392080682],[516696.50353854866,5276438.278142463],[516696.51532750734,5276434.166007302],[516703.65090820706,5276434.18646845]]]},"properties":{"id_build":2120,"id_source":"w145341035","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517288.10130726104,5276534.139610405],[517281.264308965,5276534.786157182],[517281.048212663,5276531.673602164],[517280.2220011611,5276531.671150582],[517279.8094051281,5276526.435242846],[517279.2083803869,5276518.887068785],[517287.54793319874,5276518.13383977],[517288.4860957446,5276531.028838877],[517287.80977452477,5276531.1379709635],[517288.10130726104,5276534.139610405]]]},"properties":{"id_build":2121,"id_source":"w145341036","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.1870786678,5276691.110719722],[516615.9343539589,5276692.446528708],[516609.76535077754,5276695.985401796],[516603.8606549354,5276685.854847291],[516607.2462256004,5276683.863985914],[516608.5921499593,5276685.979479322],[516611.36066236976,5276684.398077537],[516615.9647963607,5276681.777200762],[516619.92649883893,5276688.456890137],[516615.1870786678,5276691.110719722]]]},"properties":{"id_build":2122,"id_source":"w145341037","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516898.1218683828,5276561.557911486],[516901.1272255585,5276561.233213381],[516901.5685301667,5276564.457546704],[516910.3602378458,5276563.149391661],[516911.75698477257,5276573.600583734],[516902.9656151015,5276574.797597841],[516902.5529043923,5276572.073476201],[516902.30220887996,5276570.461222275],[516899.521862744,5276570.897712447],[516898.1218683828,5276561.557911486]]]},"properties":{"id_build":2123,"id_source":"w145341039","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516932.1806521488,5276575.771584197],[516939.75023026107,5276581.461724694],[516937.7893026891,5276584.234514927],[516935.3161851818,5276582.337946779],[516929.8879485395,5276589.323968283],[516921.71878723416,5276583.187539307],[516927.07287924795,5276575.867875521],[516929.4488444137,5276577.597448073],[516930.29580510943,5276578.211178875],[516932.1806521488,5276575.771584197]]]},"properties":{"id_build":2124,"id_source":"w145341040","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516845.2061180089,5276081.281123165],[516847.14434509614,5276086.399153117],[516848.2620816111,5276089.514296545],[516845.17879712407,5276090.72791483],[516843.68772970815,5276086.83371479],[516843.25167205976,5276086.965821391],[516842.63514354965,5276087.164089958],[516839.50469741353,5276078.708424969],[516843.79048551735,5276077.276001679],[516845.2061180089,5276081.281123165]]]},"properties":{"id_build":2125,"id_source":"w145341043","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516694.7574757959,5276339.914508547],[516694.15657506464,5276339.912786106],[516693.92550318164,5276341.912638092],[516687.6166845584,5276341.672278911],[516687.69625532243,5276340.116551329],[516687.78442411334,5276335.560076935],[516687.8643134391,5276333.893210595],[516691.25157629,5276334.014056766],[516694.69892914343,5276334.135077154],[516694.7574757959,5276339.914508547]]]},"properties":{"id_build":2126,"id_source":"w145341047","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.17932001816,5276570.506685514],[517111.25195732794,5276572.849647863],[517104.6168515059,5276581.4990581805],[517103.1182520786,5276580.27211942],[517099.5208276983,5276577.594201127],[517101.5566179849,5276574.932824561],[517099.7575778621,5276573.705004441],[517101.84614216036,5276570.977099078],[517104.4323253856,5276567.60604533],[517108.17932001816,5276570.506685514]]]},"properties":{"id_build":2127,"id_source":"w145341050","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516942.00622427446,5276528.899186887],[516950.4758813098,5276535.036518111],[516945.499536274,5276541.5792811755],[516942.8758596565,5276539.793411687],[516942.4235829088,5276540.347794635],[516939.44821301807,5276538.10523062],[516934.4042626074,5276534.322924293],[516937.5705227418,5276530.331101293],[516939.8193012068,5276531.893598352],[516942.00622427446,5276528.899186887]]]},"properties":{"id_build":2128,"id_source":"w145341051","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5350048466,5276111.894195056],[516757.41796273424,5276120.24907654],[516755.5307431614,5276120.877143253],[516755.06880009937,5276119.564366495],[516753.98601893726,5276119.950240609],[516752.0536025325,5276120.6226343],[516750.32418995915,5276121.228928641],[516749.92917846586,5276120.149738047],[516747.8504270943,5276114.242244983],[516754.5350048466,5276111.894195056]]]},"properties":{"id_build":2129,"id_source":"w145341056","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516874.2575637766,5276658.069158312],[516885.75399710814,5276656.43538525],[516886.1221276677,5276658.992667148],[516887.0814570764,5276664.885856226],[516883.73761858727,5276665.398517593],[516878.5903417639,5276666.194916991],[516878.14613362786,5276663.970834341],[516874.989969838,5276664.517386592],[516874.623122933,5276661.515550083],[516874.2575637766,5276658.069158312]]]},"properties":{"id_build":2130,"id_source":"w145341058","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516420.8416285172,5276412.043394281],[516413.48043597635,5276412.111555669],[516413.598082654,5276397.0191203095],[516421.78527389385,5276397.042199686],[516421.7741804486,5276400.976512649],[516421.7689784351,5276402.821416477],[516423.6467727267,5276402.826711534],[516423.6320424436,5276408.050234447],[516420.7774843252,5276408.153324984],[516420.8416285172,5276412.043394281]]]},"properties":{"id_build":2131,"id_source":"w145341062","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5186876564,5276165.015168298],[517003.94896876364,5276166.530843414],[517006.0083639488,5276168.681851933],[517001.7676237892,5276172.703842097],[517001.14605286194,5276172.057417559],[516995.5145778916,5276166.161693045],[516994.7207926963,5276165.325829234],[516998.96153329435,5276161.303833983],[517002.5186876564,5276165.015168298]]]},"properties":{"id_build":2132,"id_source":"w145341063","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516842.63514354965,5276087.164089958],[516841.3191700104,5276087.660413231],[516840.6047661077,5276087.9361967705],[516841.6464259395,5276091.384537925],[516840.14250328694,5276091.935887838],[516839.6905232521,5276092.379139706],[516838.9454701356,5276090.265332247],[516835.3688220896,5276080.252424358],[516839.50469741353,5276078.708424969],[516842.63514354965,5276087.164089958]]]},"properties":{"id_build":2133,"id_source":"w145341065","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.98480952985,5276594.239177568],[517278.71785260853,5276590.548544538],[517278.33553444024,5276585.2349283835],[517287.57597574947,5276584.595512559],[517288.3754553154,5276593.60020874],[517290.55428606697,5276593.3843977405],[517290.987783062,5276599.164953902],[517277.01449205406,5276600.123740713],[517276.73087022227,5276594.4547700705],[517278.98480952985,5276594.239177568]]]},"properties":{"id_build":2134,"id_source":"w145341067","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.40256154514,5276391.311168368],[516564.1679246222,5276389.298872815],[516563.896774624,5276386.919712491],[516574.81421447155,5276385.661552237],[516575.7085656122,5276393.399419391],[516564.9564494136,5276394.63582019],[516565.32299959706,5276397.804343683],[516561.0101261951,5276398.303320664],[516560.2625040366,5276391.7884095],[516564.40256154514,5276391.311168368]]]},"properties":{"id_build":2135,"id_source":"w145341068","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.53301771346,5276528.664118092],[517308.3957342559,5276529.25417036],[517302.53565521975,5276529.73688604],[517301.8089869534,5276521.510383511],[517302.109428029,5276521.511276093],[517301.81790181994,5276518.509635996],[517308.5794809976,5276517.974028878],[517308.8710037507,5276520.975669321],[517314.9562577866,5276520.549199334],[517315.53301771346,5276528.664118092]]]},"properties":{"id_build":2136,"id_source":"w145341069","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.46301023726,5276106.496668371],[516773.9671353153,5276104.214805],[516774.3175862116,5276105.11604544],[516776.31339892093,5276111.12333479],[516774.28319875523,5276111.839895346],[516773.06511089916,5276112.258718143],[516771.92971430375,5276112.655551376],[516772.44381893915,5276114.112961226],[516770.4361549446,5276114.829588012],[516767.46301023726,5276106.496668371]]]},"properties":{"id_build":2137,"id_source":"w145341070","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516653.86661644635,5276192.5373797],[516648.60860209365,5276192.52234768],[516648.76931466936,5276188.855198495],[516647.86794021324,5276188.852622031],[516647.8759136626,5276186.063039528],[516647.89271825337,5276180.18379995],[516654.9531775386,5276180.315124739],[516654.9287067888,5276188.872808069],[516653.8019887188,5276188.869586318],[516653.86661644635,5276192.5373797]]]},"properties":{"id_build":2138,"id_source":"w145341071","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516875.1173554576,5276568.715290208],[516876.4432415473,5276577.721451566],[516873.2125657392,5276578.045509538],[516873.4550173764,5276579.913359713],[516873.72673980414,5276582.048030102],[516865.1603975124,5276583.356892936],[516863.5369534461,5276573.3496148335],[516872.0278784739,5276572.151670806],[516871.660701856,5276569.260973744],[516875.1173554576,5276568.715290208]]]},"properties":{"id_build":2139,"id_source":"w145341072","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517236.4006739231,5276085.537537054],[517233.4609604982,5276088.974169004],[517228.3655749426,5276084.73578691],[517231.07961084944,5276081.409624483],[517225.2343716352,5276076.724468194],[517227.6847472279,5276073.653145781],[517232.77392119734,5276067.299896105],[517240.6426921013,5276073.547004794],[517233.25336959714,5276082.972011291],[517236.4006739231,5276085.537537054]]]},"properties":{"id_build":2140,"id_source":"w145341074","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516853.4053313475,5276077.303814135],[516854.45824150136,5276076.862302192],[516853.78895088995,5276074.52643279],[516859.72922864236,5276072.431970859],[516862.1149244426,5276078.6626975695],[516860.4607646308,5276079.213607325],[516860.87020261533,5276080.492898576],[516861.2051679458,5276081.549694964],[516855.6411216746,5276083.422964819],[516853.4053313475,5276077.303814135]]]},"properties":{"id_build":2141,"id_source":"w145341076","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.7814012244,5276189.553535872],[516968.904233789,5276190.89048327],[516970.10930430086,5276189.782597409],[516971.99202548416,5276188.120987961],[516972.5909987635,5276188.789571483],[516977.3086374184,5276193.804606725],[516972.1118122125,5276198.568467568],[516965.7474814753,5276191.548125305],[516967.7814012244,5276189.553535872]]]},"properties":{"id_build":2142,"id_source":"w145341079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.72428456316,5276312.328846117],[516690.5550448526,5276312.339822805],[516690.55663732294,5276311.784128973],[516695.88933845964,5276311.910553209],[516695.96030964266,5276313.3555724975],[516698.9645083429,5276313.475324986],[516698.8677269587,5276321.0325458],[516694.8642128538,5276321.021068416],[516686.774560523,5276320.997885177],[516686.72428456316,5276312.328846117]]]},"properties":{"id_build":2143,"id_source":"w145341083","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.17932001816,5276570.506685514],[517104.4323253856,5276567.60604533],[517102.9333959316,5276566.490245458],[517104.7432096277,5276564.050485915],[517103.0947126405,5276562.711967195],[517105.83905512444,5276559.196896879],[517108.37230983033,5276555.947943177],[517111.5951743709,5276558.291346937],[517115.2670617406,5276561.191770941],[517108.17932001816,5276570.506685514]]]},"properties":{"id_build":2144,"id_source":"w145341090","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.22240795614,5276451.068121091],[517273.823939021,5276460.300437065],[517269.3133209612,5276461.620737397],[517268.94172032294,5276460.2859583525],[517265.10743221117,5276461.497127655],[517261.46421374625,5276448.927535245],[517266.8771629606,5276447.276484708],[517268.2153246664,5276451.9483222645],[517271.22240795614,5276451.068121091]]]},"properties":{"id_build":2145,"id_source":"w145341095","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516913.2679867197,5276544.708638124],[516915.1528373226,5276542.269038057],[516917.77619840065,5276544.166033848],[516922.978808983,5276537.290485506],[516931.37336367165,5276543.427570753],[516926.09499265003,5276550.525170985],[516924.0866986438,5276548.918922115],[516923.0225924768,5276548.071167814],[516921.06230761996,5276550.62168593],[516913.2679867197,5276544.708638124]]]},"properties":{"id_build":2146,"id_source":"w145341097","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516681.736394427,5276611.391502696],[516680.4576299114,5276612.054678212],[516679.4799386039,5276612.496436843],[516678.8901737204,5276611.2388687655],[516678.2855140744,5276609.936802206],[516678.136250721,5276609.602955543],[516678.8886150524,5276609.160551345],[516679.7911977476,5276608.718577493],[516680.2424891474,5276608.497590617],[516681.736394427,5276611.391502696]]]},"properties":{"id_build":2147,"id_source":"w145341098","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.85087504645,5276196.155146128],[516833.5314830729,5276196.165782581],[516833.4838398453,5276199.655430634],[516833.4239955626,5276204.767682689],[516832.8662802749,5276244.398480049],[516824.1540393985,5276244.039888198],[516824.1569287303,5276243.039639419],[516826.0121443718,5276243.078340619],[516830.6163982117,5276243.169441587],[516830.6493700758,5276239.557497237],[516830.8603297159,5276218.54159361],[516830.87159873074,5276217.241291957],[516830.93295020144,5276211.606687669],[516830.9429062476,5276208.161386503],[516830.94624633976,5276207.005543534],[516830.95318345027,5276204.604946605],[516830.95896437566,5276202.604449174],[516830.977712736,5276201.3152831355],[516831.00483968365,5276199.726064193],[516831.04949460295,5276197.270006453],[516829.84766363876,5276197.266533581],[516829.85087504645,5276196.155146128]]]},"properties":{"id_build":2148,"id_source":"w145341099","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.0405861895,5276115.745281187],[516747.5747686263,5276113.452360846],[516747.8504270943,5276114.242244983],[516749.92917846586,5276120.149738047],[516748.1696878505,5276120.767060496],[516746.5380216279,5276121.3402951285],[516745.2672930913,5276121.781200305],[516745.75154912646,5276123.171838187],[516743.92439213005,5276123.811195295],[516741.0405861895,5276115.745281187]]]},"properties":{"id_build":2149,"id_source":"w145341111","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516857.97577624145,5276600.340471974],[516867.44372486806,5276598.9230702445],[516867.9604762072,5276602.036479904],[516869.39570610644,5276601.818357669],[516871.5673284676,5276601.491229384],[516872.96896528295,5276610.275330381],[516863.20027551195,5276611.802991963],[516861.6484059552,5276603.01845839],[516858.49221077503,5276603.565019604],[516857.97577624145,5276600.340471974]]]},"properties":{"id_build":2150,"id_source":"w145341113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516388.72309787094,5276668.463327282],[516382.9628921312,5276660.222781011],[516383.33905971766,5276660.001559854],[516382.0675309204,5276658.10860774],[516386.73332574713,5276654.898683267],[516387.9300580003,5276656.680286197],[516389.52532957675,5276655.628948399],[516397.0350841417,5276650.704371254],[516402.64506262675,5276658.944508236],[516388.72309787094,5276668.463327282]]]},"properties":{"id_build":2151,"id_source":"w145341118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.6950320301,5276528.357414285],[517145.16350462975,5276534.828445533],[517143.27790058166,5276537.490248968],[517139.8306881263,5276534.812748177],[517134.6281453011,5276541.576964582],[517126.38434754807,5276535.328888833],[517131.58754014515,5276528.342387538],[517133.611100752,5276529.8487273045],[517134.8851939287,5276530.797163818],[517136.6950320301,5276528.357414285]]]},"properties":{"id_build":2152,"id_source":"w145341121","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516341.94998879405,5276634.656554511],[516348.7686634626,5276640.4549573725],[516346.2813413978,5276643.559886826],[516349.8781325813,5276646.570755844],[516345.507794827,5276651.559774285],[516342.0609098222,5276648.660468308],[516340.85505576344,5276650.124128658],[516339.04627580714,5276652.3196196575],[516332.2276055027,5276646.521228061],[516341.94998879405,5276634.656554511]]]},"properties":{"id_build":2153,"id_source":"w145341124","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516336.2829002875,5276593.185547418],[516341.00231297803,5276597.644375801],[516335.4277054335,5276603.519140105],[516338.94848250353,5276606.863207893],[516333.29846502293,5276612.84890239],[516320.0377982541,5276600.808638814],[516325.83865533344,5276594.601075046],[516330.6328724024,5276599.1712444],[516336.2829002875,5276593.185547418]]]},"properties":{"id_build":2154,"id_source":"w145341126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516688.0323321238,5276537.390483916],[516690.0603033196,5276537.396295433],[516694.0414542475,5276537.296566472],[516693.9783639869,5276540.963996363],[516693.95168941724,5276542.408736256],[516695.3787790326,5276542.412827223],[516695.43732122966,5276548.1922605205],[516691.45617771894,5276548.2919885125],[516688.0011221452,5276548.28208699],[516688.0323321238,5276537.390483916]]]},"properties":{"id_build":2155,"id_source":"w145341127","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516499.2253662568,5276317.796206828],[516495.4684636372,5276318.23012379],[516495.611764314,5276320.675602199],[516490.7879469947,5276321.217640139],[516485.0925073205,5276321.868354564],[516484.2147453022,5276313.530395672],[516493.9828877432,5276312.335514466],[516493.4690570205,5276308.1107522715],[516497.90198301576,5276307.678748896],[516499.2253662568,5276317.796206828]]]},"properties":{"id_build":2156,"id_source":"w145341128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516719.81402363325,5276455.460531965],[516723.4947867622,5276455.3599604815],[516725.7481198606,5276455.366431411],[516725.6415065097,5276458.489151028],[516725.58449219447,5276460.033829238],[516726.93585256225,5276460.2599897655],[516726.91957317555,5276465.928068187],[516721.4361534763,5276466.023461445],[516719.78371222963,5276466.018717228],[516719.81402363325,5276455.460531965]]]},"properties":{"id_build":2157,"id_source":"w145341129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516670.1818092707,5276449.650130074],[516674.7635909636,5276449.663246592],[516676.1152738855,5276449.77825652],[516676.2106597219,5276453.190518506],[516676.2518121009,5276454.557654684],[516677.7543526086,5276454.450817563],[516677.75995424646,5276460.36346583],[516671.77373182547,5276460.301870441],[516670.22638081916,5276460.319669069],[516670.1818092707,5276449.650130074]]]},"properties":{"id_build":2158,"id_source":"w145341130","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.6397947854,5276417.173895139],[516673.57280512684,5276424.831228451],[516662.90716354677,5276424.734019502],[516662.9738847996,5276417.1655971315],[516666.70686741313,5276417.198506683],[516666.7056588236,5276417.620834066],[516668.4407047055,5276417.636913539],[516670.38606302533,5276417.653595514],[516670.38752637827,5276417.142357103],[516673.6397947854,5276417.173895139]]]},"properties":{"id_build":2159,"id_source":"w145341132","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.57280512684,5276424.831228451],[516673.6397947854,5276417.173895139],[516676.3891655481,5276417.081741309],[516676.3949582388,5276417.681912254],[516677.9122759651,5276417.664029199],[516679.78261816717,5276417.647157586],[516679.77673033584,5276417.080328269],[516684.0056405228,5276417.04798544],[516684.0887965503,5276424.7279767655],[516673.57280512684,5276424.831228451]]]},"properties":{"id_build":2160,"id_source":"w145341133","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.99994430726,5276092.573410235],[516827.744223117,5276093.344870398],[516827.29673927824,5276092.232181045],[516824.2141026968,5276093.22353297],[516822.6491900899,5276088.884566461],[516826.0332552416,5276087.560665499],[516825.36299138254,5276085.558215529],[516827.01971462497,5276084.118186012],[516829.99994430726,5276092.573410235]]]},"properties":{"id_build":2161,"id_source":"w145341136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516494.4680380542,5276422.16510978],[516498.63746538915,5276419.265060188],[516499.235524196,5276420.267011559],[516500.6569757586,5276422.271552915],[516499.3775610046,5276423.157045616],[516500.34991726966,5276424.604616235],[516497.4149022752,5276426.59681579],[516495.99408025347,5276424.369997639],[516494.4680380542,5276422.16510978]]]},"properties":{"id_build":2162,"id_source":"w145341142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516624.4445740503,5276631.78852205],[516625.41686408705,5276633.236114175],[516622.63244533585,5276635.117541164],[516612.6094005774,5276620.529636151],[516618.6301699447,5276616.32350471],[516621.9210095193,5276621.223044529],[516625.006187861,5276619.231336073],[516630.9159937305,5276627.583689729],[516626.83750875713,5276630.228283408],[516624.4445740503,5276631.78852205]]]},"properties":{"id_build":2163,"id_source":"w145341143","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517208.2384958115,5276187.569423524],[517206.9743457479,5276185.7763394],[517205.7248498034,5276186.650651872],[517200.8472827935,5276190.070462241],[517199.3811093508,5276188.010047844],[517196.7930724672,5276184.3014536975],[517196.6060078346,5276184.056394026],[517204.56971291965,5276178.467357076],[517203.52247324475,5276176.986105649],[517207.50434844097,5276174.186033613],[517214.0644842665,5276183.485584049],[517208.2384958115,5276187.569423524]]]},"properties":{"id_build":2164,"id_source":"w145341147","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.82056079607,5276512.423488431],[517251.0430657663,5276515.913936351],[517248.6540632405,5276516.073569889],[517248.86220563215,5276519.341695653],[517241.90561039286,5276519.78788288],[517241.0582649214,5276506.626425483],[517248.54074780236,5276506.14845275],[517248.7990650314,5276510.228047387],[517248.9499172318,5276512.551315389],[517250.82056079607,5276512.423488431]]]},"properties":{"id_build":2165,"id_source":"w145341148","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1531162342,5276274.726487868],[517199.37289469823,5276274.732344461],[517197.7654340988,5276274.73871172],[517197.77504199196,5276276.572545541],[517191.88601832866,5276276.599615354],[517165.5505969351,5276276.744217963],[517161.26900096354,5276276.776056455],[517161.21043305966,5276266.062014903],[517174.4007016229,5276265.989755293],[517174.4046080308,5276267.212303732],[517201.10812933685,5276267.068828042],[517201.1531162342,5276274.726487868]]]},"properties":{"id_build":2166,"id_source":"w145341150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7844929818,5276529.927891156],[516759.79440794094,5276526.482588242],[516760.92106074735,5276526.485830653],[516760.8908943744,5276523.918416218],[516760.8619434207,5276520.928674345],[516768.5983000783,5276520.950944693],[516768.5854998852,5276525.3964968],[516769.1863814968,5276525.398226966],[516769.1732608185,5276529.954917905],[516759.7844929818,5276529.927891156]]]},"properties":{"id_build":2167,"id_source":"w145341152","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.64173585724,5276177.7107317485],[516983.1443029672,5276176.039269993],[516985.0273564029,5276174.266526034],[516986.076045639,5276175.269841449],[516987.206656188,5276173.939462597],[516988.93883366376,5276172.388559236],[516994.5562266637,5276177.961931268],[516989.4338395002,5276182.948273253],[516984.64173585724,5276177.7107317485]]]},"properties":{"id_build":2168,"id_source":"w145341154","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.2006602698,5276360.783084844],[516763.9517835137,5276360.785246815],[516763.9617004057,5276357.339944816],[516763.21025683306,5276357.448921624],[516763.21281591547,5276356.559811433],[516763.88882732484,5276356.561757201],[516763.97609588655,5276352.33870002],[516763.22529143875,5276352.225399279],[516763.2272107492,5276351.55856664],[516763.97801528435,5276351.671867386],[516763.9131395751,5276348.115210464],[516763.31223967264,5276348.113480887],[516763.3141589901,5276347.446648258],[516763.9904913576,5276347.337455262],[516763.9201773253,5276345.670157486],[516765.7976703733,5276345.786701586],[516765.7190386014,5276347.009011852],[516774.35697633075,5276347.033884055],[516774.3441724461,5276351.479434944],[516775.39542655327,5276351.593602511],[516776.0714385419,5276351.595549694],[516776.1423892726,5276353.040570098],[516776.5914631188,5276353.597562133],[516776.9647841739,5276354.37661538],[516777.1853191169,5276356.0443460895],[516776.35684192,5276356.819937465],[516776.43131402,5276357.042431376],[516776.13086452876,5276357.041565931],[516776.05223072064,5276358.263876082],[516775.22567467723,5276358.372634975],[516774.2488939568,5276358.48096132],[516774.16097781085,5276362.926295954],[516772.5836195732,5276362.921753161],[516772.7123996234,5276370.3684837315],[516773.98930703895,5276370.372161231],[516773.74252452503,5276377.817810268],[516773.13490606804,5276380.149993994],[516772.1533281591,5276381.925402348],[516771.7764876937,5276382.36887593],[516771.14356226317,5276383.056119439],[516770.6462866736,5276383.588158045],[516770.57085461554,5276383.699080536],[516768.5396299333,5276384.804628894],[516766.5093658797,5276385.576761627],[516764.1799340148,5276385.903475123],[516760.5739183227,5276386.11537592],[516757.0436544386,5276386.105217509],[516756.9726994396,5276384.660197274],[516749.9121699192,5276384.63988696],[516749.98280703305,5276386.196045883],[516749.98056958226,5276386.974017337],[516748.02765794366,5276386.968401077],[516748.0266991472,5276387.301817413],[516747.72465325514,5276387.8566473285],[516747.04672800255,5276388.5215361025],[516746.3704007418,5276388.630731058],[516745.24499945523,5276388.1829364095],[516744.72145241156,5276387.4034532495],[516744.6479381016,5276386.847543396],[516744.1972661771,5276386.846247691],[516744.12726657296,5276385.067811281],[516743.1508104361,5276385.065004051],[516738.71920181555,5276385.052265606],[516738.66612972965,5276377.383474038],[516737.9917177749,5276376.825837302],[516738.820187011,5276376.050240463],[516741.0051474138,5276373.722587027],[516744.6105309346,5276373.732951651],[516744.6949095624,5276370.5101430835],[516749.50177062646,5276370.635104895],[516749.5052865018,5276369.412578361],[516750.2564086274,5276369.414738566],[516750.17841967224,5276370.414771524],[516753.48335645965,5276370.424277546],[516753.4859140658,5276369.53516734],[516754.3121483884,5276369.537544138],[516754.4598150536,5276370.427086501],[516758.13999304635,5276370.5488143535],[516758.2106281657,5276372.104973349],[516765.27149283333,5276372.01415491],[516765.36612058623,5276365.234905816],[516763.9389875138,5276365.230797804],[516763.87475179776,5276361.451863258],[516763.1987409566,5276361.44991749],[516763.2006602698,5276360.783084844]]]},"properties":{"id_build":2169,"id_source":"w145341162","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516563.4883828253,5276337.717016715],[516564.4663605341,5276345.110586284],[516559.3191937313,5276345.7850153865],[516559.0250634393,5276343.561385671],[516549.54226067493,5276344.801424318],[516548.2187502499,5276334.761751447],[516553.3809479773,5276334.087355227],[516558.873800669,5276333.358333831],[516559.2634924589,5276336.315757023],[516563.2384678975,5276335.793589667],[516563.4883828253,5276337.717016715]]]},"properties":{"id_build":2170,"id_source":"w145341166","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516704.7403828061,5276318.837707],[516706.3928658032,5276318.84244685],[516706.3238100596,5276316.730594808],[516706.41326881695,5276311.729565763],[516713.6241125105,5276311.7502542315],[516713.6030628213,5276319.085412848],[516710.8989998414,5276319.077653628],[516710.81463940593,5276322.300462377],[516704.8056138866,5276322.28322424],[516704.7403828061,5276318.837707]]]},"properties":{"id_build":2171,"id_source":"w145341169","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.9109585862,5276147.123309944],[516656.9194870865,5276154.647488472],[516655.4697679829,5276154.6433427185],[516655.4770682107,5276157.34405705],[516649.3326339671,5276157.3376037935],[516649.3333506945,5276154.459088969],[516650.4225179277,5276154.462202473],[516650.42129713675,5276152.261633961],[516650.42098420265,5276147.115867426],[516651.94601089903,5276147.053543425],[516656.9109585862,5276147.123309944]]]},"properties":{"id_build":2172,"id_source":"w145341170","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516869.09666915133,5276183.821037245],[516868.97100453195,5276190.900270601],[516868.91811399756,5276193.600811544],[516863.5175435104,5276193.529602795],[516859.5065587247,5276193.473535201],[516855.9161828299,5276193.429801572],[516848.7654767111,5276193.342427871],[516840.6758714676,5276193.241234174],[516835.11756001617,5276193.169595673],[516833.5251328657,5276193.164993061],[516831.6622935592,5276193.159609427],[516831.66614765755,5276191.825944496],[516829.11225447344,5276191.818564676],[516827.7601933753,5276191.814658166],[516827.85521617753,5276184.924273083],[516827.9354684188,5276183.146270221],[516869.09666915133,5276183.821037245]]]},"properties":{"id_build":2173,"id_source":"w145341174","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.4258190121,5276310.435157834],[516569.1589265336,5276316.772204441],[516569.3801548171,5276318.217649506],[516565.3975923156,5276318.762019071],[516565.6169247857,5276320.8742966065],[516561.03355666634,5276321.383618412],[516556.90099266055,5276321.84976948],[516555.9469567534,5276313.95614108],[516564.43724562036,5276313.091164646],[516564.2179124069,5276310.978887181],[516568.4258190121,5276310.435157834]]]},"properties":{"id_build":2174,"id_source":"w145341175","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516727.80475401296,5276419.251934143],[516727.8076269578,5276418.251685077],[516732.0141948473,5276418.15262912],[516732.0870713467,5276418.9308164045],[516733.3941723845,5276418.879001954],[516734.79140733706,5276418.827446788],[516734.7933234326,5276418.160614081],[516738.5485831826,5276418.2825454585],[516738.3756813245,5276426.172967465],[516727.6350588643,5276426.030968582],[516727.80475401296,5276419.251934143]]]},"properties":{"id_build":2175,"id_source":"w145341176","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516465.67933436437,5276373.715661284],[516465.46606510767,5276372.103533153],[516470.0344564532,5276371.560752098],[516470.40118552034,5276374.684813868],[516478.9217633465,5276373.697545235],[516479.83846291,5276381.546599757],[516475.2400336191,5276382.089288123],[516470.7994347681,5276382.599084566],[516470.5060584304,5276380.097612322],[516466.44843573053,5276380.641837062],[516465.67933436437,5276373.715661284]]]},"properties":{"id_build":2176,"id_source":"w145341178","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517204.5787715509,5276681.385875555],[517204.1946850875,5276676.6501855515],[517213.6531151637,5276675.9001573725],[517213.81250576087,5276677.878916886],[517217.388512726,5276677.600524897],[517218.0837897503,5276686.315940681],[517213.42596812587,5276686.680046264],[517208.82823360816,5276687.044333128],[517208.66884159506,5276685.065573727],[517204.8899819768,5276685.365599696],[517204.5787715509,5276681.385875555]]]},"properties":{"id_build":2177,"id_source":"w145341185","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.4433229589,5276251.470691096],[517266.46907475195,5276255.559215397],[517266.39462000964,5276255.336715215],[517267.44785929227,5276254.784139056],[517265.4236441223,5276250.943817561],[517264.1538919049,5276248.517207629],[517270.2550781715,5276245.345585574],[517273.71591776295,5276243.466473356],[517275.73410218535,5276246.80665104],[517272.8000492073,5276248.353905122],[517274.4433229589,5276251.470691096]]]},"properties":{"id_build":2178,"id_source":"w145341187","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.3166578448,5276526.815835304],[516689.879966363,5276526.937531172],[516690.00557766075,5276530.283196637],[516689.1793661639,5276530.280828907],[516689.2573054855,5276531.914806107],[516689.3209871243,5276533.282007132],[516689.996659493,5276533.395083176],[516690.0603033196,5276537.396295433],[516688.0323321238,5276537.390483916],[516682.39876044233,5276537.485483325],[516682.3166578448,5276526.815835304]]]},"properties":{"id_build":2179,"id_source":"w145341188","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.2304757219,5276104.453664931],[517016.93098727375,5276104.119370913],[517013.7858695171,5276100.775992796],[517017.92859738466,5276096.89820672],[517018.3805907086,5276096.454968648],[517021.5253834079,5276099.909487958],[517028.33881733264,5276107.486901315],[517026.1244409796,5276109.525397975],[517023.89497809985,5276111.586079311],[517022.7714930366,5276110.471398941],[517017.2304757219,5276104.453664931]]]},"properties":{"id_build":2180,"id_source":"w145341189","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.6710180425,5276361.152011207],[516682.7251192288,5276368.487385566],[516679.02978885215,5276368.4101178665],[516676.1155618765,5276368.357316933],[516676.04745055793,5276365.912048787],[516676.0503145649,5276364.911799802],[516674.3981628508,5276364.795929754],[516674.784861146,5276360.907147859],[516675.1607409508,5276360.797084357],[516675.3100109688,5276361.130930796],[516682.6710180425,5276361.152011207]]]},"properties":{"id_build":2181,"id_source":"w145341191","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.65886569035,5276320.995297646],[516435.97091994947,5276320.95154708],[516435.9856608941,5276315.728024892],[516437.33769300935,5276315.731840523],[516437.20628680324,5276309.063090409],[516442.91455961374,5276309.190342942],[516442.9064016315,5276312.079950927],[516446.1961915999,5276312.144809467],[516450.04181727004,5276312.211239766],[516450.07688929955,5276321.069169426],[516439.65886569035,5276320.995297646]]]},"properties":{"id_build":2182,"id_source":"w145341192","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516830.863430188,5276331.83739931],[516830.77304630174,5276326.724712083],[516833.67259179236,5276326.666408165],[516833.6214958951,5276323.554348997],[516837.8581152321,5276323.47768393],[516840.2242972178,5276323.44006925],[516841.3660761777,5276323.421142813],[516841.5337310353,5276332.979641573],[516837.57506760827,5276333.0459935265],[516833.67649443087,5276333.112521854],[516833.6503040815,5276331.778769788],[516830.863430188,5276331.83739931]]]},"properties":{"id_build":2183,"id_source":"w145341193","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.5991968046,5276203.860901217],[516956.4012498125,5276202.523737293],[516958.7369145326,5276200.085464424],[516958.13826443284,5276199.305743573],[516960.41283634934,5276197.211826533],[516963.5610682983,5276194.320249112],[516968.8773589149,5276200.114998975],[516963.75533687696,5276204.990224873],[516963.0815736042,5276204.21028473],[516960.3700134714,5276206.758600955],[516957.5991968046,5276203.860901217]]]},"properties":{"id_build":2184,"id_source":"w145341194","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.4591439988,5276383.372138076],[516699.0645214799,5276383.382474518],[516699.14409482566,5276381.826746982],[516700.9618064588,5276381.831959142],[516703.7259299311,5276381.83988616],[516706.1067906644,5276381.913398913],[516706.0308125049,5276390.070834495],[516698.97028969065,5276390.050585923],[516698.96487242175,5276391.939945186],[516695.5097240795,5276391.93003943],[516695.4591439988,5276383.372138076]]]},"properties":{"id_build":2185,"id_source":"w145341198","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517259.09370585,5276640.525486645],[517258.73528944195,5276634.7451551445],[517262.04106522957,5276634.421533673],[517261.9722156196,5276632.309673512],[517266.13410197693,5276632.033047972],[517271.58812457795,5276631.671345638],[517272.0153743635,5276639.5635382375],[517262.77469261194,5276640.314117407],[517262.847165754,5276641.203450601],[517259.16585017013,5276641.525958607],[517259.09370585,5276640.525486645]]]},"properties":{"id_build":2186,"id_source":"w145341199","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.82656602125,5276330.59547624],[517001.4723542305,5276330.465784249],[517001.6631336481,5276316.573877093],[517022.09319330216,5276316.855830894],[517028.60916862584,5276323.320981999],[517028.55652725266,5276341.325462216],[517014.5107988062,5276341.17327258],[517014.4662059015,5276330.726008999],[517011.1089270179,5276330.627290348],[517007.82656602125,5276330.59547624]]]},"properties":{"id_build":2187,"id_source":"w145341202","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516966.02005650825,5276082.498668978],[516965.96067248995,5276074.518667985],[516971.8726272936,5276074.424751688],[516973.45006379456,5276074.429348266],[516973.37915803946,5276072.984325984],[516978.5624889338,5276072.888293248],[516978.4851051405,5276073.666045341],[516978.4601598776,5276082.223726995],[516978.4585400555,5276082.779420615],[516966.02005650825,5276082.498668978]]]},"properties":{"id_build":2188,"id_source":"w145341206","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.8031733583,5276093.62236513],[517304.8964585728,5276089.074826678],[517305.87692711496,5276087.744063311],[517308.4252520014,5276089.641010336],[517308.95304449915,5276088.975740536],[517312.1085177152,5276091.307938327],[517317.27272981044,5276095.113153863],[517312.2939475941,5276102.211294501],[517303.67380425637,5276096.072995582],[517304.2770415775,5276095.296809788],[517301.8031733583,5276093.62236513]]]},"properties":{"id_build":2189,"id_source":"w145341207","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.774560523,5276320.997885177],[516679.3909688374,5276320.976735165],[516674.30582990125,5276320.962174428],[516674.3876246536,5276318.628475342],[516674.4032157858,5276313.182675746],[516677.8580925626,5276313.303707636],[516677.86254809395,5276311.7477649],[516683.64624555595,5276311.764329715],[516683.5692224356,5276312.430947151],[516686.72428456316,5276312.328846117],[516686.774560523,5276320.997885177]]]},"properties":{"id_build":2190,"id_source":"w145341208","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517204.5787715509,5276681.385875555],[517201.8141987498,5276681.577760364],[517201.8862210235,5276682.622687191],[517196.98811698385,5276682.963868212],[517192.15010008577,5276683.305230735],[517191.59476644784,5276675.512691715],[517200.97782572894,5276674.8513322845],[517200.88392723387,5276673.584061279],[517203.9865896715,5276673.359832853],[517204.1946850875,5276676.6501855515],[517204.5787715509,5276681.385875555]]]},"properties":{"id_build":2191,"id_source":"w145341211","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.2750568855,5276502.1659109825],[517273.7814289126,5276502.488966968],[517273.7159721239,5276501.766364303],[517270.6731390615,5276502.046303339],[517266.9015365986,5276502.390767074],[517265.838794767,5276490.962447922],[517270.7599273271,5276490.510252542],[517271.0874443333,5276494.045468487],[517273.49918752455,5276493.819227688],[517273.27356354316,5276491.38459753],[517276.24129164487,5276491.104437031],[517276.3578750623,5276492.316206369],[517277.2750568855,5276502.1659109825]]]},"properties":{"id_build":2192,"id_source":"w145341213","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.3651101278,5276147.854270886],[517297.1189968445,5276145.69963347],[517297.5944334747,5276144.956409338],[517290.47334323166,5276139.933978463],[517290.3231128544,5276139.933532494],[517295.45338697237,5276132.391263979],[517302.72504283173,5276137.303008425],[517304.38517209666,5276134.75172703],[517307.75875356013,5276136.984545012],[517300.3651101278,5276147.854270886]]]},"properties":{"id_build":2193,"id_source":"w145341217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517040.603091387,5276562.639916875],[517042.563750044,5276559.978300024],[517046.33355181845,5276555.0991838435],[517048.6567508107,5276556.884220549],[517049.32763577293,5276556.063750355],[517050.91817982856,5276554.112347244],[517058.263643927,5276559.357426847],[517052.3823019297,5276567.1199859725],[517045.41108995496,5276562.320568118],[517043.4510812798,5276564.7599064065],[517040.603091387,5276562.639916875]]]},"properties":{"id_build":2194,"id_source":"w145341219","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.794799036,5276209.43326149],[516650.2879426624,5276209.420375863],[516650.25191559654,5276203.629896758],[516650.2372923692,5276200.862477523],[516652.7911813988,5276200.869778919],[516661.5044498512,5276200.894697995],[516661.2635283956,5276206.339852016],[516660.287042327,5276206.337058751],[516658.93307741155,5276207.000023909],[516658.7758554968,5276209.444646697],[516654.794799036,5276209.43326149]]]},"properties":{"id_build":2195,"id_source":"w145341221","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.16484131094,5276444.558365523],[516716.26993832923,5276434.111534993],[516717.09616347885,5276434.113906533],[516723.7059646633,5276434.132883078],[516723.76958697126,5276438.1340951305],[516723.0181545904,5276438.243077102],[516723.0514977709,5276439.71021695],[516723.0846494563,5276441.244040069],[516723.68585887883,5276441.134626731],[516723.67596554966,5276444.579929191],[516716.16484131094,5276444.558365523]]]},"properties":{"id_build":2196,"id_source":"w145341222","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.67596554966,5276444.579929191],[516723.59159929317,5276447.802738409],[516723.06582088803,5276447.801228642],[516723.02376558573,5276449.368177743],[516722.9814550024,5276451.024037883],[516723.5823442767,5276451.025763324],[516723.4947867622,5276455.3599604815],[516719.81402363325,5276455.460531965],[516716.0587875316,5276455.338612601],[516716.16484131094,5276444.558365523],[516723.67596554966,5276444.579929191]]]},"properties":{"id_build":2197,"id_source":"w145341225","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516711.39269472566,5276222.93213811],[516711.23098683794,5276226.932702111],[516707.8508546365,5276226.923004786],[516707.9352143819,5276223.700196476],[516699.89832535904,5276223.566007413],[516699.84551761247,5276215.786079524],[516704.1196745279,5276215.742766313],[516707.8079408111,5276215.697775517],[516707.80539030116,5276216.58688551],[516711.41118993156,5276216.4860906],[516711.39269472566,5276222.93213811]]]},"properties":{"id_build":2198,"id_source":"w145341229","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516662.69450080284,5276310.03725495],[516666.4501495848,5276310.048000885],[516666.5265347032,5276309.603660764],[516671.8595563773,5276309.618924224],[516671.85605686624,5276310.841450656],[516674.55980543804,5276310.960330505],[516674.4032157858,5276313.182675746],[516674.3876246536,5276318.628475342],[516668.26592613664,5276318.6109523475],[516662.59490480996,5276318.594725128],[516662.69450080284,5276310.03725495]]]},"properties":{"id_build":2199,"id_source":"w145341233","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.3580005194,5276171.215600691],[516674.7946397715,5276171.213987815],[516674.8324810868,5276168.491174663],[516673.75840305723,5276168.465871847],[516673.7776575393,5276166.987769591],[516673.76867960114,5276164.876090503],[516683.27077155025,5276164.881072162],[516683.27344425564,5276166.570402541],[516683.26962416584,5276167.904067435],[516683.2674262466,5276171.293820569],[516675.3580005194,5276171.215600691]]]},"properties":{"id_build":2200,"id_source":"w145341234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516519.47852828365,5276671.72240366],[516524.8222559083,5276667.847674187],[516528.2649384169,5276672.191893461],[516529.16813073016,5276671.52761861],[516531.55484175246,5276674.790787407],[516533.7320674613,5276677.764399162],[516535.1622794699,5276676.6570626255],[516537.18231193454,5276679.441291824],[516529.35528557486,5276684.976056846],[516522.7706806182,5276676.17733243],[516519.47852828365,5276671.72240366]]]},"properties":{"id_build":2201,"id_source":"w145341237","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.35321085516,5276466.071238974],[516706.41396032204,5276465.98034944],[516706.86430729605,5276466.092781026],[516706.9097677424,5276476.428904357],[516699.2481442923,5276476.518070265],[516699.26057268423,5276472.183657267],[516699.86145976756,5276472.185380268],[516699.895296518,5276470.862914767],[516699.94549395994,5276469.073709409],[516699.2694956266,5276469.07177103],[516699.35321085516,5276466.071238974]]]},"properties":{"id_build":2202,"id_source":"w145341246","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.6805126607,5276499.041971895],[517223.5340564024,5276499.272689859],[517223.4543442899,5276500.828410845],[517227.0593211016,5276500.95021312],[517226.9805943173,5276502.172517679],[517226.5095492299,5276509.061789924],[517225.5331136853,5276509.058901767],[517224.4107304122,5276507.610765139],[517222.03743753996,5276507.53706256],[517220.2799845521,5276507.487409828],[517220.6805126607,5276499.041971895]]]},"properties":{"id_build":2203,"id_source":"w145341247","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.2532031125,5276387.820869112],[516594.79268180573,5276388.819240966],[516594.8732465634,5276389.541878466],[516590.41007720213,5276390.0626334],[516589.7130391004,5276384.259156433],[516593.6502703529,5276383.792472281],[516593.3494356062,5276381.290972317],[516597.44443616876,5276380.813626256],[516602.35096455883,5276380.227456713],[516602.8351083202,5276384.29654925],[516603.2532031125,5276387.820869112]]]},"properties":{"id_build":2204,"id_source":"w145341248","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.2066591496,5276182.73529361],[516607.8490675126,5276182.714604775],[516607.8458034095,5276183.859333848],[516602.94085162843,5276183.834235871],[516602.95786737907,5276180.500094943],[516599.38995344273,5276180.478811456],[516599.4256912755,5276173.210380432],[516602.6105245009,5276173.230571928],[516602.6224395269,5276171.685764813],[516602.0515673639,5276171.684137563],[516602.0839821745,5276165.582663435],[516605.9523962674,5276165.593691301],[516605.91557297914,5276173.239993945],[516606.67423183355,5276173.242156992],[516607.4328906891,5276173.244320136],[516607.43602794217,5276172.1440465795],[516611.2593371377,5276172.166063351],[516611.2233309667,5276179.523405319],[516611.2066591496,5276182.73529361]]]},"properties":{"id_build":2205,"id_source":"w145341257","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516659.73578214174,5276170.592969052],[516659.60336901067,5276177.494362691],[516652.8959454072,5276177.364041655],[516652.9494031611,5276174.430107699],[516652.9671588703,5276173.474357464],[516647.0558832217,5276173.368547475],[516647.10065126844,5276170.845805367],[516647.1094333487,5276170.4012718685],[516656.4609051296,5276170.539146926],[516659.73578214174,5276170.592969052]]]},"properties":{"id_build":2206,"id_source":"w145341298","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516653.86661644635,5276192.5373797],[516654.31698559935,5276192.649807127],[516654.2323374253,5276195.983754733],[516652.9557096037,5276195.868964835],[516652.7911813988,5276200.869778919],[516650.2372923692,5276200.862477523],[516644.4534848548,5276200.845946145],[516644.4648232963,5276196.8782928735],[516644.47698749724,5276192.621678886],[516648.60860209365,5276192.52234768],[516653.86661644635,5276192.5373797]]]},"properties":{"id_build":2207,"id_source":"w145341299","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516363.2680664688,5276585.814947959],[516357.697171169,5276590.356025095],[516360.54227199074,5276593.587068373],[516355.5735087431,5276597.685280383],[516352.80289234035,5276594.676728055],[516352.4267217231,5276594.8979511745],[516347.18654155463,5276588.659416587],[516358.1026869244,5276579.687753485],[516361.02196553315,5276583.252424358],[516363.2680664688,5276585.814947959]]]},"properties":{"id_build":2208,"id_source":"w145341308","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.1610882979,5276375.307969193],[516497.94807994977,5276373.606928828],[516501.9153870719,5276373.129153897],[516502.2238672,5276375.597328661],[516510.9625265891,5276374.521813071],[516511.9319818519,5276382.29322467],[516507.84443785215,5276382.792879886],[516503.2008451268,5276383.368760073],[516502.8556601056,5276380.6004041005],[516498.87330409273,5276381.089249704],[516498.1610882979,5276375.307969193]]]},"properties":{"id_build":2209,"id_source":"w145341309","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5068044968,5276370.134745798],[516534.69855529093,5276363.797489716],[516534.5521170041,5276362.463397902],[516538.53433106485,5276362.030146062],[516539.04843965557,5276366.1437739],[516548.06411990995,5276365.391405624],[516549.0923222587,5276373.618663134],[516544.2913297543,5276374.0718097165],[516539.85100254044,5276374.481528638],[516539.2636767835,5276369.700854698],[516535.5068044968,5276370.134745798]]]},"properties":{"id_build":2210,"id_source":"w145341311","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516698.5579004369,5276455.288407075],[516696.6046931219,5276455.393946795],[516696.5423269278,5276450.948179816],[516697.4436608405,5276450.950763911],[516697.450766508,5276448.472368882],[516697.46150466136,5276444.726991658],[516704.82272492413,5276444.63696153],[516704.8787092717,5276451.305504383],[516703.9022642566,5276451.302703706],[516703.8907887826,5276455.3037001835],[516698.5579004369,5276455.288407075]]]},"properties":{"id_build":2211,"id_source":"w145341319","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.7262602135,5276455.2725287145],[516455.2107974985,5276450.039029884],[516457.39278995077,5276448.711519242],[516456.5703354741,5276447.37551903],[516459.8818244145,5276445.050943908],[516462.62008831836,5276448.881888567],[516463.1732091883,5276449.839253365],[516467.6126243535,5276447.073312449],[516471.80124898156,5276453.308979794],[516461.8674180204,5276460.060412989],[516458.7262602135,5276455.2725287145]]]},"properties":{"id_build":2212,"id_source":"w145341323","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517139.1620102541,5276506.803560414],[517136.8998668048,5276509.797676986],[517134.034553827,5276513.567998161],[517130.66210638575,5276511.001862716],[517130.20980947267,5276511.556231101],[517127.5044364933,5276509.469960647],[517123.68991051894,5276506.535767976],[517126.85696957144,5276502.321770121],[517130.82932680764,5276505.223087172],[517133.0911419197,5276502.340107061],[517139.1620102541,5276506.803560414]]]},"properties":{"id_build":2213,"id_source":"w145341338","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516756.51179958193,5276790.218875004],[516758.01972421433,5276788.2115844125],[516757.28524455987,5276787.66488594],[516760.037263055,5276783.982965525],[516763.0576072566,5276786.236682484],[516768.8588430596,5276790.432240269],[516784.59417213954,5276769.472156537],[516770.8862185781,5276759.318943511],[516770.3433344397,5276760.050902521],[516761.00211219443,5276772.338294838],[516747.11415508634,5276762.084594029],[516746.2896703551,5276761.49318224],[516740.1071457761,5276769.733090808],[516738.75020335964,5276771.4740845235],[516736.1943969709,5276774.834273478],[516756.51179958193,5276790.218875004]]]},"properties":{"id_build":2214,"id_source":"w146255123","height_wall":12.0,"height_roof":12.0,"nb_lev":4,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516641.0212486999,5276710.633940361],[516639.12989868957,5276715.407544977],[516638.44980093907,5276716.850418482],[516636.86079074984,5276720.958049224],[516625.4545774944,5276717.369002348],[516626.0595642178,5276715.9259129],[516620.80741489964,5276714.0215446185],[516623.7588258641,5276706.250187084],[516629.0116159792,5276707.932280317],[516629.54054457694,5276706.822393288],[516641.0212486999,5276710.633940361]]]},"properties":{"id_build":2215,"id_source":"w146259605","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516031.60331127886,5277617.491933038],[516033.77484332904,5277617.042239892],[516034.6389688443,5277616.855682108],[516034.4239756618,5277615.843717388],[516038.1358975285,5277615.064849094],[516043.44828688545,5277613.956973912],[516041.8471878017,5277606.339482613],[516029.78717286524,5277608.873594352],[516031.25491963245,5277615.834990004],[516031.60331127886,5277617.491933038]]]},"properties":{"id_build":2216,"id_source":"w147733318","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.6094331704,5277062.656235037],[517238.6393403624,5277062.385037347],[517238.4446299623,5277052.048453409],[517217.42245869956,5277052.230762986],[517217.6094331704,5277062.656235037]]]},"properties":{"id_build":2217,"id_source":"w156350962","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.57108332566,5277080.592570804],[517224.91956923646,5277094.808390994],[517228.5700949458,5277094.641367381],[517228.60375565256,5277080.72675527],[517224.57108332566,5277080.592570804]]]},"properties":{"id_build":2218,"id_source":"w156350964","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515330.34358018084,5277047.0122428695],[515327.48935724195,5277047.115868646],[515327.2818923599,5277040.335802238],[515331.4134636849,5277040.013260081],[515331.48534830083,5277041.235985799],[515339.14707697916,5277040.811605393],[515339.3606763779,5277045.257755205],[515338.5339528567,5277045.477856746],[515338.8153367004,5277052.702677115],[515330.627900222,5277053.1256737495],[515330.34358018084,5277047.0122428695]]]},"properties":{"id_build":2219,"id_source":"w167333729","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.80598102853,5276995.974814463],[515281.3700200273,5276991.98051492],[515277.24599886755,5276989.4134812765],[515281.0926446736,5276983.199753622],[515289.3401052013,5276988.556107031],[515287.75649798964,5276990.997021762],[515291.6554929299,5276993.452332272],[515287.0548843428,5277000.775470276],[515283.1558924037,5276998.320162817],[515282.92999683745,5276998.541849251],[515278.80598102853,5276995.974814463]]]},"properties":{"id_build":2220,"id_source":"w167333943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515206.99290592025,5277087.2547713155],[515219.8148777121,5277095.179188898],[515215.441489814,5277101.8361397125],[515212.89206248155,5277100.273522857],[515209.87546940916,5277105.044648361],[515203.5772912612,5277101.027171582],[515206.4428048901,5277096.589067328],[515205.392816986,5277096.030626939],[515207.2016698086,5277093.590277974],[515204.05257467995,5277091.581540224],[515206.99290592025,5277087.2547713155]]]},"properties":{"id_build":2221,"id_source":"w167333947","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515210.17252455314,5276272.387510339],[515206.8637618165,5276273.823684262],[515205.5943780321,5276270.930742294],[515206.4974803048,5276270.2662629485],[515205.1535623589,5276267.150847439],[515218.1644574304,5276260.961015285],[515232.05855570326,5276290.449312006],[515220.85420171847,5276295.199020089],[515217.56751845655,5276288.188640959],[515215.3869124815,5276289.072060135],[515210.68119361944,5276278.946071136],[515212.7866893062,5276278.062454008],[515210.17252455314,5276272.387510339]]]},"properties":{"id_build":2222,"id_source":"w167334306","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515386.32081853424,5276838.661877653],[515386.24130759935,5276840.328762267],[515378.34929717076,5276842.530708049],[515378.1260334573,5276841.752140917],[515373.4659355704,5276843.0735119805],[515372.2748005218,5276839.069340219],[515372.7260240009,5276838.848252099],[515371.75873917603,5276835.400369646],[515375.89280608995,5276834.188747869],[515375.67012862343,5276833.1879031025],[515390.5526099963,5276828.892771747],[515392.7852328767,5276836.678448132],[515386.32081853424,5276838.661877653]]]},"properties":{"id_build":2223,"id_source":"w167334405","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515354.76783331804,5276870.2533917865],[515353.5611603613,5276872.139584134],[515345.3141785345,5276866.560863224],[515347.5007401425,5276863.343575931],[515352.5249174299,5276866.357590287],[515356.0680768592,5276861.365648595],[515363.7159691763,5276866.275966151],[515364.99863217276,5276864.056557463],[515367.9230651461,5276865.842508995],[515367.243300401,5276867.285530511],[515366.56558896124,5276867.950579976],[515361.5910187947,5276874.605833844],[515354.76783331804,5276870.2533917865]]]},"properties":{"id_build":2224,"id_source":"w167334423","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515392.4224124489,5276973.934967667],[515391.44664309977,5276973.710109062],[515387.0908828351,5276973.58745773],[515382.5101028537,5276973.353075549],[515383.2107053798,5276964.019194172],[515384.93810895155,5276964.023757901],[515386.014826819,5276954.468591389],[515393.82423891575,5276955.04492965],[515392.96812110307,5276966.378912647],[515394.39481227024,5276966.493823933],[515394.16274105496,5276969.049422812],[515392.8108611616,5276969.04584901],[515392.4224124489,5276973.934967667]]]},"properties":{"id_build":2225,"id_source":"w167334442","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515399.85845731327,5276888.488227246],[515399.9332688706,5276888.599564748],[515402.8573848572,5276890.496672826],[515405.55647668557,5276892.282047403],[515409.5303000372,5276894.848774],[515400.7857409368,5276907.0510025425],[515399.58640844346,5276906.158713416],[515397.9273336227,5276908.710538279],[515393.8035980053,5276906.032283554],[515395.46237792977,5276903.591596413],[515394.6376889204,5276903.033717812],[515399.916221499,5276895.045619778],[515396.91700144013,5276893.148314572],[515399.85845731327,5276888.488227246]]]},"properties":{"id_build":2226,"id_source":"w167334686","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515401.29545554845,5276884.713279404],[515399.8690383801,5276884.487227608],[515398.67175834166,5276882.81696656],[515398.7545052098,5276879.927554347],[515393.43170367775,5276876.245872524],[515399.76320852083,5276867.704859926],[515399.01362056454,5276867.147179372],[515401.6523162404,5276863.375409663],[515410.64912982594,5276869.400753522],[515409.5950027596,5276870.3982208185],[515403.1860288938,5276879.828135142],[515410.38263601775,5276884.959600041],[515407.8935671486,5276888.954041122],[515402.12161634007,5276884.715464533],[515401.29545554845,5276884.713279404]]]},"properties":{"id_build":2227,"id_source":"w167334755","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515355.0193147325,5276888.814376596],[515357.96015290066,5276884.376545963],[515364.18335530517,5276888.393989917],[515361.0174913005,5276892.720084183],[515355.0193147325,5276888.814376596]]]},"properties":{"id_build":2228,"id_source":"w167336104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515317.6142273136,5277089.5452405615],[515317.4950121753,5277077.764120534],[515330.8639374958,5277077.577025069],[515330.8323345792,5277089.580027772],[515317.6142273136,5277089.5452405615]]]},"properties":{"id_build":2229,"id_source":"w167336415","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515364.56155618536,5276915.846482748],[515369.9917130995,5276907.303059467],[515379.6638503379,5276913.552417918],[515373.9329713484,5276922.206177994],[515364.56155618536,5276915.846482748]]]},"properties":{"id_build":2230,"id_source":"w167336511","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515392.4224124489,5276973.934967667],[515392.8108611616,5276969.04584901],[515394.16274105496,5276969.049422812],[515393.77399739623,5276974.049680276],[515392.4224124489,5276973.934967667]]]},"properties":{"id_build":2231,"id_source":"w167336601","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515344.80900183745,5277001.260799205],[515344.17448993435,5277014.040189457],[515333.1359789119,5277013.344273772],[515333.9206747092,5277000.565277938],[515344.80900183745,5277001.260799205]]]},"properties":{"id_build":2232,"id_source":"w167336790","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515285.63311472855,5277056.008154112],[515285.6564550351,5277047.117041415],[515297.7492749688,5277046.704240446],[515297.72474826185,5277056.0399087705],[515285.63311472855,5277056.008154112]]]},"properties":{"id_build":2233,"id_source":"w167336879","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515284.10906693747,5276978.539804559],[515288.8604815982,5276970.994781051],[515297.7830155439,5276976.686337778],[515292.9567815223,5276984.120017943],[515284.10906693747,5276978.539804559]]]},"properties":{"id_build":2234,"id_source":"w167337006","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515411.60897698184,5276620.228237965],[515414.3305489142,5276613.567064358],[515426.7848097565,5276618.823604123],[515423.9884114464,5276625.37343423],[515411.60897698184,5276620.228237965]]]},"properties":{"id_build":2235,"id_source":"w167337067","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515253.26825382706,5277025.471012597],[515259.1487688345,5277016.928665491],[515265.1474593397,5277020.611997454],[515259.040754473,5277029.4871648345],[515253.26825382706,5277025.471012597]]]},"properties":{"id_build":2236,"id_source":"w167337092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.80598102853,5276995.974814463],[515274.75706570985,5276993.407979631],[515277.24599886755,5276989.4134812765],[515281.3700200273,5276991.98051492],[515278.80598102853,5276995.974814463]]]},"properties":{"id_build":2237,"id_source":"w167337424","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515349.09260930563,5276857.790789324],[515351.34226959577,5276859.130395317],[515350.13500953995,5276861.238866094],[515347.80936517916,5276860.232479231],[515349.09260930563,5276857.790789324]]]},"properties":{"id_build":2238,"id_source":"w167337560","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515339.11969533615,5277022.695766066],[515347.75545427116,5277023.163080242],[515347.12328133185,5277035.053359381],[515338.487539992,5277034.586046093],[515339.11969533615,5277022.695766066]]]},"properties":{"id_build":2239,"id_source":"w167337686","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515211.35845580883,5277083.598565003],[515218.3004604511,5277071.169061032],[515226.84942783916,5277076.081556321],[515219.53189621255,5277088.510068691],[515211.35845580883,5277083.598565003]]]},"properties":{"id_build":2240,"id_source":"w167337732","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515242.708058359,5277042.892287077],[515249.7936907096,5277033.019409241],[515255.41656144965,5277036.812886749],[515248.1053227642,5277046.796306702],[515242.708058359,5277042.892287077]]]},"properties":{"id_build":2241,"id_source":"w167338116","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515385.47867458686,5277015.260575378],[515386.18808738695,5277002.592526754],[515393.92233089334,5277003.168666881],[515392.9118983876,5277016.05819825],[515385.47867458686,5277015.260575378]]]},"properties":{"id_build":2242,"id_source":"w167338256","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515354.1177448014,5277088.307706697],[515354.8150655078,5277080.19634839],[515367.9557445589,5277081.120133085],[515367.18330275314,5277089.231291665],[515354.1177448014,5277088.307706697]]]},"properties":{"id_build":2243,"id_source":"w167338292","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515337.62988307315,5276961.009325413],[515352.7989490893,5276961.8272778485],[515352.0898976625,5276974.384190685],[515336.9211570027,5276973.455101116],[515337.62988307315,5276961.009325413]]]},"properties":{"id_build":2244,"id_source":"w167338301","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515369.91250833607,5276937.310558524],[515379.2363699753,5276933.223008837],[515383.7159449862,5276943.34855098],[515374.39268320386,5276947.213815749],[515369.91250833607,5276937.310558524]]]},"properties":{"id_build":2245,"id_source":"w167338342","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.195128983,5277085.662927032],[515288.93630723923,5277085.13542206],[515288.91792258644,5277092.137173722],[515278.4774602272,5277092.554328038],[515278.195128983,5277085.662927032]]]},"properties":{"id_build":2246,"id_source":"w167338410","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515342.7140231991,5276884.225216003],[515346.3886291676,5276886.346552347],[515348.3390287862,5276887.240810012],[515346.67821374413,5276890.459482643],[515341.12890151056,5276887.221810324],[515342.7140231991,5276884.225216003]]]},"properties":{"id_build":2247,"id_source":"w167338874","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515346.3886291676,5276886.346552347],[515342.7140231991,5276884.225216003],[515340.6891017456,5276883.108484612],[515344.9149273824,5276875.562122646],[515350.6892725137,5276878.911531333],[515346.3886291676,5276886.346552347]]]},"properties":{"id_build":2248,"id_source":"w167338881","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515254.8360973313,5277057.705624167],[515247.3729331387,5277068.3554852605],[515239.35114840127,5277062.888641219],[515247.9463848784,5277050.130080614],[515252.07008454006,5277052.80823273],[515250.4873835225,5277054.915741042],[515254.8360973313,5277057.705624167]]]},"properties":{"id_build":2249,"id_source":"w167338918","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515269.159142738,5277008.730571464],[515274.363178487,5277000.408745228],[515281.63660254714,5277004.873415666],[515274.09617763053,5277016.301017088],[515265.0246393264,5277010.164546832],[515266.6847927021,5277007.168128283],[515269.159142738,5277008.730571464]]]},"properties":{"id_build":2250,"id_source":"w167338946","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515461.30732624885,5276601.021679048],[515454.2090166633,5276615.339847933],[515446.6333249236,5276611.429862714],[515467.46083291573,5276574.809071392],[515473.611545678,5276577.9373196885],[515471.8769411743,5276580.600061695],[515461.30732624885,5276601.021679048]]]},"properties":{"id_build":2251,"id_source":"w167338962","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515310.5376069686,5277038.846935077],[515315.26883741585,5277038.970516935],[515314.48711015086,5277050.638126874],[515304.34815330873,5277050.611469431],[515304.0673107966,5277043.164373031],[515310.22638060775,5277042.958284724],[515310.5376069686,5277038.846935077]]]},"properties":{"id_build":2252,"id_source":"w167338996","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515316.26046075247,5276947.505179084],[515321.9164167533,5276938.740025631],[515329.18958944705,5276943.315893835],[515321.3468190594,5276955.409475835],[515312.64958927187,5276949.718475711],[515314.6107877114,5276946.500583252],[515316.26046075247,5276947.505179084]]]},"properties":{"id_build":2253,"id_source":"w167338998","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515221.4630635116,5276981.821037437],[515224.2526727522,5276977.71616299],[515225.8269574584,5276978.831675772],[515230.19986722944,5276972.3970116135],[515237.02331567387,5276976.638169571],[515229.9364744163,5276986.955617765],[515221.4630635116,5276981.821037437]]]},"properties":{"id_build":2254,"id_source":"w167339017","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515202.821539837,5276297.263572999],[515200.6406494529,5276298.258136476],[515197.3278399925,5276272.465119814],[515201.3132021881,5276270.8084273115],[515211.3934312228,5276293.84062878],[515202.821539837,5276297.263572999]]]},"properties":{"id_build":2255,"id_source":"w167339048","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515260.9956838682,5277085.951242251],[515262.266024785,5277088.39964479],[515269.4037143239,5277087.306961274],[515271.1083457862,5277095.9803267615],[515262.3935080816,5277097.068873962],[515258.06346617686,5277087.166094333],[515260.9956838682,5277085.951242251]]]},"properties":{"id_build":2256,"id_source":"w167339123","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515302.2385815895,5277081.72503518],[515302.2441309816,5277079.61339582],[515309.9794487792,5277079.744869068],[515310.0340962133,5277087.524790529],[515296.2905559863,5277087.377530542],[515296.2303429746,5277081.7092486145],[515302.2385815895,5277081.72503518]]]},"properties":{"id_build":2257,"id_source":"w167339135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515276.4584073152,5276888.830028044],[515282.2701125132,5276877.95359227],[515290.67026750755,5276882.421229536],[515282.4440939965,5276897.514626494],[515273.2192525455,5276892.489139588],[515275.48320238665,5276888.382911176],[515276.4584073152,5276888.830028044]]]},"properties":{"id_build":2258,"id_source":"w167339197","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515243.07958199625,5277101.797287072],[515243.4571322786,5277101.0202977],[515248.18482083763,5277102.477492186],[515245.83713976975,5277109.917703302],[515235.4811210005,5277106.778685898],[515237.75194223376,5277100.005107635],[515243.07958199625,5277101.797287072]]]},"properties":{"id_build":2259,"id_source":"w167339201","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515414.50482259446,5276859.852948459],[515420.17925783567,5276844.197281082],[515427.3069715855,5276846.994651341],[515420.1221630934,5276865.758222477],[515411.04318862414,5276862.399998216],[515412.10320036876,5276859.1797537105],[515414.50482259446,5276859.852948459]]]},"properties":{"id_build":2260,"id_source":"w167339246","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515374.35096287605,5277048.350808326],[515374.82065794844,5277041.1279692035],[515386.53416214004,5277042.1591668585],[515385.8986814221,5277055.271970304],[515372.7588269083,5277054.014728542],[515372.9982211419,5277048.680655806],[515374.35096287605,5277048.350808326]]]},"properties":{"id_build":2261,"id_source":"w167339277","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515345.9643344385,5277075.838567758],[515346.1837853826,5277078.0619398225],[515350.5397611912,5277078.073421828],[515350.36523677147,5277087.297555672],[515337.97237799247,5277087.598316965],[515338.00311733776,5277075.928731039],[515345.9643344385,5277075.838567758]]]},"properties":{"id_build":2262,"id_source":"w167339300","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515341.7717633265,5276899.782284674],[515343.5824909287,5276896.675145287],[515351.6070456299,5276901.141881268],[515345.7215926794,5276911.46235612],[515339.0468927362,5276907.777161316],[515343.1219022526,5276900.452679883],[515341.7717633265,5276899.782284674]]]},"properties":{"id_build":2263,"id_source":"w167339372","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515294.2826739215,5276962.562405954],[515301.59789337905,5276951.134239322],[515308.87077417393,5276955.821221126],[515307.13635648874,5276958.484013379],[515302.1362162462,5276966.350673376],[515301.6309427291,5276967.138437193],[515294.2826739215,5276962.562405954]]]},"properties":{"id_build":2264,"id_source":"w167339390","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.966845591,5276925.9906852655],[515337.11744984327,5276927.443798221],[515334.09656884713,5276933.770802909],[515323.29462516314,5276928.741083056],[515320.65074631333,5276934.513388464],[515315.47786344815,5276930.943311679],[515318.196843755,5276925.171201534],[515320.764742027,5276919.732114145],[515333.966845591,5276925.9906852655]]]},"properties":{"id_build":2265,"id_source":"w167339786","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515302.1362162462,5276966.350673376],[515307.13635648874,5276958.484013379],[515310.14279000816,5276960.4924311815],[515310.3648892573,5276961.7155514145],[515308.1778004137,5276965.155130813],[515306.975252172,5276965.48538851],[515306.52550171316,5276965.150787276],[515304.71539917926,5276968.035660645],[515302.1362162462,5276966.350673376]]]},"properties":{"id_build":2266,"id_source":"w167339921","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.3672531719,5276982.559194302],[515338.69907029544,5276982.795516173],[515338.69321509294,5276985.018294099],[515346.0522581291,5276985.482242489],[515345.4987039203,5276996.039052252],[515336.8631973045,5276995.460602633],[515337.4038555209,5276989.793903564],[515333.123795828,5276989.449212602],[515333.3672531719,5276982.559194302]]]},"properties":{"id_build":2267,"id_source":"w167340039","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515394.7416549124,5277090.971183214],[515394.12085164705,5277098.527040974],[515376.7773950528,5277096.480699802],[515376.94315615005,5277090.590733958],[515384.52737148287,5277091.055326356],[515384.8392353101,5277086.721702431],[515388.593500172,5277087.065042203],[515388.3590861694,5277090.509753097],[515394.7416549124,5277090.971183214]]]},"properties":{"id_build":2268,"id_source":"w167340053","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515245.06322824437,5276946.540366744],[515250.64513713395,5276937.330392123],[515252.219718901,5276938.334773069],[515254.55815889576,5276934.451010792],[515260.25710082054,5276937.911272269],[515257.8432623872,5276941.905974378],[515257.4683208753,5276941.682712639],[515252.0371968283,5276950.670796449],[515245.06322824437,5276946.540366744]]]},"properties":{"id_build":2269,"id_source":"w167340189","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515385.0498505867,5276978.583349862],[515384.27003166894,5276989.472977368],[515380.8155331887,5276989.352711883],[515380.5805331683,5276993.019700355],[515371.6446087625,5276992.440405652],[515372.5033222484,5276980.106169091],[515380.46290976845,5276980.682886078],[515380.6198702199,5276978.127088242],[515385.0498505867,5276978.583349862]]]},"properties":{"id_build":2270,"id_source":"w167340233","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515378.5159931608,5277035.3584642615],[515379.3697253766,5277024.913589216],[515384.5510009741,5277025.260695354],[515384.93209881935,5277023.150048359],[515392.14058898774,5277023.724797171],[515391.44262255164,5277032.058428226],[515387.3125105145,5277031.8252332825],[515386.62453699094,5277036.380142219],[515378.5159931608,5277035.3584642615]]]},"properties":{"id_build":2271,"id_source":"w167340268","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515506.5118116054,5276605.365174154],[515508.61161166785,5276606.593301425],[515505.1412053949,5276612.3633207055],[515501.66991845553,5276618.466758588],[515486.5224382316,5276609.201869594],[515493.53892493056,5276597.439733246],[515495.56421279476,5276598.445378307],[515497.6016259869,5276594.894332148],[515508.6246342482,5276601.703192971],[515506.5118116054,5276605.365174154]]]},"properties":{"id_build":2272,"id_source":"w167340487","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516328.160293198,5277561.190231442],[516326.86342273565,5277563.042630068],[516325.67212490586,5277564.739729221],[516326.12177060934,5277565.074409719],[516322.95524178696,5277569.511125304],[516322.28061766404,5277569.064674426],[516321.428659649,5277570.262596454],[516320.24490569416,5277571.9486038815],[516323.5426160953,5277574.291786325],[516322.69050277624,5277575.545277671],[516321.5820019268,5277577.175925894],[516322.1067435148,5277577.510816626],[516318.563495567,5277582.391037941],[516317.9639691698,5277581.944798048],[516317.20237896114,5277583.0540621],[516314.6538068204,5277586.725649184],[516313.6660252678,5277588.156585457],[516314.1904548738,5277588.6026144745],[516312.5317928999,5277590.9319039285],[516317.3286203588,5277594.279542425],[516316.3183104982,5277595.710415122],[516315.2175117467,5277597.274402244],[516315.81703676487,5277597.720641869],[516312.3492139709,5277602.48993855],[516311.52471167024,5277601.931929063],[516310.6349011164,5277603.240886505],[516309.48870505963,5277604.927001389],[516301.5440610336,5277599.347756939],[516309.3091840523,5277588.588938021],[516303.9876054099,5277584.906417035],[516315.373587584,5277568.378474706],[516312.150967316,5277566.035507336],[516321.19778641826,5277553.502058017],[516328.160293198,5277561.190231442]]]},"properties":{"id_build":2273,"id_source":"w188736211","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516756.81474360847,5276794.565311747],[516752.18515822693,5276800.820274783],[516749.9217006159,5276799.157781216],[516742.3001276249,5276793.301025846],[516738.4093175929,5276798.613435779],[516722.9023292213,5276818.607383708],[516725.20337200403,5276820.258860795],[516714.1657835096,5276834.864277684],[516725.0106371621,5276842.908593142],[516729.496692101,5276836.919931521],[516730.98060132214,5276838.03559258],[516733.57431359944,5276834.542142363],[516732.1576802395,5276833.5378137315],[516739.4714498097,5276823.656279419],[516740.96987058985,5276824.949808352],[516745.78092674847,5276818.261913052],[516741.34386044234,5276815.0372157395],[516743.89179019,5276811.799260015],[516746.5457988083,5276808.239305124],[516757.0222575284,5276813.80420345],[516762.8398559032,5276799.261636802],[516756.81474360847,5276794.565311747]]]},"properties":{"id_build":2274,"id_source":"w191378073","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.8398559032,5276799.261636802],[516756.81474360847,5276794.565311747],[516763.0576072566,5276786.236682484],[516768.8588430596,5276790.432240269],[516769.79010329506,5276798.281389898],[516769.84248593723,5276798.348224614],[516765.53724123986,5276798.90264084],[516764.39517186425,5276799.054948558],[516762.8398559032,5276799.261636802]]]},"properties":{"id_build":2275,"id_source":"w191378075","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.9217006159,5276799.157781216],[516752.18515822693,5276800.820274783],[516756.81474360847,5276794.565311747],[516763.0576072566,5276786.236682484],[516760.037263055,5276783.982965525],[516757.28524455987,5276787.66488594],[516758.01972421433,5276788.2115844125],[516756.51179958193,5276790.218875004],[516754.8152137307,5276792.536814526],[516754.046087155,5276793.590429456],[516749.9217006159,5276799.157781216]]]},"properties":{"id_build":2276,"id_source":"w191378076","height_wall":9.0,"height_roof":9.0,"nb_lev":3,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.438001557,5277391.878772268],[515979.19350894564,5277393.067691808],[515978.7560307001,5277388.287479796],[515981.5356106823,5277387.96168949],[515981.1698773814,5277384.404212037],[515988.45662630635,5277383.646239138],[515988.16294415167,5277381.200357094],[515994.09730272536,5277380.6609572405],[515994.6101734063,5277385.33023772],[515990.8539980895,5277385.764479267],[515991.0291382136,5277387.620994949],[515991.438001557,5277391.878772268]]]},"properties":{"id_build":2277,"id_source":"w340436078","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515989.81834194367,5277161.2592804795],[515989.6043284271,5277157.146521671],[515990.8813681562,5277157.038888951],[515990.6658291111,5277153.481824735],[515994.6468497844,5277153.270479632],[515994.50519383507,5277150.158177269],[516004.9462214674,5277149.520029064],[516005.1599189749,5277153.74392733],[516002.23032720375,5277153.9581547715],[516002.3363827386,5277156.359065057],[516002.512622491,5277160.549518388],[515989.81834194367,5277161.2592804795]]]},"properties":{"id_build":2278,"id_source":"w340436079","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515908.0248913796,5277301.182480078],[515906.97531082877,5277300.512773819],[515903.9561247212,5277306.061514867],[515897.6571230187,5277302.598979277],[515904.6763501609,5277289.837074992],[515908.1258024974,5277291.735874859],[515909.9376239515,5277288.2954924535],[515915.4117459428,5277291.311227244],[515912.31683936843,5277297.082036509],[515910.7421643633,5277296.18861499],[515909.49675459677,5277298.474691186],[515908.0248913796,5277301.182480078]]]},"properties":{"id_build":2279,"id_source":"w340436080","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.89196691266,5277104.502782046],[516002.44135065685,5277104.501543611],[516002.5805601217,5277108.502957248],[515994.7735472662,5277107.147829443],[515994.77537902974,5277106.480995973],[515993.498328143,5277106.588627854],[515993.49741233385,5277106.922044595],[515991.4705557302,5277106.583058446],[515991.18967941054,5277099.469343077],[516002.756728339,5277099.0565625895],[516002.83759661496,5277102.424319277],[516002.89196691266,5277104.502782046]]]},"properties":{"id_build":2280,"id_source":"w340436081","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516036.59115396446,5277139.826799865],[516032.38481568027,5277140.0374959335],[516032.31216153887,5277139.148177807],[516030.9676780353,5277139.200045892],[516029.68327636487,5277139.2520796945],[516029.6823584756,5277139.585496449],[516024.34918061085,5277139.9042360205],[516023.7820060924,5277127.677301747],[516026.7116119262,5277127.463085124],[516026.6392626515,5277126.462628172],[516035.87808544043,5277126.043505859],[516036.59115396446,5277139.826799865]]]},"properties":{"id_build":2281,"id_source":"w340436085","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.1805322246,5277148.158171221],[515953.94768512424,5277148.168647194],[515936.15327989176,5277149.109061801],[515935.9416613635,5277144.107193778],[515937.9697248772,5277144.001604962],[515937.5467943133,5277133.886729994],[515942.7445753217,5277133.645338017],[515942.5414457876,5277128.2878458975],[515949.0387471465,5277127.961105956],[515949.28684079146,5277133.352063419],[515951.36744950333,5277133.257737157],[515951.68765914085,5277139.738061919],[515951.8657628049,5277143.261680008],[515953.89352241234,5277143.267235656],[515954.1805322246,5277148.158171221]]]},"properties":{"id_build":2282,"id_source":"w340436087","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515968.3501831486,5277376.255832734],[515957.7575401694,5277377.560467947],[515957.34597059386,5277374.280715985],[515957.0226920693,5277371.668044811],[515953.7925102022,5277371.992612114],[515953.13062500703,5277366.87836802],[515957.11210754915,5277366.444719599],[515957.26047858916,5277367.111965002],[515961.3924646263,5277366.567592208],[515961.32010742463,5277365.56713571],[515969.4335797194,5277364.589125796],[515970.46180164703,5277373.038570492],[515967.90751291317,5277373.364983986],[515968.3501831486,5277376.255832734]]]},"properties":{"id_build":2283,"id_source":"w340436089","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515875.2901403201,5277369.432983595],[515869.7373369813,5277367.750748839],[515869.35036218213,5277369.20562525],[515869.0544760419,5277370.305102646],[515868.7543818484,5277370.193144934],[515867.01104574924,5277376.078802275],[515859.8072744629,5277373.947518751],[515861.6266115305,5277367.728647006],[515862.0015025091,5277367.951947909],[515865.6389774104,5277355.958762338],[515874.04345081386,5277358.426745784],[515873.28548752406,5277360.98089431],[515877.6376155629,5277362.326438612],[515875.2901403201,5277369.432983595]]]},"properties":{"id_build":2284,"id_source":"w340436092","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515915.07744518295,5277358.661020923],[515910.95092496293,5277357.204925362],[515909.6648198532,5277360.646744252],[515901.3366780763,5277357.734358613],[515902.62338600296,5277354.0702599995],[515903.3737737271,5277354.294589186],[515903.74446306366,5277353.306457638],[515904.13023314613,5277352.29613935],[515901.2043875683,5277351.176749989],[515903.096143345,5277345.958347008],[515911.2744057585,5277348.759185647],[515910.8964782462,5277349.647271129],[515917.49885745824,5277351.99925312],[515915.07744518295,5277358.661020923]]]},"properties":{"id_build":2285,"id_source":"w340436093","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515930.2410335626,5277328.139049027],[515920.791250246,5277323.434216629],[515922.5431719053,5277319.9269903265],[515923.53315355483,5277320.418712789],[515924.1523469428,5277319.186754686],[515924.5827571924,5277318.332155567],[515920.3678532804,5277316.23120109],[515922.48974249285,5277312.002577867],[515927.6646518251,5277314.572947054],[515928.1101437374,5277313.696161496],[515932.31753672735,5277315.797101021],[515931.8795847459,5277316.662792915],[515935.1645224755,5277318.294423361],[515930.2410335626,5277328.139049027]]]},"properties":{"id_build":2286,"id_source":"w340436094","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.25160203734,5277022.227392276],[516004.24699797266,5277021.373977898],[516004.1025942196,5277019.261926013],[516011.1632690234,5277018.947917244],[516011.88221778534,5277030.619566664],[516011.8819121729,5277030.730705561],[516005.1213607511,5277031.156678063],[516005.04900644044,5277030.156221538],[516000.07622744533,5277030.475974406],[515996.78607631923,5277030.689214122],[515996.85843203904,5277031.6896705385],[515992.0508828566,5277032.009884183],[515991.8255719257,5277032.0092653865],[515991.25160203734,5277022.227392276]]]},"properties":{"id_build":2287,"id_source":"w340436095","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.37919796957,5277175.301839482],[516027.1793568095,5277175.810168896],[516026.089537657,5277162.47039743],[516030.3712674348,5277162.148764683],[516030.66371969884,5277165.039203714],[516033.01493032963,5277164.85673988],[516034.79524398997,5277164.717160691],[516034.57789573004,5277161.826928269],[516038.3339126577,5277161.503853669],[516038.6965647304,5277166.172722724],[516038.1705451992,5277166.282413565],[516038.4617688344,5277169.617408703],[516043.82477734156,5277169.365448232],[516044.01456051326,5277171.3553729905],[516044.37919796957,5277175.301839482]]]},"properties":{"id_build":2288,"id_source":"w340436096","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515923.4590751039,5277342.012970069],[515923.30796395923,5277342.345976149],[515920.9826103236,5277341.339358964],[515919.84851837705,5277344.1147525385],[515911.52187654946,5277340.646657683],[515913.72918530036,5277335.384664639],[515914.3187908135,5277333.9859149335],[515911.01835028885,5277332.53207748],[515912.9076907805,5277328.20278942],[515916.4334327095,5277329.657243825],[515915.828988585,5277330.989268877],[515919.2793244571,5277332.554658678],[515919.80836554646,5277331.333567587],[515926.7847406968,5277334.242281495],[515923.4590751039,5277342.012970069]]]},"properties":{"id_build":2289,"id_source":"w340436097","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.84584408434,5277121.2847579075],[516000.89256845036,5277121.501669444],[516001.2485340446,5277128.615591942],[516001.9244556266,5277128.6174494745],[516001.92384475993,5277128.839727307],[515988.779094503,5277129.47045618],[515988.2081820834,5277118.577192713],[515992.94055707473,5277118.2567697335],[515992.9390307741,5277118.812464303],[515998.1220210255,5277118.49328324],[515997.691253628,5277111.268015796],[516002.8715018303,5277111.949089164],[516002.5607062981,5277115.726986583],[516002.7105717055,5277118.583690119],[516002.84584408434,5277121.2847579075]]]},"properties":{"id_build":2290,"id_source":"w340436098","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515947.7653076292,5277313.205380153],[515949.61713163,5277308.876001208],[515947.95185833005,5277308.160145031],[515949.4106364209,5277304.752149654],[515950.4383207078,5277305.188410066],[515952.17682903976,5277301.103229057],[515955.50740871154,5277302.52383039],[515955.6963773636,5277302.079789113],[515959.6720856972,5277303.768896272],[515959.24124273314,5277304.779087322],[515962.60933817655,5277306.210909554],[515960.175455573,5277311.916822147],[515957.9925424407,5277310.999492547],[515955.78715952253,5277310.059874235],[515953.4213015186,5277315.610380366],[515947.7653076292,5277313.205380153]]]},"properties":{"id_build":2291,"id_source":"w340436099","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515899.36237567844,5277393.182559464],[515899.43929567095,5277392.515930766],[515897.11153040326,5277392.398434703],[515897.18996744265,5277391.176111166],[515893.06012874225,5277390.942556753],[515893.21669780277,5277388.609048543],[515889.91294662264,5277388.377751454],[515890.226992435,5277383.377318021],[515901.56513660174,5277384.075112346],[515901.4172274424,5277385.986312774],[515901.25350936956,5277388.186433497],[515904.78255737456,5277388.418352474],[515904.2356125116,5277396.196643833],[515900.9318660457,5277395.965340474],[515899.284545203,5277394.182605048],[515899.36237567844,5277393.182559464]]]},"properties":{"id_build":2292,"id_source":"w340436100","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.5294215951,5277061.877587022],[515981.5300316691,5277061.655309213],[515984.5347723037,5277061.441277452],[515984.24717296194,5277056.772618823],[515981.24273496174,5277056.875511831],[515980.88429967477,5277050.6507026395],[515991.70102109294,5277050.013561011],[515991.7700198755,5277052.236545322],[515995.37559285824,5277052.024169288],[515995.627219469,5277056.114803004],[515993.86192481633,5277056.243321585],[515993.93367014325,5277057.466055814],[515997.52403610444,5277057.320323197],[515997.7544734942,5277060.921883965],[515981.5294215951,5277061.877587022]]]},"properties":{"id_build":2293,"id_source":"w340436101","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.734450973,5277165.275211357],[515954.73353736685,5277165.608628123],[515936.78174503986,5277166.44858353],[515936.57043198706,5277161.335576424],[515938.5233875404,5277161.229782261],[515938.24092860625,5277154.67176358],[515936.28797085927,5277154.777557842],[515936.00307562825,5277149.108650704],[515936.15327989176,5277149.109061801],[515953.94768512424,5277148.168647194],[515954.1659151024,5277153.492839383],[515949.20856923907,5277153.701537749],[515949.3151032838,5277155.935738634],[515949.4220025605,5277158.036572825],[515954.37934474216,5277157.827874649],[515954.734450973,5277165.275211357]]]},"properties":{"id_build":2294,"id_source":"w340436102","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515940.7394441584,5277396.941085121],[515930.1476358483,5277397.956809203],[515929.40272956726,5277390.241669345],[515932.3323821354,5277389.9607220795],[515932.20085341315,5277388.626684625],[515936.01691904006,5277388.259253069],[515935.8853302795,5277386.947443325],[515940.35494171997,5277386.515119579],[515940.0482887819,5277383.313453943],[515943.8868881441,5277382.946089223],[515944.61718255613,5277390.505595207],[515940.7259883893,5277390.883929405],[515940.77706667327,5277391.428654247],[515940.21367198584,5277391.482681639],[515940.359701319,5277393.005696645],[515940.7394441584,5277396.941085121]]]},"properties":{"id_build":2295,"id_source":"w340436103","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516053.37011408113,5277046.849062126],[516054.2722748032,5277046.518130189],[516055.6882082727,5277050.523065134],[516049.2231887128,5277052.728037179],[516048.2551151489,5277049.724595855],[516048.25634038675,5277049.280040246],[516047.7382799191,5277049.223042575],[516047.1300953336,5277049.165796575],[516042.54449965013,5277050.709117365],[516041.2039668349,5277046.593253635],[516043.30870092363,5277045.932213839],[516041.89245162794,5277042.038420859],[516048.73330424743,5277039.723336766],[516050.07505874254,5277043.394646591],[516051.9541781065,5277042.844127773],[516053.37011408113,5277046.849062126]]]},"properties":{"id_build":2296,"id_source":"w340436104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.01143970306,5277107.358461034],[515937.0469848299,5277107.956458836],[515936.67190665286,5277099.564381532],[515939.79660786263,5277099.417338957],[515939.6269183536,5277095.560325325],[515944.69702842156,5277095.329699412],[515944.86659284454,5277099.231168764],[515947.37532993074,5277099.126899441],[515947.1418576833,5277093.880464081],[515951.1979288702,5277093.702636564],[515951.5021159183,5277100.549678161],[515947.64885737165,5277100.716946942],[515947.7052563945,5277102.061892327],[515947.75478434947,5277103.173425432],[515949.79782200896,5277103.090109633],[515950.01143970306,5277107.358461034]]]},"properties":{"id_build":2297,"id_source":"w340436105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515942.2207905686,5277511.441369855],[515942.74677711766,5277511.3316703625],[515943.256937478,5277517.001198069],[515928.14992719545,5277518.760312667],[515925.3788876802,5277491.278970126],[515927.0313415142,5277491.172350625],[515925.3496946768,5277474.496778963],[515925.9507821691,5277474.387283373],[515925.3664149095,5277468.38413526],[515941.9679449718,5277466.651332995],[515942.04060842877,5277467.540650434],[515946.0971193588,5277467.107200206],[515946.24731542036,5277467.107611583],[515947.2709853649,5277477.224138166],[515938.85758647113,5277478.090217412],[515939.2377503071,5277481.870011759],[515941.4165682732,5277503.459328946],[515942.2207905686,5277511.441369855]]]},"properties":{"id_build":2298,"id_source":"w340436106","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516063.1517378081,5277170.963577326],[516058.3296164245,5277171.161441811],[516058.2315542447,5277168.59384273],[516054.28833760635,5277168.716336744],[516054.3338302266,5277171.283790806],[516044.01456051326,5277171.3553729905],[516043.82477734156,5277169.365448232],[516043.3944766091,5277164.718620369],[516049.8008247221,5277164.680705803],[516051.9712093463,5277164.708916741],[516051.9936137725,5277162.030510142],[516052.0115448886,5277160.974731801],[516061.61745629786,5277160.867853932],[516061.7216467785,5277166.658523206],[516063.01343027607,5277166.650972769],[516063.1517378081,5277170.963577326]]]},"properties":{"id_build":2299,"id_source":"w340436107","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515963.57663236477,5277282.107343178],[515960.20076940535,5277280.76441104],[515960.5033037378,5277279.987261901],[515959.4681056896,5277279.5509791495],[515958.40292822605,5277279.092386462],[515958.0249890726,5277279.980468812],[515952.47364624776,5277277.742460815],[515955.4986798359,5277270.08210516],[515958.64924841694,5277271.424416999],[515959.48083797144,5277269.4261803925],[515963.9816925279,5277271.32789535],[515964.208609248,5277270.739476699],[515967.5394167995,5277272.082287556],[515963.57663236477,5277282.107343178]]]},"properties":{"id_build":2300,"id_source":"w340436108","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515953.05730436207,5277127.760949142],[515952.53900640167,5277127.7928710515],[515949.0387471465,5277127.961105956],[515942.5414457876,5277128.2878458975],[515937.2760070094,5277128.551280838],[515936.53479011724,5277113.989945158],[515938.4802512838,5277113.884130397],[515938.45176177047,5277113.317239705],[515944.4232700894,5277113.022397237],[515944.3806431931,5277112.133162537],[515944.82380945486,5277112.112148133],[515945.0942559433,5277117.569850318],[515947.1223288786,5277117.464264673],[515947.1295347473,5277117.575424159],[515947.25780970143,5277120.09864776],[515947.4216876635,5277123.333263281],[515952.8223465555,5277123.059093987],[515953.05730436207,5277127.760949142]]]},"properties":{"id_build":2301,"id_source":"w340436109","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515980.75235966925,5277290.26766411],[515976.62641696754,5277288.589244341],[515977.45831527805,5277286.479871296],[515975.82286561746,5277285.841886875],[515974.3074542365,5277285.24868816],[515972.719065367,5277289.356502343],[515965.2172611507,5277286.335153209],[515966.7299355572,5277282.449408946],[515972.88176664733,5277284.800217703],[515973.6385637212,5277282.6906381],[515970.03740210977,5277281.3470821455],[515971.7015014453,5277277.017195408],[515975.8277587268,5277278.584472691],[515976.58394773334,5277276.697171374],[515980.78499936813,5277278.37579719],[515981.3140582195,5277277.154711752],[515985.2898067966,5277278.83272242],[515980.75235966925,5277290.26766411]]]},"properties":{"id_build":2302,"id_source":"w340436110","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515956.62831835996,5277186.730374629],[515949.2665607788,5277187.36592914],[515941.161116144,5277188.066140675],[515937.92344494903,5277188.346240785],[515937.55858415534,5277184.455350501],[515941.54019012203,5277184.021691279],[515941.3954638439,5277182.020779377],[515943.57402200875,5277181.804464849],[515943.27584317606,5277178.247176097],[515943.0650473006,5277175.690384471],[515946.52064274007,5277175.366428123],[515949.90113677713,5277175.042268095],[515951.70936501614,5277172.935566267],[515956.1415909392,5277172.503151539],[515956.65177052165,5277178.172677358],[515955.9007529453,5277178.170619262],[515956.13346447865,5277180.94975097],[515956.62831835996,5277186.730374629]]]},"properties":{"id_build":2303,"id_source":"w340436111","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515995.69249066676,5277073.3638704745],[515996.368723982,5277073.254588445],[515996.6581446534,5277077.256414377],[515984.71492745343,5277077.890454001],[515984.49999152403,5277074.111112655],[515985.5517400473,5277074.002860233],[515985.04798587103,5277065.999415761],[515984.0713391168,5277066.107874441],[515983.99684608256,5277065.885390468],[515989.78070857836,5277065.567851237],[515989.9251162434,5277067.679902909],[515992.85475091543,5277067.465669211],[515992.7103443054,5277065.353617461],[515997.8933821053,5277065.034436108],[515998.2524089241,5277071.036968718],[515995.62349369255,5277071.140886043],[515995.65826696315,5277072.152353241],[515995.69249066676,5277073.3638704745]]]},"properties":{"id_build":2304,"id_source":"w340436112","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516035.463870323,5277107.370886055],[516030.22078582784,5277107.689868497],[516030.2909929406,5277109.468297849],[516024.5819683985,5277109.897142369],[516024.43206897867,5277109.785590082],[516024.07582451636,5277102.782805224],[516023.2493886296,5277102.891670695],[516022.8913072812,5277096.555719451],[516027.4731906611,5277096.346050082],[516027.5464579643,5277097.013090271],[516028.29503856314,5277097.904268861],[516031.07445394964,5277097.689640938],[516031.0060828135,5277095.244378152],[516034.7618363952,5277095.032440094],[516035.05414883414,5277100.701372477],[516035.14780358697,5277102.146447185],[516035.463870323,5277107.370886055]]]},"properties":{"id_build":2305,"id_source":"w340436113","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515926.8041810391,5277272.226338206],[515925.45541112387,5277271.111251168],[515921.3489371699,5277276.034626521],[515920.1810505361,5277277.431794204],[515918.9070772011,5277276.428052962],[515916.94443825533,5277280.090299808],[515911.91939069325,5277277.631489787],[515914.7862713691,5277272.860315105],[515914.18698594865,5277272.302978211],[515922.47509529296,5277262.434197983],[515924.3483565246,5277263.995277848],[515926.98508766905,5277261.0017160745],[515931.1061986137,5277264.458323555],[515928.54426345276,5277267.563227876],[515929.2937491901,5277268.120977174],[515928.9170299972,5277268.5645056255],[515929.51631440374,5277269.12184404],[515926.8041810391,5277272.226338206]]]},"properties":{"id_build":2306,"id_source":"w340436114","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515928.9182404744,5277350.474526742],[515930.27885059465,5277347.255195515],[515929.0784736336,5277346.807352155],[515930.9678230325,5277342.478069837],[515932.99308014393,5277343.372729996],[515934.5045018173,5277339.931532907],[515937.95513164153,5277341.385794868],[515938.40877195843,5277340.275638818],[515939.0840604477,5277340.499767022],[515942.3093898668,5277341.953414794],[515941.855748931,5277343.063570544],[515945.3063750779,5277344.517836876],[515942.96337502304,5277349.957270253],[515940.4127291338,5277348.950028358],[515940.0424288442,5277349.793676939],[515939.73257340747,5277350.504123277],[515936.882137444,5277349.273782623],[515935.2193010084,5277353.159123876],[515928.9182404744,5277350.474526742]]]},"properties":{"id_build":2307,"id_source":"w340436115","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515939.3132622729,5277366.507105026],[515939.38623176585,5277367.285283331],[515939.8976262022,5277372.510253584],[515932.9863661818,5277373.269314828],[515932.69448498805,5277370.156601925],[515930.974255311,5277370.3186044125],[515929.31410515384,5277370.4807717865],[515929.60598813614,5277373.593484517],[515923.4463309814,5277374.132333922],[515922.8616463299,5277368.240325995],[515924.88993553363,5277368.023593802],[515924.45210670587,5277363.354525126],[515928.5086887938,5277362.921062551],[515928.3606184037,5277362.142678939],[515933.31869845977,5277361.600546287],[515933.1724535337,5277360.155328811],[515937.1539391124,5277359.721666741],[515937.8109714847,5277366.614132252],[515939.3132622729,5277366.507105026]]]},"properties":{"id_build":2308,"id_source":"w340436116","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515986.69147790514,5277370.082336845],[515987.2925773468,5277369.972847574],[515987.4433862742,5277369.750982092],[515987.9580944578,5277373.753428142],[515980.67072313005,5277374.733679599],[515980.15539995214,5277370.953512117],[515976.47401078825,5277371.499108033],[515975.8863299003,5277366.71848426],[515976.86292611726,5277366.61002427],[515976.42178417824,5277363.163480126],[515979.9529798429,5277362.6174719315],[515980.1007382898,5277363.506995829],[515986.1108237802,5277362.745516018],[515985.8901028841,5277361.077813071],[515990.6228912282,5277360.535110618],[515991.3580120935,5277366.316399009],[515986.32452591456,5277366.969414996],[515986.47863359377,5277368.281287724],[515986.69147790514,5277370.082336845]]]},"properties":{"id_build":2309,"id_source":"w340436117","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515941.30368145637,5277306.06362496],[515941.1827909874,5277306.330029441],[515940.1776362498,5277305.893832346],[515938.938236135,5277308.724503703],[515939.4108189333,5277308.9258490475],[515939.1765483032,5277309.458678655],[515932.1104551207,5277306.394108932],[515933.6219465291,5277302.930684009],[515932.50426206493,5277302.449724382],[515933.4111209428,5277300.385006123],[515933.9325970227,5277299.186123603],[515932.9874598462,5277298.772319964],[515934.76344708406,5277294.709464365],[515935.7536145276,5277295.134505511],[515935.98791582923,5277294.590561883],[515940.66115427646,5277296.614984521],[515941.0465997403,5277295.726921591],[515945.05220453115,5277297.471670448],[515941.30368145637,5277306.06362496]]]},"properties":{"id_build":2310,"id_source":"w340436118","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516001.90437916777,5277299.883780148],[515995.81759986526,5277301.200732139],[515991.3572888055,5277295.487009087],[515990.4293117163,5277294.29526476],[515987.8707147817,5277296.177614765],[515983.89162267186,5277295.722130654],[515984.7363376686,5277288.944922957],[515984.88653832814,5277288.945335317],[515984.88531783613,5277289.389891093],[515987.438118503,5277289.619179727],[515988.0529594924,5277284.5084380675],[515998.5636544339,5277285.759847101],[515998.64119788725,5277284.870941911],[515998.8664990339,5277284.871560994],[515998.0983941973,5277291.0932782665],[515999.97529093106,5277291.320715266],[515999.5891002896,5277295.209546454],[516000.8654990982,5277295.324193859],[516001.90437916777,5277299.883780148]]]},"properties":{"id_build":2311,"id_source":"w340436119","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.9597745419,5277030.724398038],[516050.9281568224,5277033.616700656],[516052.50686489034,5277033.0653539235],[516052.73033742595,5277033.732808461],[516041.0031500615,5277037.701520912],[516041.0037623991,5277037.4792431155],[516041.9059238574,5277037.148309265],[516040.1926246168,5277032.031161242],[516039.21535882744,5277032.361888479],[516039.051600251,5277031.827966643],[516038.84320803155,5277031.138326232],[516034.9411844808,5277029.90504241],[516037.2129665144,5277023.131774689],[516040.36426285916,5277024.251852167],[516041.10978924105,5277026.254421268],[516044.71813641116,5277025.041825675],[516044.04771487036,5277023.039463056],[516048.5582289084,5277021.49593647],[516051.5384832976,5277030.173051044],[516049.9597745419,5277030.724398038]]]},"properties":{"id_build":2312,"id_source":"w340436120","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515956.7905100884,5277204.279787623],[515945.575159112,5277205.238206422],[515945.24535956915,5277202.258757597],[515939.1606211896,5277202.797796313],[515938.65194808785,5277196.572577199],[515940.60489186755,5277196.46678375],[515940.2427717684,5277191.575642901],[515941.44500568474,5277191.356654821],[515941.161116144,5277188.066140675],[515949.2665607788,5277187.36592914],[515949.41155819804,5277189.266816225],[515950.0874727263,5277189.2686677575],[515950.59704768466,5277195.160471043],[515949.99593093,5277195.269964106],[515950.1118615312,5277196.815124376],[515950.21331978193,5277198.16019343],[515950.8895377419,5277198.050906129],[515951.0348692542,5277199.829540467],[515956.3682924738,5277199.399594921],[515956.7905100884,5277204.279787623]]]},"properties":{"id_build":2313,"id_source":"w340436121","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516071.34535073163,5277108.403386315],[516055.976526858,5277109.383472698],[516055.3284592774,5277099.279081883],[516056.03454797657,5277099.23657296],[516056.0489249588,5277099.470006091],[516055.5531547035,5277099.501980962],[516055.6251929298,5277100.6135771535],[516059.63641603553,5277100.357903686],[516059.5860511194,5277099.557558534],[516062.84612472163,5277099.344271492],[516068.18691361905,5277099.003360057],[516068.15831396775,5277098.4809242785],[516068.6991767287,5277098.437960945],[516068.6273863299,5277097.237453458],[516073.795379703,5277096.9182982575],[516073.8170208192,5277097.240663293],[516073.4865071202,5277097.261978861],[516073.96193648933,5277104.598515266],[516071.11502230255,5277104.77959448],[516071.34535073163,5277108.403386315]]]},"properties":{"id_build":2314,"id_source":"w340436122","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.6584310408,5277029.033621653],[516074.1413129159,5277031.45794001],[516074.0665160622,5277031.346593792],[516074.89357671386,5277031.015457723],[516071.8400942773,5277021.671290428],[516062.3681273394,5277024.868206888],[516060.43198325194,5277018.861320296],[516063.13817333034,5277017.979667092],[516062.91500795196,5277017.201073276],[516064.34320730646,5277016.760454293],[516064.6414763441,5277017.539255367],[516068.0245223303,5277016.326052609],[516067.80105085945,5277015.658597501],[516069.6804875745,5277014.996945513],[516067.81822488183,5277009.434819389],[516068.0438433781,5277009.324302229],[516068.342112311,5277010.103103483],[516071.1234422794,5277009.210547355],[516074.50615697296,5277008.119601149],[516074.282992724,5277007.341006905],[516074.6588193564,5277007.230904657],[516081.6584310408,5277029.033621653]]]},"properties":{"id_build":2315,"id_source":"w340436123","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.5997250952,5277106.854133846],[516042.61425721465,5277107.168302728],[516042.4637456587,5277107.2790278],[516042.31997054006,5277104.944696825],[516039.8412751344,5277105.049007993],[516039.98505124234,5277107.383338908],[516035.47827871516,5277107.593205246],[516035.463870323,5277107.370886055],[516035.14780358697,5277102.146447185],[516038.57310081157,5277101.933601573],[516038.5016716062,5277100.59972778],[516038.28768990183,5277096.486967502],[516041.21731198987,5277096.272758156],[516041.07537312474,5277093.271593795],[516045.3568483824,5277093.061110897],[516045.8825683889,5277093.062559613],[516046.16858493723,5277098.286916224],[516045.19224865857,5277098.284225739],[516045.3351040364,5277100.951973496],[516046.31159300514,5277100.899094552],[516049.2410600234,5277100.740458698],[516049.5997250952,5277106.854133846]]]},"properties":{"id_build":2316,"id_source":"w340436124","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515894.7171689724,5277444.183042372],[515892.36060389754,5277454.623750564],[515886.7315755778,5277453.38585008],[515886.5032483523,5277454.496625062],[515886.2031588412,5277454.384666424],[515871.9429857318,5277451.233859018],[515872.24792348745,5277449.567593347],[515855.9612879314,5277445.966741808],[515858.1663832994,5277435.970165943],[515862.36947295954,5277436.870734123],[515862.90091524704,5277434.760525944],[515869.8057310346,5277436.3353],[515870.1854644259,5277434.78037793],[515870.3356613161,5277434.780787346],[515869.9559278843,5277436.335709405],[515883.69075311034,5277439.373938624],[515884.07049002254,5277437.819017445],[515884.2203836181,5277437.93056619],[515883.9157450575,5277439.485692241],[515890.89564803825,5277441.060696233],[515890.36419614987,5277443.170901898],[515893.2161126461,5277443.845525182],[515894.7171689724,5277444.183042372]]]},"properties":{"id_build":2317,"id_source":"w340436125","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515892.9991492734,5277413.281488637],[515891.02170827467,5277422.389554281],[515889.2430542315,5277421.951254669],[515887.79459121136,5277421.602768473],[515887.41454900557,5277423.268828342],[515881.260102179,5277421.9183598375],[515881.6401427076,5277420.252299575],[515880.25914633623,5277419.948455213],[515876.94178688707,5277419.205885211],[515875.56079002883,5277418.902041965],[515875.18105419644,5277420.45696365],[515874.80556104705,5277420.45593981],[515868.87640432594,5277419.106098714],[515869.25644148333,5277417.44003766],[515867.9655016413,5277417.158669645],[515864.28033722413,5277416.348420584],[515863.1019843704,5277416.089588386],[515862.79704755486,5277417.7558544455],[515856.7927866732,5277416.405821066],[515857.17342593614,5277414.517481303],[515855.1094221487,5277414.067300998],[515851.4692527386,5277413.279410558],[515853.3703254455,5277404.615683116],[515859.14960556576,5277405.853960251],[515858.9978942748,5277406.409245954],[515861.85013515473,5277406.972714819],[515862.00184670405,5277406.41742919],[515862.30224194867,5277406.418247599],[515892.9991492734,5277413.281488637]]]},"properties":{"id_build":2318,"id_source":"w340436126","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515922.31439386326,5277128.954907566],[515918.2582570581,5277129.166096829],[515918.11625576724,5277126.164935453],[515922.0975961358,5277125.842401806],[515922.31439386326,5277128.954907566]]]},"properties":{"id_build":2319,"id_source":"w340436127","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516053.70282393025,5277144.097264428],[516051.149655505,5277143.979085852],[516051.15517023223,5277141.978585333],[516053.70864595653,5277141.9856249895],[516053.70282393025,5277144.097264428]]]},"properties":{"id_build":2320,"id_source":"w340436128","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516046.31159300514,5277100.899094552],[516045.3351040364,5277100.951973496],[516045.19224865857,5277098.284225739],[516046.16858493723,5277098.286916224],[516046.24736955954,5277099.676380265],[516046.31159300514,5277100.899094552]]]},"properties":{"id_build":2321,"id_source":"w340436129","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516010.8042518793,5277012.945384312],[516005.7716802394,5277013.153828242],[516005.70176973956,5277011.264260577],[516010.6595446834,5277010.944471184],[516010.8042518793,5277012.945384312]]]},"properties":{"id_build":2322,"id_source":"w340436130","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.57310081157,5277101.933601573],[516035.14780358697,5277102.146447185],[516035.05414883414,5277100.701372477],[516038.5016716062,5277100.59972778],[516038.57310081157,5277101.933601573]]]},"properties":{"id_build":2323,"id_source":"w340436131","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516051.9712093463,5277164.708916741],[516049.8008247221,5277164.680705803],[516049.82727658877,5277163.258189711],[516049.8456055649,5277162.057930766],[516051.9936137725,5277162.030510142],[516051.9712093463,5277164.708916741]]]},"properties":{"id_build":2324,"id_source":"w340436132","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515995.37559285824,5277052.024169288],[515991.7700198755,5277052.236545322],[515991.70102109294,5277050.013561011],[515995.23149203346,5277049.800978625],[515995.37559285824,5277052.024169288]]]},"properties":{"id_build":2325,"id_source":"w340436134","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515931.98898722423,5277188.852356485],[515928.1202505441,5277189.208533151],[515927.7556872826,5277185.206504568],[515931.6244265985,5277184.850327654],[515931.98898722423,5277188.852356485]]]},"properties":{"id_build":2326,"id_source":"w340436135","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515908.1258024974,5277291.735874859],[515904.6763501609,5277289.837074992],[515906.4881701527,5277286.396691525],[515909.9376239515,5277288.2954924535],[515908.1258024974,5277291.735874859]]]},"properties":{"id_build":2327,"id_source":"w340436136","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516068.4718461536,5277180.814126281],[516068.10676534363,5277177.034366595],[516070.43553387676,5277176.818514023],[516070.72520470864,5277180.709205496],[516068.4718461536,5277180.814126281]]]},"properties":{"id_build":2328,"id_source":"w340436137","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515949.90113677713,5277175.042268095],[515946.52064274007,5277175.366428123],[515946.37591793574,5277173.365516121],[515951.70936501614,5277172.935566267],[515949.90113677713,5277175.042268095]]]},"properties":{"id_build":2329,"id_source":"w340436138","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515943.57402200875,5277181.804464849],[515941.3954638439,5277182.020779377],[515941.54019012203,5277184.021691279],[515937.55858415534,5277184.455350501],[515943.27584317606,5277178.247176097],[515943.57402200875,5277181.804464849]]]},"properties":{"id_build":2330,"id_source":"w340436139","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515997.52403610444,5277057.320323197],[515993.93367014325,5277057.466055814],[515993.86192481633,5277056.243321585],[515995.627219469,5277056.114803004],[515997.46749539993,5277056.030946854],[515997.49579628865,5277056.664521135],[515997.52403610444,5277057.320323197]]]},"properties":{"id_build":2331,"id_source":"w340436140","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515934.828558404,5277188.593391526],[515931.98898722423,5277188.852356485],[515931.6244265985,5277184.850327654],[515934.4639997102,5277184.591362514],[515934.5878098145,5277186.003176278],[515934.828558404,5277188.593391526]]]},"properties":{"id_build":2332,"id_source":"w340436141","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515907.7303166042,5277491.453001076],[515906.75374265504,5277491.561472632],[515906.7534390045,5277491.672611615],[515907.4852852018,5277498.676419247],[515908.4621616567,5277498.456808833],[515909.11860365025,5277505.571550537],[515908.1420320384,5277505.680021861],[515908.79847354075,5277512.794763608],[515909.85014141165,5277512.686497617],[515910.0654110913,5277516.354699759],[515909.68931670144,5277516.575951619],[515909.2387323541,5277516.574720325],[515909.6026784015,5277520.799027826],[515911.6309139879,5277520.582291086],[515911.63030649355,5277520.804569054],[515901.4891304977,5277521.888259827],[515900.9035290108,5277516.329669705],[515894.593830795,5277516.868139201],[515894.15659662965,5277511.976793771],[515893.10492893413,5277512.085062596],[515892.37488752697,5277504.414422759],[515893.3514590406,5277504.305948793],[515892.47486215224,5277495.301231254],[515894.5782036137,5277495.08469356],[515894.2124244482,5277491.527221078],[515890.30977002217,5277490.6274496],[515890.61319435155,5277489.516879678],[515885.50958050415,5277488.391554039],[515885.2061570929,5277489.502124222],[515881.3782945311,5277488.713702619],[515880.92225119256,5277490.712975161],[515876.1187244509,5277489.699616131],[515876.4221461179,5277488.589045476],[515872.5194870302,5277487.689285937],[515872.7475073301,5277486.689649339],[515866.3678309542,5277485.338582081],[515866.13981169893,5277486.338218925],[515862.23714954517,5277485.438466286],[515862.46516816306,5277484.438829293],[515858.78749489185,5277483.650831781],[515859.39524056576,5277481.096271789],[515856.16784923436,5277480.420642351],[515857.07931535435,5277476.644371486],[515856.17874586536,5277476.419639131],[515857.9271879259,5277468.644615108],[515862.3555479832,5277469.54579703],[515862.5835672232,5277468.546160064],[515868.96295996086,5277470.008362076],[515868.73524260183,5277470.896859818],[515876.2401914544,5277472.695557194],[515876.46821296244,5277471.695920761],[515883.3729812811,5277473.270711108],[515883.2200565821,5277474.270552147],[515898.4558328709,5277477.646331248],[515898.6838580101,5277476.646695671],[515902.58682412724,5277477.435333748],[515902.3587983464,5277478.434969176],[515907.2145947878,5277479.559632435],[515906.7810712283,5277481.558964502],[515907.7303166042,5277491.453001076]]]},"properties":{"id_build":2333,"id_source":"w340436142","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516031.07445394964,5277097.689640938],[516028.29503856314,5277097.904268861],[516027.5464579643,5277097.013090271],[516027.4731906611,5277096.346050082],[516027.47563799884,5277095.456938806],[516029.23335008835,5277095.350637536],[516031.0060828135,5277095.244378152],[516031.07445394964,5277097.689640938]]]},"properties":{"id_build":2334,"id_source":"w340436143","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515917.97413928754,5277068.260741543],[515918.1164461229,5277071.150763731],[515917.9659360246,5277071.261492011],[515912.3325934368,5277071.468374129],[515912.1902837402,5277068.578352086],[515912.4155932491,5277068.578967803],[515917.97413928754,5277068.260741543]]]},"properties":{"id_build":2335,"id_source":"w340436145","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515938.11654308863,5277529.323643373],[515938.2630864694,5277530.657722386],[515930.6004340153,5277531.637008369],[515929.93179821735,5277526.244897623],[515929.6363354237,5277524.443624138],[515943.91698706447,5277522.782276181],[515944.18173700664,5277524.827973892],[515944.65243691317,5277528.452421103],[515938.11654308863,5277529.323643373]]]},"properties":{"id_build":2336,"id_source":"w340436146","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516048.7962098312,5277071.39833799],[516046.45692983666,5277064.512340471],[516044.1771756846,5277057.826559557],[516052.3714028329,5277054.959510281],[516055.20234688657,5277063.3027964365],[516059.93844913976,5277061.648760979],[516061.7265187703,5277066.877261181],[516048.7962098312,5277071.39833799]]]},"properties":{"id_build":2337,"id_source":"w340436147","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515997.58652276755,5277195.856198719],[516002.3781531471,5277195.813795907],[516007.222354688,5277195.771541562],[516007.3098913818,5277204.907471169],[516005.507426889,5277204.913630092],[516005.5192698818,5277206.069516247],[516005.52403044084,5277207.069787254],[516007.64949133625,5277207.042288375],[516007.6836134624,5277211.021185945],[516005.6182656374,5277211.037736075],[515998.4458438339,5277211.106935948],[515998.4450803981,5277211.3847832745],[515992.3691690874,5277211.44588962],[515992.37002380955,5277211.134700616],[515992.3046898652,5277204.844010289],[515998.0050704489,5277204.792985999],[515998.00565064367,5277204.581822035],[515998.9744894754,5277204.573370119],[515998.95165594976,5277201.9504088545],[515998.58365883393,5277201.949397699],[515998.56030597433,5277199.515372622],[515997.6215068939,5277199.523907146],[515997.58652276755,5277195.856198719]]]},"properties":{"id_build":2338,"id_source":"w340436148","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516000.80342514755,5277326.1097442685],[515999.5732901146,5277320.09370117],[515997.7773941025,5277320.455527686],[515995.6959354228,5277320.88325409],[515993.3911620164,5277309.651804141],[515997.2084132611,5277308.8731985055],[515997.46042503125,5277310.085314598],[516002.84064380743,5277308.9887018865],[516006.13102932606,5277325.024104024],[516000.80342514755,5277326.1097442685]]]},"properties":{"id_build":2339,"id_source":"w340436149","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516000.2276142488,5277144.839190892],[515990.6884153924,5277145.257544692],[515989.9721869544,5277132.585645598],[515998.3851765897,5277132.05305629],[515998.59887959587,5277136.276954187],[515994.09182579437,5277136.597991428],[515994.1988619707,5277138.643256953],[515994.30614229816,5277140.599611353],[516000.01482898026,5277140.281876122],[516000.2276142488,5277144.839190892]]]},"properties":{"id_build":2340,"id_source":"w340436150","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515974.50428071775,5277325.737451331],[515973.5410937191,5277320.955797921],[515975.9080523877,5277320.484391068],[515974.56697851606,5277313.834552263],[515981.6378246069,5277312.420253379],[515983.4900325458,5277321.638826062],[515981.3710254136,5277322.066454501],[515980.18380638125,5277322.2965894425],[515980.62833538087,5277324.509491299],[515974.50428071775,5277325.737451331]]]},"properties":{"id_build":2341,"id_source":"w340436151","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.6096173099,5277080.908840515],[515950.3840038305,5277081.019362225],[515950.4566712742,5277081.908679219],[515946.77601557004,5277082.120877348],[515946.4947788768,5277075.118303443],[515950.17513455235,5277075.017244036],[515950.31468523364,5277078.90751725],[515950.5396898997,5277079.019273348],[515950.6096173099,5277080.908840515]]]},"properties":{"id_build":2342,"id_source":"w340436152","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515975.7309372905,5277354.926125795],[515966.4456244798,5277356.000939135],[515966.2474580072,5277354.322184853],[515965.8363181361,5277350.886837869],[515965.5719940774,5277348.685545196],[515964.6855145441,5277348.7942541875],[515964.2155125918,5277344.914186797],[515967.9792526084,5277344.468834736],[515968.06723849196,5277345.247054573],[515974.48287908407,5277344.486674975],[515975.7309372905,5277354.926125795]]]},"properties":{"id_build":2343,"id_source":"w340436153","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.6540127332,5277347.562698949],[515979.4656309832,5277337.6985930195],[515986.6119763007,5277336.128911764],[515988.85975479346,5277346.237691067],[515987.05596083455,5277346.7439809],[515986.6565903244,5277347.231899392],[515986.15171429736,5277347.852895971],[515987.4131481205,5277353.413349249],[515978.84845017805,5277354.612375387],[515978.0471287233,5277348.31966404],[515981.6540127332,5277347.562698949]]]},"properties":{"id_build":2344,"id_source":"w340436156","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516015.81991089566,5277373.830003906],[516009.9606424697,5277374.369588141],[516009.30155723664,5277368.25508691],[516006.37207316904,5277368.469312097],[516006.2329592845,5277367.168594019],[516006.0057426528,5277365.134111083],[516005.0294511363,5277365.13142723],[516004.5184199266,5277359.795312226],[516013.9085981137,5277358.820873839],[516014.35919468844,5277358.822113206],[516015.81991089566,5277373.830003906]]]},"properties":{"id_build":2345,"id_source":"w340436157","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515495.42472828017,5277412.876625356],[515491.95983690437,5277416.757296231],[515480.484516221,5277411.169785446],[515480.7109944794,5277410.72582861],[515476.0610761967,5277408.379531812],[515475.8343027871,5277408.9346277965],[515470.20927799697,5277406.141184845],[515476.8374714125,5277398.82357678],[515480.6568768728,5277402.83476212],[515480.8073700758,5277402.724022516],[515483.27853862086,5277405.397947837],[515483.1280454383,5277405.508687377],[515486.57224398816,5277409.40773913],[515490.8859576199,5277411.097425246],[515495.42472828017,5277412.876625356]]]},"properties":{"id_build":2346,"id_source":"w340439541","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515436.0741341577,5277738.46966502],[515435.45892863965,5277732.588737952],[515445.4192726509,5277731.559327397],[515447.13941093604,5277731.386067713],[515446.87579394475,5277728.851380597],[515445.15565491794,5277729.024640357],[515444.3355584831,5277721.120424326],[515455.32498740795,5277719.993734998],[515456.1524015212,5277727.964655948],[515455.108290816,5277728.073023761],[515455.35715089145,5277730.50764626],[515457.2425569811,5277730.312600361],[515457.8576817442,5277736.215757566],[515451.0071124141,5277736.93109419],[515436.0741341577,5277738.46966502]]]},"properties":{"id_build":2347,"id_source":"w340439543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515452.2832572467,5277454.172639432],[515452.80678608944,5277449.3283354],[515454.946496038,5277449.556294463],[515455.3699214341,5277445.645298933],[515461.2935239475,5277446.283409431],[515461.4089752552,5277445.227888305],[515465.8760840485,5277445.706540056],[515465.6912426017,5277447.4398293095],[515472.73351095105,5277448.192062931],[515472.025329051,5277454.691856989],[515465.0506568513,5277453.939803733],[515464.973551208,5277454.6953492975],[515461.08455768245,5277454.273803292],[515458.5619374828,5277454.011483333],[515458.46960648336,5277454.844786388],[515452.2832572467,5277454.172639432]]]},"properties":{"id_build":2348,"id_source":"w340439544","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515603.34553410043,5277661.073265892],[515602.62559315364,5277655.103128538],[515608.8530442723,5277654.36407119],[515609.21302669245,5277657.343583286],[515612.6234980177,5277656.930397186],[515612.2855095155,5277654.150995513],[515616.0640706874,5277653.694342624],[515616.3504743157,5277656.106844775],[515618.99470353377,5277655.79163289],[515619.36204113933,5277658.82673529],[515622.9978586534,5277658.391931899],[515623.5342749008,5277662.783394039],[515615.43629737344,5277663.761925664],[515615.50984269753,5277664.34004996],[515605.8869243524,5277665.503442389],[515605.3212016432,5277660.834053836],[515603.9314578765,5277661.008152429],[515603.34553410043,5277661.073265892]]]},"properties":{"id_build":2349,"id_source":"w340439545","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515604.4897019244,5277665.666406818],[515604.19593328214,5277663.198315589],[515603.9314578765,5277661.008152429],[515605.3212016432,5277660.834053836],[515605.8869243524,5277665.503442389],[515604.4897019244,5277665.666406818]]]},"properties":{"id_build":2350,"id_source":"w340439558","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515447.13941093604,5277731.386067713],[515445.4192726509,5277731.559327397],[515445.27279872657,5277730.1585771935],[515445.15565491794,5277729.024640357],[515446.87579394475,5277728.851380597],[515447.13941093604,5277731.386067713]]]},"properties":{"id_build":2351,"id_source":"w340439560","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515544.98443172296,5277696.304053844],[515544.54335752846,5277692.746402141],[515549.35092868615,5277692.203541902],[515549.8673919152,5277695.650255539],[515544.98443172296,5277696.304053844]]]},"properties":{"id_build":2352,"id_source":"w340439564","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515458.5619374828,5277454.011483333],[515461.08455768245,5277454.273803292],[515460.99219681276,5277455.118220207],[515459.76094094483,5277454.9815829275],[515458.46960648336,5277454.844786388],[515458.5619374828,5277454.011483333]]]},"properties":{"id_build":2353,"id_source":"w340439566","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515593.9569061842,5277720.552367102],[515594.57374068396,5277714.552469135],[515598.1773990985,5277714.89554298],[515597.560263146,5277721.006579598],[515593.9569061842,5277720.552367102]]]},"properties":{"id_build":2354,"id_source":"w340439574","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515622.9978586534,5277658.391931899],[515619.36204113933,5277658.82673529],[515618.99470353377,5277655.79163289],[515622.6380324735,5277655.356849424],[515622.9978586534,5277658.391931899]]]},"properties":{"id_build":2355,"id_source":"w340439576","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.3699214341,5277445.645298933],[515454.946496038,5277449.556294463],[515452.80678608944,5277449.3283354],[515453.23021006305,5277445.41733972],[515455.3699214341,5277445.645298933]]]},"properties":{"id_build":2356,"id_source":"w340439577","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515589.5515172767,5277683.086450071],[515589.844457721,5277685.865729874],[515587.0650426868,5277686.191706969],[515586.77210093493,5277683.41242731],[515589.5515172767,5277683.086450071]]]},"properties":{"id_build":2357,"id_source":"w340439580","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515590.87891432433,5277720.21070362],[515591.49574568606,5277714.210805338],[515594.57374068396,5277714.552469135],[515593.9569061842,5277720.552367102],[515590.87891432433,5277720.21070362]]]},"properties":{"id_build":2358,"id_source":"w340439581","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515460.495103367,5277704.5145740155],[515457.03955601645,5277699.292941308],[515456.2170516228,5277697.9570798855],[515463.96542057744,5277692.865225684],[515468.2287141727,5277699.32266044],[515460.495103367,5277704.5145740155]]]},"properties":{"id_build":2359,"id_source":"w340439582","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515457.03955601645,5277699.292941308],[515460.495103367,5277704.5145740155],[515461.52725180774,5277706.084386445],[515457.7660129124,5277708.519473977],[515453.27831464715,5277701.728031721],[515457.03955601645,5277699.292941308]]]},"properties":{"id_build":2360,"id_source":"w340439584","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516647.3272231901,5276230.861866866],[516647.3433114489,5276227.861142018],[516650.3177954621,5276227.880758534],[516650.30173744453,5276230.870369504],[516647.3272231901,5276230.861866866]]]},"properties":{"id_build":2361,"id_source":"w340441044","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.4355512477,5276094.128881857],[517067.13326901064,5276090.596076785],[517063.2538647537,5276094.319003878],[517063.0516707761,5276094.1072461605],[517063.2022604631,5276093.985433665],[517061.0305765985,5276091.700708685],[517059.6077382097,5276090.207269482],[517057.9175345473,5276090.235661198],[517057.9749327648,5276088.590962074],[517058.14828507963,5276088.391418338],[517055.28767892375,5276085.371156112],[517055.084117552,5276085.626181313],[517052.11850884114,5276082.550043371],[517058.2881116858,5276076.555452343],[517064.3242600074,5276082.785841182],[517067.7664041878,5276079.606217921],[517067.40705252666,5276079.193948125],[517067.6105495312,5276078.961151102],[517071.0256097391,5276082.460944977],[517068.47949394735,5276084.90967012],[517070.6363171496,5276087.138784461],[517074.06616582425,5276090.716421319],[517070.4355512477,5276094.128881857]]]},"properties":{"id_build":2362,"id_source":"w340458103","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517073.18240030896,5276084.701174128],[517070.6363171496,5276087.138784461],[517068.47949394735,5276084.90967012],[517071.0256097391,5276082.460944977],[517073.18240030896,5276084.701174128]]]},"properties":{"id_build":2363,"id_source":"w340458104","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516948.2559050773,5276182.861647405],[516941.4866524642,5276175.584532561],[516943.40715367236,5276173.845226042],[516946.23137091997,5276173.886784344],[516950.1854387424,5276170.2751364885],[516955.5765559197,5276176.181231245],[516952.14971464436,5276179.305395358],[516948.2559050773,5276182.861647405]]]},"properties":{"id_build":2364,"id_source":"w340458105","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.26602563716,5276189.481960549],[517199.3811093508,5276188.010047844],[517196.7930724672,5276184.3014536975],[517194.6780208811,5276185.762253459],[517197.26602563716,5276189.481960549]]]},"properties":{"id_build":2365,"id_source":"w342041926","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517240.706688881,5276168.660550784],[517237.9328229983,5276164.29566403],[517240.36350740166,5276162.791358306],[517243.0179123028,5276166.911385191],[517240.706688881,5276168.660550784]]]},"properties":{"id_build":2366,"id_source":"w342041927","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517242.49244455755,5276176.945745458],[517239.41012003535,5276172.746654339],[517244.1452364755,5276169.248656606],[517247.1374217638,5276173.447483299],[517242.49244455755,5276176.945745458]]]},"properties":{"id_build":2367,"id_source":"w342041928","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.17518141225,5276169.659947425],[517276.6076202427,5276167.566621497],[517277.96993512043,5276166.648202968],[517276.04647223535,5276164.286335498],[517279.18680745567,5276161.58384198],[517281.83891727746,5276163.936758443],[517285.12816591974,5276161.679268807],[517288.595690637,5276157.566276993],[517282.6813878658,5276153.414327445],[517279.59836899,5276157.0505626965],[517277.64606691594,5276159.345363113],[517276.3800199257,5276158.196868622],[517270.85277413647,5276162.837230372],[517274.17518141225,5276169.659947425]]]},"properties":{"id_build":2368,"id_source":"w342049830","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.37644594756,5276434.512684896],[516501.4542319284,5276432.498662402],[516497.4149022752,5276426.59681579],[516495.99408025347,5276424.369997639],[516492.35942843603,5276426.749206982],[516490.408135242,5276426.176869256],[516488.34611633734,5276427.571391027],[516483.94363449153,5276430.548586111],[516483.3226003329,5276429.702166827],[516480.41012717993,5276431.694438725],[516480.57452311524,5276431.994981063],[516485.28672197775,5276439.0101173725],[516496.4469464646,5276431.550903713],[516498.37644594756,5276434.512684896]]]},"properties":{"id_build":2369,"id_source":"w342465974","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516493.64502171235,5276421.029154192],[516494.4680380542,5276422.16510978],[516495.99408025347,5276424.369997639],[516492.35942843603,5276426.749206982],[516490.408135242,5276426.176869256],[516490.4016409399,5276423.1649655625],[516493.64502171235,5276421.029154192]]]},"properties":{"id_build":2370,"id_source":"w342465975","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516344.67308319703,5276729.521939073],[516344.64828067826,5276727.654722194],[516347.8404776213,5276727.61922676],[516347.8577683615,5276729.486422569],[516344.67308319703,5276729.521939073]]]},"properties":{"id_build":2371,"id_source":"w342485234","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.2807567564,5276990.9849905465],[517312.51472675375,5276988.073821805],[517314.49701632257,5276988.235311607],[517314.26304533955,5276991.146480271],[517312.2807567564,5276990.9849905465]]]},"properties":{"id_build":2372,"id_source":"w359386742","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.2702275256,5276914.280452905],[517276.69373355195,5276908.235701899],[517278.6460750914,5276908.3748625005],[517278.2226000225,5276914.408499486],[517276.2702275256,5276914.280452905]]]},"properties":{"id_build":2373,"id_source":"w359398526","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.7677351302,5277061.408178474],[517287.95507745934,5277059.019227458],[517289.67454783234,5277059.1577006765],[517289.48720479914,5277061.546651635],[517287.7677351302,5277061.408178474]]]},"properties":{"id_build":2374,"id_source":"w360372711","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.8677928511,5277083.358600519],[517288.1630836809,5277080.025281002],[517289.6347077344,5277080.163018378],[517289.3394490695,5277083.485223936],[517287.8677928511,5277083.358600519]]]},"properties":{"id_build":2375,"id_source":"w360372712","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.7635186642,5277496.030374454],[517279.46213830437,5277496.362899804],[517275.86384685786,5277494.196106389],[517278.65090645745,5277491.359194578],[517281.57279122894,5277493.70180579],[517279.7635186642,5277496.030374454]]]},"properties":{"id_build":2376,"id_source":"w387152184","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.3584427139,5277511.345713579],[517271.90917656256,5277510.899820942],[517265.99427194946,5277504.880719199],[517268.37411330594,5277502.609408553],[517269.83512790286,5277501.2244928535],[517272.62857788196,5277496.231482159],[517279.9005194883,5277500.4763789615],[517280.50031098694,5277500.811579042],[517277.10343733215,5277506.691914877],[517272.3584427139,5277511.345713579]]]},"properties":{"id_build":2377,"id_source":"w387152186","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.6149855075,5277615.626851687],[517242.53439735953,5277616.173426837],[517242.39210490935,5277613.505646277],[517245.14197493275,5277613.058117362],[517245.6149855075,5277615.626851687]]]},"properties":{"id_build":2378,"id_source":"w387173657","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.84525912296,5277621.959549602],[517242.89243206225,5277622.064905373],[517242.67866466485,5277618.174373476],[517244.63149302686,5277618.069017633],[517244.84525912296,5277621.959549602]]]},"properties":{"id_build":2379,"id_source":"w387173658","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.36245371436,5277575.181611436],[517287.17630674475,5277579.296206583],[517290.70782856364,5277578.639854236],[517291.592813446,5277584.088340864],[517287.76090860565,5277584.743800679],[517287.6877921829,5277584.076743783],[517284.59232896543,5277584.567682611],[517284.60731527966,5277584.578841103],[517281.0008991541,5277585.168290848],[517281.5897949337,5277589.171077564],[517279.63629640965,5277589.498699001],[517280.15273525147,5277592.612150829],[517273.69114278903,5277593.704374978],[517272.4369250511,5277586.143136327],[517275.2171457862,5277585.59568563],[517274.55446773674,5277581.148120836],[517280.64059121226,5277580.054783098],[517280.05136393086,5277576.16313552],[517286.36245371436,5277575.181611436]]]},"properties":{"id_build":2380,"id_source":"w387394614","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517155.98558130657,5277526.894638601],[517155.826544245,5277529.894948325],[517157.6661322723,5277530.000395374],[517159.80604373943,5277530.128956163],[517159.9654104238,5277527.017507566],[517170.92797650956,5277527.605529314],[517170.13603201264,5277541.495686434],[517159.1734920206,5277540.907666101],[517159.5715799957,5277533.240183442],[517155.74194955855,5277533.117757315],[517155.73670959414,5277534.895980928],[517148.07745061495,5277534.651136235],[517148.1600769277,5277532.09516099],[517144.70593168866,5277531.973848108],[517144.94758793106,5277526.417562815],[517155.98558130657,5277526.894638601]]]},"properties":{"id_build":2381,"id_source":"w387399151","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517084.78955924936,5277374.423586465],[517095.63322274474,5277364.45282477],[517101.99610420235,5277371.473325399],[517111.108269777,5277362.942325403],[517121.06348252535,5277374.1967221685],[517126.6361935937,5277368.989536419],[517139.2119855874,5277382.919031716],[517127.69173604547,5277393.110002169],[517123.8737803335,5277388.986595031],[517115.8162890928,5277396.409276545],[517118.8852170041,5277399.863636559],[517113.23744335887,5277405.0706091495],[517106.3502259127,5277397.603995353],[517109.58862615685,5277394.501593572],[517098.2104591872,5277381.909358108],[517094.59590984037,5277385.232941558],[517084.78955924936,5277374.423586465]]]},"properties":{"id_build":2382,"id_source":"w387511001","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517105.30896138964,5277419.717778871],[517102.2250186653,5277421.3758178735],[517099.61092794576,5277416.477983467],[517102.694872502,5277414.819943088],[517105.30896138964,5277419.717778871]]]},"properties":{"id_build":2383,"id_source":"w387511002","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.45106820005,5277254.937219527],[516978.462411162,5277251.04735704],[516981.9173743506,5277250.946292971],[516981.98112988047,5277254.836374498],[516978.45106820005,5277254.937219527]]]},"properties":{"id_build":2384,"id_source":"w396429780","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.4664992241,5277309.132957835],[516945.43259852676,5277305.298533329],[516948.9549248711,5277305.264329847],[516948.9963332607,5277309.098776243],[516945.4664992241,5277309.132957835]]]},"properties":{"id_build":2385,"id_source":"w396429781","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.2629666239,5277277.627784703],[516908.27426277724,5277273.737922054],[516911.7292110635,5277273.63681637],[516911.7930131074,5277277.526897153],[516908.2629666239,5277277.627784703]]]},"properties":{"id_build":2386,"id_source":"w396429782","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.0888400894,5277073.8824572535],[516830.02566442493,5277073.904053678],[516830.0008336633,5277069.50284478],[516834.0565342102,5277069.470112727],[516834.0888400894,5277073.8824572535]]]},"properties":{"id_build":2387,"id_source":"w396523216","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516833.34398742137,5277170.460821068],[516829.28838934033,5277170.482439565],[516829.256048838,5277166.0812082905],[516833.31168211607,5277166.0484758755],[516833.34398742137,5277170.460821068]]]},"properties":{"id_build":2388,"id_source":"w396523217","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516020.4281736209,5277410.352107497],[516016.048723295,5277410.7735037645],[516016.20199756575,5277412.385452595],[516012.9868851202,5277412.698914453],[516013.08924172085,5277413.710568208],[516010.30982498865,5277413.980773961],[516010.63866153726,5277417.293644465],[516013.410566837,5277417.023418215],[516013.62233102805,5277419.213454859],[516013.9875530512,5277422.94875694],[516021.58210139547,5277422.21390025],[516020.4281736209,5277410.352107497]]]},"properties":{"id_build":2389,"id_source":"w397413795","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.2421809946,5277474.35140308],[516035.22262504767,5277473.109031757],[516034.4415742503,5277464.938103997],[516029.84431832563,5277465.381117839],[516029.7786272577,5277464.691870111],[516029.71290557226,5277464.013736274],[516030.8396826805,5277463.905698891],[516030.28488023055,5277458.113786869],[516024.17023911,5277458.697109253],[516024.73988365236,5277464.555745412],[516025.88918997743,5277464.447769079],[516025.94764703646,5277465.036971014],[516026.02057302586,5277465.82626445],[516021.460867498,5277466.26938827],[516022.2421809946,5277474.35140308]]]},"properties":{"id_build":2390,"id_source":"w397413796","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.0300554005,5277562.502122716],[516162.6891264104,5277567.152382966],[516160.58796003397,5277566.590850849],[516160.3071404589,5277567.657013883],[516159.92010584974,5277569.111871567],[516154.5846455353,5277567.685588184],[516153.4691596544,5277571.850237295],[516170.8863818383,5277576.477551327],[516171.8652543275,5277572.834883269],[516168.9086060426,5277572.048692157],[516169.720567477,5277569.01682938],[516168.4223510047,5277568.6686903145],[516170.2195311107,5277565.117206551],[516165.0300554005,5277562.502122716]]]},"properties":{"id_build":2391,"id_source":"w397413797","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515911.3623408433,5277371.54308232],[515911.00468095206,5277367.763352079],[515904.14632269973,5277368.400338359],[515903.95662013063,5277366.365962055],[515899.8175545019,5277366.754760547],[515899.65707064414,5277365.020541608],[515895.0147174127,5277365.452425053],[515895.5912227257,5277371.6000291975],[515895.7224871616,5277373.034090833],[515895.22671079414,5277373.077193212],[515895.5842592001,5277376.90137808],[515902.0970590686,5277376.2967798645],[515901.7396059615,5277372.4392529065],[515911.3623408433,5277371.54308232]]]},"properties":{"id_build":2392,"id_source":"w397413798","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.1744541304,5277475.863164372],[516018.9521267781,5277474.620199342],[516018.17065586976,5277466.593754464],[516013.6710605671,5277467.025935777],[516013.6053064676,5277466.3589160275],[516013.53967462596,5277465.647440685],[516014.69649032364,5277465.539482798],[516014.13397876086,5277459.814235063],[516008.056859629,5277460.408791548],[516008.6119284174,5277466.1117902445],[516009.7537243171,5277466.003790076],[516009.82680529665,5277466.73751382],[516009.8852333925,5277467.337829489],[516005.3781295091,5277467.769996559],[516006.1744541304,5277475.863164372]]]},"properties":{"id_build":2393,"id_source":"w397413799","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.89772915473,5277478.780250866],[516004.765387471,5277477.581957839],[516004.0065795965,5277469.500007317],[515999.4243798502,5277469.931972557],[515999.3734605043,5277469.331677629],[515999.300530951,5277468.542384531],[516000.3521780304,5277468.44524877],[515999.81953919446,5277462.775654463],[515993.75750536635,5277463.348039345],[515994.29002791847,5277469.062088681],[515995.4919013667,5277468.954250765],[515995.5575353716,5277469.665725899],[515995.6159649053,5277470.266041428],[515991.13893412275,5277470.687188147],[515991.89772915473,5277478.780250866]]]},"properties":{"id_build":2394,"id_source":"w397413800","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515885.72429406596,5277340.887404965],[515882.95763414854,5277339.223874241],[515884.4287484917,5277336.782812389],[515880.85231266246,5277334.639172456],[515879.4112391707,5277337.080317133],[515876.1871037216,5277335.182148442],[515872.006946012,5277342.372609258],[515870.9122787296,5277341.713900507],[515867.36660304817,5277347.572416866],[515877.12732848024,5277351.166612809],[515879.8054258658,5277346.750553169],[515878.8681966283,5277346.19229812],[515879.3283652863,5277345.437802624],[515879.89418882586,5277344.494657701],[515882.5633692172,5277346.102351185],[515885.72429406596,5277340.887404965]]]},"properties":{"id_build":2395,"id_source":"w397413801","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515993.1849896416,5277176.9170052],[515993.20752017386,5277176.917067087],[516000.604922827,5277176.981846513],[516000.5189848205,5277175.458995596],[516000.42623902287,5277173.680504521],[516006.82589151064,5277173.342446963],[516006.311188703,5277163.8719242485],[516001.3161153569,5277164.147158364],[516001.4664075405,5277166.848267598],[515993.5944762627,5277167.282312605],[515993.6873769024,5277169.005234084],[515988.79748175247,5277169.269653848],[515989.0192496598,5277173.293522187],[515988.5233667298,5277176.103996476],[515989.1764470674,5277176.216929599],[515993.1849896416,5277176.9170052]]]},"properties":{"id_build":2396,"id_source":"w397413802","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515891.32574758044,5277310.994976256],[515885.83341727837,5277320.160133822],[515884.5362807439,5277319.38973035],[515881.48848028545,5277324.427162014],[515888.48553222377,5277328.024952895],[515890.7262191473,5277324.2856573695],[515892.4507252493,5277325.312850244],[515893.9219077318,5277322.849563035],[515894.8441496767,5277323.396665584],[515895.5985771679,5277322.142845707],[515897.9154010603,5277323.52730462],[515903.99619881227,5277313.38573567],[515899.83488588396,5277310.907067275],[515897.556455938,5277314.712940085],[515891.32574758044,5277310.994976256]]]},"properties":{"id_build":2397,"id_source":"w397413803","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515957.28633141785,5277401.52091662],[515958.1708101757,5277410.358954916],[515960.98029606475,5277410.07769273],[515963.8348414951,5277409.79655545],[515964.0322143358,5277411.764271109],[515970.2671478267,5277411.147873409],[515970.0843090625,5277409.35802108],[515971.5716916592,5277409.2065054085],[515974.3736384126,5277408.936342981],[515976.32675568026,5277408.741650467],[515976.5095925481,5277410.531502994],[515982.8497280411,5277409.893179483],[515982.6743724723,5277408.114461264],[515983.9589279629,5277407.984619931],[515985.53642984363,5277407.833355234],[515985.71178455005,5277409.612073541],[515988.9719869417,5277409.287606469],[515988.774744519,5277407.2754343655],[515990.69782332686,5277407.0806641765],[515994.51391128276,5277406.702157075],[515993.63687483623,5277397.908589399],[515987.950299263,5277398.470898027],[515988.00879139296,5277399.048985618],[515985.11669001926,5277399.330007962],[515985.05816709145,5277398.763034302],[515965.8199410108,5277400.677421147],[515965.87849626725,5277401.233280716],[515963.046476203,5277401.514478775],[515962.9954305676,5277400.958639822],[515957.28633141785,5277401.52091662]]]},"properties":{"id_build":2398,"id_source":"w397413805","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515911.7411557791,5277406.053023056],[515912.64093526785,5277414.813298116],[515915.5856551351,5277414.5101557],[515918.18479969696,5277414.250525851],[515918.37507295166,5277416.07373875],[515924.71522612224,5277415.4242380615],[515924.5543255536,5277413.845612841],[515925.8163488052,5277413.715697056],[515929.33948214725,5277413.358573902],[515930.79682312027,5277413.206965629],[515930.9652318852,5277414.785611575],[515937.2678081519,5277414.147135703],[515937.1068501041,5277412.590737921],[515938.50408206705,5277412.450081017],[515940.10414154595,5277412.287751797],[515940.26512923284,5277413.833035766],[515943.48777724145,5277413.508440427],[515943.3122880332,5277411.774178995],[515945.44570112746,5277411.557741896],[515948.9838872325,5277411.189557861],[515948.06938556733,5277402.340324801],[515942.41282805405,5277402.91387407],[515942.478773674,5277403.514209553],[515939.57162663195,5277403.806327281],[515939.5131601751,5277403.2171262875],[515920.3123923868,5277405.17622184],[515920.3561752924,5277405.643128703],[515917.55419920787,5277405.924431025],[515917.5028758133,5277405.468617544],[515911.7411557791,5277406.053023056]]]},"properties":{"id_build":2399,"id_source":"w397413808","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515963.69375132996,5277480.425515954],[515988.53563316114,5277477.937468259],[515987.29284466937,5277465.597536089],[515985.1519399228,5277465.813937214],[515985.45175541827,5277468.759965447],[515985.9325352639,5277468.70571562],[515986.0056497237,5277469.42832516],[515986.0714679787,5277470.073116802],[515979.8140358822,5277470.700549554],[515979.7483084549,5277470.022416294],[515979.6825810114,5277469.344283033],[515980.12578124495,5277469.30104357],[515979.8259935911,5277466.343901719],[515975.3789392208,5277466.787370804],[515975.678729108,5277469.744512422],[515976.1895174775,5277469.70145812],[515976.2552758218,5277470.36847744],[515976.32851345104,5277471.046631269],[515970.0109746384,5277471.68502359],[515969.9451241391,5277471.051346031],[515969.87197722425,5277470.339850593],[515970.3227175915,5277470.285517084],[515970.0229250151,5277467.328375744],[515964.33638911246,5277467.901821238],[515964.6288271217,5277470.8033722015],[515966.07113509544,5277470.651731589],[515966.13692506374,5277471.307636897],[515966.2099809874,5277472.052473983],[515962.88219640707,5277472.387882336],[515963.69375132996,5277480.425515954]]]},"properties":{"id_build":2400,"id_source":"w397413811","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.96312690707,5277158.336966431],[515979.10167916736,5277158.351340977],[515979.12342395884,5277161.374402082],[515981.9849007167,5277161.348913661],[515981.96312690707,5277158.336966431]]]},"properties":{"id_build":2401,"id_source":"w397413812","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516072.96501421166,5277084.846228644],[516076.164860778,5277084.688352649],[516075.98707571934,5277081.075819789],[516072.7947374749,5277081.233716614],[516072.96501421166,5277084.846228644]]]},"properties":{"id_build":2402,"id_source":"w397413813","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515982.2452878643,5277192.346507927],[515982.27447989746,5277195.39181761],[515986.3150951168,5277195.347340172],[515986.2859051947,5277192.302030464],[515982.2452878643,5277192.346507927]]]},"properties":{"id_build":2403,"id_source":"w397413814","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516249.76525638456,5277346.237613967],[516247.36144895654,5277346.4531851625],[516247.7480013951,5277350.566437112],[516250.14432820666,5277350.339731225],[516249.76525638456,5277346.237613967]]]},"properties":{"id_build":2404,"id_source":"w397413815","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.231751488,5277105.888411121],[516080.7257133919,5277105.695246646],[516080.26144594594,5277099.759101404],[516077.76748151536,5277099.952266084],[516078.231751488,5277105.888411121]]]},"properties":{"id_build":2405,"id_source":"w397413817","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516226.96903385577,5277336.649353121],[516227.4139155152,5277341.39626309],[516224.0560625917,5277341.709210785],[516224.7415277225,5277349.057462652],[516234.8751856691,5277348.107680217],[516235.414931093,5277353.843999811],[516245.04526077054,5277352.948401501],[516244.848383823,5277350.83619565],[516247.7480013951,5277350.566437112],[516247.36144895654,5277346.4531851625],[516249.76525638456,5277346.237613967],[516250.2986186312,5277346.183532674],[516250.16719267936,5277344.838374073],[516252.1804208157,5277344.643941729],[516252.3043363494,5277345.989079417],[516262.7234449951,5277345.017914252],[516262.5702991071,5277343.383731164],[516266.1835541268,5277343.049291243],[516266.3367300598,5277344.672360536],[516273.7810904305,5277343.981868556],[516273.6570244901,5277342.692299882],[516279.0055486229,5277342.196008631],[516279.129644465,5277343.474463524],[516289.8943139923,5277342.470971194],[516289.6974218289,5277340.36987772],[516291.9359830313,5277340.164975575],[516291.6077993308,5277336.674266911],[516292.98249747383,5277336.544745889],[516292.1220086176,5277327.362188943],[516279.4943377881,5277328.538291636],[516279.58917079365,5277329.538815149],[516274.6462982183,5277329.99178386],[516274.85048870684,5277332.170695034],[516266.94788030174,5277332.904361319],[516266.86039990606,5277331.959428466],[516257.1323712636,5277332.865832044],[516257.2273321646,5277333.82189961],[516241.6925476303,5277335.267817113],[516241.590322253,5277334.222817694],[516234.52154513,5277334.881056157],[516234.6237407744,5277335.937169345],[516226.96903385577,5277336.649353121]]]},"properties":{"id_build":2406,"id_source":"w397413818","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.16724443773,5277358.331947912],[516037.5679393721,5277355.062787],[516037.1832078955,5277352.961185077],[516034.0349164607,5277353.541555027],[516035.01147646765,5277358.901182749],[516038.16724443773,5277358.331947912]]]},"properties":{"id_build":2407,"id_source":"w397413819","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515966.4456244798,5277356.000939135],[515966.2474580072,5277354.322184853],[515963.76835221617,5277354.615464428],[515963.50417991576,5277352.358602363],[515958.6962576015,5277352.91223491],[515959.1586002777,5277356.847850791],[515966.4456244798,5277356.000939135]]]},"properties":{"id_build":2408,"id_source":"w397413820","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515944.10481777333,5277319.81928603],[515940.1584339525,5277329.366501819],[515946.137192038,5277331.827948641],[515947.58875767456,5277328.308793174],[515952.77236952336,5277330.434649566],[515954.0424817551,5277327.3595576715],[515955.2672308345,5277324.395481532],[515944.10481777333,5277319.81928603]]]},"properties":{"id_build":2409,"id_source":"w397413821","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515998.79934177955,5277082.452523345],[515991.02499159914,5277082.8646125095],[515991.33948139206,5277088.678084947],[515983.87627061876,5277090.65810855],[515984.0834824115,5277094.515226594],[515999.3917615594,5277093.7126075765],[515999.1203874664,5277088.61054747],[515998.79934177955,5277082.452523345]]]},"properties":{"id_build":2410,"id_source":"w397413822","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515960.2707426561,5277394.960734896],[515973.1387926633,5277393.68457445],[515972.7585836388,5277389.927006174],[515970.56505185476,5277390.154382375],[515970.07530177926,5277385.262887896],[515961.4590295108,5277386.117264588],[515961.75861765485,5277389.152202363],[515961.97794273164,5277391.331143679],[515959.9271609589,5277391.536687287],[515960.2707426561,5277394.960734896]]]},"properties":{"id_build":2411,"id_source":"w397413823","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516010.4701708389,5277429.407420161],[516011.4286235544,5277438.62354614],[516013.26154416346,5277438.4396494785],[516014.60620297655,5277438.298866261],[516014.76707841357,5277439.8774940865],[516021.02460873325,5277439.227871054],[516020.8637655549,5277437.638129153],[516022.3361226367,5277437.48658513],[516024.25171340094,5277437.280691467],[516023.30072941276,5277428.086811815],[516010.4701708389,5277429.407420161]]]},"properties":{"id_build":2412,"id_source":"w397413824","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516016.1835117035,5277386.345345657],[516012.4573444223,5277386.790769806],[516012.3472327685,5277385.8680066215],[516006.96830530075,5277386.520054681],[516007.5632545642,5277391.378499723],[516007.9525399132,5277394.55816838],[516011.520963458,5277394.123421543],[516012.28478431905,5277400.382693088],[516017.81395856815,5277399.708835378],[516016.1835117035,5277386.345345657]]]},"properties":{"id_build":2413,"id_source":"w397413825","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516086.93658615055,5277064.979682176],[516083.0268902952,5277066.535952475],[516084.25010964373,5277069.6067884],[516076.4608609833,5277072.686076505],[516079.2802091818,5277079.7734635845],[516083.640973947,5277078.051727078],[516087.06944989885,5277076.694179234],[516088.79235446814,5277081.033389938],[516092.7095524848,5277079.477144252],[516086.93658615055,5277064.979682176]]]},"properties":{"id_build":2414,"id_source":"w397413827","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516063.69317544124,5277075.429333238],[516061.86020165554,5277070.145138599],[516053.15492219897,5277073.144133238],[516054.97294358345,5277078.406055949],[516055.1250520686,5277080.4403328085],[516055.28451751766,5277082.5301998425],[516057.3277480374,5277082.380238412],[516057.6478111377,5277086.148758668],[516070.08789585775,5277085.082794904],[516069.21460178815,5277074.955553282],[516063.69317544124,5277075.429333238]]]},"properties":{"id_build":2415,"id_source":"w397413828","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.3781531471,5277195.813795907],[515997.58652276755,5277195.856198719],[515990.0986559868,5277195.924542288],[515989.9816598111,5277183.832214582],[516001.9307045004,5277183.731673629],[516001.9190745219,5277182.49799028],[516007.17637706076,5277182.445757186],[516007.24740285584,5277189.392187806],[516002.3205536856,5277189.445328986],[516002.33841083845,5277191.145816487],[516002.3781531471,5277195.813795907]]]},"properties":{"id_build":2416,"id_source":"w397413829","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0301025402,5276660.920479226],[516860.36764077,5276656.250691424],[516863.5985943086,5276655.815487571],[516863.89355716633,5276657.705717589],[516873.8881398377,5276655.956432478],[516874.2575637766,5276658.069158312],[516874.623122933,5276661.515550083],[516871.69260547037,5276661.951618215],[516872.2789831032,5276666.954606239],[516867.6882515957,5276667.4970063],[516867.10090438265,5276662.827435219],[516866.8866307718,5276661.604277263],[516864.2565477208,5276662.041219302],[516864.4776890107,5276663.486676562],[516861.2464178667,5276664.03301875],[516861.0301025402,5276660.920479226]]]},"properties":{"id_build":2417,"id_source":"w400596000","height_wall":6.0,"height_roof":6.0,"nb_lev":2,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516941.0273708155,5276586.533412434],[516943.08581212536,5276583.805362878],[516939.75023026107,5276581.461724694],[516937.7893026891,5276584.234514927],[516941.0273708155,5276586.533412434]]]},"properties":{"id_build":2418,"id_source":"w400600045","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.81513897487,5276547.090388844],[517118.38377341797,5276545.985897636],[517116.2424195531,5276548.780325757],[517116.3623340949,5276548.869590002],[517117.7415143985,5276549.840559615],[517119.50293789245,5276551.090502597],[517121.6138564258,5276548.429353903],[517119.81513897487,5276547.090388844]]]},"properties":{"id_build":2419,"id_source":"w400603334","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517048.2857715979,5276583.545563108],[517050.0279259873,5276581.116702555],[517052.3515039206,5276582.768374263],[517050.61685999227,5276585.197256116],[517048.2857715979,5276583.545563108]]]},"properties":{"id_build":2420,"id_source":"w400613445","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516799.7787776995,5277553.718648327],[516812.12359147577,5277551.542599633],[516809.8255242501,5277538.565936669],[516810.26288468955,5277537.944816016],[516810.8811843963,5277537.07971006],[516811.6832476644,5277537.59326965],[516818.56003978127,5277527.943959624],[516806.6740278165,5277519.4518885575],[516799.8270278971,5277529.190210337],[516801.0036493646,5277530.027154998],[516797.39186938736,5277535.084712843],[516796.63303516974,5277535.204777407],[516799.7787776995,5277553.718648327]]]},"properties":{"id_build":2421,"id_source":"w435781590","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.70774063695,5277566.652460375],[517148.88434745267,5277569.2069212645],[517146.411910791,5277572.344899467],[517143.1751617761,5277569.812490804],[517145.70774063695,5277566.652460375]]]},"properties":{"id_build":2422,"id_source":"w435781591","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.6640488283,5277558.064963021],[516831.8242341644,5277548.06527406],[516836.4039948995,5277548.478620162],[516838.9967211449,5277558.2219749335],[516834.6640488283,5277558.064963021]]]},"properties":{"id_build":2423,"id_source":"w435781592","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516987.15406893403,5277654.321641245],[516990.4214277051,5277656.665114818],[516992.3290673127,5277654.025551798],[516989.0541982457,5277651.682055253],[516987.15406893403,5277654.321641245]]]},"properties":{"id_build":2424,"id_source":"w435784884","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516609.33237363776,5277190.0782949645],[516609.16506452323,5277185.543312856],[516614.06226501625,5277185.357232719],[516614.2295703245,5277189.892214979],[516609.33237363776,5277190.0782949645]]]},"properties":{"id_build":2425,"id_source":"w435813578","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"apartments","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516669.4973297549,5277423.34384193],[516670.1337268749,5277424.023617266],[516672.11260749,5277422.706719115],[516671.2290532606,5277421.792842112],[516669.4973297549,5277423.34384193]]]},"properties":{"id_build":2426,"id_source":"w435819542","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.5869031086,5277406.126620921],[516573.1128014712,5277405.641948887],[516572.5395703788,5277403.873193423],[516571.051347561,5277404.313516895],[516571.5869031086,5277406.126620921]]]},"properties":{"id_build":2427,"id_source":"w435819543","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516258.24517404864,5276969.286250527],[516256.66769942973,5276966.692290082],[516260.9638319606,5276963.959133807],[516262.6089925861,5276966.519942521],[516258.24517404864,5276969.286250527]]]},"properties":{"id_build":2428,"id_source":"w437557214","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516093.4597656727,5276968.361700074],[516092.0617168763,5276968.757939384],[516091.34767165856,5276968.9560176525],[516092.9465069243,5276974.717474479],[516095.02843438333,5276974.1675299965],[516093.4597656727,5276968.361700074]]]},"properties":{"id_build":2429,"id_source":"w437562169","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516089.4591602032,5277059.874223377],[516085.75263820216,5277061.286571587],[516084.30610342504,5277057.492710142],[516088.01259677013,5277056.091474906],[516089.4591602032,5277059.874223377]]]},"properties":{"id_build":2430,"id_source":"w437582717","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516095.6548060893,5277076.328915905],[516093.65638889105,5277071.133165579],[516095.3405118155,5277070.482096041],[516093.6179468275,5277066.020630671],[516102.8279250986,5277062.489621298],[516106.22083716094,5277071.279045901],[516101.7098236079,5277073.01146403],[516099.454333206,5277073.872117457],[516099.789900285,5277074.739935368],[516095.6548060893,5277076.328915905]]]},"properties":{"id_build":2431,"id_source":"w437582718","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"house","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515952.8223465555,5277123.059093987],[515952.73688233824,5277121.358421668],[515952.65847158333,5277119.824478306],[515947.25780970143,5277120.09864776],[515947.4216876635,5277123.333263281],[515952.8223465555,5277123.059093987]]]},"properties":{"id_build":2432,"id_source":"w437630186","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515951.36744950333,5277133.257737157],[515952.75702542847,5277133.1948602535],[515952.53900640167,5277127.7928710515],[515949.0387471465,5277127.961105956],[515949.28684079146,5277133.352063419],[515951.36744950333,5277133.257737157]]]},"properties":{"id_build":2433,"id_source":"w437630188","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.1315156938,5277554.319955337],[517285.77713590744,5277549.739936899],[517292.8829962324,5277549.194225395],[517298.23870110343,5277548.776690132],[517298.5930711567,5277553.356709344],[517286.1315156938,5277554.319955337]]]},"properties":{"id_build":2434,"id_source":"w438287281","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.41561592894,5277557.277121761],[517286.1315156938,5277554.319955337],[517298.5930711567,5277553.356709344],[517298.832139988,5277556.302628608],[517294.49746291025,5277556.823222227],[517286.41561592894,5277557.277121761]]]},"properties":{"id_build":2435,"id_source":"w438287282","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517309.8518900829,5277691.703868796],[517308.1336885614,5277688.675752659],[517310.4129069613,5277687.39330555],[517312.1311076846,5277690.421422356],[517309.8518900829,5277691.703868796]]]},"properties":{"id_build":2436,"id_source":"w438289155","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.35906745127,5277744.385466203],[517264.2110827069,5277741.525763957],[517259.3541438978,5277743.478540203],[517260.5464294135,5277746.593994809],[517265.35906745127,5277744.385466203]]]},"properties":{"id_build":2437,"id_source":"w438291366","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.1716129067,5277097.072873033],[516685.96700017335,5277106.108987814],[516695.68400416,5277093.489130312],[516683.8886061441,5277084.452996053],[516674.1716129067,5277097.072873033]]]},"properties":{"id_build":2438,"id_source":"w497190606","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.01516287745,5277751.881747486],[516365.88105948985,5277756.435553215],[516364.1466737017,5277758.99800935],[516357.25030385563,5277754.599715878],[516359.01516287745,5277751.881747486]]]},"properties":{"id_build":2439,"id_source":"w511310931","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516353.76459907193,5277752.389352845],[516357.34022969037,5277754.66665249],[516355.7336011374,5277757.196128116],[516352.0829707798,5277754.885276806],[516353.76459907193,5277752.389352845]]]},"properties":{"id_build":2440,"id_source":"w511310932","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516349.0649783172,5277663.675406129],[516348.04564560315,5277662.972362368],[516346.2964395198,5277665.456984015],[516345.284616336,5277664.75396182],[516344.3120154195,5277666.129365723],[516341.7409334434,5277669.800878135],[516340.97941243654,5277670.887911413],[516342.03632350604,5277671.579945444],[516338.54518309137,5277676.638125203],[516337.4958756373,5277675.912771168],[516336.56849154626,5277677.23273332],[516334.7437939247,5277679.861628452],[516329.7970436749,5277676.446870275],[516331.41786020977,5277674.217505246],[516329.98634436936,5277673.213230682],[516332.80654190487,5277669.07562449],[516331.88461402303,5277668.450654749],[516333.77699336346,5277665.788606686],[516334.27913521964,5277666.145663171],[516338.6069265481,5277659.989544105],[516338.0447079735,5277659.632318646],[516344.21248608985,5277650.7584407255],[516345.4942505849,5277651.60670245],[516347.59812665323,5277648.511807173],[516347.1109408058,5277648.177019522],[516350.48139047704,5277643.318557816],[516350.95365103136,5277643.619961863],[516352.97427189385,5277640.7582284575],[516359.79499764834,5277645.400810535],[516358.62617310206,5277647.120194258],[516357.7287554954,5277648.462465205],[516358.7405800338,5277649.165489542],[516355.43029696576,5277653.990773589],[516354.3358676686,5277653.287517768],[516352.9708611406,5277655.339771166],[516352.2845254135,5277656.3936721925],[516353.58127539174,5277657.2530917935],[516352.01304377796,5277659.471484374],[516350.1054788685,5277662.189053833],[516349.0649783172,5277663.675406129]]]},"properties":{"id_build":2441,"id_source":"w511310934","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516348.05916500377,5277684.900299504],[516347.49698063044,5277684.531959216],[516344.6560508041,5277682.679060342],[516346.5411091409,5277679.950311875],[516349.8766384887,5277682.171362319],[516348.05916500377,5277684.900299504]]]},"properties":{"id_build":2442,"id_source":"w511310935","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516374.83284527814,5277676.173266287],[516374.2596198944,5277677.06077308],[516376.0733942994,5277678.321755585],[516378.8764560123,5277680.285703168],[516382.75882350584,5277682.986212558],[516383.76312948717,5277683.689220167],[516384.41160733294,5277682.746356138],[516389.2084428481,5277686.049599012],[516388.5069912135,5277687.136795244],[516389.6387698841,5277687.906846664],[516391.32518870104,5277689.056335544],[516386.9293079395,5277695.378934056],[516384.1186528818,5277693.448303094],[516383.78692067135,5277693.91415704],[516381.20874608296,5277692.095321661],[516378.8855182256,5277690.410572581],[516379.2850547741,5277689.867111205],[516376.42182788946,5277687.936336093],[516374.5522147261,5277690.509522572],[516368.1369742376,5277685.90140456],[516370.57946636446,5277682.562961728],[516368.12866338354,5277680.844516291],[516367.83472936344,5277681.221565495],[516362.581202009,5277677.416927239],[516362.89769571414,5277677.028827192],[516359.7946516437,5277674.919562497],[516359.2520599634,5277675.59599106],[516355.22715156886,5277672.839527062],[516352.16576068924,5277677.287636688],[516352.7729090122,5277677.689445695],[516349.8766384887,5277682.171362319],[516346.5411091409,5277679.950311875],[516356.1247522109,5277666.084743854],[516358.4858876198,5277667.64733635],[516359.18705487525,5277666.660161648],[516360.10156428436,5277667.251772911],[516360.99360733747,5277667.821093207],[516361.65707108943,5277666.8893827805],[516366.37871215533,5277670.23685125],[516367.12816658925,5277670.772429674],[516367.8218878926,5277669.763007091],[516372.78360953485,5277673.188953721],[516372.0823469784,5277674.209468503],[516372.89926117845,5277674.789693347],[516374.83284527814,5277676.173266287]]]},"properties":{"id_build":2443,"id_source":"w511310936","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516402.6334300159,5277673.484145091],[516399.202345455,5277678.531343974],[516397.11119290214,5277677.102863144],[516396.10685607896,5277676.410967139],[516395.3376910094,5277677.542427794],[516390.55593355314,5277674.216994404],[516391.3552614468,5277673.041162099],[516390.31343812187,5277672.326933579],[516385.95123823965,5277669.347218918],[516386.63022544305,5277668.237731191],[516385.52093988925,5277667.478857698],[516382.5753178797,5277665.470049849],[516383.216663305,5277664.393797772],[516379.70027683274,5277659.727141945],[516379.1541429781,5277658.992082154],[516378.288761731,5277659.623144845],[516375.221785476,5277655.3689737115],[516373.6808173546,5277653.230753745],[516372.02764216077,5277650.9366228115],[516373.6378778447,5277649.807524584],[516372.3212571371,5277648.003355634],[516370.5857246121,5277645.620081626],[516368.2143451582,5277642.357015325],[516369.380673514,5277641.526745548],[516368.38571169606,5277640.16804149],[516366.2536356987,5277637.261296479],[516365.1090742757,5277635.691006669],[516364.07807411265,5277636.466087744],[516360.6517391793,5277631.810810904],[516361.8782389995,5277630.9473667685],[516361.003021087,5277629.733482391],[516358.85607450583,5277626.771128444],[516363.7474347761,5277623.183942941],[516365.37086396635,5277625.37796186],[516366.52217609214,5277624.547649305],[516369.536982928,5277628.668300985],[516369.79315294727,5277628.368943614],[516371.70100533694,5277630.897183727],[516371.3022780814,5277631.151684183],[516375.438858275,5277636.931477852],[516375.8452199548,5277636.632543206],[516377.65556747833,5277639.1160551105],[516378.36300030403,5277638.573459878],[516382.7990442256,5277644.676407061],[516381.3465376622,5277645.794832594],[516385.78279187105,5277651.819984838],[516383.89366831764,5277653.315056464],[516386.6985555898,5277657.301758729],[516385.3891396421,5277658.276104178],[516386.62349297025,5277659.957790707],[516391.82539249945,5277663.428885526],[516390.64895861724,5277665.18158344],[516394.76403283124,5277667.9160978915],[516395.4652375275,5277666.917813642],[516400.24699822936,5277670.243251019],[516399.5304609484,5277671.352631396],[516402.6334300159,5277673.484145091]]]},"properties":{"id_build":2444,"id_source":"w511310937","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.6018542644,5277734.042036863],[516336.5556702083,5277732.64704581],[516335.7787963308,5277733.856290625],[516331.656512627,5277731.0217713555],[516331.21139653435,5277731.754045952],[516324.7210106769,5277727.167992595],[516324.11000126763,5277728.144310297],[516320.8800574426,5277725.767974532],[516320.68384532497,5277726.111958113],[516318.1728457695,5277724.43782077],[516315.76725774753,5277722.663954042],[516316.02357663604,5277722.309024769],[516313.16056297475,5277720.300483372],[516312.79848864384,5277720.877396206],[516307.5294133561,5277717.261701638],[516310.1605599844,5277713.579228351],[516307.31283916207,5277711.470706838],[516309.5972126755,5277708.265163472],[516306.9666729189,5277706.36841639],[516308.36159594543,5277704.34957796],[516307.4848214647,5277703.691396555],[516309.2266457427,5277701.15117262],[516310.65790912276,5277702.244353341],[516312.6559926165,5277699.371428748],[516312.27369299316,5277699.125849779],[516315.63713547663,5277694.067296389],[516316.0421195687,5277694.257369207],[516318.0854212895,5277691.329003277],[516317.3207591006,5277690.860072462],[516320.1780505728,5277686.878159936],[516321.59476378775,5277687.804592699],[516323.3518984458,5277685.164390027],[516328.3284960425,5277688.645910437],[516326.43544084847,5277691.552466173],[516325.47755619,5277693.039054387],[516326.37710814417,5277693.608390462],[516323.8810510972,5277697.313463169],[516322.6970726799,5277699.088381589],[516323.8065472854,5277699.780559736],[516320.42057244654,5277704.839045304],[516319.1763636038,5277703.9908942655],[516318.11319410894,5277705.532758513],[516315.92643823137,5277708.738572141],[516314.6147998621,5277707.834663148],[516313.9209365782,5277708.899661609],[516312.78211390215,5277710.641366623],[516314.52843019064,5277711.857685023],[516315.5852123103,5277712.594169916],[516316.3244127393,5277711.429272811],[516318.9254699965,5277713.125889723],[516318.5479706868,5277713.847240815],[516320.30942840636,5277715.019147457],[516321.4787579972,5277715.7892909115],[516322.2254063753,5277714.6466434095],[516327.20989398565,5277717.983703414],[516326.31236976746,5277719.370434922],[516327.63148202683,5277720.285481542],[516329.07049610716,5277721.2897766875],[516331.2196136529,5277718.117204304],[516333.2282567178,5277719.512088093],[516335.9788712524,5277721.43141207],[516337.56779240584,5277722.536155889],[516337.00214908365,5277723.401459664],[516339.18303889764,5277724.96353875],[516338.3687408758,5277726.128222223],[516339.5379098838,5277726.953938838],[516342.49828469154,5277729.051678521],[516338.6018542644,5277734.042036863]]]},"properties":{"id_build":2445,"id_source":"w511310938","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516352.1932044063,5277696.926131813],[516353.79919221107,5277694.630047338],[516363.01020035567,5277701.124271222],[516362.11285243224,5277702.444313788],[516364.7211288101,5277704.240997372],[516364.4044802438,5277704.684666838],[516367.1625698672,5277706.615140523],[516364.62131037714,5277710.364524819],[516367.50680854503,5277712.384268761],[516365.3879256989,5277715.479114901],[516368.79026279174,5277717.967100002],[516366.65676850465,5277720.9174227575],[516367.22630138596,5277721.341355551],[516358.9719442183,5277732.521055919],[516358.4022869206,5277732.14157953],[516354.19589652633,5277737.864579867],[516354.5703389391,5277738.232393437],[516352.70869795955,5277740.650013547],[516351.8693251346,5277740.047500373],[516348.9819999228,5277744.029313315],[516347.5806357747,5277742.991776918],[516345.77941804164,5277745.287315031],[516340.8628303072,5277741.850403489],[516343.0714296252,5277738.889168147],[516343.99855586805,5277737.658118137],[516343.0916902111,5277737.022074788],[516346.4768861477,5277732.241449691],[516347.458565923,5277732.9777295515],[516348.36316563975,5277731.746616982],[516351.0091009319,5277728.153115418],[516351.76288842293,5277727.143859586],[516350.92363840196,5277726.496890961],[516352.69548162894,5277723.9678781815],[516351.87857236987,5277723.387656117],[516353.0394644577,5277721.8127305],[516355.3762382446,5277718.674036065],[516356.4993662201,5277717.176802972],[516357.42125249456,5277717.812890584],[516359.23049243196,5277715.339554823],[516360.4745681127,5277716.232170063],[516361.0475377024,5277715.433573082],[516362.59304198105,5277713.281802855],[516361.0789680054,5277712.266174476],[516356.9495776104,5277709.287135577],[516356.38405502756,5277710.107981856],[516354.59265871556,5277708.902638203],[516351.4445717696,5277706.793251242],[516349.18094906,5277705.27539124],[516345.0135008672,5277702.4740778385],[516344.14402130595,5277701.8937093],[516343.4201763031,5277702.9363921145],[516338.4356225766,5277699.621546116],[516339.13706334593,5277698.534343854],[516338.00528012234,5277697.764302251],[516337.3381815904,5277697.317870576],[516338.06972284184,5277696.208524683],[516336.0760294902,5277694.835909237],[516344.6560508041,5277682.679060342],[516347.49698063044,5277684.531959216],[516346.1016336183,5277686.695268962],[516345.59946306085,5277686.349325339],[516342.4169359769,5277691.152747632],[516346.2544743416,5277693.775308913],[516346.8804164413,5277692.83237745],[516349.46629813284,5277694.584535285],[516349.17233480443,5277694.972699336],[516352.1932044063,5277696.926131813]]]},"properties":{"id_build":2446,"id_source":"w511310939","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.44947718084,5277647.337520978],[516290.91621797753,5277645.552193635],[516295.06209974474,5277639.98457485],[516297.45261590055,5277641.79173235],[516293.44947718084,5277647.337520978]]]},"properties":{"id_build":2447,"id_source":"w511321011","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"residential","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516366.39091137395,5277505.616508609],[516370.7968560057,5277506.440216932],[516370.22496823524,5277509.517182924],[516367.09146993235,5277526.223807767],[516362.6780300549,5277525.400081083],[516365.8190883402,5277508.671247225],[516366.39091137395,5277505.616508609]]]},"properties":{"id_build":2448,"id_source":"w511510942","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516367.09146993235,5277526.223807767],[516370.22496823524,5277509.517182924],[516376.13955604786,5277510.634101137],[516372.9910531338,5277527.329566731],[516367.09146993235,5277526.223807767]]]},"properties":{"id_build":2449,"id_source":"w511510943","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516356.793400002,5277524.316602577],[516362.6780300549,5277525.400081083],[516365.8190883402,5277508.671247225],[516359.8893834103,5277507.587638997],[516356.793400002,5277524.316602577]]]},"properties":{"id_build":2450,"id_source":"w511510944","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516108.097040633,5276759.548412974],[516115.1271261343,5276756.833826623],[516117.4315433435,5276762.763950243],[516110.39395318244,5276765.478513041],[516108.097040633,5276759.548412974]]]},"properties":{"id_build":2451,"id_source":"w512044889","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516122.49334104086,5276771.068983972],[516115.62599546823,5276752.978659571],[516124.0769432823,5276749.7901155595],[516130.93675578386,5276767.880429079],[516122.49334104086,5276771.068983972]]]},"properties":{"id_build":2452,"id_source":"w512044890","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516447.35248264484,5277195.186592137],[516442.5598645678,5277192.916917967],[516444.8943147721,5277188.033359183],[516449.6793944251,5277190.31412793],[516447.35248264484,5277195.186592137]]]},"properties":{"id_build":2453,"id_source":"w512044891","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.3207391258,5277193.637946984],[516424.7871167557,5277196.845561056],[516415.63695009885,5277192.485304164],[516417.17053720914,5277189.288801605],[516426.3207391258,5277193.637946984]]]},"properties":{"id_build":2454,"id_source":"w512044892","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516438.7591583956,5277185.126399674],[516436.43225373916,5277189.998868196],[516433.1308340789,5277196.891331703],[516426.3207391258,5277193.637946984],[516417.17053720914,5277189.288801605],[516415.63695009885,5277192.485304164],[516409.90683159156,5277189.757340717],[516429.33802621067,5277149.03494262],[516441.0832688713,5277154.647313241],[516438.7591583956,5277185.126399674]]]},"properties":{"id_build":2455,"id_source":"w512044893","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.5598645678,5277192.916917967],[516438.352282289,5277190.915634955],[516436.43225373916,5277189.998868196],[516438.7591583956,5277185.126399674],[516444.8943147721,5277188.033359183],[516442.5598645678,5277192.916917967]]]},"properties":{"id_build":2456,"id_source":"w512044894","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516435.05837101274,5277197.808118592],[516433.1308340789,5277196.891331703],[516436.43225373916,5277189.998868196],[516438.352282289,5277190.915634955],[516435.05837101274,5277197.808118592]]]},"properties":{"id_build":2457,"id_source":"w512044895","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516069.0396945243,5277473.035560016],[516062.05104658596,5277474.661144677],[516062.28850843094,5277475.695400138],[516056.00624563027,5277477.156231176],[516054.48074682814,5277477.518785768],[516054.24322238436,5277476.506758419],[516047.33722113835,5277478.121474623],[516045.2959812991,5277469.42471478],[516052.2095327072,5277467.798902963],[516051.9645589369,5277466.764627223],[516059.79489420407,5277464.930186466],[516060.0399279793,5277465.942234741],[516066.9910367551,5277464.316544045],[516069.0396945243,5277473.035560016]]]},"properties":{"id_build":2458,"id_source":"w512044896","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515946.5765771688,5277250.919393355],[515947.6404822066,5277251.844767385],[515943.94903867505,5277256.035741095],[515940.1355078872,5277252.702220362],[515938.57608406857,5277254.4650736945],[515934.4251048149,5277259.177152413],[515930.44677472976,5277255.687591343],[515932.4808208467,5277253.381449699],[515932.12121899676,5277253.058160367],[515943.54964595777,5277240.074976377],[515950.64471759397,5277246.296008161],[515946.5765771688,5277250.919393355]]]},"properties":{"id_build":2459,"id_source":"w512044897","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515915.3440152885,5277283.120040707],[515910.5152634018,5277280.28389322],[515911.91939069325,5277277.631489787],[515916.94443825533,5277280.090299808],[515915.3440152885,5277283.120040707]]]},"properties":{"id_build":2460,"id_source":"w512044898","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515952.49627888796,5277214.659588771],[515955.2156459335,5277214.411418444],[515955.5647721731,5277218.557888429],[515952.3722083781,5277218.826990067],[515952.46703860327,5277219.84973573],[515946.84061791963,5277220.3233382],[515946.6951334948,5277218.600273377],[515943.2021043634,5277218.890785088],[515943.47130563273,5277222.059005544],[515936.72560642526,5277222.629578808],[515936.24569553626,5277216.8712254455],[515941.2636766899,5277216.440402779],[515940.3468536196,5277205.679563585],[515945.575159112,5277205.238206422],[515956.7905100884,5277204.279787623],[515957.0669711766,5277207.536940377],[515954.6406180179,5277207.741456841],[515954.91738467215,5277210.887470574],[515952.19053631113,5277211.124506574],[515952.49627888796,5277214.659588771]]]},"properties":{"id_build":2461,"id_source":"w512044899","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516012.0009250653,5277347.946155161],[516006.5085494424,5277348.87574127],[516005.4739898637,5277342.749094539],[516004.82031752024,5277342.858437422],[516004.2943756768,5277342.945903526],[516004.13907986146,5277342.0674722865],[516001.3966599593,5277342.526721778],[515999.8372235946,5277333.364517349],[516005.06664133683,5277332.47865796],[516005.43624365225,5277334.624671956],[516009.6212550616,5277333.924883336],[516012.0009250653,5277347.946155161]]]},"properties":{"id_build":2462,"id_source":"w512044900","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515868.37853239337,5277395.120774774],[515866.2394841759,5277394.648158081],[515866.7488562241,5277392.37118054],[515868.887905237,5277392.843797418],[515868.62178731844,5277394.043381819],[515868.37853239337,5277395.120774774]]]},"properties":{"id_build":2463,"id_source":"w512044901","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515868.37853239337,5277395.120774774],[515866.9948304977,5277401.318603922],[515856.1570299767,5277398.9106866205],[515859.00796210876,5277386.17071789],[515861.4472286162,5277386.710833655],[515862.46606152924,5277382.123536163],[515867.19448951236,5277383.1700205775],[515866.8447630107,5277384.736138478],[515869.7718705196,5277385.388727015],[515868.8823970767,5277389.353993044],[515867.4938828109,5277389.0501312725],[515866.7488562241,5277392.37118054],[515866.2394841759,5277394.648158081],[515868.37853239337,5277395.120774774]]]},"properties":{"id_build":2464,"id_source":"w512044902","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515869.7718705196,5277385.388727015],[515866.8447630107,5277384.736138478],[515867.19448951236,5277383.1700205775],[515870.12159777194,5277383.822609285],[515869.7718705196,5277385.388727015]]]},"properties":{"id_build":2465,"id_source":"w512044903","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515861.4472286162,5277386.710833655],[515859.00796210876,5277386.17071789],[515860.026793188,5277381.5834199805],[515862.46606152924,5277382.123536163],[515861.4472286162,5277386.710833655]]]},"properties":{"id_build":2466,"id_source":"w512044904","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515920.00316201797,5277391.927512752],[515921.1600209149,5277391.808422368],[515922.48212806124,5277391.678670148],[515922.5842576223,5277392.779233413],[515926.5355588827,5277392.389937541],[515927.1202676066,5277398.270832181],[515911.7808466375,5277399.7737331325],[515911.38627725496,5277395.760508249],[515915.9235298425,5277395.306122683],[515915.65304632514,5277392.604686297],[515911.5439773602,5277393.01578634],[515911.00318800507,5277387.546230648],[515919.48421128513,5277386.713637481],[515920.00316201797,5277391.927512752]]]},"properties":{"id_build":2467,"id_source":"w512044905","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515993.2664731603,5277434.328085933],[515992.8307800081,5277434.371345029],[515993.14500245545,5277437.539692713],[515993.54696123156,5277441.57517196],[515993.9826233202,5277441.543026809],[515994.2236393625,5277444.022106668],[515978.7265531757,5277445.546625667],[515976.6808012521,5277424.768981631],[515992.17794214055,5277423.244457114],[515993.2664731603,5277434.328085933]]]},"properties":{"id_build":2468,"id_source":"w512044908","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515936.57651439,5277447.209334497],[515937.0046963138,5277447.166050634],[515937.2532766035,5277449.634034758],[515921.75622102217,5277451.158705345],[515920.56521557126,5277439.052323868],[515920.39710864733,5277437.362539195],[515919.7101464626,5277430.425537187],[515935.20725662383,5277428.900861081],[515936.2958949013,5277439.984479105],[515935.8677428754,5277440.016649122],[515936.57651439,5277447.209334497]]]},"properties":{"id_build":2469,"id_source":"w512044911","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515920.56521557126,5277439.052323868],[515918.980183691,5277439.214699515],[515918.8121067006,5277437.513800996],[515920.39710864733,5277437.362539195],[515920.56521557126,5277439.052323868]]]},"properties":{"id_build":2470,"id_source":"w512044913","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515965.039209424,5277444.386564843],[515965.4673613009,5277444.354396968],[515965.7158991834,5277446.833496224],[515950.2038086657,5277448.358049927],[515948.15786474105,5277427.61375774],[515963.6700099221,5277426.089198509],[515964.75859461183,5277437.172821928],[515964.33795205137,5277437.205010445],[515964.5862164695,5277439.784134694],[515965.039209424,5277444.386564843]]]},"properties":{"id_build":2471,"id_source":"w512044914","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515301.6149735216,5277730.468276622],[515309.02240219136,5277726.453376684],[515307.0792920615,5277722.891793777],[515308.0644355672,5277722.36091315],[515307.27225973475,5277720.90289885],[515302.25625422556,5277723.62375087],[515298.8796537226,5277725.45979691],[515301.6149735216,5277730.468276622]]]},"properties":{"id_build":2472,"id_source":"w512883031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515308.2719368924,5277694.854360282],[515311.3707061995,5277693.0175889535],[515312.94039489893,5277695.8002123125],[515313.9867557431,5277697.6923411405],[515310.9782774751,5277699.462664669],[515308.2719368924,5277694.854360282]]]},"properties":{"id_build":2473,"id_source":"w512883032","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515315.5236459315,5277707.232178292],[515318.9534136178,5277705.174002204],[515321.0318395538,5277708.680375194],[515317.53466325544,5277710.671688829],[515315.5236459315,5277707.232178292]]]},"properties":{"id_build":2474,"id_source":"w512883033","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515319.47093431733,5277713.9776356425],[515322.90806267667,5277711.975051136],[515321.0318395538,5277708.680375194],[515317.53466325544,5277710.671688829],[515319.47093431733,5277713.9776356425]]]},"properties":{"id_build":2475,"id_source":"w512883034","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515337.92158823524,5277745.434324529],[515335.5785691897,5277742.605200957],[515339.94356556894,5277739.004657681],[515342.29406412167,5277741.844916694],[515337.92158823524,5277745.434324529]]]},"properties":{"id_build":2476,"id_source":"w512883035","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515334.39700999716,5277743.580118764],[515332.57026705856,5277741.463651074],[515333.25164984714,5277739.364903496],[515330.5641570314,5277736.168113364],[515338.74500136805,5277729.332337031],[515338.5428900844,5277729.087296952],[515341.4478984663,5277726.683218093],[515345.8864516351,5277732.218564592],[515343.1848731769,5277734.367555864],[515344.1129406984,5277735.548083809],[515341.78739353747,5277737.486901243],[515339.94356556894,5277739.004657681],[515335.5785691897,5277742.605200957],[515334.39700999716,5277743.580118764]]]},"properties":{"id_build":2477,"id_source":"w512883036","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515356.6071998447,5277750.3737364905],[515353.4636129403,5277746.43109586],[515355.4201717048,5277744.880299085],[515353.54899565584,5277742.530313982],[515360.30670047563,5277737.157860018],[515359.07171647233,5277735.60975838],[515364.0835434755,5277731.6330643995],[515370.34082373406,5277739.462709854],[515367.26297505776,5277741.91077404],[515356.6071998447,5277750.3737364905]]]},"properties":{"id_build":2478,"id_source":"w512883037","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515774.97949981806,5277652.055582676],[515767.284048397,5277648.5782870315],[515758.60608483513,5277669.604673392],[515759.3800489547,5277669.428944749],[515760.3439535424,5277673.988287059],[515760.56562907744,5277675.322565114],[515761.61213653267,5277679.882131309],[515763.3479208627,5277679.486727655],[515774.97949981806,5277652.055582676]]]},"properties":{"id_build":2479,"id_source":"w512921407","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515988.0529594924,5277284.5084380675],[515988.1680515541,5277283.619635859],[515998.64119788725,5277284.870941911],[515998.5636544339,5277285.759847101],[515988.0529594924,5277284.5084380675]]]},"properties":{"id_build":2480,"id_source":"w513947049","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515894.8441496767,5277323.396665584],[515895.8188399916,5277323.988367387],[515896.8309890087,5277324.613513559],[515897.379218036,5277324.615010429],[515897.9154010603,5277323.52730462],[515895.5985771679,5277322.142845707],[515894.8441496767,5277323.396665584]]]},"properties":{"id_build":2481,"id_source":"w513950435","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515880.85231266246,5277334.639172456],[515877.635686297,5277332.741023457],[515876.1871037216,5277335.182148442],[515879.4112391707,5277337.080317133],[515880.85231266246,5277334.639172456]]]},"properties":{"id_build":2482,"id_source":"w513950436","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515380.9321037927,5277303.45603995],[515380.9422561693,5277302.455809222],[515386.6647691887,5277302.5153851],[515386.6546452,5277303.504501927],[515380.9321037927,5277303.45603995]]]},"properties":{"id_build":2483,"id_source":"w520983188","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515370.77783009777,5277312.2426046245],[515381.1264648516,5277312.325503717],[515381.11710516707,5277313.025659285],[515388.5669078163,5277313.089800396],[515388.55625477247,5277314.278967351],[515395.2025153306,5277314.3298792625],[515395.25713916746,5277307.872805373],[515388.6334306327,5277307.810839064],[515388.61350510776,5277309.666819878],[515387.7123045676,5277309.664438051],[515386.59334326774,5277309.650366916],[515386.6546452,5277303.504501927],[515380.9321037927,5277303.45603995],[515370.8463037137,5277303.373835145],[515370.77783009777,5277312.2426046245]]]},"properties":{"id_build":2484,"id_source":"w520983189","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515577.8127584226,5277077.287769549],[515569.0140312181,5277078.820192613],[515566.4322735265,5277064.098393227],[515567.18363254244,5277063.978148256],[515566.59177972574,5277060.62014696],[515574.57152151223,5277059.230011121],[515575.1263236347,5277062.398976642],[515575.82511078834,5277062.278592163],[515577.3564080055,5277071.007155319],[515576.73275472556,5277071.116626633],[515577.8127584226,5277077.287769549]]]},"properties":{"id_build":2485,"id_source":"w520994557","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515475.8938899397,5276911.806857918],[515491.95903640206,5276920.262849165],[515494.4449569818,5276914.645796043],[515478.70015138056,5276907.168678651],[515478.39819424367,5276907.745802275],[515477.5105641185,5276908.26579936],[515475.8938899397,5276911.806857918]]]},"properties":{"id_build":2486,"id_source":"w521011697","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515741.11388215265,5277151.04582165],[515745.4299152796,5277146.3673945675],[515741.7664937252,5277143.001069259],[515747.5061140755,5277136.7927643275],[515744.38207208546,5277133.928025023],[515745.27089413255,5277132.963512781],[515742.04945627437,5277130.009599607],[515741.14561384195,5277130.97407173],[515737.4222483402,5277127.552017378],[515734.33397995005,5277130.900091129],[515733.01542164024,5277129.696219117],[515730.16820497846,5277132.778211055],[515736.22148569993,5277138.340439957],[515736.8316162878,5277137.675250524],[515738.77195859555,5277139.458730697],[515740.99699713755,5277141.498602554],[515736.2817511215,5277146.609398916],[515741.11388215265,5277151.04582165]]]},"properties":{"id_build":2487,"id_source":"w521011700","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.5081499401,5276735.87860551],[515676.2740840083,5276736.731058689],[515681.01602431067,5276744.12349887],[515686.35044575983,5276740.681422318],[515683.0672688473,5276735.460129528],[515678.9966540227,5276738.160975935],[515677.5081499401,5276735.87860551]]]},"properties":{"id_build":2488,"id_source":"w521018027","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515654.09705454734,5276760.9998721555],[515653.45603267744,5276759.175458638],[515657.15480076004,5276757.885068282],[515657.7883109031,5276759.709462009],[515654.09705454734,5276760.9998721555]]]},"properties":{"id_build":2489,"id_source":"w521018028","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515630.6380239616,5276823.64185457],[515633.67927986337,5276818.259744834],[515638.90637523215,5276821.185639637],[515635.8651159924,5276826.567746671],[515630.6380239616,5276823.64185457]]]},"properties":{"id_build":2490,"id_source":"w521018029","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515628.07220987324,5276828.180580388],[515622.1552108155,5276824.852741615],[515624.7210217245,5276820.31401322],[515630.6380239616,5276823.64185457],[515628.07220987324,5276828.180580388]]]},"properties":{"id_build":2491,"id_source":"w521018030","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515637.7945506449,5276832.463330103],[515642.8960621762,5276823.419149056],[515638.90637523215,5276821.185639637],[515635.8651159924,5276826.567746671],[515630.6380239616,5276823.64185457],[515628.07220987324,5276828.180580388],[515628.4021107051,5276828.392631135],[515628.91527920257,5276827.482663132],[515637.7945506449,5276832.463330103]]]},"properties":{"id_build":2492,"id_source":"w521018031","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.77791097027,5277009.835162292],[516639.45655539853,5277011.129180572],[516641.67280591326,5277008.268107373],[516639.99416114687,5277006.974088465],[516637.77791097027,5277009.835162292]]]},"properties":{"id_build":2493,"id_source":"w526288354","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517080.8456276374,5276596.477613228],[517084.5441794957,5276597.966621223],[517085.81071067223,5276596.36992424],[517082.7907174182,5276594.004901684],[517080.8456276374,5276596.477613228]]]},"properties":{"id_build":2494,"id_source":"w526288355","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517087.85522874363,5276583.050264745],[517088.03506752686,5276583.195274129],[517091.0850754668,5276585.571501407],[517093.0457496546,5276582.909901419],[517091.32221111923,5276581.548937771],[517089.91338157025,5276580.444519623],[517087.85522874363,5276583.050264745]]]},"properties":{"id_build":2495,"id_source":"w526288356","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.9905610838,5277021.83444589],[516592.7402675978,5277032.657017763],[516599.48713737744,5277023.873975643],[516618.92740616074,5277038.522082729],[516637.31464883074,5277014.257202541],[516634.67667504493,5277012.2602634905],[516617.9420650202,5276999.564772055],[516611.69185961806,5276994.823496893],[516593.3116354114,5277019.27741466],[516584.6548382924,5277013.040037663],[516577.9905610838,5277021.83444589]]]},"properties":{"id_build":2496,"id_source":"w571284277","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.42904832575,5276970.314135709],[516611.69185961806,5276994.823496893],[516617.9420650202,5276999.564772055],[516625.15652906685,5276990.127369442],[516618.2168825491,5276984.850647985],[516625.7253828442,5276975.025096101],[516613.1050395915,5276965.442168458],[516611.22038813686,5276967.90409506],[516608.96462485706,5276966.186107768],[516606.23563571356,5276969.757025579],[516608.6338115467,5276971.57544383],[516605.5278769049,5276975.645415893],[516586.43994342256,5276961.142841574],[516579.42904832575,5276970.314135709]]]},"properties":{"id_build":2497,"id_source":"w571284280","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"education","main_use":"education","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.0238292529,5277021.001673058],[516794.4059905115,5277031.534735008],[516803.401202164,5277019.313078435],[516789.02653708885,5277008.780016158],[516780.0238292529,5277021.001673058]]]},"properties":{"id_build":2498,"id_source":"w573113425","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"religious","main_use":"building","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516789.02653708885,5277008.780016158],[516803.401202164,5277019.313078435],[516807.14813780447,5277014.378170627],[516792.473051075,5277003.844232829],[516789.02653708885,5277008.780016158]]]},"properties":{"id_build":2499,"id_source":"w573113426","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.8873568716,5276940.4689903855],[516589.337105189,5276945.991628469],[516593.9662424732,5276939.792104659],[516586.51652219146,5276934.258346829],[516581.8873568716,5276940.4689903855]]]},"properties":{"id_build":2500,"id_source":"w690012549","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"building","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.5400215393,5276210.025111197],[516790.60044244904,5276210.156600517],[516790.60685031035,5276207.933825562],[516799.1842938976,5276208.169724482],[516812.34335571085,5276208.541112956],[516817.2705000914,5276208.677591141],[516817.2730673067,5276207.788481165],[516820.5252917838,5276207.875670312],[516830.9429062476,5276208.161386503],[516830.93295020144,5276211.606687669],[516830.87159873074,5276217.241291957],[516830.8603297159,5276218.54159361],[516830.6493700758,5276239.557497237],[516830.6163982117,5276243.169441587],[516826.0121443718,5276243.078340619],[516824.1569287303,5276243.039639419],[516820.626898998,5276242.918303923],[516816.87120668974,5276242.907458672],[516816.78871222876,5276245.4634331195],[516796.58469901275,5276244.84943373],[516794.18137722055,5276244.731363657],[516794.11107035045,5276243.064065767],[516793.284818073,5276243.061683366],[516791.81274695083,5276243.001869273],[516790.5059262591,5276242.942531937],[516788.0274897234,5276242.824247868],[516785.3326798286,5276239.5934303375],[516785.42060559377,5276235.1480967095],[516785.33716396603,5276238.037487797],[516783.4596365262,5276237.920937494],[516783.3713920251,5276242.477409922],[516778.7146534504,5276242.352853207],[516778.71305260464,5276242.908546975],[516765.8695448806,5276242.538142413],[516766.2838258176,5276229.091434495],[516761.17639210145,5276228.965594482],[516761.33845409175,5276224.853893025],[516765.1961443997,5276215.529263673],[516766.87457190565,5276206.531782006],[516783.6316145111,5276206.913464361],[516783.5400215393,5276210.025111197]],[[516783.61909498565,5276216.471439986],[516783.66078602173,5276220.250308974],[516790.4210583809,5276220.269793559],[516790.356196698,5276216.713137046],[516783.61909498565,5276216.471439986]]]},"properties":{"id_build":2501,"id_source":"r1966426","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"commercial","main_use":"null","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516241.09212343633,5277248.977196142],[516242.2546729516,5277262.984053942],[516276.7327166033,5277260.635260236],[516276.88468024,5277262.691771448],[516278.54342781013,5277284.53538092],[516289.58567341015,5277283.67714538],[516290.4604470321,5277293.126476782],[516279.11781810987,5277293.98387072],[516280.2064092977,5277307.545971567],[516245.87760147697,5277310.339719119],[516242.3232628981,5277265.318181126],[516215.95860408695,5277266.800650824],[516214.27492902457,5277251.125250302],[516241.09212343633,5277248.977196142]],[[516251.5597403211,5277292.573207023],[516252.3582330856,5277302.466878845],[516262.42444873793,5277301.4947277745],[516261.84413440555,5277294.1578794755],[516264.0226631545,5277293.941684874],[516263.87898203137,5277291.607347532],[516251.5597403211,5277292.573207023]],[[516255.0006883697,5277270.577130827],[516255.6486674197,5277280.581522374],[516262.7844514483,5277280.156890021],[516262.9281333299,5277282.491227296],[516265.78288078465,5277282.165782362],[516264.6911461792,5277269.71507422],[516255.0006883697,5277270.577130827]]]},"properties":{"id_build":2502,"id_source":"r1957481","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"office","zindex":0}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516241.09212343633,5277248.977196142],[516242.2546729516,5277262.984053942],[516276.7327166033,5277260.635260236],[516276.88468024,5277262.691771448],[516278.54342781013,5277284.53538092],[516289.58567341015,5277283.67714538],[516290.4604470321,5277293.126476782],[516279.11781810987,5277293.98387072],[516280.2064092977,5277307.545971567],[516245.87760147697,5277310.339719119],[516242.3232628981,5277265.318181126],[516215.95860408695,5277266.800650824],[516214.27492902457,5277251.125250302],[516241.09212343633,5277248.977196142]],[[516251.5597403211,5277292.573207023],[516252.3582330856,5277302.466878845],[516262.42444873793,5277301.4947277745],[516261.84413440555,5277294.1578794755],[516264.0226631545,5277293.941684874],[516263.87898203137,5277291.607347532],[516251.5597403211,5277292.573207023]],[[516255.0006883697,5277270.577130827],[516255.6486674197,5277280.581522374],[516262.7844514483,5277280.156890021],[516262.9281333299,5277282.491227296],[516265.78288078465,5277282.165782362],[516264.6911461792,5277269.71507422],[516255.0006883697,5277270.577130827]]]},"properties":{"id_build":2503,"id_source":"r4269919","height_wall":3.0,"height_roof":3.0,"nb_lev":1,"type":"government","main_use":"office","zindex":0}}]} \ No newline at end of file +{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG::32630"}},"features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516024.9683961687,5277296.946439595],[516026.6212130152,5277296.728709319],[516027.43477216567,5277301.287680061],[516017.6668578483,5277303.039036347],[516015.6678906746,5277292.586397509],[516018.2228291119,5277292.037727036],[516017.55732188013,5277288.257143474],[516024.2446167036,5277287.053006623],[516024.9095079655,5277291.055868838],[516024.00769258325,5277291.275666419],[516024.43630030286,5277293.810833144],[516024.9683961687,5277296.946439595]]]},"properties":{"ID_SOURCE":"w144655681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.39526110794,5276984.073272857],[516175.5858093718,5276985.060168392],[516175.43714451586,5276984.504056685],[516172.85325393453,5276968.381616507],[516166.3905668454,5276969.697347399],[516168.0592199558,5276963.811573978],[516168.7357779166,5276963.59117306],[516178.3534809266,5276962.061930177],[516180.5825289577,5276970.737023728],[516182.7989065447,5276983.968812689],[516180.39526110794,5276984.073272857]]]},"properties":{"ID_SOURCE":"w144655684","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515209.3949390471,5277720.201804266],[515208.48741457204,5277722.644508627],[515208.7118276695,5277722.978514249],[515204.42533369974,5277725.30125299],[515200.0913158248,5277717.065591265],[515203.1745556077,5277715.406545614],[515202.7260183943,5277714.627395786],[515203.4778372958,5277714.295939809],[515202.5065385013,5277712.404026971],[515205.664876303,5277710.745178741],[515209.3949390471,5277720.201804266]]]},"properties":{"ID_SOURCE":"w144655688","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":3}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.61863200256,5277230.846752613],[516077.17519379227,5277238.297415736],[516071.186209466,5277239.525647431],[516066.5047203102,5277240.490757546],[516065.98514693347,5277238.266528246],[516063.20487739687,5277238.814556204],[516061.7963539455,5277232.142283726],[516061.35249224893,5277229.695984178],[516064.28327479,5277229.03723081],[516064.8022363823,5277231.483737787],[516065.0235531896,5277232.92916556],[516075.61863200256,5277230.846752613]]]},"properties":{"ID_SOURCE":"w144655699","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":4}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515664.1764190668,5277467.342128461],[515660.79868234624,5277466.710658901],[515658.1715665703,5277466.214577757],[515658.5530349462,5277463.992808077],[515652.6983740826,5277462.865666991],[515654.06896538474,5277455.867545848],[515656.7710050133,5277456.430510461],[515658.1413037692,5277449.543529309],[515664.8965577721,5277450.89537841],[515663.5262513229,5277457.782358003],[515665.92789662635,5277458.344518717],[515664.1764190668,5277467.342128461]]]},"properties":{"ID_SOURCE":"w144655703","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":5}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516174.67147770344,5277260.128561075],[516171.892442859,5277260.231981404],[516171.82320722926,5277258.120133012],[516171.6306254968,5277246.338780041],[516175.9113759242,5277246.350671206],[516176.0532409562,5277249.351839741],[516181.6864221542,5277249.14521308],[516181.8140757099,5277257.258772839],[516178.3665809767,5277257.38256029],[516176.0307008726,5277257.464982069],[516176.02792195696,5277258.465232502],[516174.67147770344,5277260.128561075]]]},"properties":{"ID_SOURCE":"w144655705","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":6}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516040.65156725456,5277328.886745737],[516039.5995574881,5277329.106127102],[516040.70952027093,5277335.1107338965],[516030.71574736794,5277337.08372546],[516028.7934454314,5277326.075593501],[516031.6484638824,5277325.6388948755],[516030.98388738954,5277321.524892705],[516039.8502694766,5277319.8822149495],[516040.43974002753,5277323.996011235],[516039.6884350637,5277324.105081239],[516039.9847317877,5277325.595170731],[516040.65156725456,5277328.886745737]]]},"properties":{"ID_SOURCE":"w144655706","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":7}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515524.88225294393,5276927.052255153],[515519.0665873642,5276939.262117149],[515512.54105361016,5276936.021678881],[515512.99464364036,5276934.911490507],[515507.6539243682,5276932.363280306],[515497.092521505,5276927.311650027],[515499.8873806299,5276921.317546466],[515509.2642643977,5276925.565821083],[515510.2465500088,5276923.34564395],[515517.1473280721,5276926.698219115],[515518.50662252406,5276923.923349648],[515524.88225294393,5276927.052255153]]]},"properties":{"ID_SOURCE":"w144655707","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":8}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515322.3447152651,5277212.656013423],[515322.1504985372,5277215.111689844],[515317.1948092547,5277214.720775893],[515318.00206020754,5277204.764781972],[515327.56053698104,5277205.523458422],[515327.7933017364,5277202.690008687],[515334.2431968518,5277203.20712023],[515333.9481526977,5277206.8739535045],[515334.23347936035,5277206.896932877],[515333.6977187619,5277213.563904331],[515328.47923289915,5277213.150060766],[515322.3447152651,5277212.656013423]]]},"properties":{"ID_SOURCE":"w144655715","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":9}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.56272137834,5277099.198020428],[516134.33772099065,5277099.086257203],[516132.39028327266,5277097.19148537],[516131.35731794796,5277090.520237855],[516130.9147057491,5277087.629377882],[516138.54670367483,5277087.094827183],[516153.15715403995,5277086.07951259],[516161.6379738539,5277085.491777069],[516161.620082184,5277091.937833692],[516156.5872643528,5277092.257286065],[516156.79746207176,5277097.703717756],[516143.8022123211,5277098.55679144],[516134.56272137834,5277099.198020428]]]},"properties":{"ID_SOURCE":"w144655717","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":10}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.9411545877,5277443.070284832],[515396.9355424334,5277442.800889928],[515395.8398709683,5277442.509029097],[515395.53712653887,5277443.397346562],[515390.2828882048,5277442.383197233],[515391.73208643135,5277433.9404070955],[515401.3610131931,5277436.310919493],[515402.24536850344,5277434.157147763],[515408.508999567,5277436.852189443],[515410.2546569316,5277432.7446388],[515416.1807549418,5277435.283199692],[515412.0017457121,5277445.119117977],[515406.02302829514,5277442.60264997],[515403.2572577119,5277449.085893718],[515396.6559596999,5277446.28993883],[515397.9411545877,5277443.070284832]]]},"properties":{"ID_SOURCE":"w144655719","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":11}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.90756106406,5276917.560347263],[516175.35675777984,5276916.108437033],[516181.68487295066,5276914.592290403],[516182.65794043755,5276918.484885273],[516180.3430661997,5276919.06749315],[516181.4053024797,5276923.304868788],[516170.4398523116,5276926.01955923],[516170.00899598014,5276924.306810843],[516167.4686559667,5276924.944367603],[516166.8892548076,5276922.631052459],[516165.86425186775,5276918.5049226275],[516169.90756106406,5276917.560347263]]]},"properties":{"ID_SOURCE":"w144655720","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":12}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.14078399725,5277730.802708117],[516300.717251482,5277733.71355483],[516296.78402016434,5277743.816272947],[516289.1324694177,5277740.90522116],[516290.41098988947,5277737.541260023],[516291.2506664128,5277735.354153911],[516285.9996422362,5277733.338943655],[516287.4373227089,5277729.453069685],[516292.91363380296,5277731.4689117195],[516293.14078399725,5277730.802708117]]]},"properties":{"ID_SOURCE":"w144655721","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":13}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516208.46586159954,5277044.722507645],[516202.932245338,5277046.86321822],[516198.7669996766,5277048.474269759],[516194.4814672268,5277050.129445627],[516192.8409366837,5277045.901572347],[516197.0510591222,5277044.35732526],[516196.52873521356,5277043.133335013],[516206.90477388614,5277038.938894899],[516210.612076131,5277029.168915967],[516216.2399004336,5277030.962822461],[516212.45903352,5277040.176894255],[516208.46586159954,5277044.722507645]]]},"properties":{"ID_SOURCE":"w144655722","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":14}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516270.69036727457,5277031.003577895],[516272.715370906,5277032.009494548],[516268.86365883943,5277039.667375483],[516265.5637593341,5277037.991060116],[516263.01396267413,5277036.65026089],[516262.4845127639,5277037.982459349],[516258.58440235443,5277036.08219215],[516259.2187793678,5277034.8280841615],[516263.19086509733,5277027.092735322],[516264.56324525503,5277027.818976979],[516270.69036727457,5277031.003577895]]]},"properties":{"ID_SOURCE":"w144655723","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":15}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516216.9079867685,5277233.327988102],[516203.3112938563,5277234.512671925],[516202.582551088,5277226.508578912],[516202.221580835,5277221.284004248],[516201.85813583666,5277216.948541083],[516201.4220629415,5277211.723757573],[516200.76810667804,5277203.831012989],[516214.4396625941,5277202.757671189],[516215.01849911816,5277210.650208191],[516215.96169723343,5277222.544792619],[516216.9079867685,5277233.327988102]]]},"properties":{"ID_SOURCE":"w144655724","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":16}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.2136704966,5277510.006896295],[515495.01571383787,5277510.122831873],[515496.555824034,5277495.789900287],[515514.72501216165,5277497.505386562],[515513.4101499556,5277511.838913795],[515508.604801899,5277511.492691974],[515508.7588455083,5277510.048285235],[515502.3016473498,5277509.586528843],[515501.8480965826,5277513.5196692245],[515501.3022989893,5277518.252770441],[515494.32031518174,5277517.456206279],[515493.2136704966,5277510.006896295]]]},"properties":{"ID_SOURCE":"w144655726","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":17}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515374.5000598527,5277560.705344142],[515375.2527889869,5277560.040493373],[515370.1620499003,5277554.025503627],[515373.92540560005,5277550.812386982],[515374.7485368666,5277551.925958391],[515382.8015265351,5277545.278844425],[515386.6414607544,5277550.034659873],[515388.1160823373,5277551.8501355965],[515383.2987201319,5277556.060715942],[515386.06819894945,5277559.513367398],[515378.31737346324,5277565.494436428],[515374.5000598527,5277560.705344142]]]},"properties":{"ID_SOURCE":"w144655727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":18}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.21467226214,5277324.211343155],[516078.95492875896,5277328.103280305],[516069.8632484198,5277329.745276693],[516069.12359953905,5277325.631062798],[516068.5224939453,5277325.740543623],[516067.9961246499,5277323.260673516],[516067.4845908642,5277320.847528289],[516066.8080781993,5277321.067940993],[516065.8458861386,5277315.952855334],[516075.01330051414,5277314.088782118],[516076.9376674616,5277324.31895667],[516078.21467226214,5277324.211343155]]]},"properties":{"ID_SOURCE":"w144655728","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":19}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516051.8516781456,5277276.170668618],[516053.2146207635,5277283.031751115],[516055.9948682531,5277282.483718397],[516056.720768676,5277286.142219221],[516048.4927446037,5277287.764403024],[516047.8482856297,5277284.528458902],[516046.3304001551,5277284.835466861],[516042.4756375037,5277285.591709062],[516040.57927735127,5277276.072918673],[516047.4923520548,5277274.702720797],[516047.9367673757,5277276.948969355],[516051.8516781456,5277276.170668618]]]},"properties":{"ID_SOURCE":"w144655729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":20}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516139.26136510156,5276907.828398756],[516140.985107297,5276914.579358167],[516137.2196590864,5276915.535837587],[516137.5019786605,5276916.648017282],[516132.8045822239,5276917.835310347],[516130.9556723923,5276918.308089079],[516131.58723076864,5276920.777140671],[516127.46854805417,5276921.821559611],[516125.14302679634,5276912.690547515],[516135.5825591313,5276910.040998324],[516135.2779536568,5276908.8398452],[516139.26136510156,5276907.828398756]]]},"properties":{"ID_SOURCE":"w144655730","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":21}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516244.05596488353,5277451.815630974],[516244.9754398006,5277445.260946202],[516245.5008179353,5277445.373551983],[516246.95590874384,5277435.263887484],[516257.0150667328,5277436.736784674],[516255.9432081029,5277444.069020905],[516258.1201288075,5277444.408519017],[516257.85278458724,5277446.019300084],[516257.6617801833,5277447.185734993],[516256.9858955146,5277447.183847686],[516256.06671766745,5277453.627391643],[516244.05596488353,5277451.815630974]]]},"properties":{"ID_SOURCE":"w144655733","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":22}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515344.6930588767,5277330.234005865],[515345.0001949744,5277327.678601569],[515345.07793101144,5277326.678548892],[515347.6307391148,5277326.907556993],[515348.091006086,5277323.2411592435],[515356.2751330194,5277323.929577361],[515354.8887495385,5277337.040409091],[515346.630127081,5277336.129516996],[515347.0155859385,5277332.351782203],[515344.5378799538,5277332.122972287],[515344.6930588767,5277330.234005865]]]},"properties":{"ID_SOURCE":"w144655735","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":23}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.71616861044,5277407.681550811],[516077.34462803905,5277413.554229483],[516074.4962077554,5277414.335457199],[516074.8754062251,5277415.714637821],[516071.5985873488,5277416.616937959],[516071.2639872108,5277415.404590374],[516069.09948821185,5277415.998770957],[516065.3717103123,5277417.03319774],[516063.53501777083,5277410.415311187],[516072.3659030464,5277407.983492755],[516072.5295249986,5277408.561871461],[516075.71616861044,5277407.681550811]]]},"properties":{"ID_SOURCE":"w144655737","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":24}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516220.9155713463,5277077.987965598],[516219.9135356931,5277087.209774994],[516244.9910956697,5277089.724760221],[516244.28075332573,5277102.059293245],[516233.16678601824,5277101.583738953],[516233.39860108646,5277099.2504500095],[516229.493875879,5277099.017285657],[516229.87837344775,5277095.795303988],[516212.158128729,5277094.3011218365],[516212.8547878236,5277086.856697064],[516213.6324315668,5277077.3008423885],[516220.9155713463,5277077.987965598]]]},"properties":{"ID_SOURCE":"w144655742","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":25}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.3248129363,5277424.800726158],[516206.3405939799,5277425.103649337],[516206.14174150676,5277429.093015617],[516201.18582623324,5277428.868057055],[516200.5513652436,5277438.268721008],[516196.18141071324,5277437.978713285],[516196.1107613638,5277439.078801053],[516190.5544688136,5277438.707699602],[516190.8440466096,5277434.496305432],[516192.41332619917,5277434.600695529],[516192.6637798397,5277430.956005771],[516192.8518984591,5277428.122463402],[516194.09077707527,5277428.21482104],[516194.3569009081,5277424.336781339],[516201.3248129363,5277424.800726158]]]},"properties":{"ID_SOURCE":"w144655743","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":26}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515636.2029033357,5277201.420635363],[515635.8306790634,5277200.197098719],[515637.86020953616,5277199.535710759],[515638.0092185084,5277199.980669894],[515641.9931790884,5277198.657694448],[515643.1849492905,5277202.328507416],[515647.9851688802,5277204.675340377],[515648.6646659047,5277203.343489734],[515652.56486083113,5277205.2433487065],[515650.6017687363,5277209.127962463],[515648.2613806097,5277213.678401297],[515643.9865792165,5277211.444119449],[515643.2313857026,5277212.998046742],[515642.0312577736,5277212.439123832],[515641.5557609003,5277213.3158503575],[515641.1255637854,5277214.103786825],[515643.30051508767,5277215.221027196],[515641.9418251093,5277217.773590917],[515643.43130870943,5277222.44546151],[515640.80037911085,5277223.327511439],[515641.91823805956,5277226.553566814],[515641.166331147,5277226.884966107],[515640.94252054597,5277226.328666191],[515635.7560659738,5277227.9818322295],[515635.9798770052,5277228.538131948],[515635.0777685021,5277228.8691286715],[515634.6310415452,5277227.423112505],[515633.4398680339,5277223.530023268],[515631.4854475664,5277224.191614394],[515630.2939729283,5277220.409664767],[515628.8658567844,5277220.850390164],[515626.63131406996,5277213.953729014],[515627.8341278546,5277213.512398342],[515627.98254061886,5277214.179635097],[515632.1917930976,5277212.857257673],[515630.7019996276,5277208.296528987],[515634.83615560096,5277206.973951863],[515636.036285345,5277207.532873283],[515637.6220702104,5277204.314079727],[515636.9521269788,5277202.089485823],[515636.50121987564,5277202.199414621],[515636.2029033357,5277201.420635363]]]},"properties":{"ID_SOURCE":"w144655744","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":27}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.74888712296,5277490.72241816],[516080.9825276334,5277483.126688943],[516080.6341109884,5277481.48085719],[516084.01597046235,5277480.601080376],[516084.537049827,5277482.269617312],[516094.6826317698,5277479.630299552],[516096.68815046176,5277487.637911547],[516092.20925145905,5277488.7369283065],[516090.45073534595,5277489.176627295],[516090.5236829834,5277489.954807693],[516086.6912415606,5277490.833335708],[516086.4687121076,5277489.832462409],[516082.74888712296,5277490.72241816]]]},"properties":{"ID_SOURCE":"w144655745","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":28}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516183.86972478736,5277112.1159303365],[516184.16210360033,5277115.006377013],[516184.66928645794,5277121.676173006],[516177.0820820088,5277122.321927289],[516176.13724286744,5277110.983045814],[516175.0103946719,5277111.091055186],[516175.15874750353,5277111.758305911],[516174.18241343624,5277111.755593792],[516173.8835465194,5277111.199064771],[516173.447439863,5277105.974284299],[516183.2135702518,5277105.0011614105],[516183.86972478736,5277112.1159303365]]]},"properties":{"ID_SOURCE":"w144655746","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":29}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516043.81688143814,5277243.095551745],[516042.9585416305,5277238.436429921],[516042.04109945503,5277233.42149814],[516049.93038574385,5277232.109562608],[516049.8565101075,5277231.664799855],[516054.9658345304,5277230.789767866],[516057.03678929975,5277242.354015748],[516052.97950042476,5277243.009666773],[516052.3118650505,5277240.007052038],[516050.23797556094,5277240.40143799],[516046.60112891323,5277241.102708376],[516046.89755077974,5277242.548342446],[516043.81688143814,5277243.095551745]]]},"properties":{"ID_SOURCE":"w144655747","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":30}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516261.49049478,5276963.627185311],[516266.3809824721,5276960.528931693],[516268.25083432643,5276963.312649171],[516267.5742725089,5276963.533038533],[516270.3404081688,5276968.097496754],[516269.4372913139,5276968.761811887],[516271.6798661005,5276972.54682971],[516263.55368908186,5276977.858835782],[516260.6003814668,5276973.0826925095],[516258.24517404864,5276969.286250527],[516262.6089925861,5276966.519942521],[516260.9638319606,5276963.959133807],[516261.49049478,5276963.627185311]]]},"properties":{"ID_SOURCE":"w144655758","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":31}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.88557914854,5277309.700284456],[516175.6061748902,5277302.14200161],[516174.7747860499,5277301.339485342],[516174.1081851585,5277300.693022681],[516174.04203827376,5277297.469784686],[516184.78167941933,5277297.388488584],[516184.91612381075,5277303.056992255],[516186.71852749446,5277303.06200283],[516186.85605962545,5277307.619117149],[516180.6969252709,5277307.935416663],[516180.7670835365,5277309.713848499],[516177.7593751568,5277311.039168265],[516175.88557914854,5277309.700284456]]]},"properties":{"ID_SOURCE":"w144655760","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":32}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516028.70819155104,5277029.665601906],[516028.2575695011,5277029.664361487],[516020.3102552599,5277030.131505643],[516011.88221778534,5277030.619566664],[516011.1632690234,5277018.947917244],[516011.0194789036,5277016.613587401],[516016.8033919278,5277016.296074921],[516017.5544304009,5277016.298140825],[516017.7687358595,5277020.299760885],[516024.9802295484,5277019.763904276],[516025.1963649603,5277023.098691261],[516030.22923475056,5277022.779125237],[516030.3733229674,5277025.002316699],[516028.70819155104,5277029.665601906]]]},"properties":{"ID_SOURCE":"w144655766","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":33}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.8139863442,5277369.083275847],[515487.6449065924,5277373.179033028],[515483.0061918898,5277366.609450319],[515487.5201328621,5277363.620682726],[515488.6569711551,5277359.733815722],[515490.6133996418,5277358.294203924],[515492.10917786375,5277360.632118464],[515492.56036567123,5277360.411039525],[515494.95408136613,5277363.973881456],[515496.53412574664,5277362.866689213],[515498.5538206522,5277365.87283842],[515493.8139863442,5277369.083275847]]]},"properties":{"ID_SOURCE":"w144655767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":34}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.2514579663,5277674.4677993],[516179.00488251774,5277673.580774148],[516179.978033534,5277674.694877389],[516193.9312403016,5277679.9572476335],[516192.3790509777,5277684.531892838],[516188.176714532,5277696.945643622],[516170.6220638121,5277690.561883406],[516171.0757219008,5277689.4517448405],[516165.9741883057,5277687.659338397],[516164.10884322587,5277683.319704005],[516163.50746410066,5277683.540314017],[516154.85562928923,5277662.177444986],[516152.75048781064,5277663.060722635],[516148.7969385624,5277653.491726405],[516147.96996179456,5277653.822852105],[516146.0307295356,5277649.038459479],[516146.8577068701,5277648.707333505],[516142.82935037836,5277639.026994303],[516139.8521666931,5277640.241278215],[516139.5966335948,5277637.606555163],[516138.15383847186,5277637.947089045],[516136.37229414907,5277633.163136943],[516137.6133862219,5277629.732355494],[516138.3550259983,5277627.678323991],[516141.3563994506,5277628.57576364],[516144.0878994409,5277618.469610744],[516143.26276705286,5277618.133903104],[516144.7797909448,5277612.692257012],[516145.6803283966,5277612.917034127],[516146.9720671959,5277607.474763845],[516162.8810506156,5277611.631084346],[516160.3748029694,5277621.737853756],[516160.8250707077,5277621.850243508],[516159.6087264895,5277627.181580304],[516158.85807524755,5277627.068356894],[516157.4930843324,5277631.843582286],[516161.297059772,5277641.189889149],[516161.8984431744,5277640.969278914],[516163.98754804814,5277645.8652328],[516163.1605693243,5277646.196356344],[516167.26429126924,5277655.76577935],[516170.0462242185,5277654.550967119],[516178.2514579663,5277674.4677993]]]},"properties":{"ID_SOURCE":"w144655768","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":35}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515310.01149942784,5277524.526116017],[515313.92883569765,5277519.868548862],[515314.6783472554,5277520.426219202],[515320.0269271083,5277514.10532482],[515325.42340832297,5277518.120559055],[515320.4511899925,5277524.1090196315],[515320.07658097165,5277523.774614578],[515319.3610512235,5277524.572938031],[515318.79612559377,5277525.216062175],[515323.3671130095,5277529.006843103],[515320.05259966984,5277532.888011906],[515317.43004703464,5277530.658316186],[515310.01149942784,5277524.526116017]]]},"properties":{"ID_SOURCE":"w144655769","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":36}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516094.51824249915,5277348.929423663],[516094.818947963,5277348.819115109],[516096.15046134364,5277356.158023062],[516096.0707531004,5277357.824899764],[516096.29359338345,5277358.714634263],[516089.9070702359,5277359.808379536],[516090.49957264255,5277362.810791678],[516085.6205693687,5277361.908191566],[516084.50666677824,5277357.348382254],[516085.1834829624,5277357.016832648],[516084.9020351287,5277355.593465622],[516084.59097720333,5277354.014421083],[516082.33645745966,5277354.563892196],[516081.66977137973,5277351.227856639],[516082.2708745995,5277351.118377177],[516094.51824249915,5277348.929423663]]]},"properties":{"ID_SOURCE":"w144655771","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":37}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516268.539030966,5277397.758893432],[516268.1551516877,5277400.758596162],[516266.3496731215,5277401.864949915],[516266.1352976189,5277403.331396722],[516265.89038588677,5277404.975581956],[516263.0378716912,5277404.523054035],[516262.88612179225,5277405.078329296],[516259.3583385586,5277404.401637354],[516259.89116931544,5277401.846909344],[516256.2885952063,5277401.058870575],[516257.42873335996,5277396.171901707],[516263.4481363926,5277392.076539335],[516268.539030966,5277397.758893432]]]},"properties":{"ID_SOURCE":"w144655772","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":38}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.5953371082,5277251.742889383],[516153.0656913224,5277251.699754181],[516153.0093060157,5277244.953412459],[516156.4792760813,5277244.851900286],[516156.4657978691,5277244.296163934],[516159.3199100748,5277244.20405855],[516163.0752950382,5277244.092228456],[516163.9792828329,5277243.094479866],[516166.532714327,5277243.101569105],[516167.7315516694,5277244.105156011],[516167.7838154156,5277252.329645755],[516156.59317832877,5277252.520861935],[516156.5953371082,5277251.742889383]]]},"properties":{"ID_SOURCE":"w144655783","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":39}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.4271751386,5277576.404752626],[516080.0740266511,5277575.503608798],[516079.23660642636,5277579.613470017],[516078.6281602426,5277582.390285643],[516072.6989081107,5277581.15137515],[516073.76498867094,5277575.819606069],[516069.56203142204,5277574.918884781],[516071.00850246847,5277567.809927802],[516074.2358209433,5277568.485676594],[516074.5401970465,5277567.041699075],[516081.53540695226,5277568.439151477],[516085.7985672823,5277569.295591787],[516084.4271751386,5277576.404752626]]]},"properties":{"ID_SOURCE":"w144655791","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":40}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516150.5410365178,5277051.78564005],[516151.43518681993,5277054.344334585],[516153.6901375674,5277053.6837513065],[516156.602208162,5277059.804517375],[516150.61948560126,5277061.410560583],[516146.3804561018,5277062.55465787],[516145.6355869384,5277060.329797284],[516141.050589688,5277061.650762758],[516139.26690217917,5277054.86629346],[516142.9497395493,5277053.876244652],[516142.131613156,5277050.984342933],[516148.4449223782,5277049.33475189],[516150.5410365178,5277051.78564005]]]},"properties":{"ID_SOURCE":"w144655793","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":41}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516132.341705101,5277304.467041151],[516132.6137746889,5277314.692656547],[516123.3004511529,5277315.00027791],[516123.23366083886,5277311.999318375],[516120.67995188583,5277312.103387003],[516120.6103907342,5277310.102678031],[516119.18810490787,5277308.431643279],[516119.0526736432,5277303.096558062],[516123.93449123803,5277302.9989354955],[516123.9323367881,5277303.776908114],[516127.6725393756,5277303.709469248],[516129.11455449107,5277303.680121805],[516129.11209147144,5277304.569233364],[516132.341705101,5277304.467041151]]]},"properties":{"ID_SOURCE":"w144655799","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":42}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516205.70167779515,5277387.5366105605],[516197.5249356287,5277386.958157811],[516197.75181328534,5277383.691278313],[516195.7770466653,5277383.563530928],[516196.0742024167,5277379.329930468],[516197.85374354897,5277379.4460208295],[516198.0961671327,5277375.990246944],[516198.27603794757,5277373.423417588],[516205.814579267,5277373.955638927],[516205.09514553635,5277384.200727754],[516211.9954846957,5277384.675610982],[516211.76105822594,5277387.953582932],[516205.70167779515,5277387.5366105605]]]},"properties":{"ID_SOURCE":"w144655805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":43}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516248.9467302094,5277009.815192333],[516248.9720058324,5277016.905979473],[516241.4340371546,5277018.696527446],[516234.8993848151,5277018.900583893],[516234.7669014959,5277012.543020368],[516234.43470014445,5276997.004756301],[516240.96909804473,5276996.900724285],[516240.9634873621,5276998.912338208],[516243.44192193955,5276998.919251451],[516243.50431473186,5277003.476155498],[516241.12364131305,5277003.42505899],[516241.1033682157,5277010.693542545],[516247.81762820465,5277010.72338767],[516247.8128158065,5277009.756458347],[516248.9467302094,5277009.815192333]]]},"properties":{"ID_SOURCE":"w144655806","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":44}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515413.0427589462,5277355.420983596],[515413.7233616705,5277353.644549535],[515419.34964154055,5277355.993381672],[515420.1041682054,5277354.661703085],[515425.20504294336,5277356.89800966],[515423.96619882557,5277359.617651317],[515423.24097564066,5277361.227256396],[515424.59129232256,5277361.786532271],[515421.7189701519,5277368.7807272365],[515414.51650076563,5277366.094300267],[515415.422989259,5277364.096184939],[515408.67169572675,5277361.188680362],[515411.16703762347,5277354.749179942],[515413.0427589462,5277355.420983596]]]},"properties":{"ID_SOURCE":"w144655813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":45}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515989.1042030408,5277530.685988194],[515990.14335412404,5277535.134435161],[515989.0162863597,5277535.353619389],[515989.7144159845,5277538.189602284],[515990.57592695585,5277541.692872983],[515992.83006023866,5277541.2545053465],[515993.6481898836,5277544.146388309],[515985.0071481038,5277545.900893758],[515984.2641114793,5277543.009218194],[515982.8360470495,5277543.449856876],[515980.0137798016,5277531.994707668],[515984.5223577196,5277531.006826105],[515984.67072128016,5277531.674072395],[515989.1042030408,5277530.685988194]]]},"properties":{"ID_SOURCE":"w144655817","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":46}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516266.3809824721,5276960.528931693],[516261.49049478,5276963.627185311],[516259.99492128746,5276961.289074135],[516258.18961898243,5276962.284291081],[516256.0742438654,5276958.666343304],[516253.106705891,5276953.601200986],[516261.4576004406,5276948.512087458],[516263.4761158933,5276951.8519172305],[516262.79893214116,5276952.294584912],[516265.71435483237,5276957.192876997],[516266.5417474844,5276956.7506292565],[516268.18659722904,5276959.422578404],[516266.3809824721,5276960.528931693]]]},"properties":{"ID_SOURCE":"w144655821","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":47}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515647.08596146875,5277008.28904267],[515645.61441705964,5277010.896871539],[515643.08634401346,5277015.391237262],[515641.5866554076,5277014.498090958],[515638.1151630887,5277020.712590056],[515632.34142149385,5277017.251756032],[515633.9266585347,5277014.255240124],[515628.82794830104,5277011.129641193],[515632.1480348989,5277005.359289005],[515636.0480698283,5277007.370274911],[515641.3310206669,5276997.826449339],[515648.90518225415,5277002.070108295],[515645.73618091265,5277007.507437844],[515647.08596146875,5277008.28904267]]]},"properties":{"ID_SOURCE":"w144655822","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":48}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516067.1296796562,5277286.170933741],[516065.64883209596,5277278.49820208],[516069.91674716945,5277277.709773549],[516071.5848367335,5277277.4031863315],[516071.51157690445,5277276.736145383],[516075.34384981333,5277275.968746298],[516075.5660827854,5277277.080757758],[516078.9471392104,5277276.534394836],[516079.0210120282,5277276.9791579945],[516079.9838131099,5277281.8719676435],[516080.132786197,5277282.316938229],[516076.6760188514,5277283.085370977],[516076.82284401567,5277284.308314075],[516067.1296796562,5277286.170933741]]]},"properties":{"ID_SOURCE":"w144655825","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":49}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516041.3026618653,5276934.431305264],[516045.79712012823,5276933.287835193],[516046.4585098333,5276935.84587142],[516052.38097219553,5276934.339580642],[516052.58167205023,5276935.09588405],[516056.4973952104,5276934.106422455],[516058.20638814423,5276940.790632694],[516054.0801918596,5276941.84619669],[516054.2213589316,5276942.4022845235],[516050.34319412743,5276943.391851162],[516043.26330130023,5276945.195032243],[516041.3536526378,5276937.732295571],[516042.0977418902,5276937.5342939375],[516041.3026618653,5276934.431305264]]]},"properties":{"ID_SOURCE":"w144655830","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":50}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515316.0769220422,5277474.084620244],[515316.45796689024,5277471.973967398],[515323.2889551733,5277473.103339666],[515321.76535273914,5277481.323671524],[515315.534571846,5277480.41815937],[515315.0778453392,5277482.750892726],[515311.9994197068,5277482.520516112],[515311.62191384204,5277483.286387574],[515311.39542206196,5277483.741464903],[515310.0445384858,5277483.404493101],[515309.97353229666,5277481.848349844],[515305.2441225225,5277481.169076505],[515306.8436761756,5277472.615520871],[515316.0769220422,5277474.084620244]]]},"properties":{"ID_SOURCE":"w144655836","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":51}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.68615156866,5277274.810168324],[516180.25893852516,5277276.370495998],[516180.3986384853,5277280.149637372],[516169.9590587836,5277280.342914838],[516169.89414389443,5277276.675121233],[516169.3684404414,5277276.673661283],[516169.3070845628,5277274.428466993],[516169.23243690294,5277271.560852938],[516168.6316324289,5277271.559184496],[516168.41774984816,5277267.446418108],[516177.656051563,5277267.138660088],[516177.8028559596,5277268.361605746],[516178.5520090605,5277269.030526126],[516178.68615156866,5277274.810168324]]]},"properties":{"ID_SOURCE":"w144655837","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":52}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515645.5068783812,5277456.177950237],[515643.1627100583,5277462.173199365],[515642.93622135423,5277462.6171499435],[515637.9848229085,5277460.71447221],[515638.9676660522,5277458.272037059],[515637.37740646495,5277457.589812951],[515635.81712607364,5277456.929897748],[515634.833985575,5277459.483472398],[515628.8324011939,5277457.133423255],[515631.70582507225,5277449.80591212],[515631.857215158,5277449.361759486],[515642.5098197522,5277453.613682196],[515642.0559460385,5277454.835000324],[515645.5068783812,5277456.177950237]]]},"properties":{"ID_SOURCE":"w144655841","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":53}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515597.45149697445,5276853.293845046],[515598.4266833395,5276853.74101585],[515603.18366963073,5276844.306888407],[515602.4338002176,5276843.860320519],[515605.22672258905,5276838.6442400655],[515616.7021631411,5276844.565406053],[515613.8332332853,5276850.114696297],[515612.33319949795,5276849.332696734],[515609.7512575988,5276854.29371819],[515607.65249978454,5276858.322462614],[515609.0777239156,5276858.993120791],[515606.20910619997,5276864.431276016],[515594.65799324494,5276858.732207066],[515597.45149697445,5276853.293845046]]]},"properties":{"ID_SOURCE":"w144655845","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":54}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.32411545294,5277141.941713451],[516139.6533855809,5277143.034538842],[516138.88453357044,5277146.755590067],[516123.54220599023,5277143.623399679],[516124.3262844727,5277139.824590821],[516126.8333146802,5277140.331662884],[516127.1454510931,5277138.809912569],[516127.5033262687,5277137.0437814705],[516126.6401116184,5277136.874680963],[516127.86582019785,5277130.898756328],[516131.86655966984,5277131.710045431],[516131.20423999603,5277134.931263782],[516135.58027220157,5277135.821393024],[516134.32411545294,5277141.941713451]]]},"properties":{"ID_SOURCE":"w144655846","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":55}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516231.80397698877,5276889.9698481],[516231.3353763549,5276896.414646592],[516224.72733981424,5276895.951672143],[516217.0665884379,5276895.930332285],[516217.1379796302,5276897.26420793],[516210.452981274,5276897.467873752],[516210.0023489603,5276897.46661929],[516214.1532600912,5276890.254093088],[516216.55787343805,5276889.816230164],[516217.23382279783,5276889.818112627],[516217.3107854044,5276889.151488564],[516217.38620042,5276889.04055886],[516222.6351765831,5276889.377484855],[516231.80397698877,5276889.9698481]]]},"properties":{"ID_SOURCE":"w144655847","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":56}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.20905203413,5277110.16439983],[516080.84581631975,5277105.717806288],[516089.3262004833,5277105.274446098],[516089.26940426446,5277104.085093733],[516092.7922745913,5277103.8947775755],[516092.85658036254,5277105.084150733],[516094.91470166575,5277104.978699579],[516098.54832061316,5277105.4777595475],[516098.25783460046,5277101.887142176],[516099.204375026,5277101.800847369],[516098.51511204813,5277093.041128671],[516108.74796489935,5277091.680182096],[516109.68453665794,5277103.341334046],[516110.635448481,5277115.247033535],[516104.25019278884,5277115.785068708],[516095.98706709786,5277116.429059251],[516097.4226060343,5277129.6253176695],[516099.06332345563,5277144.667064178],[516092.6014631249,5277145.760599012],[516089.86997767916,5277128.637526562],[516089.14997044374,5277117.410420987],[516081.93797739083,5277118.168475768],[516081.20905203413,5277110.16439983]]]},"properties":{"ID_SOURCE":"w144655851","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":57}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515366.0275892094,5277214.115922059],[515362.0392129211,5277214.294335335],[515362.06784593815,5277214.827881489],[515357.7339751384,5277215.016500148],[515357.55008572375,5277210.703794386],[515357.4436775991,5277208.336237925],[515356.6249556223,5277208.378534416],[515356.3413165298,5277202.020595036],[515358.95516886853,5277201.905235702],[515358.77110397303,5277197.659213353],[515364.59217322175,5277197.407835824],[515364.776204554,5277201.66497226],[515365.4747359094,5277201.6334737055],[515366.0275892094,5277214.115922059]]]},"properties":{"ID_SOURCE":"w144655854","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":58}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.2115954797,5277219.56960047],[516167.5592449819,5277219.609468016],[516167.57238274754,5277220.287457196],[516163.9823592816,5277220.344173632],[516163.9577489955,5277218.388045066],[516160.4803762724,5277218.445076399],[516160.3531544093,5277210.16480928],[516163.943184104,5277210.108090592],[516163.96828810486,5277211.8863968495],[516172.372558973,5277211.754138381],[516172.42325569637,5277215.132928703],[516175.3598395263,5277215.09663008],[516175.4227759443,5277219.475712544],[516169.2115954797,5277219.56960047]]]},"properties":{"ID_SOURCE":"w144655856","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":59}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516236.661263867,5276952.666203864],[516239.0633736844,5276953.11746131],[516238.5286529795,5276956.339022793],[516236.6504175085,5276956.556064773],[516229.9688938584,5276955.537180342],[516230.5045392275,5276951.982201438],[516220.9702692169,5276950.510817611],[516221.4289471506,5276947.622461987],[516222.4797942481,5276947.847668966],[516222.96944394126,5276944.625980524],[516223.47442476894,5276941.293195108],[516235.48623812944,5276943.104909428],[516235.40958397626,5276943.660394429],[516237.9622170975,5276944.00093133],[516236.661263867,5276952.666203864]]]},"properties":{"ID_SOURCE":"w144655864","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":60}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515609.49956202,5277189.123615611],[515609.04656886705,5277190.011519047],[515605.37105876487,5277188.334571031],[515603.4199059017,5277187.7736433325],[515601.2428521915,5277187.4343904555],[515599.13911336544,5277187.762173167],[515600.8744908495,5277184.7660500035],[515609.49956202,5277189.123615611]]]},"properties":{"ID_SOURCE":"w144655871","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":61}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515578.8175888156,5277344.5259377975],[515581.3187773088,5277335.974869875],[515584.54509003327,5277337.094902374],[515586.80135375424,5277335.878404876],[515592.5789717589,5277337.7832507305],[515593.54961220775,5277339.897505581],[515596.69754588633,5277342.239872222],[515591.798212372,5277348.895135256],[515588.8755790782,5277346.553374459],[515584.8976815511,5277345.653607153],[515585.0502606915,5277344.764897546],[515583.9472187748,5277344.417411799],[515582.5740561007,5277343.98029151],[515581.6689941957,5277345.422686092],[515578.8175888156,5277344.5259377975]]]},"properties":{"ID_SOURCE":"w144655881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":62}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515692.90410645807,5276733.530571584],[515688.74033727404,5276734.5640653195],[515684.03543669067,5276735.729472168],[515683.6616953341,5276735.061627655],[515683.0672688473,5276735.460129528],[515678.9966540227,5276738.160975935],[515677.5081499401,5276735.87860551],[515674.3591388368,5276731.035553744],[515679.3246135666,5276727.937010667],[515678.9508711648,5276727.269166464],[515686.3200942911,5276724.065962025],[515686.6932373035,5276724.956084394],[515689.85045124375,5276723.9643330285],[515693.7590419862,5276722.863468578],[515695.6908716947,5276730.648450952],[515692.3840443145,5276731.417516674],[515692.90410645807,5276733.530571584]]]},"properties":{"ID_SOURCE":"w144655883","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":63}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516015.7941488426,5277246.6860151645],[516003.9968962106,5277248.987511826],[516003.2565791861,5277245.095584826],[516005.5108281071,5277244.657222044],[516004.02988844115,5277236.984506764],[516004.405698932,5277236.874399979],[516003.2953737564,5277230.980940092],[516013.3607521393,5277230.341775147],[516014.1010643706,5277234.233703354],[516012.369461545,5277235.784897875],[516012.5172184164,5277236.674422424],[516013.77620664367,5277243.123991926],[516015.05383939174,5277242.794086663],[516015.7941488426,5277246.6860151645]]]},"properties":{"ID_SOURCE":"w144655884","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":64}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516075.58541270765,5277161.273162336],[516079.0401037431,5277161.2827013675],[516079.41407906555,5277161.8394329455],[516080.4685760204,5277160.730947395],[516083.9229603841,5277160.851628244],[516084.52254821075,5277161.297843602],[516087.3758092796,5277161.528005747],[516087.1287018932,5277169.41824667],[516082.62289641064,5277169.294659668],[516081.607516995,5277169.836440049],[516080.96819957945,5277170.17920762],[516074.35984915553,5277169.938680775],[516074.52385988156,5277164.937843958],[516075.5752869257,5277164.940746733],[516075.58541270765,5277161.273162336]]]},"properties":{"ID_SOURCE":"w144655894","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":65}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516192.2792790067,5277463.896781837],[516190.2503946306,5277464.335698803],[516189.2839780975,5277460.787650794],[516187.5740567192,5277454.547951805],[516193.36125485785,5277452.896947807],[516193.7330364563,5277454.231659845],[516198.0167261457,5277453.13217791],[516199.0578966933,5277456.802689149],[516198.07543629454,5277459.0227523185],[516198.81837790867,5277461.914455007],[516200.8472637877,5277461.475541027],[516201.8890495857,5277464.923774884],[516195.72637068876,5277466.573725869],[516194.834468582,5277463.237049875],[516192.2792790067,5277463.896781837]]]},"properties":{"ID_SOURCE":"w144655895","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":66}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516057.9015056732,5277609.562341611],[516056.8424957327,5277612.337916832],[516060.89339591487,5277613.905048701],[516060.62111822865,5277614.60447859],[516057.48228195467,5277622.697915106],[516053.8892277104,5277621.22095996],[516054.2680792136,5277619.999466366],[516051.34248897975,5277618.846659013],[516046.9166300034,5277617.089562502],[516049.9413088783,5277609.5403909385],[516050.5414656345,5277609.7643252155],[516051.6004730229,5277606.9887488615],[516052.72844870394,5277606.436159753],[516057.37951075257,5277608.227223712],[516057.9015056732,5277609.562341611]]]},"properties":{"ID_SOURCE":"w144655897","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":67}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.2708745995,5277351.118377177],[516081.6783667178,5277348.115965935],[516082.88026682404,5277348.008146021],[516082.2886798879,5277344.672317877],[516083.7168006083,5277344.2317036],[516083.19791877683,5277341.762966669],[516082.38250582485,5277337.893049233],[516085.688120879,5277337.457621763],[516085.5406849057,5277336.456956236],[516090.12422489823,5277335.580502803],[516092.1990642971,5277345.699958956],[516093.62657111895,5277345.48162501],[516094.51824249915,5277348.929423663],[516082.2708745995,5277351.118377177]]]},"properties":{"ID_SOURCE":"w144655903","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":68}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516200.34935927804,5277478.478550172],[516199.89846268494,5277478.588435366],[516201.0131788758,5277482.814850956],[516200.4946327024,5277482.94677582],[516194.76055632636,5277484.408982708],[516194.5501278729,5277484.463967294],[516193.9030213526,5277482.217142655],[516193.3600003334,5277480.348483039],[516191.63151304063,5277480.788235035],[516190.5161715172,5277476.78409922],[516191.7189744787,5277476.342884883],[516190.82768976246,5277472.783931504],[516198.26795408694,5277470.804110246],[516199.4577709302,5277475.030734424],[516200.34935927804,5277478.478550172]]]},"properties":{"ID_SOURCE":"w144655904","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":69}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516194.3569009081,5277424.336781339],[516193.51579670847,5277424.3344418565],[516193.8521366492,5277419.511908942],[516193.9849358636,5277417.667357227],[516192.7836661604,5277417.552876261],[516193.0188536511,5277413.997056012],[516194.2204332141,5277414.000398059],[516194.53041134134,5277410.55592574],[516202.11414970027,5277411.021584384],[516201.8026207301,5277415.021751131],[516202.9287920788,5277415.136024958],[516202.53474111954,5277421.803317858],[516201.40826178336,5277421.800183068],[516201.3248129363,5277424.800726158],[516194.3569009081,5277424.336781339]]]},"properties":{"ID_SOURCE":"w144655916","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":70}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516166.3986316561,5277480.718114666],[516164.2427017672,5277472.8212005],[516162.9042055893,5277468.03847176],[516169.5177704028,5277466.278598475],[516170.4850932093,5277469.50434018],[516175.52036496886,5277468.184649612],[516176.7105076544,5277472.300130107],[516175.7333076901,5277472.6308345115],[516176.77294466255,5277476.85703673],[516177.1447284844,5277478.191747758],[516176.8415576576,5277479.191163875],[516173.2340807201,5277480.181399922],[516172.86167867377,5277479.068967095],[516170.48688781296,5277479.673639799],[516166.3986316561,5277480.718114666]]]},"properties":{"ID_SOURCE":"w144655921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":71}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516140.2749729752,5277287.26235906],[516135.99363667367,5277287.472771911],[516135.5698304107,5277277.802435234],[516138.94965997356,5277277.700662905],[516139.0232201327,5277278.256565777],[516145.4824770994,5277278.052194074],[516145.5606594614,5277276.941012921],[516150.44280782243,5277276.732273597],[516150.86566460796,5277286.7360282205],[516145.08232029335,5277286.942268127],[516144.256216331,5277286.939977456],[516144.2580653208,5277286.2731438065],[516140.20202923013,5277286.484178279],[516140.2749729752,5277287.26235906]]]},"properties":{"ID_SOURCE":"w144655930","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":72}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516152.56653700303,5277215.055581303],[516152.5696201661,5277213.94419201],[516148.964449425,5277214.045331614],[516148.96136694873,5277215.156720909],[516149.0281455089,5277218.157680312],[516145.5731799387,5277218.259238604],[516145.2287994679,5277207.033165513],[516148.60867029836,5277206.931398707],[516150.18980704865,5277205.490966976],[516154.92150429566,5277205.392953595],[516156.495241659,5277206.61985784],[516156.77005033125,5277215.8452225095],[516152.6391717469,5277215.944901084],[516152.56653700303,5277215.055581303]]]},"properties":{"ID_SOURCE":"w144655939","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":73}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515235.5982977976,5277693.374493717],[515237.93148186407,5277691.380084179],[515241.9962205031,5277687.723112068],[515244.0921916565,5277690.284815028],[515248.6831834122,5277686.40694603],[515249.057203749,5277686.96362463],[515252.57619440934,5277690.973875428],[515253.10011312034,5277691.642086809],[515249.48739620094,5277694.744536321],[515250.0867011199,5277695.30180512],[515244.8935000842,5277699.733794944],[515243.0964578785,5277697.728573252],[515240.9140464985,5277699.5010958845],[515235.5982977976,5277693.374493717]]]},"properties":{"ID_SOURCE":"w144655958","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":74}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516193.14691185474,5277070.90886953],[516194.6492839223,5277070.80190805],[516194.6508294505,5277070.246213529],[516221.8409587584,5277069.321641786],[516220.9155713463,5277077.987965598],[516213.6324315668,5277077.3008423885],[516213.63274103624,5277077.189703483],[516206.7251148254,5277076.503634559],[516207.38155348157,5277083.5072669685],[516196.04038432037,5277083.697989942],[516196.2774405011,5277079.475338224],[516182.2297748807,5277080.658818405],[516178.35004770063,5277071.423437108],[516193.14691185474,5277070.90886953]]]},"properties":{"ID_SOURCE":"w144655959","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":75}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516054.0636779231,5277203.891454601],[516053.4095210323,5277195.998727122],[516056.7149078286,5277195.674422051],[516057.1670495048,5277195.1199700665],[516056.8767574326,5277191.45155705],[516064.5389593352,5277190.805853505],[516064.90342824464,5277194.807890899],[516067.9081034882,5277194.593902267],[516068.63396850857,5277203.70936687],[516063.22543900105,5277204.139002406],[516063.0053470196,5277202.249019059],[516060.1508788112,5277202.463424512],[516060.14811985055,5277203.463674867],[516054.0636779231,5277203.891454601]]]},"properties":{"ID_SOURCE":"w144655967","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":76}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516040.2437950441,5277504.153101644],[516038.89142670005,5277504.371655525],[516034.2181551213,5277505.158989827],[516031.7537927917,5277505.57453463],[516032.2727424795,5277508.021039802],[516025.58478162147,5277509.558584225],[516024.24923933594,5277503.664497514],[516023.1224700451,5277503.772536164],[516022.2326160123,5277499.657913767],[516025.0881607602,5277498.998934034],[516024.7160375927,5277497.775371731],[516034.85972834256,5277495.802783662],[516035.23062509584,5277497.470902533],[516038.6124683035,5277496.591099361],[516040.2437950441,5277504.153101644]]]},"properties":{"ID_SOURCE":"w144655970","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":77}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516102.67789742484,5277602.795347123],[516104.3263264875,5277604.133584962],[516102.5132570942,5277608.018464618],[516099.96305920766,5277606.900013101],[516098.6415300742,5277609.552600996],[516095.43208959996,5277616.000952253],[516084.7828732552,5277610.747947349],[516087.2764026608,5277605.197844773],[516090.35135587654,5277606.651160558],[516092.31553173397,5277602.433275297],[516090.6658707534,5277601.539596859],[516092.85718088306,5277596.6555004995],[516097.65689473937,5277599.002706776],[516100.3600553897,5277599.121321645],[516102.60833434697,5277600.794637454],[516102.67789742484,5277602.795347123]]]},"properties":{"ID_SOURCE":"w144655981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":78}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515429.61998235213,5277447.9331628075],[515433.2950834824,5277449.721139788],[515433.74095903663,5277451.500557873],[515432.45839748083,5277453.719953244],[515430.654862727,5277454.159731971],[515427.5790767509,5277452.929043482],[515427.12613162736,5277453.816961334],[515425.17593440606,5277452.922676038],[515424.7980878376,5277453.81079304],[515420.10173937015,5277451.986774565],[515417.5960196434,5277451.013222686],[515418.0495521609,5277449.903026147],[515415.1239578007,5277448.672742006],[515417.99505607877,5277442.12309891],[515429.9224372152,5277447.155986072],[515429.61998235213,5277447.9331628075]]]},"properties":{"ID_SOURCE":"w144656001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":79}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.3495066162,5277258.913602749],[516136.2229957934,5277258.9104806455],[516136.29440039303,5277260.244356027],[516137.34611828224,5277260.13613106],[516139.3738373352,5277260.141751396],[516139.4350748664,5277265.143211777],[516128.31956424925,5277265.334690419],[516128.2678607361,5277256.887923119],[516127.291243183,5277256.996357744],[516127.23615180724,5277249.772118858],[516127.987160199,5277249.774199074],[516135.19745672477,5277249.571896211],[516137.3002802979,5277249.577723936],[516137.289191272,5277253.578725633],[516137.3495066162,5277258.913602749]]]},"properties":{"ID_SOURCE":"w144656005","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":80}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515285.4325461329,5277255.42557853],[515283.4728251976,5277255.264838489],[515283.0537452079,5277260.420621023],[515279.0366464212,5277260.110000885],[515276.2359158828,5277259.902600499],[515276.0736556353,5277261.635954269],[515267.6793834165,5277260.858186597],[515267.7566115377,5277260.047069224],[515265.85700138484,5277259.875378759],[515266.27440518007,5277255.353087011],[515268.45934132044,5277255.547753762],[515269.0390057989,5277249.29210829],[515281.3376032748,5277250.435770695],[515281.55398193374,5277248.1135186795],[515286.07397267164,5277248.536600469],[515285.4325461329,5277255.42557853]]]},"properties":{"ID_SOURCE":"w144656007","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":81}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516088.84348569997,5277228.327065843],[516092.37508109584,5277227.669986805],[516093.1996575282,5277228.22796476],[516093.79155776853,5277231.45265445],[516094.24247142096,5277231.342761044],[516096.39121419506,5277241.90698029],[516095.71499850566,5277242.016250697],[516096.38138229557,5277245.463426212],[516089.84453331534,5277246.556756403],[516089.1790671181,5277242.776164838],[516088.42775074067,5277242.885228565],[516087.6359626757,5277238.615273108],[516086.5259676542,5277232.632885999],[516088.9078382132,5277232.217136013],[516088.3159353512,5277228.992446815],[516088.84348569997,5277228.327065843]]]},"properties":{"ID_SOURCE":"w144656013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":82}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516116.84545486193,5277503.586673008],[516117.3695994524,5277504.143823165],[516121.5778324605,5277503.1552161],[516123.06347143743,5277509.049741296],[516123.96525697067,5277508.829959054],[516124.78055591835,5277512.722111268],[516126.2831205517,5277512.503993357],[516126.94791476114,5277516.506868862],[516115.6008242089,5277519.142804317],[516114.78336669115,5277516.028626237],[516115.3850688347,5277515.696872235],[516114.2715275102,5277511.02591702],[516114.9477123553,5277510.916648793],[516114.5772699726,5277509.09293018],[516113.61410636443,5277504.35570748],[516116.84545486193,5277503.586673008]]]},"properties":{"ID_SOURCE":"w144656019","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":83}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515618.92033894255,5277683.509702952],[515622.6012279895,5277683.063906316],[515623.99874712044,5277693.981586855],[515614.98408648,5277695.168824498],[515614.050052401,5277687.831091341],[515608.5661082826,5277688.561022401],[515607.32104812405,5277687.99087131],[515606.2109802843,5277687.487766256],[515606.7777992276,5277686.144493993],[515602.14999556815,5277684.053775014],[515603.49526946107,5277680.856553862],[515601.09499089327,5277679.816520751],[515603.6042396715,5277673.821695722],[515607.72965718346,5277675.633219348],[515607.1245742816,5277677.243124476],[515609.83974649274,5277678.47294208],[515618.1109584885,5277677.294815829],[515618.92033894255,5277683.509702952]]]},"properties":{"ID_SOURCE":"w144656027","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":84}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515569.17255957634,5277412.739949863],[515568.2672143743,5277414.2934856275],[515569.4667131481,5277415.074671526],[515565.1679632412,5277421.84270315],[515562.46916668286,5277420.057252453],[515562.9969366404,5277419.280684839],[515562.13466882624,5277418.767137085],[515561.122441198,5277418.164276842],[515560.6700670709,5277418.829906366],[515555.7224649941,5277415.482492256],[515558.66349065374,5277410.933620585],[515560.537097797,5277412.383444682],[515561.7431332601,5277410.719571657],[515563.46743352566,5277411.835578336],[515564.8242616799,5277409.949829511],[515569.17255957634,5277412.739949863]]]},"properties":{"ID_SOURCE":"w144656029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":85}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515725.2924476429,5276949.817958499],[515717.2706770301,5276952.797072691],[515716.43484427285,5276950.816530089],[515712.16457992914,5276952.405417738],[515706.8493141665,5276954.380478585],[515704.053002176,5276946.915462956],[515709.8339832456,5276944.9194280375],[515708.64740295516,5276942.10439262],[515714.47381319065,5276939.97511721],[515714.52578670887,5276940.1975368615],[515717.08941088105,5276939.259768439],[515718.3436420066,5276942.0527602555],[515722.75658476976,5276940.475376335],[515724.2707685283,5276944.3471264085],[515723.4359652395,5276944.767203042],[515725.2924476429,5276949.817958499]]]},"properties":{"ID_SOURCE":"w144656032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":86}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516301.3006191986,5276774.245242528],[516302.71427278215,5276779.02820802],[516312.5613732854,5276776.166151043],[516314.0479445534,5276781.727301686],[516313.4467781557,5276781.836757268],[516314.41413806204,5276785.062519332],[516308.0476712118,5276786.800694353],[516303.1394001195,5276788.142855546],[516303.287124506,5276789.032386921],[516296.6724398174,5276790.903247102],[516295.4065098815,5276787.009814158],[516295.9328795927,5276786.789007679],[516290.28041295236,5276766.879182455],[516297.4214945277,5276764.787508691],[516300.39840218244,5276774.57613618],[516301.3006191986,5276774.245242528]]]},"properties":{"ID_SOURCE":"w144656065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":87}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516138.8378619791,5277426.40541547],[516138.7643037869,5277425.849512467],[516137.93009356223,5277426.0694797635],[516137.11090311524,5277426.289488812],[516137.1847695046,5277426.734252827],[516134.0284742356,5277427.503484133],[516133.50955981965,5277425.056970122],[516131.87494376063,5277418.717471039],[516138.48824685416,5277417.068701501],[516138.1915488669,5277415.734201262],[516141.799059579,5277414.743943525],[516142.3927620085,5277417.30180542],[516145.17357048136,5277416.531537368],[516146.7327658812,5277422.981970887],[516139.8944794492,5277424.518967539],[516140.1154618154,5277426.075537629],[516138.8378619791,5277426.40541547]]]},"properties":{"ID_SOURCE":"w144656074","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":88}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515519.258504902,5277740.691342357],[515515.2016252979,5277741.347367731],[515515.94397988403,5277744.572400948],[515508.7993493748,5277748.554396449],[515502.4133668919,5277749.648785629],[515501.52495980705,5277744.867407813],[515499.87199452304,5277745.196426004],[515499.05808735214,5277740.637526599],[515502.96477658325,5277739.981090013],[515502.74274866993,5277738.757960784],[515509.9589283442,5277736.109826282],[515521.1530532828,5277734.250283837],[515522.3554554438,5277733.9200702915],[515523.5391871323,5277740.5916156685],[515519.63101450127,5277741.803733585],[515519.258504902,5277740.691342357]]]},"properties":{"ID_SOURCE":"w144656082","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":89}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515692.9644273121,5276844.926021717],[515696.04617182293,5276844.045210128],[515697.3100923855,5276848.82762318],[515699.26404684735,5276848.388331984],[515701.04921043775,5276854.839246366],[515704.7317984119,5276853.960059465],[515706.7383746955,5276861.8563886685],[515698.4701418397,5276864.279165724],[515695.45183065237,5276869.494594511],[515688.9284116415,5276865.475986782],[515692.0975297114,5276860.038681697],[515691.04814408044,5276859.257876189],[515693.612526223,5276855.263758284],[515692.90051757323,5276854.706141059],[515692.0385964234,5276854.036980264],[515689.9577897788,5276845.807037301],[515692.9644273121,5276844.926021717]]]},"properties":{"ID_SOURCE":"w144656084","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":90}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.9255834538,5277024.462972601],[516153.4194475257,5277015.895484251],[516156.7280261037,5277014.459846853],[516156.0560999511,5277013.013165754],[516160.8534656282,5277010.95927904],[516166.3576757717,5277008.596167364],[516166.5069579857,5277008.9300010735],[516168.9127531468,5277008.04756294],[516170.6284158152,5277012.275637735],[516168.29741742864,5277013.269422593],[516169.7896192195,5277016.830038193],[516170.5351021443,5277018.832623935],[516166.6250750652,5277020.488863115],[516165.7296919152,5277018.374721963],[516159.9399117608,5277020.803725537],[516160.8356050827,5277022.806726909],[516156.9255834538,5277024.462972601]]]},"properties":{"ID_SOURCE":"w144656092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":91}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515775.02701906755,5277742.601333672],[515758.94867906056,5277745.558563071],[515752.72014009353,5277716.200788726],[515752.20139301574,5277713.64316888],[515743.67548941646,5277672.942927918],[515758.60608483513,5277669.604673392],[515759.3800489547,5277669.428944749],[515760.3439535424,5277673.988287059],[515760.56562907744,5277675.322565114],[515760.2622389983,5277676.433142059],[515759.8095610045,5277677.2098953985],[515758.98140660604,5277677.985632365],[515757.1782168524,5277678.314170984],[515752.29401511716,5277679.412351527],[515753.92505876726,5277687.196553063],[515762.7914063527,5277685.3311758395],[515775.02701906755,5277742.601333672]]]},"properties":{"ID_SOURCE":"w144656097","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":92}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.11394887563,5277285.339283604],[516126.0862386048,5277285.333667167],[516126.1582607928,5277286.445264595],[516118.2717993521,5277286.756846344],[516118.06003549986,5277281.866109195],[516118.8861401743,5277281.868396147],[516118.7488617629,5277277.200144805],[516122.80459570885,5277277.100234318],[516123.778747621,5277277.880910468],[516126.48267259594,5277277.777259184],[516126.3386280753,5277275.554064361],[516125.9631255433,5277275.553024343],[516125.8917187942,5277274.2191490615],[516132.42638816836,5277273.903831924],[516132.8458887291,5277285.1301134825],[516128.11394887563,5277285.339283604]]]},"properties":{"ID_SOURCE":"w144656100","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":93}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.376446639,5277405.924406966],[516090.4570341592,5277405.377220765],[516090.08614713745,5277403.709098592],[516093.8429330408,5277403.052643134],[516093.39879118296,5277400.717479391],[516097.1558866739,5277399.949887106],[516100.12818727794,5277411.405506433],[516096.22059401905,5277412.283820516],[516095.84909459646,5277410.837975884],[516092.3549747984,5277411.56183992],[516089.5371131152,5277412.154207068],[516089.3881441453,5277411.709236143],[516085.4802456909,5277412.698696395],[516083.1776667349,5277403.467730881],[516084.53036723856,5277403.138048306],[516086.9301528439,5277404.367216453],[516087.376446639,5277405.924406966]]]},"properties":{"ID_SOURCE":"w144656112","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":94}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516286.3405043301,5276886.565651092],[516284.23848192516,5276886.226353232],[516282.55725895334,5276896.557647851],[516269.94483075454,5276894.633019076],[516270.9361073771,5276889.301081318],[516274.01419017056,5276889.754241856],[516274.220484839,5276888.498939343],[516274.3962404093,5276887.421375069],[516272.4484661215,5276885.637695957],[516273.21256615804,5276880.971962237],[516274.71436754765,5276881.087299072],[516274.7149887783,5276880.865021334],[516281.8475349299,5276881.77407792],[516282.00054289727,5276880.774248095],[516285.07831856026,5276881.338553337],[516286.72411393456,5276883.677090761],[516286.3405043301,5276886.565651092]]]},"properties":{"ID_SOURCE":"w144656114","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":95}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516135.6304028675,5277310.14428403],[516136.6854999868,5277308.813530549],[516138.8634022413,5277308.819567029],[516139.79750836815,5277307.788556197],[516140.67134987883,5277306.824062329],[516143.6759703344,5277306.610112884],[516143.8230889617,5277307.721918803],[516147.2029013284,5277307.620151303],[516147.4761775473,5277317.401211712],[516143.9461709187,5277317.502562574],[516143.94278113794,5277318.725090997],[516141.53958273266,5277318.718427993],[516141.5331122937,5277321.052345901],[516135.90031027654,5277321.147872322],[516135.83445057314,5277317.813495753],[516135.6842506497,5277317.813079497],[516135.6304028675,5277310.14428403]]]},"properties":{"ID_SOURCE":"w144656116","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":96}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516150.57161546877,5277311.519387816],[516154.1016258591,5277311.418040961],[516154.03330959525,5277308.972775783],[516154.0373181922,5277307.527969489],[516159.5202420349,5277307.320904766],[516160.4242194862,5277306.323155548],[516163.1278234698,5277306.330660252],[516164.4014398372,5277307.4455940295],[516164.5392978562,5277311.891568865],[516165.89109855675,5277311.895322017],[516165.9547810708,5277316.007671561],[516159.5706653473,5277316.212228907],[516159.6426807153,5277317.323826817],[516154.30996621563,5277317.531308139],[516154.37889895815,5277319.754295461],[516150.69869374204,5277319.855225488],[516150.57161546877,5277311.519387816]]]},"properties":{"ID_SOURCE":"w144656122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":97}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515544.22222130105,5277728.643704623],[515540.4654122775,5277729.411653482],[515540.0216679337,5277726.854253154],[515539.0448439425,5277727.073925354],[515538.89702781854,5277726.18441227],[515536.49281174457,5277726.622554728],[515536.7157228817,5277727.512268161],[515534.7623720204,5277727.840474808],[515534.68816707586,5277727.506857346],[515531.6078034777,5277728.054337397],[515530.12903611,5277719.381486752],[515533.20940414915,5277718.8340059165],[515533.1351989984,5277718.500388481],[515542.7520778514,5277716.747819052],[515543.41695178486,5277720.861767368],[515543.1165728028,5277720.860965376],[515544.22222130105,5277728.643704623]]]},"properties":{"ID_SOURCE":"w144656133","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":98}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.3127553147,5277506.666251003],[516165.4762109027,5277507.3002019245],[516164.92762872216,5277507.432046552],[516165.55907598545,5277509.912218195],[516166.60650095745,5277514.038414613],[516166.26080588653,5277514.126366558],[516167.1150750421,5277517.496275849],[516157.7137295298,5277519.8707972],[516156.85945530084,5277516.500889289],[516157.5658643617,5277516.325025985],[516156.3029947622,5277511.353570573],[516155.36362880113,5277511.584357513],[516153.92991301225,5277505.93447559],[516161.0466783006,5277504.142647077],[516161.24731298647,5277504.910068887],[516164.6516388506,5277504.0526292175],[516165.3127553147,5277506.666251003]]]},"properties":{"ID_SOURCE":"w144656143","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":99}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516253.9239421336,5277467.958448178],[516248.3688592085,5277467.164963371],[516248.36730836,5277467.720658233],[516244.8392513934,5277467.155113909],[516244.99068789167,5277466.7109771],[516245.06795668264,5277465.933213834],[516243.1163374771,5277465.594349124],[516242.9639708947,5277466.371902897],[516239.43560260185,5277465.917500823],[516240.1241955835,5277461.36268824],[516239.89890124416,5277461.362059808],[516240.8180600298,5277454.9185132645],[516240.9682564237,5277454.918932243],[516241.5035549545,5277451.475090616],[516244.05596488353,5277451.815630974],[516256.06671766745,5277453.627391643],[516255.0412563202,5277460.481856456],[516253.9239421336,5277467.958448178]]]},"properties":{"ID_SOURCE":"w144656150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":100}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515505.9839992046,5277339.441362005],[515508.0220510146,5277335.556899038],[515514.24762757524,5277338.46311793],[515513.71867236006,5277339.68424569],[515516.7194007111,5277340.914779233],[515517.24746784323,5277340.027068611],[515523.0981295758,5277342.710018346],[515518.11696831055,5277351.921339024],[515512.56730397214,5277349.016916679],[515513.1716537925,5277347.6848499365],[515511.6789491588,5277347.014034406],[515510.17122426856,5277346.343179248],[515509.56717105344,5277347.564107336],[515503.41670154576,5277344.658093365],[515502.20859786525,5277347.099951002],[515498.9834584972,5277345.5354083],[515502.98385970714,5277337.988556095],[515505.9839992046,5277339.441362005]]]},"properties":{"ID_SOURCE":"w144656158","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":101}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.49175244494,5277034.574205514],[515950.3610539135,5277034.562888953],[515950.36440274725,5277033.340361056],[515947.5852642187,5277033.443888646],[515947.5129000602,5277032.443432855],[515946.4914905963,5277032.440635529],[515945.409998225,5277032.437673853],[515945.4790149383,5277034.660657511],[515940.1466587493,5277034.646057662],[515940.08250788687,5277030.644851682],[515938.5053310297,5277030.640534371],[515938.38098153163,5277021.193316859],[515944.5397959629,5277021.0990382945],[515944.5370570184,5277022.099288375],[515950.169839787,5277022.114715116],[515950.172579699,5277021.114465036],[515954.30359228345,5277021.014642548],[515954.49175244494,5277034.574205514]]]},"properties":{"ID_SOURCE":"w144656168","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":102}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516138.4545173987,5277239.578342115],[516137.6284067186,5277239.5760524],[516137.6231701449,5277241.465414279],[516137.6853336066,5277246.133457685],[516137.2347282904,5277246.132208793],[516137.3002802979,5277249.577723936],[516135.19745672477,5277249.571896211],[516127.987160199,5277249.774199074],[516127.92129483406,5277246.439822984],[516129.1229089474,5277246.443151517],[516128.9924107989,5277239.3298436245],[516129.8936224853,5277239.332340165],[516129.8305290056,5277234.997713704],[516134.4123077626,5277234.788128679],[516134.4852529822,5277235.56630932],[516138.39081419987,5277235.46599341],[516138.4545173987,5277239.578342115]]]},"properties":{"ID_SOURCE":"w144656186","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":103}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516018.51823432016,5277261.097224239],[516017.09809752007,5277261.3600528445],[516017.7198625913,5277264.662614785],[516011.8213751436,5277265.768902591],[516009.2215182346,5277266.261882512],[516008.6588512191,5277263.315131281],[516010.1466388728,5277263.030258686],[516009.2063978158,5277258.104181138],[516006.4036435565,5277258.641060359],[516005.2931719679,5277252.803169348],[516013.0251091437,5277251.346269697],[516013.81728630664,5277255.49396214],[516017.1009322896,5277254.869497532],[516017.66350416053,5277257.84959123],[516019.8050064236,5277257.444265759],[516020.4268009754,5277260.735714073],[516018.51823432016,5277261.097224239]]]},"properties":{"ID_SOURCE":"w144656190","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":104}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.9665685445,5277221.5474064015],[516124.8360023685,5277221.53596576],[516124.6294735413,5277214.755867061],[516126.13888683706,5277212.092692593],[516132.22240209323,5277211.998404965],[516132.225173443,5277210.998154605],[516135.98054840905,5277210.897420887],[516135.98424440186,5277209.563753741],[516137.4160986291,5277207.789485498],[516139.293941214,5277207.683550543],[516139.6420299163,5277217.57595611],[516136.18706419435,5277217.677519973],[516136.25600533735,5277219.9005067125],[516133.1765471786,5277220.003113034],[516129.79699213314,5277219.99374985],[516129.7948369568,5277220.771722366],[516128.9665685445,5277221.5474064015]]]},"properties":{"ID_SOURCE":"w144656192","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":105}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515436.2266388647,5277760.253472323],[515433.45640214015,5277757.134212734],[515434.4349849848,5277756.247688645],[515433.1023431796,5277754.721540186],[515431.515145938,5277752.905753756],[515430.6122464731,5277753.570199317],[515426.4950171752,5277748.669135954],[515426.80334655615,5277745.669178144],[515428.755801531,5277745.674352379],[515431.6155762651,5277743.347996298],[515433.5618445463,5277745.687091743],[515435.59086734476,5277745.136772209],[515437.98652091913,5277747.921619939],[515439.3388095043,5277747.702926571],[515441.0606744832,5277749.708009993],[515441.0559579172,5277751.486234467],[515443.60208971,5277754.160343883],[515436.2266388647,5277760.253472323]]]},"properties":{"ID_SOURCE":"w144656196","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":106}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515325.42340832297,5277518.120559055],[515320.0269271083,5277514.10532482],[515318.00309852924,5277512.655182775],[515319.28472620307,5277510.769179071],[515319.137163223,5277509.76853297],[515320.34340194904,5277507.993470893],[515321.3202542083,5277507.773762013],[515322.219669096,5277508.442967557],[515324.8583199184,5277504.560020995],[515326.05783241626,5277505.341156826],[515328.0176830282,5277502.567822408],[515335.5139721397,5277507.699992205],[515332.1211216859,5277512.803485117],[515331.14690383873,5277512.022941286],[515330.589017191,5277512.843906438],[515330.0914427449,5277513.576118645],[515326.47272325045,5277518.901299633],[515325.42340832297,5277518.120559055]]]},"properties":{"ID_SOURCE":"w144656201","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":107}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515526.1937709942,5277702.58887839],[515524.91685994226,5277702.696612839],[515525.7260100435,5277709.033739964],[515517.68818980735,5277710.0125676645],[515516.2179871776,5277698.116689277],[515517.34500522394,5277697.89741357],[515516.83148523065,5277693.339312665],[515521.33867277583,5277692.7956286855],[515521.1926308963,5277691.239281998],[515528.1037541044,5277690.36859349],[515528.2506834931,5277691.591523294],[515534.335464344,5277690.829777924],[515534.6287272852,5277693.497915906],[515532.7507567678,5277693.715184603],[515533.2648573508,5277698.051008908],[515525.75268583157,5277699.031228098],[515525.9659264632,5277700.7322358955],[515526.1937709942,5277702.58887839]]]},"properties":{"ID_SOURCE":"w144656202","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":108}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515546.9450875324,5277355.776997653],[515547.3241461287,5277354.444332827],[515551.30115276296,5277355.67749135],[515551.9064013773,5277354.012011717],[515556.18350825296,5277355.357114941],[515555.7287543654,5277356.911856471],[515558.5050577358,5277357.808392797],[515556.68990231975,5277362.582551954],[515553.98899724125,5277361.575078143],[515550.65998663387,5277370.790785336],[515548.10868930444,5277370.005993327],[515547.95730359986,5277370.450148075],[515541.8796032261,5277368.433405513],[515543.6275409901,5277363.514580638],[515544.67934463284,5277360.549957322],[515542.2031414152,5277359.765368433],[515544.0185825056,5277354.880065851],[515546.9450875324,5277355.776997653]]]},"properties":{"ID_SOURCE":"w144656210","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":109}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515209.3949390471,5277720.201804266],[515205.664876303,5277710.745178741],[515206.56746622466,5277710.191837404],[515207.6135686033,5277712.195086109],[515211.373538131,5277710.204393273],[515215.96071606537,5277707.771305747],[515217.8285015289,5277711.443800744],[515219.6331025501,5277710.559400019],[515222.9958063709,5277716.90315997],[515216.52864927455,5277720.331585832],[515215.85570141836,5277719.218429058],[515213.2989944555,5277720.545424598],[515213.1496762689,5277720.211615039],[515211.3491447863,5277719.540071409],[515211.05021773087,5277718.983591421],[515209.47090487485,5277719.868583381],[515209.3949390471,5277720.201804266]]]},"properties":{"ID_SOURCE":"w144656214","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":110}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516224.61767882574,5277636.031299579],[516223.62529450294,5277647.20920456],[516213.0989179831,5277646.446356718],[516213.10046555405,5277645.890661699],[516206.79366162664,5277645.428541661],[516206.796136775,5277644.539429627],[516206.9540631841,5277641.761372643],[516207.1104427379,5277639.539010688],[516206.05910134193,5277639.536083963],[516206.4497403312,5277634.091318064],[516207.95165801386,5277634.0954992585],[516208.1052533753,5277632.873388377],[516207.7307021062,5277632.538926024],[516208.4341038876,5277622.649436564],[516225.25282730843,5277623.696544735],[516224.61767882574,5277636.031299579]]]},"properties":{"ID_SOURCE":"w144656217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":111}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516274.8956203666,5277004.3417871725],[516274.4440644441,5277004.673944377],[516268.5757052236,5277008.325157919],[516268.42642883264,5277007.9913215805],[516269.1036065705,5277007.548654529],[516266.48645510257,5277003.429171744],[516265.8092770882,5277003.871839102],[516265.58489640255,5277003.53779304],[516266.2620744381,5277003.095125659],[516264.5415113854,5277000.64524485],[516264.0899557735,5277000.977402858],[516259.7528515358,5276994.185765246],[516259.90337015927,5276994.075045794],[516260.277649462,5276994.520649969],[516265.6963235453,5276990.534752669],[516265.3223548436,5276989.978009261],[516265.54766742594,5276989.978638635],[516274.8956203666,5277004.3417871725]]]},"properties":{"ID_SOURCE":"w144656227","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":112}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.8938932694,5277086.800025603],[515933.016961597,5277087.640198797],[515932.73053885077,5277082.5269869715],[515936.26098775433,5277082.31436887],[515936.0499747865,5277077.09022356],[515932.3735740111,5277075.746486098],[515932.0214737612,5277067.187762826],[515949.97357124067,5277066.34779218],[515950.5396898997,5277079.019273348],[515950.31468523364,5277078.90751725],[515950.17513455235,5277075.017244036],[515946.4947788768,5277075.118303443],[515946.77601557004,5277082.120877348],[515950.4566712742,5277081.908679219],[515950.3840038305,5277081.019362225],[515950.6096173099,5277080.908840515],[515950.8938932694,5277086.800025603]]]},"properties":{"ID_SOURCE":"w144656229","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":113}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515710.18965799885,5277225.070279428],[515702.7624376164,5277222.160610818],[515693.60937956686,5277218.69060106],[515694.29023350484,5277216.85863049],[515694.89538742945,5277215.2487354325],[515691.53709583374,5277207.3487624],[515699.9583389754,5277203.703852039],[515702.421399958,5277209.378620745],[515714.65032140055,5277214.079482191],[515719.2369007355,5277212.091347531],[515721.9988438274,5277218.3226303365],[515721.622737481,5277218.543894271],[515721.62333766406,5277218.321616404],[515713.12730061973,5277221.855153887],[515711.7652825341,5277225.630229692],[515715.96674650337,5277227.19752511],[515713.01680792106,5277234.969345641],[515707.31512695155,5277232.731166514],[515710.18965799885,5277225.070279428]]]},"properties":{"ID_SOURCE":"w144656234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":114}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516248.05024173734,5277527.513009232],[516245.9635613326,5277527.140424544],[516242.3456405074,5277526.49683284],[516244.37419717957,5277526.169073008],[516246.7065547927,5277524.619623329],[516247.9897223786,5277522.289267461],[516248.22245849477,5277519.62256064],[516247.25332631846,5277517.063639535],[516245.2309686051,5277515.16861874],[516243.20519873925,5277514.496127445],[516249.9608652023,5277515.62637803],[516248.70752388594,5277523.413783218],[516248.05024173734,5277527.513009232]]]},"properties":{"ID_SOURCE":"w144656237","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":115}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516036.59115396446,5277139.826799865],[516035.87808544043,5277126.043505859],[516035.80696203496,5277124.598493132],[516036.0322693877,5277124.599113638],[516036.2493123735,5277127.600484858],[516042.4086287873,5277127.284032213],[516042.4107722247,5277126.506059808],[516044.438843984,5277126.400508057],[516044.5118026938,5277127.178687411],[516047.291204752,5277126.964067249],[516047.64833851083,5277133.633437113],[516049.1506915391,5277133.526438125],[516049.3616006159,5277138.750588231],[516049.4354775232,5277139.1953509115],[516043.50148005923,5277139.512416894],[516043.5045423322,5277138.401027721],[516042.7908870101,5277138.465745246],[516042.2274974862,5277138.508648908],[516042.2998439195,5277139.509106081],[516036.59115396446,5277139.826799865]]]},"properties":{"ID_SOURCE":"w144656248","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":116}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515680.4204444778,5277673.5946444925],[515678.3408210902,5277665.031277407],[515696.5265101703,5277660.412409047],[515698.4604130765,5277667.30829243],[515702.7667855298,5277685.546837309],[515705.0962360031,5277684.997421884],[515706.95292626513,5277692.671078931],[515700.866924906,5277693.8772],[515700.2709597759,5277692.097355513],[515692.3069824521,5277693.520700805],[515691.11864116613,5277688.627345464],[515694.19904101215,5277688.079949771],[515692.78990823124,5277681.518901575],[515689.4845188247,5277681.954551849],[515688.44606386346,5277677.172740939],[515691.45197330083,5277676.402863392],[515690.1894309082,5277671.175888934],[515680.4204444778,5277673.5946444925]]]},"properties":{"ID_SOURCE":"w144656250","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":117}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515572.6515221072,5277684.374896657],[515571.23504651745,5277683.31527961],[515569.80355136335,5277682.255622749],[515567.99502424954,5277684.584722239],[515561.9856245938,5277685.235494168],[515558.08958430134,5277681.890886573],[515561.5564430511,5277677.23228057],[515564.63594498776,5277677.018233396],[515564.1936927296,5277673.905136346],[515571.02974781225,5277673.034297995],[515571.2493858917,5277675.14654185],[515575.3063180797,5277674.490555485],[515574.7907599222,5277670.710422638],[515578.99788641214,5277670.05484065],[515580.9131857655,5277683.952442805],[515579.48548426945,5277684.282041364],[515581.185903341,5277694.289175384],[515572.0961274315,5277695.487392331],[515570.7678993164,5277686.703794415],[515572.6515221072,5277684.374896657]]]},"properties":{"ID_SOURCE":"w144656257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":118}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515613.01755993924,5277725.6047469685],[515612.8745240778,5277722.937007612],[515615.0585311691,5277720.608929018],[515617.687145601,5277720.50484043],[515619.4196922748,5277718.508971812],[515621.2925883764,5277720.18109446],[515626.0986527893,5277720.193992729],[515626.3847124101,5277725.52947211],[515627.80763294734,5277726.97810943],[515625.9228084073,5277729.751545616],[515626.89754698216,5277730.309861157],[515627.03252118663,5277735.978354587],[515620.79967329674,5277735.96162687],[515618.6270002159,5277734.066420386],[515613.59536545974,5277734.164063065],[515613.15821110987,5277729.161598536],[515614.4383971142,5277727.831354179],[515614.2941696052,5277725.608170872],[515613.01755993924,5277725.6047469685]]]},"properties":{"ID_SOURCE":"w144656269","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":119}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516237.35952582525,5277025.464689375],[516240.88878142834,5277025.69681147],[516241.11781248194,5277024.363773159],[516244.42144732305,5277024.706407857],[516244.18807486864,5277027.595390582],[516248.24212449364,5277028.16240048],[516248.3954331671,5277027.051430664],[516253.20051985816,5277027.620539795],[516252.50845576596,5277033.397875723],[516247.92806446593,5277033.051673643],[516247.54541370884,5277035.606820449],[516243.0407475327,5277035.038553976],[516243.34798267356,5277032.594336269],[516238.01686368114,5277032.134908057],[516238.165211386,5277032.802160319],[516232.8306840638,5277033.56526472],[516232.30183501967,5277029.296023631],[516231.94926854456,5277026.449862951],[516237.3582861591,5277025.909244958],[516237.35952582525,5277025.464689375]]]},"properties":{"ID_SOURCE":"w144656272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":120}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515616.2202241884,5277259.493089217],[515608.7870426585,5277258.806319163],[515608.12901197444,5277252.13617074],[515610.2330260615,5277251.69725235],[515612.0455773186,5277247.923361011],[515615.3467359047,5277249.154750637],[515616.02323954884,5277248.934285524],[515616.17522970587,5277248.267854732],[515617.22574721056,5277248.604091596],[515617.90463590604,5277247.49451518],[515624.054853638,5277250.511788486],[515622.1725621324,5277252.284973675],[515629.88586625125,5277260.530015223],[515629.35747644666,5277261.5288545145],[515632.27774937724,5277264.759746803],[515623.77169498114,5277272.072138737],[515619.57918343856,5277267.17074141],[515621.53686817846,5277265.286617899],[515618.099766335,5277261.543101845],[515616.2202241884,5277259.493089217]]]},"properties":{"ID_SOURCE":"w144656283","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":121}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516227.3843675237,5276912.741176305],[516229.41158812406,5276912.969105473],[516228.7983569432,5276917.412985957],[516218.1377621716,5276915.82732846],[516218.74912806624,5276912.050280133],[516217.6231691573,5276911.824864683],[516217.3233673991,5276911.601750249],[516217.6324550099,5276908.490698419],[516218.6851666156,5276908.049071428],[516219.210903362,5276908.050535755],[516219.3795091303,5276906.839582242],[516219.51751564274,5276905.828595033],[516219.8930420322,5276905.829641029],[516220.4302334825,5276901.718967113],[516224.03436042625,5276902.062426856],[516225.53182178224,5276903.733695259],[516228.91032154614,5276904.187669083],[516228.4451322194,5276909.409940314],[516227.8442903615,5276909.408265849],[516227.3843675237,5276912.741176305]]]},"properties":{"ID_SOURCE":"w144656291","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":122}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.73038965615,5277372.093967354],[515456.5553011304,5277372.540716212],[515455.72419402056,5277374.427885587],[515458.8745247322,5277375.88106604],[515458.4975533512,5277376.435763878],[515459.7724688625,5277377.105987512],[515462.091098483,5277380.6686165845],[515460.50663866865,5277383.442902658],[515455.8487245471,5277384.097374224],[515452.15886384214,5277382.198204437],[515449.3239512476,5277380.745864549],[515449.77720028313,5277379.746809541],[515447.1522686867,5277378.406167681],[515446.6245105677,5277379.182745716],[515440.1745309393,5277375.942584554],[515443.7990438833,5277368.505834718],[515449.04950616526,5277370.964838619],[515449.9554159532,5277369.189006552],[515453.70536505006,5277371.088334347],[515455.73038965615,5277372.093967354]]]},"properties":{"ID_SOURCE":"w144656293","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":123}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516021.6289038559,5277547.112958199],[516019.60003101407,5277547.563048496],[516019.47395632474,5277546.984774471],[516018.6875299975,5277543.492819946],[516018.1690545898,5277543.602533246],[516017.5162729214,5277540.666645755],[516018.17001506605,5277540.523962617],[516017.8065342464,5277538.889207083],[516016.74564020836,5277534.162845656],[516026.6044768448,5277531.978294093],[516027.8210173096,5277537.449722685],[516026.78403449024,5277537.680261596],[516027.66679793026,5277541.6392697],[516031.20607341995,5277540.848807573],[516031.9626680345,5277544.262883776],[516032.57132130995,5277544.131192073],[516033.2760507516,5277547.2895040335],[516033.0581164208,5277547.344473774],[516029.6315818996,5277548.101903227],[516022.21492126136,5277549.748584908]]]},"properties":{"ID_SOURCE":"w144656303","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":124}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515272.7873100425,5277744.262822696],[515275.7977949595,5277741.714506172],[515278.49273708067,5277744.944632406],[515272.99830608815,5277749.709226222],[515275.0948243672,5277752.048662608],[515269.22405694897,5277757.145691929],[515264.95679764485,5277752.133210117],[515268.56919597636,5277749.141909016],[515267.1461919359,5277747.693359638],[515265.6408068714,5277749.023089463],[515264.3679908642,5277747.574934603],[515263.991061876,5277748.129645261],[515262.41845039336,5277746.458425196],[515259.40768248675,5277749.117887671],[515256.1128502134,5277745.552778789],[515258.9731382231,5277743.00405999],[515257.70031923655,5277741.555906611],[515264.8509048698,5277735.239683743],[515272.7873100425,5277744.262822696]]]},"properties":{"ID_SOURCE":"w144656304","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":125}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515377.4667514132,5277347.324852382],[515378.07165751804,5277345.770493768],[515375.6711124834,5277344.763896226],[515376.80494438275,5277341.988397242],[515375.9099124228,5277339.652099102],[515377.5720850839,5277335.877737989],[515379.07290496276,5277336.326261008],[515381.4171441201,5277330.219768269],[515387.49317690375,5277332.903176741],[515385.29913175345,5277339.010063967],[515387.9246827517,5277340.128399872],[515388.3773368531,5277339.351618081],[515390.708070452,5277338.357521091],[515392.723127219,5277343.141856671],[515390.8438741521,5277343.803727095],[515391.25354331365,5277345.082917006],[515391.66321229463,5277346.362106945],[515388.94053374435,5277353.57899283],[515384.06435351743,5277351.565591293],[515384.66896728287,5277350.122372313],[515377.4667514132,5277347.324852382]]]},"properties":{"ID_SOURCE":"w144656307","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":126}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515370.7651080072,5277638.493327024],[515374.95902595454,5277642.83885312],[515358.84748708835,5277658.355895613],[515354.5787659599,5277653.899043944],[515351.0492725783,5277653.889736094],[515350.98384783976,5277650.221950643],[515349.44860657986,5277648.617489741],[515345.4420030642,5277644.428071492],[515348.15218823036,5277641.879000833],[515350.3989070524,5277644.218859881],[515351.2270114894,5277643.443064945],[515357.1434502778,5277649.571357104],[515359.02582633705,5277647.686946575],[515359.17631091794,5277647.576203801],[515360.0044160587,5277646.800410108],[515360.9777276306,5277647.914376029],[515362.93520117406,5277646.030164907],[515361.88650067354,5277645.027139518],[515364.7474709389,5277642.256194862],[515365.7958781129,5277643.370359771],[515370.7651080072,5277638.493327024]]]},"properties":{"ID_SOURCE":"w144656308","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":127}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515413.3501431656,5277693.175556137],[515414.1161016819,5277687.509454417],[515415.9177972102,5277687.736504678],[515416.2924737284,5277685.20350945],[515416.6060148513,5277683.070455633],[515420.88467655797,5277683.74862651],[515420.96153815155,5277683.081991319],[515422.0876721733,5277683.196114235],[515422.08796659095,5277683.0849752175],[515422.31737417483,5277681.5296257725],[515425.3948069983,5277682.09347808],[515425.39156771835,5277683.316007275],[515426.06713026186,5277683.428937122],[515425.3035154307,5277688.20592511],[515426.9550200032,5277688.432580842],[515426.1154264824,5277693.542786825],[515422.5871347503,5277693.088879475],[515422.35802194884,5277694.533089916],[515418.6047396258,5277693.967449148],[515415.3844257619,5277693.481019908],[515413.3501431656,5277693.175556137]]]},"properties":{"ID_SOURCE":"w144656314","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":128}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516034.895827094,5277728.085155166],[516034.0630514645,5277730.527938439],[516034.66319631384,5277730.751871144],[516033.1515088755,5277734.30418327],[516036.6769744212,5277735.7587120505],[516035.99683732545,5277737.312796623],[516039.22192222404,5277738.7664995445],[516039.90267244924,5277736.990137297],[516043.3527338807,5277738.555602249],[516045.9975844525,5277732.561338906],[516047.4976384686,5277733.232312891],[516044.7007597519,5277739.892995758],[516041.99521342944,5277740.66351874],[516039.36690576904,5277740.656276719],[516036.81552956067,5277739.982408613],[516034.49127301195,5277738.642327998],[516032.5437124377,5277736.858726259],[516030.97407191875,5277734.187046948],[516033.4611210419,5277728.225685426],[516034.895827094,5277728.085155166]]]},"properties":{"ID_SOURCE":"w144656319","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":129}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515987.9943706165,5277032.332163891],[515983.26223118807,5277032.541452105],[515982.7362006742,5277032.651147955],[515982.5182110355,5277029.983195947],[515981.1812132003,5277030.035096193],[515979.8892775928,5277030.08712041],[515980.0327748095,5277032.5325884065],[515980.63360390236,5277032.534237332],[515980.7077924847,5277032.86786015],[515969.0649006732,5277033.502756519],[515968.8484287685,5277030.27911054],[515972.90463644103,5277030.067956391],[515972.7617458975,5277027.4002107885],[515968.7052315831,5277027.722503935],[515968.2011449796,5277019.830200462],[515972.63318378123,5277019.508937022],[515972.77576974116,5277022.287821486],[515982.69099247694,5277021.759329786],[515982.5487162857,5277018.869306172],[515987.20576297585,5277018.659811154],[515987.9943706165,5277032.332163891]]]},"properties":{"ID_SOURCE":"w144656320","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":130}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515309.02240219136,5277726.453376684],[515307.0792920615,5277722.891793777],[515308.0644355672,5277722.36091315],[515307.27225973475,5277720.90289885],[515302.25625422556,5277723.62375087],[515300.4112295389,5277719.884604387],[515300.49275046354,5277717.4397431975],[515297.5924192639,5277712.35303269],[515297.87973640946,5277711.609151082],[515301.23413745535,5277709.650792346],[515302.0640974828,5277711.019993268],[515304.0420725382,5277709.891566822],[515306.06904989225,5277710.119175344],[515309.52809057327,5277708.350034137],[515310.8041192865,5277708.575669529],[515311.706427302,5277708.133483494],[515312.1607968883,5277706.689861271],[515314.49195547454,5277705.473455495],[515315.5236459315,5277707.232178292],[515317.53466325544,5277710.671688829],[515319.47093431733,5277713.9776356425],[515319.57559913717,5277714.1557347365],[515311.0773149059,5277718.912388793],[515313.84295759123,5277723.809814192],[515309.02240219136,5277726.453376684]]]},"properties":{"ID_SOURCE":"w144656325","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":131}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515426.3217819973,5277275.546683132],[515420.6217981646,5277272.641951087],[515418.2229959827,5277270.968502489],[515418.75164294406,5277269.85850516],[515419.0558713482,5277268.414494387],[515418.382614914,5277267.412453975],[515418.4624244467,5277265.634429728],[515419.4390267536,5277265.525876241],[515419.36598642066,5277264.747704736],[515422.8223815355,5277264.090020887],[515425.3124800184,5277259.651028376],[515424.7964913328,5277255.982050518],[515428.78007002664,5277254.7700682],[515429.37616379914,5277256.549883386],[515431.70605383534,5277255.889219679],[515433.26814523526,5277261.561485977],[515435.96764424304,5277263.1245982],[515430.15603025234,5277274.000886957],[515428.58098113944,5277273.2187349945],[515427.8287391271,5277273.683528558],[515427.15171552665,5277274.104065631],[515426.3217819973,5277275.546683132]]]},"properties":{"ID_SOURCE":"w144656326","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":132}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515597.5920996824,5277428.820143227],[515600.29177485185,5277430.272193343],[515599.6880090525,5277431.381973296],[515602.9872788248,5277433.280190336],[515599.5884924138,5277440.495167879],[515595.9882366684,5277438.818425998],[515596.4415064799,5277437.819382271],[515595.08386280667,5277437.204476796],[515593.74123852927,5277436.589611866],[515592.38649063365,5277437.697381222],[515586.3115535527,5277434.680341119],[515587.671061854,5277431.794346792],[515588.3472456991,5277431.685017421],[515589.399814725,5277431.24327662],[515590.15318036353,5277430.35617574],[515590.9101176212,5277428.135407291],[515591.3654707469,5277426.358390387],[515591.8926487384,5277425.804103321],[515593.3210095505,5277425.252229857],[515597.07087608275,5277427.151650339],[515596.9185948977,5277427.929220778],[515597.5920996824,5277428.820143227]]]},"properties":{"ID_SOURCE":"w144656333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":133}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515242.824847244,5277629.376898583],[515240.2672219499,5277631.037299222],[515239.80733673455,5277634.592568065],[515242.81058874057,5277634.822710105],[515241.66291032836,5277642.932908781],[515233.2553860993,5277641.688365925],[515234.1754388354,5277634.4666881915],[515231.3340088555,5277629.791383116],[515231.63991724787,5277627.6805278165],[515226.6108148026,5277626.778254051],[515227.52795454103,5277620.667965538],[515234.8841661606,5277621.909748674],[515234.888819559,5277620.131524531],[515237.2208690213,5277618.581670915],[515238.87007312063,5277619.697385274],[515240.37519431877,5277618.478787746],[515244.0423876056,5277623.267399098],[515246.59477828094,5277623.607502288],[515245.6796562661,5277628.939814799],[515243.80284021597,5277628.712620664],[515242.824847244,5277629.376898583]]]},"properties":{"ID_SOURCE":"w144656334","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":134}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515836.86011699744,5277759.21791266],[515836.78895316884,5277757.772901017],[515883.73470295843,5277753.566346506],[515884.4595666822,5277763.126351784],[515836.86011699744,5277759.21791266]]]},"properties":{"ID_SOURCE":"w144656339","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":135}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515935.4899308781,5277034.744451392],[515931.9594531774,5277034.9570700135],[515930.8328991148,5277034.953987746],[515930.6887731841,5277032.730798796],[515929.02864846593,5277032.848510819],[515927.53381260205,5277032.94444749],[515927.7506112693,5277036.056952997],[515923.61930597486,5277036.267933203],[515923.83337119396,5277040.380688688],[515923.60806059185,5277040.380072531],[515923.39399521385,5277036.267317054],[515921.290790896,5277036.372705663],[515921.21872614295,5277035.261111301],[515921.5191405427,5277035.261932722],[515920.8024423493,5277022.701183606],[515920.5020273034,5277022.700362221],[515920.42874674196,5277022.033323492],[515922.9825788507,5277021.929166802],[515922.76851225155,5277017.816411474],[515922.3926892233,5277017.92652352],[515922.39390484,5277017.48196793],[515934.41264643427,5277016.736866905],[515935.4899308781,5277034.744451392]]]},"properties":{"ID_SOURCE":"w144656340","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":136}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515485.6346127951,5277281.927958094],[515490.00285469217,5277277.271708992],[515492.4001551697,5277279.500881967],[515493.68041154905,5277278.170611842],[515492.93118139444,5277277.501779754],[515500.23663721146,5277269.741442208],[515500.9861634217,5277270.29913628],[515502.191323207,5277268.968668101],[515501.5922939963,5277268.300234821],[515503.8553733686,5277264.527509572],[515507.4536914692,5277266.982166336],[515512.3275317802,5277269.884782441],[515508.1848639779,5277274.430475936],[515506.0873775734,5277272.42437438],[515504.88192164403,5277273.865980708],[515505.5560504019,5277274.534614331],[515498.3256938297,5277282.29514517],[515496.0032014077,5277280.177308563],[515495.3706127169,5277280.831349429],[515494.7229449315,5277281.50757818],[515497.7192699753,5277284.405185957],[515493.2756311355,5277289.172368429],[515485.6346127951,5277281.927958094]]]},"properties":{"ID_SOURCE":"w144656342","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":137}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516217.4435382476,5277378.089078362],[516218.88454479584,5277378.415397853],[516219.8207422585,5277373.9390711505],[516224.00104461913,5277374.928748732],[516223.80296843185,5277375.939569144],[516237.8762601449,5277378.779525294],[516239.52100224927,5277381.451468358],[516240.724448645,5277380.787986245],[516243.04291051585,5277384.239788426],[516243.8702410064,5277383.79753731],[516246.4127565166,5277387.694525275],[516245.5851162719,5277388.247914989],[516247.678895527,5277391.476812514],[516243.0888638251,5277394.687060101],[516240.9941531356,5277391.7915810915],[516238.66205410176,5277393.229893893],[516238.28221956064,5277394.784792054],[516234.0791562505,5277393.8839524975],[516234.38234124327,5277392.8845394645],[516233.0463537855,5277392.602964844],[516231.68032659654,5277392.321306778],[516229.29488630715,5277394.037324171],[516227.20041635516,5277391.052938977],[516223.08020534983,5277390.063426449],[516222.50304256246,5277392.362412588],[516215.74831110146,5277390.843208063],[516217.4912347158,5277382.534804018],[516216.6431717548,5277382.332390167],[516217.4435382476,5277378.089078362]]]},"properties":{"ID_SOURCE":"w144656346","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":138}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.3453489611,5277558.207433205],[516169.7220359426,5277554.968756755],[516168.22287570406,5277553.964334573],[516171.0150444761,5277549.081936276],[516175.97947382217,5277546.206091679],[516176.8015264584,5277547.653193772],[516179.2909125219,5277546.337547164],[516182.66774217144,5277544.55758095],[516181.8463083618,5277542.888200062],[516186.1336385323,5277540.4550415445],[516192.59322483797,5277540.028444707],[516192.738164075,5277541.91822521],[516197.99526838027,5277541.821709526],[516198.05304929445,5277548.045701725],[516189.19036782725,5277548.465609597],[516189.6353867335,5277550.467364341],[516187.00297596614,5277551.904862705],[516185.95563558035,5277550.457132803],[516180.38981170725,5277553.553577168],[516181.28603241045,5277555.334305591],[516178.4283352716,5277556.771181669],[516177.005509148,5277555.322409947],[516175.3453489611,5277558.207433205]]]},"properties":{"ID_SOURCE":"w144656348","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":139}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.91914051014,5277294.885416626],[515334.0719752846,5277293.885561639],[515334.74992650165,5277293.10936911],[515335.57661478786,5277292.889267026],[515337.0029342142,5277293.115303432],[515337.82786595327,5277293.562035372],[515338.12592473463,5277294.4519383265],[515337.89447576576,5277296.785262782],[515341.62572624045,5277297.261880062],[515348.6302900093,5277298.147230766],[515347.94032590353,5277303.480118711],[515343.4357828842,5277302.912547699],[515343.5123474224,5277302.357050846],[515337.50638574705,5277301.563248529],[515337.2746445256,5277304.007711987],[515336.0733353998,5277303.893407893],[515335.53797448927,5277307.559608663],[515331.40864120517,5277307.104174946],[515331.94458487164,5277303.215695901],[515322.634801513,5277302.190930506],[515323.4048152303,5277294.968875102],[515333.61522726994,5277296.218292903],[515333.91914051014,5277294.885416626]]]},"properties":{"ID_SOURCE":"w144656349","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":140}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515391.08405732474,5277508.62461128],[515390.93209953106,5277509.291048152],[515389.58063884836,5277509.176335836],[515388.98367806675,5277507.72994095],[515386.4309508378,5277507.500914474],[515385.37606153614,5277508.831803858],[515381.77226358256,5277508.488862157],[515381.4648266518,5277511.155404243],[515382.8872733335,5277512.826258937],[515380.5539682289,5277514.820610078],[515381.15034311934,5277516.489282088],[515378.74722705164,5277516.482933753],[515375.9621666381,5277518.920652497],[515370.794534052,5277513.572298261],[515373.6552792317,5277510.912497395],[515373.92695408844,5277507.567907928],[515374.2760159811,5277503.356632701],[515382.3096915836,5277504.044691547],[515386.0716175645,5277501.387277854],[515387.7184767545,5277503.392146058],[515389.6745383332,5277502.063639163],[515391.4765860378,5277502.179542682],[515391.3199270288,5277504.624203327],[515391.08405732474,5277508.62461128]]]},"properties":{"ID_SOURCE":"w144656351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":141}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515626.8010959519,5276795.268714641],[515628.30030663934,5276796.361906648],[515633.60959744494,5276788.262962648],[515643.1022921725,5276794.178857164],[515636.0336991033,5276805.740625976],[515630.81520282,5276802.40354023],[515631.81844642316,5276800.794708107],[515631.31618674734,5276800.437712961],[515630.8214376745,5276800.0807380155],[515629.6372821256,5276801.933591994],[515627.4101354732,5276800.616166758],[515624.3171068324,5276805.698063637],[515618.12388734,5276801.735992013],[515615.17425528244,5276806.562657085],[515619.17808832246,5276809.129607033],[515616.38713636214,5276813.601050223],[515607.637524523,5276807.865014088],[515611.9355203942,5276801.563802479],[515613.6151072383,5276802.61301843],[515615.01819918567,5276800.338417572],[515606.4250986299,5276795.047361802],[515612.9102573238,5276785.37336738],[515627.1579746013,5276793.824856742],[515626.8010959519,5276795.268714641]]]},"properties":{"ID_SOURCE":"w144656352","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":142}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.1796532189,5276993.503053456],[516129.8947147614,5276994.935998986],[516132.42639335664,5277002.833934348],[516130.0209095212,5277003.605248649],[516130.31855473685,5277004.606330872],[516122.5386437748,5277006.985403055],[516121.2346629385,5277003.2474972885],[516120.41528773535,5277000.800154457],[516124.0984637147,5276999.698954849],[516123.2797046764,5276997.029333848],[516119.52080775425,5276998.352603845],[516117.9423915008,5276998.792793521],[516116.3790480963,5276993.787177934],[516116.0062957683,5276992.785888583],[516115.9321144009,5276992.452264044],[516123.0055702474,5276990.24905046],[516126.5310345626,5276989.147415691],[516126.30787651247,5276988.368819465],[516129.0888872299,5276987.598543786],[516129.75959161285,5276989.489777253],[516132.6160143817,5276988.608572415],[516134.1796532189,5276993.503053456]]]},"properties":{"ID_SOURCE":"w144656353","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":143}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515675.82265402813,5277241.982032933],[515670.344474007,5277240.41133021],[515670.496171485,5277239.856039769],[515667.9445334747,5277239.182334441],[515667.7171371401,5277239.959700735],[515665.2408988358,5277239.175059745],[515665.92278808984,5277236.9540995415],[515662.8463381999,5277235.945565205],[515664.21071412123,5277231.281366474],[515667.2874653036,5277232.178762584],[515667.8939559897,5277230.068739487],[515672.24652796594,5277231.302990721],[515672.09512924997,5277231.747142175],[515677.4982159386,5277233.31764429],[515677.27081810264,5277234.095010205],[515684.2498248841,5277236.114321027],[515683.3399313523,5277239.33492266],[515684.1651437852,5277239.670564734],[515682.8764533753,5277244.112683287],[515681.6009354095,5277243.664688825],[515681.9043323813,5277242.554108521],[515676.2011509211,5277240.87165453],[515675.82265402813,5277241.982032933]]]},"properties":{"ID_SOURCE":"w144656358","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":144}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515552.4831629832,5277199.940532479],[515551.52518889605,5277201.505043859],[515550.4691975988,5277203.213775265],[515552.4486690658,5277204.419371287],[515549.1900716104,5277209.73426112],[515547.4280390993,5277208.662614468],[515544.41081117117,5277213.5891624475],[515541.4116246919,5277211.75846477],[515542.6336060796,5277209.761211521],[515538.83961801766,5277207.450492786],[515540.8384957868,5277204.199433668],[515541.09345494205,5277204.344595823],[515541.92318967544,5277202.990905906],[515541.51078446966,5277202.745297706],[515543.7737072544,5277199.050385501],[515540.3021151749,5277196.940578057],[515543.71913692745,5277191.359370947],[515546.3434486436,5277192.955675358],[515548.0783521932,5277190.126244892],[515547.06611286884,5277189.512273506],[515549.291345047,5277185.872832704],[515554.9748457146,5277189.333344796],[515551.51257294096,5277194.981108315],[515555.83892374154,5277197.615562716],[515553.88527434465,5277200.800053684],[515552.4831629832,5277199.940532479]]]},"properties":{"ID_SOURCE":"w144656359","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":145}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515709.3384028716,5277123.041705563],[515706.85312623746,5277125.591214642],[515709.0987030072,5277128.375765758],[515705.78910146526,5277130.256213036],[515706.2340196818,5277132.369067976],[515703.3720378833,5277135.362121343],[515698.56459160463,5277135.682577122],[515691.11808304855,5277139.885814894],[515688.2076611539,5277132.987309447],[515684.6817434354,5277131.532994087],[515686.4955775196,5277127.314570774],[515684.176084599,5277124.085270433],[515686.80946093245,5277122.314128786],[515686.58864471834,5277120.646438033],[515688.1163694406,5277119.483586892],[515690.652564997,5277117.5454755565],[515690.50535480934,5277116.43368163],[515695.316711025,5277114.668413257],[515695.7721198396,5277112.891405271],[515696.22483256506,5277112.1146475645],[515699.8204678433,5277115.569672839],[515701.24951428187,5277114.795548097],[515707.2457273999,5277119.257309318],[515706.7915147543,5277120.589760764],[515709.3384028716,5277123.041705563]]]},"properties":{"ID_SOURCE":"w144656366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":146}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515660.8806476308,5277157.0310660135],[515652.3199134522,5277156.674627671],[515652.32400649646,5277155.152024415],[515652.3279800338,5277153.673876734],[515647.89725689613,5277153.550828079],[515648.0546293588,5277150.8838975895],[515643.5493991111,5277150.53837257],[515643.6256955988,5277150.094018656],[515643.8671263287,5277144.093122183],[515648.1476523624,5277144.215764086],[515648.3813221247,5277141.10447979],[515655.214728301,5277141.456267746],[515655.2865435301,5277142.678997805],[515652.58376039116,5277142.338312325],[515652.0386257623,5277149.560929035],[515653.76567568025,5277149.67671156],[515653.760297473,5277151.677212172],[515659.46805634594,5277151.69255989],[515659.62902096665,5277147.691962639],[515660.83065524,5277147.695194482],[515660.9964037121,5277141.91637455],[515667.82980824856,5277142.268177316],[515667.196394552,5277154.38070317],[515661.11342694616,5277154.2531989245],[515660.8806476308,5277157.0310660135]]]},"properties":{"ID_SOURCE":"w144656367","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":147}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515567.8929658564,5277582.335830802],[515568.19097441493,5277583.225746053],[515564.73267172225,5277584.661316554],[515565.8555534387,5277585.997996223],[515565.3286894687,5277586.441146746],[515561.2117509218,5277581.428850409],[515559.6706974791,5277582.013772436],[515558.2800156093,5277582.532412845],[515560.890867761,5277589.09663849],[515561.48748035234,5277590.654190299],[515556.0745983877,5277592.862520319],[515553.5385421018,5277586.409636427],[515553.16276279173,5277586.519772304],[515549.35273044877,5277579.0632289015],[515553.9401538361,5277576.630407656],[515552.29663837864,5277573.402963057],[515555.98439210997,5277570.412041194],[515558.0808622759,5277572.751578931],[515561.541546911,5277570.426892518],[515565.5860707204,5277574.438737222],[515564.98410910304,5277574.881686991],[515565.9529364466,5277577.662772085],[515572.64337070833,5277575.124448966],[515574.4332024872,5277579.797108114],[515567.8929658564,5277582.335830802]]]},"properties":{"ID_SOURCE":"w144656370","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":148}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515254.6414067373,5277619.294130009],[515262.6822197934,5277617.203549011],[515262.9796903574,5277618.315726602],[515268.390104414,5277616.9962363485],[515269.35644257726,5277620.777523047],[515270.85952924757,5277620.336906444],[515272.6431743197,5277627.454530846],[515267.7590233903,5277628.553117697],[515269.170979884,5277634.224949289],[515273.22878020006,5277633.2353354385],[515271.9655615605,5277628.119591904],[515275.94827066053,5277627.129782955],[515277.65768648434,5277633.913794908],[515273.90056084434,5277634.793054738],[515274.6439377792,5277637.684639285],[515270.0601782191,5277638.784012335],[515269.7632930908,5277637.449556319],[515268.2602109133,5277637.890173209],[515268.5573878445,5277639.113490133],[515263.372281591,5277640.433570887],[515261.06878499116,5277631.091790972],[515265.65254886425,5277629.992410844],[515264.90945787024,5277626.989688486],[515257.0191405928,5277628.9695210075],[515254.6414067373,5277619.294130009]]]},"properties":{"ID_SOURCE":"w144656377","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":149}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516231.80397698877,5276889.9698481],[516242.2417791439,5276890.665791004],[516242.24146914703,5276890.776929879],[516246.5218609467,5276891.01115009],[516246.4427244802,5276892.455745882],[516248.1172969469,5276892.560443934],[516250.1973767513,5276892.688502024],[516249.96027492796,5276896.911150409],[516250.10955527506,5276897.244986208],[516253.8642043228,5276897.477744718],[516253.55044361,5276902.255877729],[516257.9801063059,5276902.823942285],[516256.9807764936,5276911.045493086],[516252.85154084064,5276910.478267764],[516253.1606474965,5276907.367217781],[516251.65885248914,5276907.251886483],[516250.3876458167,5276905.247823488],[516250.5456102896,5276902.469770825],[516248.4429713799,5276902.352763619],[516248.6766605924,5276899.352642744],[516241.6931018243,5276898.888601177],[516241.84920236265,5276896.777381557],[516236.5933741214,5276896.207025644],[516236.4357260464,5276898.8739397675],[516231.8586357621,5276897.305223043],[516231.8611141526,5276896.416112059],[516231.3353763549,5276896.414646592],[516231.80397698877,5276889.9698481]]]},"properties":{"ID_SOURCE":"w144656386","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":150}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515554.56964111555,5277312.897419049],[515554.0466131695,5277311.895764079],[515551.86574396386,5277313.001335872],[515552.3884753124,5277314.1141296],[515546.67286334996,5277317.099638215],[515546.1501311826,5277315.986845001],[515541.638199804,5277318.1975943865],[515540.7417468943,5277316.416965626],[515538.4860785819,5277317.41120302],[515535.340777038,5277314.068617454],[515538.8004190649,5277312.188473961],[515537.97847120266,5277310.630323975],[515545.9500547172,5277306.539432528],[515546.47338129755,5277307.429947803],[515551.8135020266,5277304.443436025],[515550.84254361107,5277302.440327245],[515553.62540538533,5277300.891804205],[515551.45878097886,5277296.662706557],[515555.44443717366,5277294.672838188],[515556.93812729785,5277297.788741811],[515558.4416162768,5277297.237060502],[515561.8033028354,5277303.914429143],[515561.19715517526,5277305.9133244855],[515565.2504806841,5277306.702137289],[515563.3551537455,5277313.365455442],[515556.9013048346,5277311.569971686],[515554.56964111555,5277312.897419049]]]},"properties":{"ID_SOURCE":"w144656387","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":151}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516167.2116405101,5277539.513346544],[516166.6170360095,5277537.2888985295],[516162.8594025278,5277538.278723947],[516161.28112897504,5277538.718901922],[516159.7946109948,5277533.157783548],[516161.07249717397,5277532.716771318],[516160.1805856632,5277529.380100304],[516160.93495157274,5277528.159656026],[516164.0164073156,5277527.279091818],[516164.91572294844,5277527.948427788],[516168.5234775609,5277526.847047598],[516169.7136128665,5277530.962527058],[516170.16376398935,5277531.119373095],[516170.6889505605,5277531.298655546],[516172.34201533283,5277530.969827712],[516171.89575407957,5277529.412630304],[516179.0355505901,5277527.431950079],[516180.002239962,5277530.879971681],[516180.8199693788,5277533.88302009],[516178.0392120289,5277534.65327114],[516177.5132230428,5277534.762949385],[516176.6853013857,5277535.427487942],[516173.7537335322,5277536.419601686],[516173.45149248,5277537.085601104],[516173.1501777204,5277537.418183586],[516172.47306863597,5277537.860862007],[516170.74429130077,5277538.411759188],[516167.2116405101,5277539.513346544]]]},"properties":{"ID_SOURCE":"w144656388","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":152}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515651.7159197803,5277744.491292458],[515652.3040334242,5277721.264649615],[515686.6952397068,5277722.168538346],[515686.74107585096,5277733.027023282],[515688.0924790203,5277733.141804745],[515688.0089984718,5277736.253495066],[515692.7396556002,5277736.377385044],[515692.8234382654,5277733.1545557575],[515694.1784366829,5277731.935670344],[515696.73614828655,5277730.275468674],[515699.5924416384,5277729.28291232],[515702.59742639674,5277728.846457592],[515703.42346751515,5277728.848685739],[515728.5029777077,5277729.694369358],[515728.171972082,5277741.029738302],[515722.99105256057,5277740.793463578],[515722.4200673815,5277757.57403694],[515688.78052685334,5277756.483024002],[515688.042462482,5277751.702022083],[515684.5884217345,5277751.581575225],[515683.8979008817,5277757.025566746],[515680.4438632196,5277756.905122341],[515680.445659356,5277756.238288167],[515668.35637554235,5277755.872318404],[515661.59848676214,5277755.631854135],[515651.3865583158,5277755.270970555],[515651.7159197803,5277744.491292458]]]},"properties":{"ID_SOURCE":"w144656396","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":153}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515283.1610959424,5277654.377958975],[515283.31858125527,5277651.599877908],[515286.17192343145,5277651.718509051],[515283.1610959424,5277654.377958975]]]},"properties":{"ID_SOURCE":"w144656437","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":154}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516288.7234334682,5276918.047091509],[516286.74857284623,5276917.897085946],[516286.67905098264,5276918.585957919],[516284.1560785376,5276918.3788503595],[516283.97007653594,5276920.4344155025],[516274.3283532512,5276919.773964228],[516275.06217317283,5276909.817894094],[516277.5777323127,5276909.991635045],[516277.7027782694,5276908.247090627],[516283.7780159062,5276908.541925723],[516283.76693128824,5276909.82000178],[516286.8008095026,5276909.961854252],[516286.82573460776,5276909.106147936],[516293.0210771149,5276909.423556559],[516293.1221967748,5276908.1790743545],[516295.9684369304,5276908.275950691],[516297.1896042267,5276909.368537772],[516297.07808047754,5276911.646590428],[516296.0176352641,5276912.165979456],[516295.57916268066,5276918.5552878],[516288.7234334682,5276918.047091509]]]},"properties":{"ID_SOURCE":"w144656449","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":155}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516028.2097197617,5277614.481813237],[516028.7579649299,5277617.195134832],[516023.80637906847,5277618.181762628],[516019.8540925494,5277618.982206594],[516020.04671223677,5277619.938539282],[516016.8909042239,5277620.574467248],[516015.09797708126,5277611.700575431],[516027.1576430682,5277609.288686176],[516028.2097197617,5277614.481813237]]]},"properties":{"ID_SOURCE":"w144656464","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":156}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515286.17192343145,5277651.718509051],[515288.6497873565,5277651.836155523],[515289.77301101456,5277653.061642958],[515289.76892457996,5277654.617589156],[515290.89535847056,5277654.620547655],[515293.3793521711,5277652.404276846],[515296.898625521,5277656.303415227],[515293.0597008944,5277659.738662715],[515292.3832572754,5277659.959165367],[515291.7833688662,5277659.624170272],[515290.12747260067,5277661.064638152],[515290.50178253814,5277661.51018038],[515290.19935724215,5277662.287364554],[515286.51092323597,5277665.61187183],[515283.0667441336,5277661.712936814],[515285.55102363916,5277659.385523637],[515285.70413281216,5277658.274527836],[515284.12741813896,5277658.159248382],[515283.0041942859,5277656.933762028],[515283.1610959424,5277654.377958975],[515286.17192343145,5277651.718509051]]]},"properties":{"ID_SOURCE":"w144656473","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":157}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515476.1476164972,5277658.333119553],[515476.22093935875,5277659.000153267],[515472.7656583024,5277659.324388287],[515472.6923350502,5277658.65735462],[515471.7308166991,5277658.765939014],[515470.8143557152,5277658.874643304],[515470.9610026269,5277660.208710589],[515470.4341525955,5277660.651869723],[515469.7577022655,5277660.872351779],[515469.1569381282,5277660.870755425],[515468.4813737733,5277660.757820587],[515468.18128699367,5277660.645883455],[515468.1073726474,5277660.201127874],[515465.7037253273,5277660.417021543],[515465.63099177217,5277659.527709938],[515463.077153208,5277659.743205703],[515464.0294826167,5277668.748058949],[515457.34392502374,5277669.50828267],[515455.5850082217,5277653.166062593],[515464.7493304471,5277652.190141222],[515464.6765966351,5277651.300829643],[515467.90659504064,5277650.975991238],[515467.8341569812,5277649.97554061],[515469.1119644075,5277649.5343765905],[515471.21582438913,5277649.095408025],[515473.39389418665,5277648.990056855],[515475.1955994242,5277649.217125424],[515475.2680362302,5277650.217576149],[515482.40448795306,5277649.347432215],[515483.0652744578,5277655.01731927],[515480.43604211527,5277655.343746715],[515480.72992272273,5277657.7896037465],[515476.1476164972,5277658.333119553]]]},"properties":{"ID_SOURCE":"w144656479","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":158}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.3798087214,5277720.109215278],[516047.08015691256,5277721.228056728],[516047.38237408164,5277720.562050611],[516080.53619276365,5277734.43487802],[516076.07584214327,5277745.203126536],[516045.9975844525,5277732.561338906],[516043.3527338807,5277738.555602249],[516039.90267244924,5277736.990137297],[516039.22192222404,5277738.7664995445],[516035.99683732545,5277737.312796623],[516036.6769744212,5277735.7587120505],[516033.1515088755,5277734.30418327],[516034.66319631384,5277730.751871144],[516034.0630514645,5277730.527938439],[516034.895827094,5277728.085155166],[516033.4611210419,5277728.225685426],[516016.49274146045,5277729.812732791],[516016.928937774,5277735.037506419],[516020.6848899919,5277734.603281961],[516022.13478228764,5277753.50104924],[516009.06500547816,5277754.687631545],[516007.463048383,5277736.45628874],[516011.894544337,5277736.1350560505],[516011.38538866874,5277730.132103115],[516000.94478999544,5277730.992516042],[515999.6999478663,5277719.430549254],[516035.9051207132,5277716.084830089],[516036.80656472547,5277715.97617337],[516036.8074831926,5277715.642756318],[516044.6084623813,5277718.887306964],[516044.3813402239,5277719.553520185],[516044.3798087214,5277720.109215278]]]},"properties":{"ID_SOURCE":"w144656482","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":159}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515592.2078632314,5276915.451335704],[515582.075807497,5276912.756862035],[515583.74477732065,5276906.5375063745],[515583.1445301552,5276906.3136206735],[515583.4476279855,5276905.314174712],[515583.9730674129,5276905.426720564],[515584.73155626934,5276902.6502586035],[515585.7821380708,5276902.986489468],[515587.75540365523,5276895.323133714],[515592.48376998736,5276896.558329331],[515594.75984953565,5276888.006669425],[515592.5081728242,5276887.444941329],[515592.7355725118,5276886.667572518],[515590.258876102,5276885.994103083],[515590.9419673042,5276883.328579798],[515590.11610380514,5276883.215229006],[515590.4957973517,5276881.660290138],[515616.464143802,5276888.509394339],[515614.8699413478,5276894.840080808],[515604.6630523624,5276892.0342277065],[515605.04215357086,5276890.701567515],[515596.33587414306,5276888.455449052],[515596.1081763767,5276889.343956598],[515595.04598456976,5276893.34214012],[515598.723768471,5276894.241108275],[515597.3578797232,5276899.461014327],[515600.0598855875,5276900.135090427],[515597.70720914635,5276909.242241661],[515593.05395945086,5276908.007242864],[515593.81304756127,5276905.008504305],[515590.6607091391,5276904.222085682],[515588.9914337471,5276910.552578238],[515593.26945394475,5276911.6754293],[515592.2078632314,5276915.451335704]]]},"properties":{"ID_SOURCE":"w144656493","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":160}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516247.9897223786,5277522.289267461],[516246.7065547927,5277524.619623329],[516244.37419717957,5277526.169073008],[516242.3456405074,5277526.49683284],[516216.75593892095,5277522.491147223],[516221.55654241017,5277494.875156063],[516244.0753034128,5277498.716697125],[516242.9296146259,5277505.604170952],[516242.2422646323,5277509.714427591],[516230.1571456758,5277507.680207715],[516229.4688755027,5277512.1238828],[516243.20519873925,5277514.496127445],[516245.2309686051,5277515.16861874],[516247.25332631846,5277517.063639535],[516248.22245849477,5277519.62256064],[516247.9897223786,5277522.289267461]]]},"properties":{"ID_SOURCE":"w144656494","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":161}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515420.9839575108,5277314.542588297],[515425.2785871019,5277314.965181608],[515424.961902949,5277318.276306687],[515414.30787027447,5277317.247833362],[515414.52400547033,5277315.036724889],[515412.37667569745,5277314.830988753],[515412.17591433186,5277316.908770315],[515405.3134842538,5277316.2459985195],[515405.7767584802,5277311.457101882],[515408.9001252602,5277311.765444346],[515409.0004613024,5277310.743224356],[515409.1239450753,5277309.487672199],[515407.26193444495,5277309.304921025],[515407.67876841495,5277305.03825842],[515413.69278631674,5277305.620989028],[515413.5382905279,5277307.243220105],[515417.11217133194,5277307.586101546],[515416.81875716825,5277310.619439296],[515421.32364058425,5277311.053700374],[515420.9839575108,5277314.542588297]]]},"properties":{"ID_SOURCE":"w144656502","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":162}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515905.4739434209,5277547.683582485],[515912.7498458417,5277550.815379787],[515910.25585285417,5277556.58783429],[515908.4556536792,5277555.804936183],[515906.26387619233,5277560.911379302],[515907.9886735836,5277561.8052105345],[515907.15714271815,5277563.803455281],[515901.2311750935,5277561.34219067],[515902.138104676,5277559.233011218],[515892.2371535151,5277554.871522815],[515892.76647247205,5277553.539289909],[515889.7662359058,5277552.197422735],[515889.16151728283,5277553.640589946],[515878.6603774615,5277549.055207129],[515877.7537579503,5277551.053251196],[515856.9010234225,5277542.105232877],[515861.737514855,5277531.004426482],[515866.1631009099,5277532.905862387],[515866.9943191126,5277531.018750889],[515869.46949740185,5277532.136895346],[515869.6947889685,5277532.137509452],[515874.1203715921,5277534.038951415],[515874.2702628877,5277534.150499926],[515884.2463598204,5277538.5121624125],[515891.67247916036,5277541.64434306],[515891.143766111,5277542.754298066],[515894.2938979001,5277544.207714948],[515895.04972316226,5277542.431541376],[515895.499698625,5277542.655049555],[515894.7441766773,5277544.32008408],[515897.8946102151,5277545.662363928],[515898.34792377,5277544.663343443],[515898.49811782746,5277544.663753591],[515905.4739434209,5277547.683582485]]]},"properties":{"ID_SOURCE":"w144656512","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":163}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516287.93228224094,5277149.860202771],[516293.7955356759,5277147.987230883],[516295.6746448076,5277147.436790657],[516295.9722540399,5277148.437881659],[516303.9402396403,5277145.903972187],[516313.48662430514,5277142.929936474],[516314.2410718799,5277141.709512615],[516320.9921737129,5277144.618066646],[516320.0105495,5277146.504691626],[516324.79714656295,5277153.631056283],[516314.71602842933,5277159.826629046],[516312.16505112295,5277158.930363561],[516312.3161892348,5277158.59736761],[516308.8655431093,5277157.14288424],[516289.7734567484,5277162.868708632],[516289.5506382623,5277161.978966955],[516286.39386832976,5277162.859254633],[516286.61668726325,5277163.748996193],[516280.45304428705,5277165.621135345],[516279.5592787875,5277162.951281457],[516267.90915904514,5277166.25291395],[516267.5358229853,5277165.473892379],[516264.67977646017,5277166.24389221],[516264.90228811867,5277167.244771853],[516258.738966273,5277169.005795054],[516255.24020477594,5277157.882047774],[516263.95949052146,5277155.2390414085],[516263.66218658234,5277154.126813125],[516273.2836390038,5277151.152921317],[516273.6560433653,5277152.265359987],[516277.2643618143,5277151.052908332],[516277.56259540806,5277151.831720558],[516278.2332323158,5277153.722971769],[516286.3517179542,5277151.078319251],[516286.12827676005,5277150.410855556],[516287.93228224094,5277149.860202771]]]},"properties":{"ID_SOURCE":"w144656521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":164}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515705.7547289102,5277588.440926021],[515715.88060008624,5277592.969413985],[515720.41411359323,5277582.7123355055],[515710.340945572,5277578.128412116],[515719.9063916702,5277556.593110199],[515766.83028705,5277577.658740361],[515757.5587498353,5277598.761316808],[515766.9866494443,5277603.110181196],[515776.60404972924,5277581.8640749715],[515794.38025198533,5277589.903226518],[515783.42495001934,5277614.335389388],[515792.23264033865,5277614.759377895],[515797.54884318175,5277620.530843854],[515801.7570021332,5277611.217633296],[515810.7346041822,5277615.443092873],[515807.4556067303,5277622.7360750865],[515838.6570897413,5277636.957863981],[515827.27912924514,5277662.133433619],[515804.1779215048,5277651.679100901],[515809.216649427,5277640.7010527225],[515800.46310603,5277636.942990498],[515803.37975589413,5277630.338087557],[515796.1342349734,5277627.095368954],[515783.2900028168,5277655.801291575],[515774.97949981806,5277652.055582676],[515767.284048397,5277648.5782870315],[515777.23435828264,5277626.388393852],[515769.90594146925,5277623.245509195],[515759.4352975672,5277646.245326822],[515742.5063904654,5277638.730928898],[515753.81653220736,5277613.521670637],[515746.3911229423,5277610.134045734],[515735.5562436513,5277634.555510006],[515693.5151634517,5277615.837224672],[515705.7547289102,5277588.440926021]]]},"properties":{"ID_SOURCE":"w144656525","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":165}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516262.89422053733,5277375.292878489],[516257.0398946462,5277374.053990829],[516258.94375639915,5277364.612422286],[516264.79840187903,5277365.7401728695],[516262.89422053733,5277375.292878489]]]},"properties":{"ID_SOURCE":"w144656528","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":166}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516039.8650475697,5277429.010427161],[516045.094140762,5277428.213514946],[516045.72139032243,5277432.238504809],[516040.4847601839,5277433.0465096645],[516039.8650475697,5277429.010427161]]]},"properties":{"ID_SOURCE":"w144656530","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":167}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516205.83041860035,5277424.924405527],[516205.9107762201,5277423.035252151],[516208.4638194388,5277423.1534989225],[516208.38346099324,5277425.042652267],[516205.83041860035,5277424.924405527]]]},"properties":{"ID_SOURCE":"w144656534","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":168}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.8594025278,5277538.278723947],[516166.6170360095,5277537.2888985295],[516167.2116405101,5277539.513346544],[516163.5291054475,5277540.503380073],[516162.8594025278,5277538.278723947]]]},"properties":{"ID_SOURCE":"w144656543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":169}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516227.55823645106,5277219.554098709],[516236.948059921,5277218.802297506],[516237.16716500977,5277221.025704397],[516227.7022438918,5277221.777295927],[516227.55823645106,5277219.554098709]]]},"properties":{"ID_SOURCE":"w144656550","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":170}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516265.5637593341,5277037.991060116],[516264.95951584505,5277039.211909662],[516263.7745248485,5277038.619558995],[516262.4845127639,5277037.982459349],[516263.01396267413,5277036.65026089],[516265.5637593341,5277037.991060116]]]},"properties":{"ID_SOURCE":"w144656558","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":171}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515696.04617182293,5276844.045210128],[515692.9644273121,5276844.926021717],[515692.5176845239,5276843.48000202],[515695.5997292874,5276842.488051323],[515696.04617182293,5276844.045210128]]]},"properties":{"ID_SOURCE":"w144656563","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":172}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516245.2418158519,5277234.051583808],[516254.481416276,5277233.299391841],[516254.62541305786,5277235.522589795],[516245.2356141068,5277236.274362451],[516245.2418158519,5277234.051583808]]]},"properties":{"ID_SOURCE":"w144656564","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":173}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516202.221580835,5277221.284004248],[516200.8694498378,5277221.391381637],[516200.5811051034,5277217.056127522],[516201.85813583666,5277216.948541083],[516202.221580835,5277221.284004248]]]},"properties":{"ID_SOURCE":"w144656565","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":174}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516158.2751439952,5277052.3627957795],[516154.9924875843,5277044.462764699],[516165.66952486604,5277040.046806854],[516168.8767573024,5277048.057774276],[516163.7338509585,5277050.144037084],[516158.2751439952,5277052.3627957795]]]},"properties":{"ID_SOURCE":"w144656566","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":175}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516230.3121659417,5277020.999451379],[516230.9027731165,5277024.668709667],[516226.61969163595,5277025.434750716],[516225.9542877595,5277021.654144689],[516230.3121659417,5277020.999451379]]]},"properties":{"ID_SOURCE":"w144656571","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":176}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515669.08387875365,5277206.510316856],[515672.1788902061,5277200.62824063],[515681.6907340474,5277210.323008058],[515677.09758299397,5277214.7562288],[515669.08387875365,5277206.510316856]]]},"properties":{"ID_SOURCE":"w144656575","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":177}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516219.08622691775,5277233.222915592],[516216.9079867685,5277233.327988102],[516215.96169723343,5277222.544792619],[516218.2150425907,5277222.439928934],[516219.08622691775,5277233.222915592]]]},"properties":{"ID_SOURCE":"w144656576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":178}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515675.82265402813,5277241.982032933],[515676.2011509211,5277240.87165453],[515681.9043323813,5277242.554108521],[515681.6009354095,5277243.664688825],[515675.82265402813,5277241.982032933]]]},"properties":{"ID_SOURCE":"w144656581","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":179}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.54155870253,5277508.975105312],[515394.0146221846,5277507.965520721],[515394.9263717792,5277503.966900048],[515398.52870204416,5277504.865544819],[515397.54155870253,5277508.975105312]]]},"properties":{"ID_SOURCE":"w144656582","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":180}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.73038965615,5277372.093967354],[515453.70536505006,5277371.088334347],[515454.1586155783,5277370.089279692],[515456.33383896295,5277371.095311585],[515455.73038965615,5277372.093967354]]]},"properties":{"ID_SOURCE":"w144656583","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":181}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516012.369461545,5277235.784897875],[516014.1010643706,5277234.233703354],[516014.4710672654,5277236.235236968],[516013.58432514523,5277236.432849687],[516012.5172184164,5277236.674422424],[516012.369461545,5277235.784897875]]]},"properties":{"ID_SOURCE":"w144656584","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":182}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516145.60772419523,5277449.541268563],[516144.10575893853,5277449.537103563],[516144.49758404866,5277443.647779363],[516146.0743409501,5277443.763291696],[516145.60772419523,5277449.541268563]]]},"properties":{"ID_SOURCE":"w144656587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":183}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.1533859891,5277389.3252927],[516071.6731872376,5277381.430280264],[516074.45308275585,5277380.993395338],[516075.8584856816,5277388.7770621665],[516073.1533859891,5277389.3252927]]]},"properties":{"ID_SOURCE":"w144656615","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":184}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.0579534657,5277234.617541364],[516200.4039995264,5277226.724796532],[516202.582551088,5277226.508578912],[516203.3112938563,5277234.512671925],[516201.0579534657,5277234.617541364]]]},"properties":{"ID_SOURCE":"w144656617","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":185}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.1347253229,5277671.750368096],[516111.8102093609,5277667.726288635],[516114.1596132814,5277662.698155534],[516116.1161859826,5277658.513598855],[516124.5158077386,5277662.537892384],[516120.1347253229,5277671.750368096]]]},"properties":{"ID_SOURCE":"w144656621","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":186}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516188.55985533894,5277262.056535942],[516185.55551908887,5277262.159323327],[516185.48999583506,5277258.713807508],[516188.4192331317,5277258.610811278],[516188.55985533894,5277262.056535942]]]},"properties":{"ID_SOURCE":"w144656623","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":187}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515707.31512695155,5277232.731166514],[515699.8125141909,5277229.932437947],[515702.7624376164,5277222.160610818],[515710.18965799885,5277225.070279428],[515707.31512695155,5277232.731166514]]]},"properties":{"ID_SOURCE":"w144656629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":188}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9361213361,5277408.11476621],[516156.32086752437,5277404.781639295],[516166.6078656609,5277405.365893529],[516166.4481013852,5277408.810784322],[516155.9361213361,5277408.11476621]]]},"properties":{"ID_SOURCE":"w144656630","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":189}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516270.69036727457,5277031.003577895],[516273.85372899106,5277027.789364911],[516274.6035235473,5277028.2360195555],[516272.715370906,5277032.009494548],[516270.69036727457,5277031.003577895]]]},"properties":{"ID_SOURCE":"w144656635","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":190}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.34611828224,5277260.13613106],[516136.29440039303,5277260.244356027],[516136.2229957934,5277258.9104806455],[516137.3495066162,5277258.913602749],[516137.347658433,5277259.580436371],[516137.34611828224,5277260.13613106]]]},"properties":{"ID_SOURCE":"w144656668","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":191}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515668.35637554235,5277755.872318404],[515680.445659356,5277756.238288167],[515680.4438632196,5277756.905122341],[515668.27948650264,5277756.538950462],[515668.35637554235,5277755.872318404]]]},"properties":{"ID_SOURCE":"w144656672","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":192}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516273.80861436826,5276802.064418937],[516270.8903249574,5276798.166373856],[516275.55625707057,5276794.845221147],[516278.47423437383,5276798.854407403],[516273.80861436826,5276802.064418937]]]},"properties":{"ID_SOURCE":"w144656673","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":193}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515618.7087602603,5277451.660407042],[515613.8503536864,5277448.6799436],[515609.4117774775,5277445.967345288],[515613.4852662354,5277439.1987418085],[515622.9318560856,5277445.114490976],[515618.7087602603,5277451.660407042]]]},"properties":{"ID_SOURCE":"w144656674","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":194}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.90756106406,5276917.560347263],[516168.91893925157,5276913.856648932],[516174.3681700469,5276912.393623892],[516175.35675777984,5276916.108437033],[516169.90756106406,5276917.560347263]]]},"properties":{"ID_SOURCE":"w144656683","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":195}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516152.56653700303,5277215.055581303],[516150.92166466155,5277215.106588299],[516148.96136694873,5277215.156720909],[516148.964449425,5277214.045331614],[516152.5696201661,5277213.94419201],[516152.56653700303,5277215.055581303]]]},"properties":{"ID_SOURCE":"w144656689","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":196}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516171.73739171476,5277289.016758203],[516171.7021567149,5277288.183111839],[516171.666613014,5277287.460604421],[516175.3468391322,5277287.359687601],[516175.34251651354,5277288.915632791],[516171.73739171476,5277289.016758203]]]},"properties":{"ID_SOURCE":"w144656691","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":197}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.0922110434,5277160.964582702],[515678.60143281147,5277158.301292876],[515681.30091459793,5277159.8645186275],[515679.7916919888,5277162.52780776],[515677.0922110434,5277160.964582702]]]},"properties":{"ID_SOURCE":"w144656694","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":198}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516242.9639708947,5277466.371902897],[516243.1163374771,5277465.594349124],[516245.06795668264,5277465.933213834],[516244.99068789167,5277466.7109771],[516242.9639708947,5277466.371902897]]]},"properties":{"ID_SOURCE":"w144656696","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":199}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516245.21105702827,5277218.158507204],[516253.24875224684,5277217.514099691],[516253.39306017815,5277219.626158632],[516245.4301589913,5277220.381914404],[516245.21105702827,5277218.158507204]]]},"properties":{"ID_SOURCE":"w144656699","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":200}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516192.2792790067,5277463.896781837],[516194.834468582,5277463.237049875],[516195.72637068876,5277466.573725869],[516193.24628050835,5277467.233666315],[516192.2792790067,5277463.896781837]]]},"properties":{"ID_SOURCE":"w144656701","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":201}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515752.72014009353,5277716.200788726],[515750.6913774061,5277716.639858771],[515750.1729301626,5277713.9711000845],[515752.20139301574,5277713.64316888],[515752.72014009353,5277716.200788726]]]},"properties":{"ID_SOURCE":"w144656702","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":202}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516055.3983923528,5277291.806701792],[516054.95453271613,5277289.360402503],[516058.41098688316,5277288.703095809],[516058.85484512144,5277291.149395361],[516055.3983923528,5277291.806701792]]]},"properties":{"ID_SOURCE":"w144656709","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":203}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516200.34935927804,5277478.478550172],[516199.4577709302,5277475.030734424],[516201.5620595149,5277474.480890671],[516202.52905389847,5277477.817776764],[516200.34935927804,5277478.478550172]]]},"properties":{"ID_SOURCE":"w144656710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":204}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.0392120289,5277534.65327114],[516180.8199693788,5277533.88302009],[516181.48935706494,5277536.218817265],[516178.9320390405,5277537.656527983],[516178.0392120289,5277534.65327114]]]},"properties":{"ID_SOURCE":"w144656715","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":205}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516080.2476007529,5276968.791986335],[516073.5583950943,5276970.551753559],[516072.740835792,5276967.437584296],[516079.43004476844,5276965.677816137],[516080.2476007529,5276968.791986335]]]},"properties":{"ID_SOURCE":"w144656716","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":206}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516198.07543629454,5277459.0227523185],[516200.0295342217,5277458.472490146],[516200.8472637877,5277461.475541027],[516198.81837790867,5277461.914455007],[516198.07543629454,5277459.0227523185]]]},"properties":{"ID_SOURCE":"w144656717","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":207}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515450.97195147746,5277750.178866365],[515457.0675789984,5277745.304896238],[515458.5644505246,5277747.198247654],[515452.46852871065,5277752.183355256],[515450.97195147746,5277750.178866365]]]},"properties":{"ID_SOURCE":"w144656721","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":208}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516122.16542945703,5276965.462562196],[516111.8684242388,5276968.212555264],[516109.26467246335,5276959.203032738],[516113.9170602047,5276957.982254326],[516119.7119015696,5276956.453450891],[516122.16542945703,5276965.462562196]]]},"properties":{"ID_SOURCE":"w144656725","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":209}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.42212171823,5277056.419905494],[516211.35962335014,5277057.400496291],[516210.7686979398,5277053.842378719],[516218.1316140433,5277052.862623926],[516218.42212171823,5277056.419905494]]]},"properties":{"ID_SOURCE":"w144656727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":210}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515493.8139863442,5277369.083275847],[515495.38515551906,5277371.310252163],[515492.819657478,5277373.037204971],[515489.29117620137,5277375.4062074805],[515487.6449065924,5277373.179033028],[515493.8139863442,5277369.083275847]]]},"properties":{"ID_SOURCE":"w144656728","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":211}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515421.55584393104,5277713.869290363],[515410.2548447406,5277727.7318401765],[515401.26347993646,5277720.15053954],[515412.1884091032,5277706.5092564495],[515421.55584393104,5277713.869290363]]]},"properties":{"ID_SOURCE":"w144656729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":212}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516060.14811985055,5277203.463674867],[516060.1508788112,5277202.463424512],[516063.0053470196,5277202.249019059],[516063.0779956124,5277203.138337671],[516061.28251939773,5277203.33343623],[516060.14811985055,5277203.463674867]]]},"properties":{"ID_SOURCE":"w144656731","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":213}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516206.9540631841,5277641.761372643],[516206.796136775,5277644.539429627],[516205.6700099057,5277644.425154909],[516205.9030315669,5277641.647306936],[516206.9540631841,5277641.761372643]]]},"properties":{"ID_SOURCE":"w144656745","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":214}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516198.0961671327,5277375.990246944],[516197.85374354897,5277379.4460208295],[516196.0742024167,5277379.329930468],[516196.1615108039,5277377.640848109],[516196.2790444238,5277375.885165948],[516198.0961671327,5277375.990246944]]]},"properties":{"ID_SOURCE":"w144656750","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":215}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516115.02794932824,5277074.915455718],[516112.56984478486,5277067.573429348],[516120.8398110334,5277064.484406346],[516123.5986267878,5277071.716129139],[516119.8921962164,5277073.095113974],[516115.02794932824,5277074.915455718]]]},"properties":{"ID_SOURCE":"w144656755","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":216}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515420.6217981646,5277272.641951087],[515426.3217819973,5277275.546683132],[515424.5859324348,5277278.7651363835],[515418.81114474114,5277275.7490681885],[515420.6217981646,5277272.641951087]]]},"properties":{"ID_SOURCE":"w144656756","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":217}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516184.16210360033,5277115.006377013],[516183.86972478736,5277112.1159303365],[516185.0716755736,5277112.00813144],[516185.2179265107,5277113.431127026],[516185.36405379814,5277114.898578179],[516184.16210360033,5277115.006377013]]]},"properties":{"ID_SOURCE":"w144656757","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":218}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515654.06666222855,5277065.65589352],[515658.3466480199,5277066.000820594],[515657.4041681019,5277081.335566581],[515653.0455053021,5277082.324105205],[515654.06666222855,5277065.65589352]]]},"properties":{"ID_SOURCE":"w144656759","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":219}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515606.0010994042,5277205.451778047],[515607.9653545673,5277201.122593612],[515610.89073546015,5277202.464112923],[515608.85137718293,5277206.793095051],[515606.0010994042,5277205.451778047]]]},"properties":{"ID_SOURCE":"w144656761","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":220}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515724.6652056351,5277204.326223015],[515726.55564886157,5277199.552319853],[515729.63180691627,5277200.672026708],[515727.6659599146,5277205.55686495],[515724.6652056351,5277204.326223015]]]},"properties":{"ID_SOURCE":"w144656766","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":221}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516154.03330959525,5277308.972775783],[516154.1016258591,5277311.418040961],[516150.57161546877,5277311.519387816],[516150.5029894372,5277309.185261626],[516152.4258904713,5277309.068342061],[516154.03330959525,5277308.972775783]]]},"properties":{"ID_SOURCE":"w144656768","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":222}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.4739445069,5277160.16337086],[516159.7024049836,5277160.505749337],[516159.23359514034,5277167.061695064],[516155.9300363666,5277166.719108451],[516156.4739445069,5277160.16337086]]]},"properties":{"ID_SOURCE":"w144656771","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":223}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515410.2548447406,5277727.7318401765],[515421.55584393104,5277713.869290363],[515424.4032638055,5277716.2107698135],[515418.2029460424,5277723.751851971],[515413.1025565631,5277729.962175126],[515410.2548447406,5277727.7318401765]]]},"properties":{"ID_SOURCE":"w144656772","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":224}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.8026481104,5277493.194674936],[516178.43595841335,5277499.9787434535],[516177.00817732915,5277500.3081955565],[516176.33998791483,5277497.538957024],[516175.374865461,5277493.524127441],[516176.8026481104,5277493.194674936]]]},"properties":{"ID_SOURCE":"w144656781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":225}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516190.5417107792,5276900.413251257],[516180.2436314287,5276903.496540096],[516178.3854517855,5276896.489574071],[516188.4579172133,5276893.516794438],[516189.34351463977,5276896.453345428],[516190.5417107792,5276900.413251257]]]},"properties":{"ID_SOURCE":"w144656784","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":226}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516143.09355324064,5277029.092478339],[516140.01183764497,5277029.973053526],[516139.3408333073,5277028.192957636],[516142.2732666249,5277026.978548995],[516143.09355324064,5277029.092478339]]]},"properties":{"ID_SOURCE":"w144656785","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":227}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515388.85539747885,5277755.1267650705],[515391.86592790904,5277752.578508425],[515397.93063707656,5277759.374074712],[515396.3500425687,5277760.736913904],[515394.84471935075,5277762.03326869],[515388.85539747885,5277755.1267650705]]]},"properties":{"ID_SOURCE":"w144656790","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":228}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516229.0100771546,5277237.562791944],[516228.79096962366,5277235.339385309],[516235.6267127137,5277234.80274335],[516235.77071665035,5277237.025940829],[516229.0100771546,5277237.562791944]]]},"properties":{"ID_SOURCE":"w144656792","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":229}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.9210161022,5277008.025637972],[516122.725049703,5277007.474934059],[516124.3647188268,5277012.036203874],[516122.41017095867,5277012.697630278],[516120.9210161022,5277008.025637972]]]},"properties":{"ID_SOURCE":"w144656795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":230}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516278.3875563938,5277394.007666649],[516278.99549544073,5277391.45315038],[516281.3213894004,5277392.237632896],[516280.6386612165,5277394.680799966],[516278.3875563938,5277394.007666649]]]},"properties":{"ID_SOURCE":"w144656801","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":231}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515536.7157228817,5277727.512268161],[515536.49281174457,5277726.622554728],[515538.89702781854,5277726.18441227],[515539.0448439425,5277727.073925354],[515537.8802833684,5277727.29309664],[515536.7157228817,5277727.512268161]]]},"properties":{"ID_SOURCE":"w144656803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":232}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516027.03892089875,5277335.962205159],[516027.9281855627,5277340.299105084],[516017.1828180758,5277342.492330433],[516016.2938514905,5277338.044293198],[516027.03892089875,5277335.962205159]]]},"properties":{"ID_SOURCE":"w144656807","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":233}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516079.9838131099,5277281.8719676435],[516079.0210120282,5277276.9791579945],[516082.96596723807,5277276.200961122],[516083.86111334787,5277281.115812503],[516079.9838131099,5277281.8719676435]]]},"properties":{"ID_SOURCE":"w144656808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":234}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515975.6390140786,5277525.269856193],[515970.6795447856,5277526.367647569],[515970.3132044765,5277523.032447991],[515975.04738456296,5277521.934038116],[515975.6390140786,5277525.269856193]]]},"properties":{"ID_SOURCE":"w144656810","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":235}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515409.718441617,5277476.443371884],[515415.604527458,5277477.059108801],[515422.857040184,5277477.811838961],[515422.01006135845,5277485.700518481],[515408.9462840622,5277484.443390998],[515409.718441617,5277476.443371884]]]},"properties":{"ID_SOURCE":"w144656815","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":236}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.1062026985,5277317.016680703],[516173.3170494638,5277315.13899942],[516174.883960576,5277318.810965766],[516170.59801601997,5277320.688437339],[516169.1062026985,5277317.016680703]]]},"properties":{"ID_SOURCE":"w144656818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":237}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516267.90915904514,5277166.25291395],[516264.90228811867,5277167.244771853],[516264.67977646017,5277166.24389221],[516267.5358229853,5277165.473892379],[516267.90915904514,5277166.25291395]]]},"properties":{"ID_SOURCE":"w144656822","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":238}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515264.771619884,5277679.558442187],[515258.3841525328,5277681.208794095],[515256.7489501323,5277674.758401167],[515263.13642407325,5277673.108047467],[515264.771619884,5277679.558442187]]]},"properties":{"ID_SOURCE":"w144656824","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":239}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.32569932606,5277450.038484958],[516081.2025772328,5277438.804736106],[516088.4926500459,5277436.824359802],[516089.84534360515,5277441.92941556],[516091.4655626259,5277448.057697434],[516084.32569932606,5277450.038484958]]]},"properties":{"ID_SOURCE":"w144656833","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":240}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516153.1521906211,5277166.377982125],[516153.69547899725,5277160.044522125],[516156.4739445069,5277160.16337086],[516155.9300363666,5277166.719108451],[516153.1521906211,5277166.377982125]]]},"properties":{"ID_SOURCE":"w144656836","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":241}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516158.4002941879,5277548.491211817],[516159.60801564367,5277546.2717670305],[516163.3659519705,5277545.1708005285],[516160.79969569447,5277549.831549852],[516158.4002941879,5277548.491211817]]]},"properties":{"ID_SOURCE":"w144656837","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":242}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515211.373538131,5277710.204393273],[515207.6135686033,5277712.195086109],[515206.56746622466,5277710.191837404],[515210.3274366807,5277708.201143899],[515211.373538131,5277710.204393273]]]},"properties":{"ID_SOURCE":"w144656844","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":243}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516018.51823432016,5277261.097224239],[516018.72570320225,5277262.1202810025],[516019.16277342994,5277264.310937165],[516017.7198625913,5277264.662614785],[516017.09809752007,5277261.3600528445],[516018.51823432016,5277261.097224239]]]},"properties":{"ID_SOURCE":"w144656846","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":244}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515334.8984151101,5277211.066423092],[515340.69474327174,5277211.648504385],[515340.4325469638,5277214.248482745],[515334.6361920967,5277213.677515597],[515334.8984151101,5277211.066423092]]]},"properties":{"ID_SOURCE":"w144656848","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":245}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515340.69474327174,5277211.648504385],[515334.8984151101,5277211.066423092],[515335.4658278063,5277203.788266746],[515341.2775348417,5277204.237021434],[515340.69474327174,5277211.648504385]]]},"properties":{"ID_SOURCE":"w144656850","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":246}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516080.79214503214,5276934.78473223],[516073.45638471626,5276936.764993649],[516066.9624170493,5276938.525307456],[516064.88125088613,5276930.628644822],[516078.63589121884,5276926.88785728],[516080.79214503214,5276934.78473223]]]},"properties":{"ID_SOURCE":"w144656855","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":247}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515377.4667514132,5277347.324852382],[515374.990813858,5277346.429195726],[515375.6711124834,5277344.763896226],[515378.07165751804,5277345.770493768],[515377.4667514132,5277347.324852382]]]},"properties":{"ID_SOURCE":"w144656858","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":248}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515358.2451798635,5277602.006436774],[515354.7048094554,5277606.109269943],[515352.3072988757,5277603.991291347],[515355.92276516516,5277599.888654811],[515358.2451798635,5277602.006436774]]]},"properties":{"ID_SOURCE":"w144656859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":249}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516289.7734567484,5277162.868708632],[516286.61668726325,5277163.748996193],[516286.39386832976,5277162.859254633],[516289.5506382623,5277161.978966955],[516289.7734567484,5277162.868708632]]]},"properties":{"ID_SOURCE":"w144656867","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":250}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515873.0424989721,5277700.756869482],[515872.38633978384,5277693.530990695],[515878.8466409956,5277692.7706290325],[515879.35169276665,5277700.329515943],[515873.0424989721,5277700.756869482]]]},"properties":{"ID_SOURCE":"w144656869","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":251}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516119.57489226875,5277195.848108742],[516119.1022699037,5277190.234241546],[516118.6296465832,5277184.620374436],[516126.51686197636,5277184.08651506],[516127.3869910128,5277195.314042651],[516119.57489226875,5277195.848108742]]]},"properties":{"ID_SOURCE":"w144656870","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":252}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515635.9798770052,5277228.538131948],[515635.7560659738,5277227.9818322295],[515640.94252054597,5277226.328666191],[515641.166331147,5277226.884966107],[515635.9798770052,5277228.538131948]]]},"properties":{"ID_SOURCE":"w144656873","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":253}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.5280390105,5277486.706177973],[516195.7411812089,5277488.246034894],[516194.76055632636,5277484.408982708],[516200.4946327024,5277482.94677582],[516201.5280390105,5277486.706177973]]]},"properties":{"ID_SOURCE":"w144656877","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":254}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515703.83087862644,5276909.527471614],[515702.0268550217,5276910.078305198],[515701.73033005575,5276908.632689671],[515703.4589491285,5276908.192792335],[515703.83087862644,5276909.527471614]]]},"properties":{"ID_SOURCE":"w144656880","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":255}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515326.47272325045,5277518.901299633],[515330.0914427449,5277513.576118645],[515331.06595313427,5277514.245523308],[515327.3721358226,5277519.5705059925],[515326.47272325045,5277518.901299633]]]},"properties":{"ID_SOURCE":"w144656886","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":256}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515415.3844257619,5277693.481019908],[515418.6047396258,5277693.967449148],[515418.299355393,5277695.8560169395],[515415.0717390412,5277695.291770668],[515415.3844257619,5277693.481019908]]]},"properties":{"ID_SOURCE":"w144656889","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":257}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515628.6153281381,5277062.36447394],[515627.95669966633,5277055.916603156],[515654.3257352266,5277053.097802781],[515655.0597369426,5277059.4347396],[515628.6153281381,5277062.36447394]]]},"properties":{"ID_SOURCE":"w144656891","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":258}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515249.057203749,5277686.96362463],[515252.5948300221,5277683.860978131],[515256.1138201469,5277687.871231049],[515252.57619440934,5277690.973875428],[515249.057203749,5277686.96362463]]]},"properties":{"ID_SOURCE":"w144656892","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":259}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515240.2672219499,5277631.037299222],[515242.824847244,5277629.376898583],[515244.02201672527,5277631.04712978],[515241.38871401723,5277632.929611316],[515240.2672219499,5277631.037299222]]]},"properties":{"ID_SOURCE":"w144656896","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":260}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516175.0420315912,5277045.629822663],[516171.9099098308,5277037.619060442],[516183.940073611,5277032.762335213],[516187.0712546447,5277041.106520573],[516180.5529222829,5277043.555706339],[516175.0420315912,5277045.629822663]]]},"properties":{"ID_SOURCE":"w144656902","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":261}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.53789942345,5277290.211744121],[516081.0201781151,5277287.320679627],[516084.4015361494,5277286.663180934],[516084.9189488103,5277289.665384672],[516081.53789942345,5277290.211744121]]]},"properties":{"ID_SOURCE":"w144656906","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":262}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.89142670005,5277504.371655525],[516040.2437950441,5277504.153101644],[516040.91109906643,5277507.266855284],[516039.48332772,5277507.596341097],[516038.89142670005,5277504.371655525]]]},"properties":{"ID_SOURCE":"w144656908","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":263}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516126.1582607928,5277286.445264595],[516126.0862386048,5277285.333667167],[516128.11394887563,5277285.339283604],[516128.1111781663,5277286.339534082],[516127.0220381361,5277286.40320113],[516126.1582607928,5277286.445264595]]]},"properties":{"ID_SOURCE":"w144656910","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":264}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515507.7762362284,5277371.45438292],[515504.77996129077,5277368.556769463],[515509.5999344231,5277363.457178659],[515512.6716050524,5277366.243855704],[515507.7762362284,5277371.45438292]]]},"properties":{"ID_SOURCE":"w144656913","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":265}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516201.4220629415,5277211.723757573],[516199.2435058973,5277211.939975632],[516198.5898559019,5277203.936092368],[516200.76810667804,5277203.831012989],[516201.4220629415,5277211.723757573]]]},"properties":{"ID_SOURCE":"w144656915","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":266}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515679.0248110042,5277168.416148415],[515675.50824788556,5277166.2839112645],[515677.613136913,5277162.744220973],[515681.06243892707,5277164.754024528],[515679.0248110042,5277168.416148415]]]},"properties":{"ID_SOURCE":"w144656919","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":267}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516029.78717286524,5277608.873594352],[516031.25491963245,5277615.834990004],[516031.60331127886,5277617.491933038],[516031.8925134156,5277618.826407556],[516029.2629267525,5277619.263726226],[516028.7579649299,5277617.195134832],[516028.2097197617,5277614.481813237],[516027.1576430682,5277609.288686176],[516029.78717286524,5277608.873594352]]]},"properties":{"ID_SOURCE":"w144656921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":268}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516137.6231701449,5277241.465414279],[516137.6284067186,5277239.5760524],[516138.4545173987,5277239.578342115],[516138.4893878465,5277240.5453549195],[516138.52468955383,5277241.356773221],[516137.6231701449,5277241.465414279]]]},"properties":{"ID_SOURCE":"w144656926","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":269}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515651.3865583158,5277755.270970555],[515661.59848676214,5277755.631854135],[515661.52159849455,5277756.298486281],[515651.3844667065,5277756.048943755],[515651.3865583158,5277755.270970555]]]},"properties":{"ID_SOURCE":"w144656927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":270}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515591.37307701947,5276918.6721511865],[515581.3164290339,5276915.866741029],[515582.075807497,5276912.756862035],[515592.2078632314,5276915.451335704],[515591.37307701947,5276918.6721511865]]]},"properties":{"ID_SOURCE":"w144656938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":271}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.4396625941,5277202.757671189],[516216.6182236637,5277202.541458809],[516217.2718490575,5277210.545344134],[516215.01849911816,5277210.650208191],[516214.4396625941,5277202.757671189]]]},"properties":{"ID_SOURCE":"w144656942","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":272}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515717.2706770301,5276952.797072691],[515725.2924476429,5276949.817958499],[515725.8890531379,5276951.386639428],[515717.9126771475,5276954.243621663],[515717.2706770301,5276952.797072691]]]},"properties":{"ID_SOURCE":"w144656943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":273}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515983.29154900875,5277569.0132679045],[515980.1783648021,5277554.111984753],[515987.91822974005,5277552.354997333],[515989.91422285483,5277561.140525507],[515991.3314768188,5277567.368248702],[515983.29154900875,5277569.0132679045]]]},"properties":{"ID_SOURCE":"w144656944","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":274}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515397.26492978295,5277216.010020634],[515397.6166295872,5277225.013267567],[515388.2873647149,5277225.633214128],[515383.1194674257,5277225.975205271],[515382.61754279776,5277216.971562419],[515397.26492978295,5277216.010020634]]]},"properties":{"ID_SOURCE":"w144656949","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":275}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515345.0001949744,5277327.678601569],[515344.6930588767,5277330.234005865],[515343.4917553043,5277330.119700224],[515343.7234981804,5277327.67523691],[515345.0001949744,5277327.678601569]]]},"properties":{"ID_SOURCE":"w144656950","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":276}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515216.8103350177,5277325.230507308],[515212.64510746114,5277309.771202513],[515224.3697223375,5277306.356517298],[515226.69194700744,5277314.353535431],[515228.76109304396,5277321.483002875],[515216.8103350177,5277325.230507308]]]},"properties":{"ID_SOURCE":"w144656951","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sustenance","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":277}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516086.14205041673,5277010.0411100555],[516083.7614413669,5277001.810193082],[516087.3170555945,5277000.664162003],[516093.00753108464,5276998.834966499],[516095.61374744656,5277006.955371151],[516086.14205041673,5277010.0411100555]]]},"properties":{"ID_SOURCE":"w144656978","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":278}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516085.40056052845,5276925.01716448],[516096.8248196143,5276922.047961001],[516098.902873031,5276931.056023843],[516093.7091586118,5276932.47536966],[516087.6285332721,5276934.136777116],[516085.40056052845,5276925.01716448]]]},"properties":{"ID_SOURCE":"w144656991","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":279}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515702.0268550217,5276910.078305198],[515701.349409775,5276910.632176937],[515700.1459286503,5276911.295770124],[515698.9424478006,5276911.95936356],[515698.04058637196,5276912.179211601],[515697.66925493436,5276910.62225493],[515696.69228815037,5276910.841900713],[515692.2580864517,5276911.94134644],[515693.0749584345,5276915.38887817],[515697.50915767037,5276914.289433063],[515698.1788121405,5276916.625171787],[515696.9765309793,5276916.844210107],[515697.79399867874,5276920.069464769],[515699.8233340462,5276919.519237352],[515700.86401724967,5276923.523072128],[515693.5764326702,5276924.392544492],[515689.51956361765,5276924.826171091],[515687.73650523246,5276917.59728734],[515689.61533080396,5276917.157790573],[515689.22146590124,5276915.600773726],[515688.7978581596,5276913.932537084],[515684.8896956971,5276914.922266028],[515683.92350645305,5276911.140914236],[515683.6230856792,5276911.140105087],[515683.10213854734,5276909.360467031],[515683.4043554061,5276908.69444287],[515682.9579145836,5276907.137284876],[515683.7164504838,5276904.360835692],[515686.4974416249,5276903.590348782],[515686.86877650884,5276905.147304716],[515691.22757756745,5276904.158791383],[515690.93134908564,5276902.602037551],[515694.76441553136,5276901.612110232],[515695.13574833795,5276903.169066691],[515698.36737342674,5276902.399800066],[515697.69861616485,5276899.73064474],[515700.40420638944,5276899.071100884],[515704.61610070505,5276896.859664905],[515707.5885377351,5276908.648489063],[515703.83087862644,5276909.527471614],[515703.4589491285,5276908.192792335],[515701.73033005575,5276908.632689671],[515702.0268550217,5276910.078305198]]]},"properties":{"ID_SOURCE":"w144656992","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":280}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.699084173,5277598.649586543],[516203.551262005,5277596.229013786],[516203.8480973142,5277594.807249794],[516203.18774398684,5277594.627588104],[516203.4558089512,5277592.750070615],[516204.12398146384,5277592.818614241],[516204.3688991925,5277591.163312079],[516203.78361097525,5277590.994973247],[516204.036316729,5277589.239666884],[516204.6966706438,5277589.419328669],[516204.8587041242,5277587.863821705],[516207.6965775715,5277588.149571145],[516208.7668960116,5277581.339677839],[516211.4467911512,5277581.725015128],[516212.01735018933,5277579.092589374],[516210.83144293685,5277578.867007411],[516211.37320121145,5277575.789941993],[516212.4167659108,5277575.892873835],[516212.9275271574,5277573.160255796],[516216.8251812537,5277570.425957035],[516226.11837440165,5277571.807756881],[516225.39330957155,5277575.9845946375],[516226.8873298916,5277576.133240444],[516226.6424051558,5277577.788541633],[516227.24302315526,5277577.845785632],[516226.946181296,5277579.267548406],[516226.3377440205,5277579.321422501],[516226.17573555297,5277580.865814958],[516226.7763532389,5277580.92305891],[516226.45636315225,5277582.567036911],[516225.9461402705,5277582.410019055],[516225.73218391265,5277583.731987038],[516227.6535089845,5277584.148559639],[516227.02634873264,5277588.225644301],[516226.53687199875,5277591.402879947],[516229.72695235605,5277591.956357481],[516228.9922399852,5277596.900033059],[516230.6285661239,5277597.182444382],[516229.56821307994,5277603.103242854],[516221.48412119836,5277601.724806008],[516222.45407188125,5277595.903780086],[516219.2639620566,5277595.36142043],[516218.699084173,5277598.649586543]]]},"properties":{"ID_SOURCE":"w144656996","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":281}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515599.13911336544,5277187.762173167],[515601.2428521915,5277187.4343904555],[515603.4199059017,5277187.7736433325],[515605.37105876487,5277188.334571031],[515609.04656886705,5277190.011519047],[515609.49956202,5277189.123615611],[515609.801756168,5277188.457587389],[515613.62627600826,5277190.579496705],[515613.02188712044,5277191.911552777],[515616.7721962397,5277193.699846003],[515612.9229444016,5277200.802465889],[515611.9478174612,5277200.355292281],[515610.89073546015,5277202.464112923],[515607.9653545673,5277201.122593612],[515606.0010994042,5277205.451778047],[515604.201048699,5277204.557835849],[515604.80543427286,5277203.225778843],[515603.455693478,5277202.444183488],[515605.79634882766,5277197.782587856],[515605.07623828854,5277197.4583526235],[515604.29610603687,5277197.111728673],[515603.0143174581,5277198.997669058],[515601.7393791256,5277198.327414294],[515601.211584179,5277199.103978179],[515596.48644282453,5277196.75738502],[515597.1659289502,5277195.425528411],[515597.8412472183,5277195.649616916],[515598.74693162873,5277193.984947264],[515593.57236625947,5277191.192593606],[515596.131773806,5277188.976654041],[515599.13911336544,5277187.762173167]]]},"properties":{"ID_SOURCE":"w144657001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":282}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515746.43986055435,5277000.632609263],[515746.4582743069,5277002.155273064],[515749.4671800388,5277003.185895923],[515751.67094437784,5277002.0026620645],[515758.25233387324,5277003.954300183],[515757.09205486666,5277008.085557518],[515756.0638525606,5277007.816039931],[515755.2066677793,5277010.958974372],[515755.8220386712,5277011.138462976],[515754.5869596307,5277015.158378731],[515748.4255321196,5277013.441273859],[515747.5144345591,5277011.5272067785],[515746.0553752248,5277012.279011091],[515745.10020346957,5277012.776556925],[515745.7345894159,5277014.256430491],[515739.8682864277,5277017.2746844115],[515739.2479888331,5277016.139382667],[515738.9311708494,5277016.649768986],[515736.607156988,5277015.087531826],[515734.87256053515,5277017.750197304],[515733.7481053548,5277016.969180883],[515731.03325814754,5277021.074015131],[515728.6344403663,5277019.400439346],[515734.7121626036,5277010.403429061],[515733.1275869896,5277007.576198813],[515739.4460221784,5277004.003461682],[515741.20970425516,5277004.475015995],[515743.05260660785,5277003.424171018],[515743.1984893305,5277002.246484525],[515746.43986055435,5277000.632609263]]]},"properties":{"ID_SOURCE":"w144657008","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":283}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515526.61548757093,5277234.691571468],[515527.0681683187,5277233.914800531],[515528.1946837094,5277233.917804766],[515529.3209026787,5277234.0319481585],[515529.76943381276,5277234.811122571],[515529.9175608069,5277235.589495764],[515529.53968437563,5277236.477605728],[515530.3646095295,5277236.924364918],[515528.2528898228,5277240.252924579],[515529.30222808843,5277241.033701321],[515526.88832863804,5277245.028293928],[515525.6887889894,5277244.247117103],[515523.9546530818,5277246.798707066],[515522.08009443537,5277245.682312082],[515521.52177038067,5277246.647739329],[515520.7974543655,5277247.901687449],[515522.67171624163,5277249.129220968],[515521.2385788222,5277251.459334755],[515520.18894512486,5277250.789698396],[515518.60531133076,5277253.230551403],[515515.0812017091,5277251.109504756],[515514.25183536997,5277252.3298318405],[515512.5978414033,5277252.992263302],[515511.096714037,5277252.65484489],[515509.8983580761,5277251.429115541],[515510.0521123448,5277250.095848353],[515510.73098038044,5277248.986259479],[515511.5573856083,5277248.877321309],[515512.15996884386,5277248.212088297],[515511.1857304468,5277247.43151471],[515511.78920205333,5277246.43286484],[515510.5145598111,5277245.651491063],[515511.79749252764,5277243.320974505],[515510.7487444801,5277242.317923037],[515510.676604231,5277241.206333573],[515510.90545987873,5277239.873266494],[515511.5077478787,5277239.319172361],[515512.5600495702,5277238.98855668],[515516.61461288226,5277239.332779668],[515517.2934834113,5277238.223191575],[515516.47211157077,5277236.442766968],[515517.15305573377,5277234.555206291],[515518.4312541031,5277234.0029142415],[515519.556584531,5277234.450472558],[515522.27148012305,5277230.234399948],[515526.39522274403,5277232.8016087115],[515525.64095247147,5277234.022134418],[515526.61548757093,5277234.691571468]]]},"properties":{"ID_SOURCE":"w144657022","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":284}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515283.0537452079,5277260.420621023],[515283.4728251976,5277255.264838489],[515285.4325461329,5277255.42557853],[515288.87896977656,5277255.7013626145],[515288.45237495855,5277260.857125053],[515283.0537452079,5277260.420621023]]]},"properties":{"ID_SOURCE":"w144657044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":285}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516283.3405240204,5276992.473442348],[516284.16791303473,5276992.031197094],[516284.21580388106,5276991.019959225],[516284.2479901286,5276990.253184904],[516283.8724691714,5276990.252134745],[516283.9584514333,5276986.362483672],[516291.5433579086,5276986.605979458],[516291.766183017,5276987.495720955],[516294.92242661346,5276986.837713982],[516294.6992909543,5276986.059111257],[516296.87855826895,5276985.620651008],[516297.3232736911,5276987.733551083],[516301.6070147099,5276986.745284223],[516302.57901358546,5276988.303962097],[516303.8392926251,5276994.197897947],[516293.76911794767,5276996.392505978],[516293.6223305817,5276995.169557879],[516286.1876436001,5276994.926479473],[516286.0997948655,5276999.48296391],[516280.456424407,5277003.245934548],[516276.41758273804,5276997.23309663],[516283.3405240204,5276992.473442348]]]},"properties":{"ID_SOURCE":"w144657048","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":286}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515674.27185167844,5277176.405412347],[515667.4483563139,5277172.38601733],[515672.20160862996,5277164.285608966],[515675.50824788556,5277166.2839112645],[515679.0248110042,5277168.416148415],[515674.27185167844,5277176.405412347]]]},"properties":{"ID_SOURCE":"w144657052","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":287}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516195.7894600067,5277011.901007267],[516203.89975437475,5277012.256990142],[516203.5832566728,5277018.0353766475],[516203.5050601455,5277019.146556597],[516195.16946389485,5277018.789947586],[516195.7894600067,5277011.901007267]]]},"properties":{"ID_SOURCE":"w144657056","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":288}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516153.6901375674,5277053.6837513065],[516151.43518681993,5277054.344334585],[516150.5410365178,5277051.78564005],[516151.66974540404,5277051.010792526],[516152.04402925837,5277051.456389772],[516153.6901375674,5277053.6837513065]]]},"properties":{"ID_SOURCE":"w144657058","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":289}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.7220359426,5277554.968756755],[516175.3453489611,5277558.207433205],[516172.1302307424,5277563.955545414],[516166.52218778746,5277560.628002547],[516169.7220359426,5277554.968756755]]]},"properties":{"ID_SOURCE":"w144657061","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":290}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516144.62837362266,5276990.19782182],[516148.3103280957,5276989.541193078],[516148.82681077166,5276992.8768177815],[516142.1388439816,5276994.191950709],[516141.6226656873,5276990.745187712],[516144.62837362266,5276990.19782182]]]},"properties":{"ID_SOURCE":"w144657063","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":291}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515943.91698706447,5277522.782276181],[515929.6363354237,5277524.443624138],[515925.2116761932,5277524.9538765075],[515924.5516083049,5277519.17280054],[515928.14992719545,5277518.760312667],[515943.256937478,5277517.001198069],[515943.91698706447,5277522.782276181]]]},"properties":{"ID_SOURCE":"w144657064","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":292}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516230.4282191401,5277545.135091832],[516230.6696218743,5277539.356492635],[516238.47879102314,5277539.711688226],[516238.1673133604,5277546.379210505],[516238.0794369603,5277548.268342879],[516230.34537626826,5277547.913357144],[516230.4282191401,5277545.135091832]]]},"properties":{"ID_SOURCE":"w144657068","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":293}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516266.6339667567,5277380.749177109],[516273.8397577512,5277382.102991664],[516274.29004191514,5277382.215390109],[516272.99347616336,5277389.324714977],[516265.3383415093,5277387.525086767],[516266.6339667567,5277380.749177109]]]},"properties":{"ID_SOURCE":"w144657069","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":294}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516172.40766282106,5276993.609101196],[516166.47042412247,5276995.037431046],[516165.5024011093,5276992.033970382],[516164.5386964057,5276987.474565439],[516170.9268764152,5276985.936346146],[516172.40766282106,5276993.609101196]]]},"properties":{"ID_SOURCE":"w144657073","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":295}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516212.3293766663,5277086.744094369],[516208.2747457679,5277086.399387147],[516208.5832012584,5277083.510611823],[516208.8922757992,5277080.3995587155],[516212.94691084273,5277080.744266353],[516212.3293766663,5277086.744094369]]]},"properties":{"ID_SOURCE":"w144657076","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":296}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515664.21071412123,5277231.281366474],[515664.70365512796,5277229.504456795],[515665.04489915195,5277228.282837731],[515668.1216517962,5277229.180234272],[515667.8939559897,5277230.068739487],[515667.2874653036,5277232.178762584],[515664.21071412123,5277231.281366474]]]},"properties":{"ID_SOURCE":"w144657079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":297}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515658.5530349462,5277463.992808077],[515658.1715665703,5277466.214577757],[515657.7909951666,5277468.102930531],[515651.8612402751,5277466.975588302],[515652.6983740826,5277462.865666991],[515658.5530349462,5277463.992808077]]]},"properties":{"ID_SOURCE":"w144657081","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":298}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.0420445465,5277581.302130545],[516085.9768740229,5277586.300480282],[516080.566549475,5277587.508072126],[516078.6281602426,5277582.390285643],[516079.23660642636,5277579.613470017],[516087.0420445465,5277581.302130545]]]},"properties":{"ID_SOURCE":"w144657089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":299}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.370649024,5276947.047104922],[516212.84101381036,5276956.934283065],[516204.05717542785,5276955.687295845],[516203.76696273533,5276952.018876707],[516203.9354190712,5276945.462100635],[516214.370649024,5276947.047104922]]]},"properties":{"ID_SOURCE":"w144657094","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":300}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516089.9070702359,5277359.808379536],[516096.29359338345,5277358.714634263],[516096.3686928165,5277358.714841885],[516097.0362914039,5277361.717462318],[516090.49957264255,5277362.810791678],[516089.9070702359,5277359.808379536]]]},"properties":{"ID_SOURCE":"w144657101","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":301}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516286.82573460776,5276909.106147936],[516286.8008095026,5276909.961854252],[516283.76693128824,5276909.82000178],[516283.7780159062,5276908.541925723],[516285.33257014997,5276908.59072901],[516286.90214541747,5276908.639574728],[516286.82573460776,5276909.106147936]]]},"properties":{"ID_SOURCE":"w144657103","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":302}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515680.4204444778,5277673.5946444925],[515680.7172336729,5277674.929121735],[515670.34779421473,5277677.235137045],[515667.9713649955,5277667.337296953],[515678.3408210902,5277665.031277407],[515680.4204444778,5277673.5946444925]]]},"properties":{"ID_SOURCE":"w144657105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":303}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516228.0297733412,5277058.447189608],[516223.0738838287,5277058.099960479],[516223.76684493787,5277051.989204195],[516227.2976335904,5277051.665623597],[516228.4241845499,5277051.66876323],[516228.0297733412,5277058.447189608]]]},"properties":{"ID_SOURCE":"w144657113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":304}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.4982159386,5277233.31764429],[515672.09512924997,5277231.747142175],[515672.24652796594,5277231.302990721],[515672.6259223258,5277229.859195294],[515678.0287113681,5277231.54083683],[515677.4982159386,5277233.31764429]]]},"properties":{"ID_SOURCE":"w144657118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":305}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516033.88091895904,5277551.258861849],[516031.2056926401,5277551.89610575],[516030.46931420936,5277552.04967387],[516029.6315818996,5277548.101903227],[516033.0581164208,5277547.344473774],[516033.88091895904,5277551.258861849]]]},"properties":{"ID_SOURCE":"w144657120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":306}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515342.840311375,5277491.826309444],[515352.8110131357,5277498.409839686],[515351.0738046111,5277502.184010683],[515348.8135527506,5277504.956545423],[515338.6926625497,5277498.3726262385],[515342.840311375,5277491.826309444]]]},"properties":{"ID_SOURCE":"w144657123","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":307}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516128.9665685445,5277221.5474064015],[516129.7948369568,5277220.771722366],[516129.79699213314,5277219.99374985],[516133.1765471786,5277220.003113034],[516133.2476450748,5277221.448127226],[516131.2122484743,5277221.498057716],[516128.9665685445,5277221.5474064015]]]},"properties":{"ID_SOURCE":"w144657124","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":308}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516169.2115954797,5277219.56960047],[516169.23790148745,5277220.914464951],[516168.32911509136,5277220.934169258],[516167.58555136836,5277220.954332486],[516167.57238274754,5277220.287457196],[516167.5592449819,5277219.609468016],[516169.2115954797,5277219.56960047]]]},"properties":{"ID_SOURCE":"w144657126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":309}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516229.78623630805,5277559.914902383],[516229.95254099194,5277554.136093679],[516229.9550196054,5277553.246981773],[516237.83957705577,5277553.491246925],[516237.5205910549,5277560.158748432],[516229.78623630805,5277559.914902383]]]},"properties":{"ID_SOURCE":"w144657130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":310}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515443.60208971,5277754.160343883],[515444.50499057706,5277753.495900327],[515447.12532948924,5277756.503627616],[515438.84697896766,5277763.261195913],[515436.2266388647,5277760.253472323],[515443.60208971,5277754.160343883]]]},"properties":{"ID_SOURCE":"w144657131","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":311}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516148.3103280957,5276989.541193078],[516144.62837362266,5276990.19782182],[516142.8591488171,5276978.189824463],[516151.57556838123,5276976.658038935],[516152.5885285189,5276982.417887461],[516153.6458091775,5276988.444594565],[516148.3103280957,5276989.541193078]]]},"properties":{"ID_SOURCE":"w144657132","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":312}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515613.15821110987,5277729.161598536],[515612.3640260484,5277728.481515704],[515611.210220932,5277727.489277104],[515613.01755993924,5277725.6047469685],[515614.2941696052,5277725.608170872],[515614.4383971142,5277727.831354179],[515613.15821110987,5277729.161598536]]]},"properties":{"ID_SOURCE":"w144657143","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":313}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515958.86318089085,5277576.948321517],[515958.10764515656,5277578.61334794],[515961.70832037943,5277580.06803655],[515959.89442498726,5277584.286377262],[515953.5188346576,5277581.490407072],[515953.2166211579,5277582.156417908],[515953.0664280636,5277582.1560063455],[515953.36864154786,5277581.489995503],[515952.09352273465,5277580.930802339],[515951.2619793799,5277582.929040874],[515942.33583904663,5277579.125836827],[515944.5273371282,5277574.13054608],[515935.30140052666,5277570.104252256],[515934.861467137,5277566.213154206],[515933.98099017976,5277558.653236264],[515933.17378283956,5277551.760358018],[515931.07046033116,5277551.976881745],[515931.07137269457,5277551.643464772],[515933.0995983805,5277551.426735524],[515932.2188126082,5277543.977957021],[515931.33802450966,5277536.52917875],[515930.0607650239,5277536.747963394],[515930.05985272257,5277537.081380355],[515929.7594642124,5277537.080558434],[515929.76068059163,5277536.636002482],[515929.0094051806,5277536.745086741],[515928.93491620757,5277536.522603296],[515929.68588755105,5277536.52465802],[515929.5399505457,5277534.96830124],[515929.84033916384,5277534.969123147],[515929.8397309714,5277535.191401124],[515930.96649236523,5277535.083344428],[515930.6004340153,5277531.637008369],[515938.2630864694,5277530.657722386],[515938.11654308863,5277529.323643373],[515944.65243691317,5277528.452421103],[515945.5322961044,5277536.234618294],[515947.00014332955,5277548.686298849],[515945.19720707496,5277548.903640285],[515945.5644732139,5277551.905421418],[515947.3674085554,5277551.688080092],[515947.4415921958,5277552.021702771],[515948.7625866074,5277563.250443766],[515948.9878769772,5277563.251060942],[515950.5655185629,5277563.033103435],[515950.41745641665,5277562.254718999],[515950.64274682524,5277562.255336242],[515950.7901999459,5277563.2559986655],[515948.98726805,5277563.473338929],[515949.0602335781,5277564.2515176],[515956.26099531417,5277567.383163734],[515961.96164366795,5277569.843866764],[515958.86318089085,5277576.948321517]]]},"properties":{"ID_SOURCE":"w144657147","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":314}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.8638352594,5277353.726982747],[516037.5679393721,5277355.062787],[516037.1832078955,5277352.961185077],[516035.28173944255,5277342.575490858],[516043.27641408925,5277341.11935535],[516044.0606489141,5277345.411512517],[516045.01510005124,5277350.615485243],[516044.31630685105,5277350.746927312],[516044.8638352594,5277353.726982747]]]},"properties":{"ID_SOURCE":"w144657149","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":315}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515610.9932120228,5277108.2179026585],[515605.7464519374,5277104.313948216],[515616.9775914281,5277089.117919431],[515615.5676254782,5277082.779174452],[515621.13001641014,5277081.015859031],[515622.0735373736,5277084.852710391],[515623.21023721836,5277089.468058244],[515617.3128670431,5277098.521238367],[515610.9932120228,5277108.2179026585]]]},"properties":{"ID_SOURCE":"w144657150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":316}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516273.8397577512,5277382.102991664],[516266.6339667567,5277380.749177109],[516261.9803025882,5277379.847058549],[516262.89422053733,5277375.292878489],[516264.79840187903,5277365.7401728695],[516276.80746198725,5277368.218809418],[516275.07251864433,5277376.327166594],[516273.8397577512,5277382.102991664]]]},"properties":{"ID_SOURCE":"w144657151","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":317}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515305.61087335896,5277598.75590897],[515307.959315171,5277590.982299484],[515320.04077155865,5277594.459412032],[515318.0926645799,5277601.344951896],[515317.08452708455,5277604.898772195],[515307.1651031153,5277607.428897583],[515309.5129590734,5277599.877566627],[515305.61087335896,5277598.75590897]]]},"properties":{"ID_SOURCE":"w144657155","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":318}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516057.48228195467,5277622.697915106],[516060.62111822865,5277614.60447859],[516068.9405058595,5277617.806034932],[516066.14958554803,5277625.000194404],[516062.698818698,5277623.668108265],[516060.40330277407,5277622.783770423],[516060.05534701806,5277623.694157287],[516057.48228195467,5277622.697915106]]]},"properties":{"ID_SOURCE":"w144657160","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":319}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9300363666,5277166.719108451],[516159.23359514034,5277167.061695064],[516159.07321293285,5277170.728862618],[516151.56549331703,5277169.818913578],[516151.950559973,5277166.3746486725],[516153.1521906211,5277166.377982125],[516155.9300363666,5277166.719108451]]]},"properties":{"ID_SOURCE":"w144657163","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":320}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.6565832165,5277633.823662392],[516050.12545618636,5277632.635758645],[516052.8109780422,5277633.698991601],[516049.70299767074,5277641.5035539195],[516041.6989747825,5277638.3251217725],[516044.338074014,5277631.708459409],[516046.8960568544,5277632.726882201],[516049.6565832165,5277633.823662392]]]},"properties":{"ID_SOURCE":"w144657167","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":321}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515670.344474007,5277240.41133021],[515669.9656790949,5277241.632847933],[515667.489441804,5277240.848205979],[515667.7171371401,5277239.959700735],[515667.9445334747,5277239.182334441],[515670.496171485,5277239.856039769],[515670.344474007,5277240.41133021]]]},"properties":{"ID_SOURCE":"w144657170","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":322}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516097.66337777965,5277678.13430061],[516093.3595953195,5277686.569031135],[516084.13639569137,5277681.653388009],[516084.99708781333,5277679.9886681],[516085.5708828344,5277678.878854898],[516083.0213269445,5277677.538132592],[516086.94071768015,5277672.325388286],[516097.66337777965,5277678.13430061]]]},"properties":{"ID_SOURCE":"w144657175","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":323}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515571.1596780821,5277540.222586509],[515573.6864954961,5277541.707504383],[515581.95670208655,5277546.586441878],[515577.4309586085,5277554.020696657],[515564.23440559034,5277546.316756746],[515562.67578806286,5277539.421923407],[515570.41613819206,5277537.442103247],[515571.1596780821,5277540.222586509]]]},"properties":{"ID_SOURCE":"w144657185","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":324}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516155.9361213361,5277408.11476621],[516166.4481013852,5277408.810784322],[516166.37176820065,5277409.255131651],[516166.0571777767,5277414.366689885],[516165.8238583064,5277417.255677397],[516160.665627863,5277416.863481915],[516155.0869057627,5277416.447896257],[516155.9361213361,5277408.11476621]]]},"properties":{"ID_SOURCE":"w144657186","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":325}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516019.6855395455,5277584.717330156],[516021.16130368935,5277591.500921227],[516007.7785928481,5277594.387086292],[516006.0209611546,5277586.324615594],[516010.9727849318,5277585.260175372],[516015.87955262756,5277584.195615401],[516016.1538936512,5277585.474478239],[516019.6855395455,5277584.717330156]]]},"properties":{"ID_SOURCE":"w144657189","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":326}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516016.15834508365,5277551.09893994],[516015.4913387771,5277547.874049953],[516019.47395632474,5277546.984774471],[516019.60003101407,5277547.563048496],[516021.6289038559,5277547.112958199],[516022.21492126136,5277549.748584908]]]},"properties":{"ID_SOURCE":"w144657200","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":327}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515596.1081763767,5276889.343956598],[515602.4876747374,5276891.028141497],[515600.6820021225,5276897.80282389],[515600.0598855875,5276900.135090427],[515597.3578797232,5276899.461014327],[515598.723768471,5276894.241108275],[515595.04598456976,5276893.34214012],[515596.1081763767,5276889.343956598]]]},"properties":{"ID_SOURCE":"w144657203","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":328}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515327.4251495757,5277727.624311448],[515324.2644454532,5277730.172205936],[515320.27565630386,5277733.495901435],[515315.1855984231,5277727.258679862],[515323.31337340845,5277720.611680005],[515325.70587226,5277724.61901057],[515327.4251495757,5277727.624311448]]]},"properties":{"ID_SOURCE":"w144657204","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":329}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516257.2063854118,5276884.03916631],[516257.6675686259,5276880.261702833],[516255.8659647755,5276879.923253988],[516256.71074277686,5276873.2572281975],[516263.01744877803,5276874.052816441],[516261.7111671887,5276884.60744334],[516257.2063854118,5276884.03916631]]]},"properties":{"ID_SOURCE":"w144657206","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":330}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515575.5972695869,5277116.569730071],[515585.86757578986,5277123.599013977],[515581.0487223889,5277130.988022146],[515575.1590292169,5277140.019037627],[515569.011640958,5277135.890427592],[515576.55219608516,5277124.574343932],[515572.3544848534,5277121.562343677],[515575.5972695869,5277116.569730071]]]},"properties":{"ID_SOURCE":"w144657207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":331}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515556.067935968,5277454.826892765],[515553.2937569035,5277453.152384525],[515553.89780852257,5277451.931460771],[515545.6503588179,5277446.908143696],[515550.7036135402,5277438.808435609],[515556.82875767566,5277442.714690805],[515561.7243611771,5277445.839687591],[515556.067935968,5277454.826892765]]]},"properties":{"ID_SOURCE":"w144657213","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":332}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.55907598545,5277509.912218195],[516164.92762872216,5277507.432046552],[516165.4762109027,5277507.3002019245],[516165.3127553147,5277506.666251003],[516165.86887819064,5277506.523313366],[516166.29984560946,5277508.180493626],[516166.678861768,5277509.615249985],[516165.55907598545,5277509.912218195]]]},"properties":{"ID_SOURCE":"w144657223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":333}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516226.3285654805,5276968.1969663035],[516226.6289833758,5276968.197803458],[516223.879393422,5276984.638824925],[516212.6944283651,5276982.607156626],[516216.13181311614,5276961.9002791755],[516217.04842006817,5276956.390300449],[516228.0841540754,5276958.088141642],[516226.3285654805,5276968.1969663035]]]},"properties":{"ID_SOURCE":"w144657224","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":334}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516060.76736155193,5277645.979661349],[516052.6581554361,5277642.823151848],[516055.4488361189,5277635.70678307],[516058.20191119943,5277636.7813188145],[516060.70744496846,5277637.755147095],[516061.0326566263,5277636.922495405],[516063.8832626905,5277638.03064487],[516060.76736155193,5277645.979661349]]]},"properties":{"ID_SOURCE":"w144657227","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":335}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516124.10345347755,5277486.046676311],[516126.3289892113,5277495.94428529],[516118.73950969864,5277497.590365662],[516116.4089479117,5277487.648012955],[516115.3253179447,5277483.0215965],[516123.66671731765,5277481.044174476],[516124.8547392054,5277485.937617216],[516124.10345347755,5277486.046676311]]]},"properties":{"ID_SOURCE":"w144657228","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":336}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.8026481104,5277493.194674936],[516183.4161886898,5277491.434817425],[516186.16328793304,5277502.778717596],[516178.04749944474,5277504.64553718],[516177.00817732915,5277500.3081955565],[516178.43595841335,5277499.9787434535],[516176.8026481104,5277493.194674936]]]},"properties":{"ID_SOURCE":"w144657231","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":337}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.83825201914,5277526.159113887],[516127.9020138977,5277524.511580002],[516130.79200897797,5277538.523206161],[516122.450689329,5277540.500617976],[516121.7098744832,5277536.830951838],[516122.83756264707,5277536.389515314],[516122.1118900469,5277532.675435146],[516120.83825201914,5277526.159113887]]]},"properties":{"ID_SOURCE":"w144657234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":338}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516001.5355586594,5277622.610556863],[515999.93452944007,5277614.948621506],[516012.07712427917,5277612.414675152],[516013.91535798693,5277621.199778778],[516010.45895324677,5277621.912681276],[516010.22167175735,5277620.811744292],[516006.4646997488,5277621.590506493],[516001.5355586594,5277622.610556863]]]},"properties":{"ID_SOURCE":"w144657235","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":339}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516141.7306868707,5277114.332894997],[516138.12822696875,5277113.4337912295],[516139.19229342684,5277108.880010101],[516139.2680121876,5277108.657940447],[516143.0957828228,5277109.557669549],[516142.03171342827,5277114.111449977],[516141.7306868707,5277114.332894997]]]},"properties":{"ID_SOURCE":"w144657238","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":340}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515552.3884753124,5277314.1141296],[515551.86574396386,5277313.001335872],[515554.0466131695,5277311.895764079],[515554.56964111555,5277312.897419049],[515555.0917781156,5277314.232490924],[515554.04640373454,5277314.785396897],[515552.98600955814,5277315.338262937],[515552.3884753124,5277314.1141296]]]},"properties":{"ID_SOURCE":"w144657243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":341}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515248.3901008867,5277282.190918067],[515257.849838266,5277283.32709717],[515256.6237695255,5277292.659620261],[515251.16526149237,5277292.156304916],[515244.0849358153,5277291.515380592],[515244.4744046987,5277286.181694107],[515247.9278562943,5277286.6352959825],[515248.3901008867,5277282.190918067]]]},"properties":{"ID_SOURCE":"w144657264","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":342}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.7955356759,5277147.987230883],[516293.4979260474,5277146.986139997],[516303.3444011681,5277144.124067225],[516303.9402396403,5277145.903972187],[516295.9722540399,5277148.437881659],[516295.6746448076,5277147.436790657],[516293.7955356759,5277147.987230883]]]},"properties":{"ID_SOURCE":"w144657266","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":343}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515525.17337444925,5277719.145989136],[515525.7637585937,5277723.037457113],[515525.91098400066,5277724.149247901],[515519.3008725149,5277724.798461665],[515517.94857552066,5277725.0171364695],[515517.0607697375,5277720.0134784],[515525.17337444925,5277719.145989136]]]},"properties":{"ID_SOURCE":"w144657272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":344}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516021.16130368935,5277591.500921227],[516019.6855395455,5277584.717330156],[516023.48036068305,5277583.838654721],[516023.25034499046,5277582.826649139],[516027.6011577597,5277581.849480791],[516034.00339381193,5277580.411177852],[516035.78406860825,5277588.273668863],[516021.16130368935,5277591.500921227]]]},"properties":{"ID_SOURCE":"w144657273","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":345}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516116.72826137656,5277573.048747366],[516112.2249218914,5277572.147163719],[516114.50643133174,5277561.81747294],[516123.5804343323,5277563.720859461],[516130.56791153323,5277565.1961472845],[516128.6661685627,5277573.970926204],[516116.957551112,5277571.604564145],[516116.72826137656,5277573.048747366]]]},"properties":{"ID_SOURCE":"w144657276","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":346}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515540.5474416603,5277389.21298388],[515544.3006124925,5277389.889841553],[515542.3195563083,5277400.553969624],[515536.20923614537,5277399.515175536],[515529.70857739996,5277398.408662846],[515531.30759351683,5277390.18858613],[515540.09032139217,5277391.656838424],[515540.5474416603,5277389.21298388]]]},"properties":{"ID_SOURCE":"w144657278","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":347}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.81823763635,5277635.9268748155],[516075.62994743645,5277634.7288736915],[516075.99304692354,5277633.774073613],[516072.39966666535,5277632.4193598945],[516067.800980992,5277630.706226195],[516070.4184742186,5277623.767210379],[516081.79884251195,5277628.033064159],[516078.81823763635,5277635.9268748155]]]},"properties":{"ID_SOURCE":"w144657280","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":348}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516085.00773505867,5277175.969633571],[516086.55069759086,5277188.343752934],[516088.24066259316,5277201.8741328325],[516080.8779574081,5277202.85405162],[516077.3482731307,5277175.6150599085],[516077.64868030726,5277175.6158894],[516084.8612157215,5277174.635551557],[516085.00773505867,5277175.969633571]]]},"properties":{"ID_SOURCE":"w144657284","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":349}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516249.4081167436,5277040.946726895],[516245.1281453751,5277040.601365351],[516245.2885847299,5277036.934200788],[516250.4698017895,5277037.282077574],[516250.30904901214,5277041.060380902],[516250.2339454788,5277041.060171304],[516249.4081167436,5277040.946726895]]]},"properties":{"ID_SOURCE":"w144657290","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":350}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516134.0887155148,5276953.136847694],[516136.90735800785,5276952.344452024],[516141.0338394421,5276951.188921693],[516143.4362424298,5276959.664429573],[516133.1613478102,5276962.558928029],[516130.92265275226,5276954.628462628],[516134.2448956067,5276953.692979116],[516134.0887155148,5276953.136847694]]]},"properties":{"ID_SOURCE":"w144657295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":351}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.01941954694,5276959.711964022],[516044.84410765534,5276962.97063042],[516045.74310305837,5276966.518465023],[516036.82195597974,5276968.761139317],[516033.8946669797,5276957.194546287],[516044.71729476715,5276954.479205668],[516045.92091289314,5276959.228188685],[516044.01941954694,5276959.711964022]]]},"properties":{"ID_SOURCE":"w144657299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":352}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516087.49284776073,5277268.667075628],[516088.462198203,5277268.469702426],[516087.5435717973,5277263.899318891],[516086.52112327924,5277258.850747619],[516094.8619730124,5277257.184473338],[516097.60312106623,5277270.7844473645],[516088.3004502265,5277272.6481115315],[516087.49284776073,5277268.667075628]]]},"properties":{"ID_SOURCE":"w144657303","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":353}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516156.9371355099,5276914.734737209],[516156.5507515723,5276913.233278757],[516153.5970214851,5276913.980834343],[516149.4407465462,5276915.036247463],[516147.2787318509,5276906.539176392],[516158.13915270596,5276903.790808926],[516160.6800251445,5276913.789321885],[516156.9371355099,5276914.734737209]]]},"properties":{"ID_SOURCE":"w144657304","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":354}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516277.56259540806,5277151.831720558],[516287.48508918105,5277148.6364141805],[516287.93228224094,5277149.860202771],[516286.12827676005,5277150.410855556],[516286.3517179542,5277151.078319251],[516278.2332323158,5277153.722971769],[516277.56259540806,5277151.831720558]]]},"properties":{"ID_SOURCE":"w144657310","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":355}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516093.6991157111,5277639.813431562],[516089.2357067145,5277638.067312861],[516086.25011716696,5277636.892094065],[516085.8720277282,5277637.835738113],[516081.7461778321,5277636.223925707],[516085.156921554,5277627.57555397],[516096.73926245724,5277632.119844744],[516093.6991157111,5277639.813431562]]]},"properties":{"ID_SOURCE":"w144657313","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":356}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516108.10674440395,5276970.53608259],[516095.02843438333,5276974.1675299965],[516093.4597656727,5276968.361700074],[516092.3520119575,5276964.268696326],[516100.5445506709,5276962.068548221],[516100.69353056286,5276962.513519095],[516105.5039100617,5276961.193145069],[516108.10674440395,5276970.53608259]]]},"properties":{"ID_SOURCE":"w144657314","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":357}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.0386219565,5277282.105446985],[516083.86111334787,5277281.115812503],[516082.96596723807,5277276.200961122],[516082.7070756541,5277274.766542731],[516085.33682184695,5277274.329248075],[516086.7437724364,5277281.557221485],[516084.0386219565,5277282.105446985]]]},"properties":{"ID_SOURCE":"w144657315","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":358}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515303.9926307106,5277557.296521115],[515309.4910669474,5277551.087150599],[515315.93419913366,5277556.883365067],[515311.67895036296,5277561.540042307],[515307.1224448198,5277566.529349877],[515298.13186409924,5277558.503655296],[515301.295278247,5277554.95549616],[515303.9926307106,5277557.296521115]]]},"properties":{"ID_SOURCE":"w144657318","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":359}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516178.35004770063,5277071.423437108],[516175.8870814024,5277065.859606319],[516194.83998338575,5277056.243129572],[516197.5251539558,5277062.918984103],[516190.9831361814,5277065.790423388],[516193.14691185474,5277070.90886953],[516178.35004770063,5277071.423437108]]]},"properties":{"ID_SOURCE":"w144657324","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":360}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516084.21965592814,5277379.686690198],[516087.0443977925,5277379.327733036],[516095.188127671,5277378.272184073],[516096.4420763797,5277386.49999652],[516079.16315057606,5277388.675047906],[516078.2126437001,5277379.336679158],[516083.9226365227,5277378.463331798],[516084.21965592814,5277379.686690198]]]},"properties":{"ID_SOURCE":"w144657326","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":361}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.6084623813,5277718.887306964],[516047.53378905164,5277720.117908537],[516047.38237408164,5277720.562050611],[516047.08015691256,5277721.228056728],[516044.3798087214,5277720.109215278],[516044.3813402239,5277719.553520185],[516044.6084623813,5277718.887306964]]]},"properties":{"ID_SOURCE":"w144657327","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":362}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515348.15218823036,5277641.879000833],[515351.0131534606,5277639.108049451],[515359.17631091794,5277647.576203801],[515359.02582633705,5277647.686946575],[515357.1434502778,5277649.571357104],[515351.2270114894,5277643.443064945],[515350.3989070524,5277644.218859881],[515348.15218823036,5277641.879000833]]]},"properties":{"ID_SOURCE":"w144657335","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":363}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516257.46405438555,5277033.856268749],[516258.83205666963,5277028.080820717],[516261.0978928849,5277023.530417668],[516265.5224952644,5277025.876710613],[516264.56324525503,5277027.818976979],[516263.19086509733,5277027.092735322],[516259.2187793678,5277034.8280841615],[516257.46405438555,5277033.856268749]]]},"properties":{"ID_SOURCE":"w144657336","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":364}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516061.1647525513,5276973.75172193],[516063.31935658585,5276982.248740983],[516051.2190800884,5276985.293944096],[516047.34097494173,5276986.2723988425],[516045.9442363721,5276980.744904985],[516049.78473152814,5276979.788573582],[516049.0269074015,5276976.796826019],[516056.03153674374,5276975.037900401],[516061.1647525513,5276973.75172193]]]},"properties":{"ID_SOURCE":"w144657342","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":365}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.5615497224,5277509.884127351],[516005.2189062668,5277503.834429826],[516015.95676782413,5277501.530022887],[516017.7439008943,5277509.792628291],[516013.160203342,5277510.7802775875],[516010.8833746483,5277511.274144894],[516011.3432021378,5277513.375952137],[516007.50340080215,5277514.2100559985],[516006.5615497224,5277509.884127351]]]},"properties":{"ID_SOURCE":"w144657344","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":366}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.93797739083,5277118.168475768],[516072.2491367959,5277118.364003364],[516071.7982148362,5277118.473898473],[516070.99079871445,5277111.692144576],[516070.9172298338,5277111.136242729],[516078.57984590024,5277110.379418583],[516081.20905203413,5277110.16439983],[516081.93797739083,5277118.168475768]]]},"properties":{"ID_SOURCE":"w144657348","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":367}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.39526110794,5276984.073272857],[516182.7989065447,5276983.968812689],[516183.5502581214,5276983.859761103],[516187.23407484434,5276982.536323628],[516190.1089047931,5276991.246558391],[516192.670946905,5276999.000123051],[516185.6803982525,5277001.092342822],[516185.6052942043,5277001.09213406],[516180.39526110794,5276984.073272857]]]},"properties":{"ID_SOURCE":"w144657350","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":368}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516185.6052942043,5277001.09213406],[516185.6803982525,5277001.092342822],[516192.670946905,5276999.000123051],[516193.7215691806,5277002.003818054],[516194.38474051055,5277003.89503817],[516197.91772071,5277002.793467471],[516200.151670837,5277009.690346877],[516189.4779506159,5277012.883713639],[516185.6052942043,5277001.09213406]]]},"properties":{"ID_SOURCE":"w144657351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":369}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516176.5797057388,5277438.290978917],[516180.40879798395,5277438.635038684],[516180.080721269,5277443.1908598365],[516184.1279660123,5277443.402160543],[516183.68133857107,5277450.080422728],[516178.68026297,5277452.60051147],[516179.0617667791,5277445.032949308],[516166.0492643009,5277444.263280488],[516166.28320010717,5277441.152014925],[516166.5971722562,5277436.262734422],[516172.078184894,5277436.700287779],[516176.6582009275,5277437.0686589265],[516176.5797057388,5277438.290978917]]]},"properties":{"ID_SOURCE":"w144657353","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":370}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516251.4116039241,5277507.0726592615],[516242.9296146259,5277505.604170952],[516244.0753034128,5277498.716697125],[516221.55654241017,5277494.875156063],[516222.32052556163,5277490.209411471],[516244.8396142516,5277493.939816441],[516253.3967177758,5277495.408517118],[516251.4116039241,5277507.0726592615]]]},"properties":{"ID_SOURCE":"w144657354","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":371}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516133.0615219184,5277153.096648013],[516139.51660459203,5277154.448214282],[516137.458970502,5277165.223069216],[516127.76866666833,5277165.974198872],[516127.3365249237,5277159.304615529],[516130.64162897086,5277159.091491303],[516131.1381951454,5277158.77056164],[516131.8454165192,5277158.316847918],[516133.0615219184,5277153.096648013]]]},"properties":{"ID_SOURCE":"w144657356","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":372}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516210.0661024705,5277710.787897046],[516205.6101373067,5277709.097279139],[516199.18878511665,5277706.645444307],[516202.2154720982,5277698.429516367],[516202.82025372726,5277696.986381201],[516206.3463188539,5277698.218734656],[516205.8163221318,5277699.773217517],[516213.093112243,5277702.460835662],[516210.0661024705,5277710.787897046]]]},"properties":{"ID_SOURCE":"w144657362","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":373}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516197.5249356287,5277386.958157811],[516205.70167779515,5277387.5366105605],[516204.6273561497,5277401.170476432],[516196.5559260859,5277400.536748135],[516196.92954098183,5277395.814345097],[516197.0228443113,5277394.669864507],[516195.371006989,5277394.543015617],[516195.97835849755,5277386.787145672],[516197.5249356287,5277386.958157811]]]},"properties":{"ID_SOURCE":"w144657363","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":374}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515994.69644033414,5277586.282378052],[515996.84089383064,5277595.690700143],[515985.47918134695,5277598.260164385],[515985.6127068571,5277598.860686131],[515981.7653644185,5277599.728128029],[515979.6283672664,5277590.330945997],[515984.2496972699,5277589.287803921],[515984.108692258,5277588.676147696],[515989.31614319864,5277587.501251082],[515994.69644033414,5277586.282378052]]]},"properties":{"ID_SOURCE":"w144657369","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":375}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515312.94039489893,5277695.8002123125],[515317.30204927333,5277693.477751026],[515322.4216787123,5277688.48993296],[515327.8138990923,5277694.06111716],[515322.6945623935,5277698.937791507],[515313.5201064819,5277703.803802133],[515310.9782774751,5277699.462664669],[515313.9867557431,5277697.6923411405],[515312.94039489893,5277695.8002123125]]]},"properties":{"ID_SOURCE":"w144657370","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":376}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516218.84410286864,5277659.810257634],[516218.46958754316,5277664.854964358],[516218.0112294253,5277670.343997053],[516217.9257451072,5277671.377359714],[516217.0960054506,5277686.178879306],[516208.76164364786,5277685.722223161],[516208.9673502468,5277681.966268205],[516209.0454161384,5277680.899542787],[516200.77158635226,5277680.276356854],[516202.4089959843,5277658.575297255],[516218.84410286864,5277659.810257634]]]},"properties":{"ID_SOURCE":"w144657371","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":377}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516105.75873514026,5277531.541002567],[516109.5788763714,5277532.385120594],[516107.62477127893,5277541.093077032],[516103.84218403965,5277540.249064127],[516103.659645411,5277541.082107995],[516097.9407511309,5277539.79929799],[516091.80155627115,5277538.426420022],[516093.54272420175,5277530.673672374],[516105.35580081923,5277533.318125284],[516105.75873514026,5277531.541002567]]]},"properties":{"ID_SOURCE":"w144657372","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":378}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515523.87151266227,5277503.309036056],[515525.3312632169,5277490.976413535],[515527.8085984042,5277491.316439593],[515529.11846082914,5277478.872278669],[515537.97793280234,5277479.673894692],[515536.96844238235,5277492.118855312],[515533.88973338465,5277491.999500326],[515532.5801600066,5277504.332521465],[515523.87151266227,5277503.309036056]]]},"properties":{"ID_SOURCE":"w144657373","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":379}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.887558486,5277648.383150499],[516071.6145827259,5277647.498870381],[516070.70607113425,5277650.1637188615],[516063.95482059004,5277647.477729682],[516066.75329855183,5277640.261361859],[516069.94134208973,5277641.548269339],[516073.12938422646,5277642.835178568],[516073.50762470264,5277641.835964191],[516076.035559735,5277642.854316886],[516073.887558486,5277648.383150499]]]},"properties":{"ID_SOURCE":"w144657374","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":380}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516070.39086106594,5277519.506850777],[516062.823957601,5277521.1530661825],[516062.11142453796,5277518.105869013],[516064.01261477254,5277517.666555166],[516061.5557432346,5277507.20151883],[516069.5813729373,5277505.334288208],[516070.9174212043,5277511.02833527],[516072.023334123,5277515.754830873],[516069.64121251955,5277516.303954465],[516070.39086106594,5277519.506850777]]]},"properties":{"ID_SOURCE":"w144657377","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":381}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516011.8213751436,5277265.768902591],[516017.7198625913,5277264.662614785],[516019.16277342994,5277264.310937165],[516021.2517335508,5277263.894353698],[516022.00733143603,5277267.686299421],[516020.66980674036,5277267.949354481],[516020.99581513845,5277269.561778348],[516021.7292186753,5277273.23140924],[516013.63639787404,5277274.842900371],[516011.8213751436,5277265.768902591]]]},"properties":{"ID_SOURCE":"w144657379","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":382}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516073.5583950943,5276970.551753559],[516080.2476007529,5276968.791986335],[516080.3978096773,5276968.792401142],[516082.70118426386,5276977.801081057],[516071.3524527262,5276980.659380636],[516069.0490617711,5276971.650705207],[516070.9504920008,5276971.189165816],[516073.5583950943,5276970.551753559]]]},"properties":{"ID_SOURCE":"w144657380","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":383}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515703.26028482756,5277037.558866836],[515703.7647286887,5277045.451146785],[515694.90132190683,5277045.871808396],[515694.8971280017,5277047.4277530555],[515687.23627808003,5277047.5182486875],[515686.083424534,5277029.399370274],[515693.8206001054,5277028.864519885],[515694.18790248496,5277034.700344578],[515694.39686607756,5277037.979529236],[515703.26028482756,5277037.558866836]]]},"properties":{"ID_SOURCE":"w144657384","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":384}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516103.22315733286,5277568.565783017],[516106.75085861055,5277569.242380712],[516104.6977298883,5277578.461307881],[516101.6206136159,5277577.785957567],[516101.1660381534,5277579.22951832],[516091.0341422176,5277576.978709084],[516092.78624841926,5277567.981224814],[516099.3155152209,5277569.499664497],[516102.9178519749,5277570.343176028],[516103.22315733286,5277568.565783017]]]},"properties":{"ID_SOURCE":"w144657386","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":385}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.21492126136,5277549.748584908],[516029.6315818996,5277548.101903227],[516030.46931420936,5277552.04967387],[516031.2056926401,5277551.89610575],[516033.6818225421,5277563.561493087],[516024.6949543646,5277565.459468975],[516023.3233748507,5277559.020697523],[516022.226194657,5277553.838561729],[516023.0227113472,5277553.662930115],[516022.21492126136,5277549.748584908]]]},"properties":{"ID_SOURCE":"w144657389","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":386}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515575.4552921903,5277281.945264476],[515570.7275330893,5277280.598942306],[515573.6832041825,5277270.604270704],[515587.6423860084,5277274.198096886],[515587.1873200043,5277275.863974735],[515592.44048487267,5277277.32285702],[515590.1669372609,5277284.985411155],[515580.7338694221,5277282.326148705],[515575.833470058,5277280.946018476],[515575.4552921903,5277281.945264476]]]},"properties":{"ID_SOURCE":"w144657390","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":387}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516285.3579529346,5276727.633094783],[516277.2454025219,5276727.943832573],[516276.0557957256,5276723.606058853],[516281.464166542,5276723.398897957],[516281.19791547913,5276711.172785467],[516290.2868908193,5276710.864784404],[516290.47739338496,5276723.312964923],[516285.2946558181,5276723.409608722],[516285.3579529346,5276727.633094783]]]},"properties":{"ID_SOURCE":"w144657391","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":388}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515576.0059897577,5277721.72684873],[515577.00749839214,5277712.282643861],[515582.1124612994,5277712.852004653],[515582.34429038427,5277710.407549179],[515586.39822375646,5277710.862960774],[515586.1663929844,5277713.30741609],[515591.27135413676,5277713.876784915],[515590.5773447557,5277720.654455274],[515587.6043068689,5277720.37975849],[515585.54718670296,5277720.196427099],[515584.8552673856,5277726.196125021],[515584.70507802896,5277726.195722953],[515576.5218397279,5277725.395842978],[515576.2968530279,5277725.284101177],[515576.60645027034,5277721.839595148],[515576.0059897577,5277721.72684873]]]},"properties":{"ID_SOURCE":"w144657393","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":389}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515972.57998281036,5277504.30049284],[515980.99578967394,5277502.545350512],[515982.3001776031,5277508.8616728615],[515983.2933030767,5277513.665639487],[515982.6171210967,5277513.774922997],[515983.28323430446,5277517.333225945],[515974.04076723143,5277519.308376332],[515973.1490514825,5277515.860595313],[515974.95230400574,5277515.532123531],[515972.57998281036,5277504.30049284]]]},"properties":{"ID_SOURCE":"w144657394","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":390}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516126.9268584407,5277117.40378799],[516121.22460366646,5277115.38748169],[516122.96704215364,5277109.946457778],[516127.73175440426,5277097.956558712],[516129.9072725448,5277098.851702941],[516130.7284769736,5277100.632214066],[516130.27385795786,5277102.075771565],[516132.1495790688,5277102.747806617],[516126.9268584407,5277117.40378799]]]},"properties":{"ID_SOURCE":"w144657395","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":391}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516120.9210161022,5277008.025637972],[516122.41017095867,5277012.697630278],[516123.15474748035,5277015.033626585],[516123.5271893885,5277016.146055334],[516117.3634438643,5277018.018366922],[516116.24826778163,5277013.903109678],[516113.5420676454,5277014.784738216],[516112.351784306,5277010.669273914],[516116.31317543914,5277009.446585527],[516120.9210161022,5277008.025637972]]]},"properties":{"ID_SOURCE":"w144657399","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":392}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515423.5559713232,5277610.847999653],[515427.54667037004,5277606.857541218],[515434.36215775885,5277613.766272735],[515430.22038287466,5277618.089745484],[515428.42161162506,5277616.751300801],[515426.3887164529,5277618.746429904],[515420.9895158602,5277618.654327906],[515410.54403630766,5277618.482187105],[515410.48953347025,5277610.702257896],[515423.5559713232,5277610.847999653]]]},"properties":{"ID_SOURCE":"w144657400","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":393}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516145.08232029335,5277286.942268127],[516145.1531061054,5277288.498421568],[516143.4782144458,5277288.549347324],[516141.77328268206,5277288.600190285],[516141.77698009333,5277287.266522977],[516140.2749729752,5277287.26235906],[516140.20202923013,5277286.484178279],[516144.2580653208,5277286.2731438065],[516144.256216331,5277286.939977456],[516145.08232029335,5277286.942268127]]]},"properties":{"ID_SOURCE":"w144657403","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":394}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516161.23569817,5277473.924250991],[516162.87180902384,5277479.708064099],[516159.9405240626,5277480.589045794],[516160.0888688722,5277481.256296542],[516155.2937091608,5277482.654464564],[516150.6188316019,5277484.008514258],[516148.61122783466,5277476.77885639],[516158.1560653705,5277474.13798281],[516158.30441055546,5277474.805233507],[516161.23569817,5277473.924250991]]]},"properties":{"ID_SOURCE":"w144657404","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":395}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516045.094140762,5277428.213514946],[516039.8650475697,5277429.010427161],[516036.85231099534,5277429.468915111],[516035.8783975654,5277423.153491337],[516038.53805141273,5277422.738486132],[516037.6379209029,5277416.901166561],[516045.41397291934,5277415.7111676615],[516046.09275129164,5277420.114174843],[516046.5207268533,5277422.871621686],[516048.71455578547,5277422.533135145],[516049.4817946947,5277427.536541614],[516045.094140762,5277428.213514946]]]},"properties":{"ID_SOURCE":"w144657405","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":396}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516289.70991732954,5277695.561763285],[516295.2893525559,5277687.575306427],[516296.743337118,5277688.601863344],[516297.98749028414,5277689.472237353],[516298.59011856664,5277688.807085178],[516303.61215830856,5277692.155343784],[516302.93443466397,5277692.820285147],[516304.463293803,5277693.92485161],[516306.00710912223,5277695.051688348],[516300.27716504363,5277703.148853536],[516289.70991732954,5277695.561763285]]]},"properties":{"ID_SOURCE":"w144657406","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":397}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516237.83957705577,5277553.491246925],[516229.9550196054,5277553.246981773],[516229.95254099194,5277554.136093679],[516216.0614688514,5277553.430546425],[516216.4620285263,5277544.429334327],[516230.4282191401,5277545.135091832],[516230.34537626826,5277547.913357144],[516238.0794369603,5277548.268342879],[516237.83957705577,5277553.491246925]]]},"properties":{"ID_SOURCE":"w144657408","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":398}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.6309589086,5277593.514593866],[516155.80212057603,5277591.71740194],[516156.7125306886,5277588.385732905],[516155.81198985165,5277588.160954099],[516157.26018157526,5277583.174793791],[516158.0107626526,5277580.609546383],[516155.8345041208,5277580.04780754],[516156.9720565068,5277576.049929835],[516166.80292549374,5277578.522297708],[516162.6309589086,5277593.514593866]]]},"properties":{"ID_SOURCE":"w144657410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":399}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515647.92432361736,5276760.583179381],[515648.61595091695,5276763.1412500115],[515642.9262233877,5276764.659690517],[515642.14542053675,5276761.745734128],[515638.9886232961,5276762.59303084],[515632.66001017403,5276764.287589081],[515630.07953757735,5276754.689310174],[515647.69741936366,5276749.990960438],[515650.3670976161,5276759.922905923],[515647.92432361736,5276760.583179381]]]},"properties":{"ID_SOURCE":"w144657412","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":400}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516123.65741489455,5277728.441455647],[516133.2197012088,5277730.190615588],[516142.19655198354,5277731.827028053],[516141.12766279094,5277738.159037182],[516135.57313118764,5277737.254520086],[516134.8095564974,5277741.809138619],[516127.00342382636,5277740.453830167],[516127.6922058994,5277735.787863574],[516122.28785917064,5277734.883775242],[516123.65741489455,5277728.441455647]]]},"properties":{"ID_SOURCE":"w144657413","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":401}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516076.035559735,5277642.854316886],[516079.3813009007,5277644.141665025],[516078.97286778886,5277645.196365568],[516081.68093804934,5277646.248560209],[516085.0791816055,5277647.558284646],[516082.37898406293,5277654.530407654],[516075.6274984031,5277651.933316101],[516076.5956281672,5277649.435342785],[516073.887558486,5277648.383150499],[516076.035559735,5277642.854316886]]]},"properties":{"ID_SOURCE":"w144657416","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":402}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516162.1160755713,5277454.36608489],[516150.7787136416,5277453.445504772],[516151.013565883,5277450.000821658],[516145.60772419523,5277449.541268563],[516146.0743409501,5277443.763291696],[516151.6306929544,5277444.112122906],[516151.55251142586,5277445.22330427],[516156.8609447722,5277445.604794666],[516162.89019779966,5277446.03274688],[516162.1160755713,5277454.36608489]]]},"properties":{"ID_SOURCE":"w144657417","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":403}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516166.37176820065,5277409.255131651],[516166.4481013852,5277408.810784322],[516166.6078656609,5277405.365893529],[516166.83964291203,5277403.0326009095],[516169.9183876459,5277403.152290507],[516170.0722893955,5277401.819040107],[516180.1336860333,5277402.513831474],[516179.58668321517,5277410.180958997],[516173.459765769,5277409.752718396],[516166.37176820065,5277409.255131651]]]},"properties":{"ID_SOURCE":"w144657420","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":404}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515558.0227604912,5277032.3899894105],[515551.92808703677,5277036.597016765],[515547.9648097364,5277030.140330465],[515545.7832431371,5277031.468182081],[515540.62274524156,5277023.34120929],[515554.6166827361,5277014.153979855],[515559.92707992735,5277022.39250524],[515554.20821006043,5277026.489394742],[515558.0227604912,5277032.3899894105]]]},"properties":{"ID_SOURCE":"w144657424","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":405}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515475.1105126824,5277285.678727925],[515475.54929879797,5277290.125483515],[515479.8311978025,5277289.69230719],[515480.9384946133,5277296.919334015],[515476.8070966702,5277297.241769823],[515476.95522908797,5277298.020141734],[515471.49447013886,5277298.372389692],[515465.46283235995,5277298.767582253],[515463.99388877687,5277286.31603048],[515475.1105126824,5277285.678727925]]]},"properties":{"ID_SOURCE":"w144657426","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":406}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516068.3669847598,5277382.087993583],[516071.6731872376,5277381.430280264],[516073.1533859891,5277389.3252927],[516069.8465743051,5277390.205283096],[516069.5495524381,5277388.981925413],[516059.48137593386,5277390.732382385],[516058.00177208777,5277382.615095531],[516063.4863385109,5277381.785562342],[516068.14444785827,5277381.087121169],[516068.3669847598,5277382.087993583]]]},"properties":{"ID_SOURCE":"w144657427","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":407}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515404.00435233396,5277507.325104728],[515405.064833612,5277503.882577962],[515409.19225678925,5277505.004898298],[515409.6782138976,5277505.828618777],[515410.16411203536,5277506.674567098],[515414.2170232746,5277507.574414253],[515412.245658813,5277514.682140304],[515401.13947545347,5277511.540836537],[515402.5035785229,5277506.876575065],[515404.00435233396,5277507.325104728]]]},"properties":{"ID_SOURCE":"w144657433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":408}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516119.2136318894,5276916.686275185],[516121.07994034054,5276923.493193213],[516117.8554728058,5276924.373385038],[516118.2643974507,5276925.874903292],[516113.27361087804,5276927.239223544],[516108.448211344,5276928.548435707],[516106.5001042403,5276921.441218219],[516116.436561845,5276918.734673451],[516116.1094213557,5276917.53345896],[516119.2136318894,5276916.686275185]]]},"properties":{"ID_SOURCE":"w144657434","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":409}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516045.06175173784,5277390.914905928],[516045.8035530233,5277394.251144433],[516037.83846971305,5277395.896295409],[516036.8728977292,5277392.003742542],[516038.15049921,5277391.673842341],[516035.1799029934,5277379.551421552],[516042.99450324936,5277378.016992024],[516044.3975537138,5277383.944609791],[516045.96385882853,5277390.583972647],[516045.06175173784,5277390.914905928]]]},"properties":{"ID_SOURCE":"w144657437","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":410}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515470.47023429483,5277562.293251602],[515478.5901429691,5277558.758361258],[515477.91899899486,5277556.978340434],[515482.8813029018,5277554.768739566],[515487.4350128689,5277565.005711558],[515468.5644663853,5277572.957606792],[515465.7573066833,5277566.7485490665],[515464.08494079666,5277563.054265952],[515469.4984056995,5277560.623572531],[515470.47023429483,5277562.293251602]]]},"properties":{"ID_SOURCE":"w144657442","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":411}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516214.67171933234,5277424.159929094],[516218.125821154,5277424.325145562],[516218.3004805906,5277420.935867353],[516228.9480418336,5277421.476780397],[516228.81321796763,5277424.043734627],[516230.1347983169,5277424.102988505],[516229.9995402369,5277426.825537269],[516229.8564626063,5277429.659204078],[516228.6700608574,5277429.600327052],[516228.52682903863,5277432.489563391],[516225.82365525194,5277432.348661423],[516224.87819817103,5277450.928606414],[516213.33714504715,5277450.340756323],[516214.67171933234,5277424.159929094]]]},"properties":{"ID_SOURCE":"w144657443","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":412}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516212.681300561,5276933.372212806],[516210.42908106255,5276933.032523321],[516210.965335261,5276929.2552650105],[516211.49076067784,5276929.367867523],[516212.02763473114,5276925.368331573],[516212.7783755499,5276925.481561508],[516213.07738117245,5276923.292941148],[516213.6218601879,5276919.260084629],[516214.44770687114,5276919.3735238975],[516218.8022550988,5276919.941349558],[516218.4962628845,5276921.941012605],[516222.1751728599,5276922.395819299],[516220.4137021659,5276934.616283893],[516212.681300561,5276933.372212806]]]},"properties":{"ID_SOURCE":"w144657444","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":413}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515721.6881510569,5276804.88207746],[515718.15814248234,5276804.872548203],[515718.0118291286,5276803.42733755],[515707.59388639306,5276803.643734341],[515698.78334513615,5276803.820027019],[515698.8860164776,5276793.595454303],[515718.1890409808,5276793.425245549],[515718.3458541417,5276790.980596095],[515721.9512779375,5276790.879189366],[515721.6881510569,5276804.88207746]]]},"properties":{"ID_SOURCE":"w144657447","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":414}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515735.9810970465,5277024.421575613],[515731.03325814754,5277021.074015131],[515733.7481053548,5277016.969180883],[515734.87256053515,5277017.750197304],[515736.607156988,5277015.087531826],[515738.9311708494,5277016.649768986],[515738.40304086974,5277017.537459188],[515739.90241354273,5277018.541769364],[515735.9810970465,5277024.421575613]]]},"properties":{"ID_SOURCE":"w144657454","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":415}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516290.28627453407,5277677.447575455],[516297.9004604502,5277666.910598038],[516306.06905623997,5277672.935025347],[516305.11167181097,5277674.2437944515],[516303.9582928909,5277675.818750531],[516304.5574993673,5277676.376128077],[516301.24054513033,5277680.923574451],[516300.6410276217,5277680.477336252],[516299.5553302305,5277682.01914075],[516298.5299585269,5277683.472202432],[516290.28627453407,5277677.447575455]]]},"properties":{"ID_SOURCE":"w144657458","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":416}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516037.5679393721,5277355.062787],[516044.8638352594,5277353.726982747],[516045.6555158316,5277358.041388707],[516046.291753133,5277361.532931876],[516045.20977053564,5277361.730001644],[516046.31218049553,5277367.745703038],[516038.3926714872,5277369.190927335],[516036.5652693519,5277359.183311737],[516038.2708835178,5277358.876818416],[516038.16724443773,5277358.331947912],[516037.5679393721,5277355.062787]]]},"properties":{"ID_SOURCE":"w144657459","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":417}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.30590462167,5277629.6802070895],[516038.8806753985,5277628.214744574],[516041.5962397034,5277629.278055096],[516039.29718661215,5277635.1287905555],[516036.7841692012,5277634.143836916],[516035.86150953645,5277636.497460165],[516029.027560553,5277633.833511882],[516031.674524206,5277627.08349773],[516035.14025399653,5277628.437834642],[516038.30590462167,5277629.6802070895]]]},"properties":{"ID_SOURCE":"w144657461","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":418}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516180.002239962,5277530.879971681],[516179.0355505901,5277527.431950079],[516178.2172016493,5277524.65117992],[516180.9225575962,5277523.991859221],[516180.55108652724,5277522.546008864],[516182.5052541702,5277521.962399111],[516185.3613317898,5277521.114561681],[516184.9147642735,5277519.668502276],[516188.97342113574,5277518.457248401],[516191.42598016775,5277527.688675614],[516180.002239962,5277530.879971681]]]},"properties":{"ID_SOURCE":"w144657462","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":419}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515627.06882067147,5277078.920139982],[515631.87959157676,5277077.37709709],[515633.0704983868,5277081.381323954],[515638.55749452295,5277079.728962444],[515639.0793351165,5277081.175180267],[515646.06899086636,5277079.304582513],[515647.18388858467,5277083.642027225],[515629.4491469981,5277087.484286578],[515629.1499285814,5277087.038924571],[515628.19854438916,5277083.3354185745],[515627.06882067147,5277078.920139982]]]},"properties":{"ID_SOURCE":"w144657464","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":420}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516228.79096962366,5277235.339385309],[516227.7022438918,5277221.777295927],[516237.16716500977,5277221.025704397],[516245.4301589913,5277220.381914404],[516253.39306017815,5277219.626158632],[516254.481416276,5277233.299391841],[516245.2418158519,5277234.051583808],[516235.7018137492,5277234.8029527655],[516235.6267127137,5277234.80274335],[516228.79096962366,5277235.339385309]]]},"properties":{"ID_SOURCE":"w144657465","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":421}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516043.81688143814,5277243.095551745],[516044.26105568156,5277245.4307110505],[516039.377048389,5277246.30637307],[516039.37490527617,5277247.084345623],[516035.2572655818,5277247.839868523],[516029.75709815894,5277248.836095457],[516028.423945816,5277242.052898851],[516038.79277329653,5277240.303215515],[516038.57022570586,5277239.302344481],[516042.9585416305,5277238.436429921],[516043.81688143814,5277243.095551745]]]},"properties":{"ID_SOURCE":"w144657468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":422}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515762.7914063527,5277685.3311758395],[515753.92505876726,5277687.196553063],[515752.29401511716,5277679.412351527],[515757.1782168524,5277678.314170984],[515758.98140660604,5277677.985632365],[515759.8095610045,5277677.2098953985],[515760.2622389983,5277676.433142059],[515760.56562907744,5277675.322565114],[515760.3439535424,5277673.988287059],[515761.61213653267,5277679.882131309],[515762.7914063527,5277685.3311758395]]]},"properties":{"ID_SOURCE":"w144657470","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":423}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516082.74888712296,5277490.72241816],[516082.99382368725,5277491.767809149],[516079.87524255004,5277492.49271793],[516080.0459720422,5277493.215598346],[516073.9215821059,5277494.621276141],[516071.5770005232,5277495.170502612],[516071.67349233973,5277495.581986335],[516066.9542917665,5277496.6803591335],[516064.675780391,5277486.893766995],[516080.9825276334,5277483.126688943],[516082.74888712296,5277490.72241816]]]},"properties":{"ID_SOURCE":"w144657473","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":424}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516139.3408333073,5277028.192957636],[516137.40168954316,5277023.297434192],[516140.3338168459,5277022.194163475],[516140.1842254181,5277021.971469328],[516144.58303487924,5277020.094288114],[516150.03453375556,5277017.775470805],[516153.09220932535,5277025.563734778],[516143.392119245,5277029.760144589],[516143.09355324064,5277029.092478339],[516142.2732666249,5277026.978548995],[516139.3408333073,5277028.192957636]]]},"properties":{"ID_SOURCE":"w144657477","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":425}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516171.73739171476,5277289.016758203],[516175.34251651354,5277288.915632791],[516175.3468391322,5277287.359687601],[516175.282854021,5277283.358477065],[516183.3195243309,5277283.047390005],[516183.44871906046,5277290.605255529],[516183.9747301828,5277290.49557781],[516184.1141183934,5277294.385858308],[516171.79674880014,5277294.6850528745],[516171.73739171476,5277289.016758203]]]},"properties":{"ID_SOURCE":"w144657479","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":426}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515500.7059071132,5277618.143621341],[515493.1900328087,5277617.65682777],[515493.86478316924,5277609.612102519],[515492.83614297217,5277609.5426811585],[515492.93909173144,5277607.542438877],[515490.22155677754,5277604.35660961],[515493.45820799173,5277601.542271668],[515493.53720848245,5277600.075436683],[515497.5090632379,5277600.363857773],[515500.1281252728,5277598.225832278],[515502.261534359,5277600.798841868],[515510.9109691221,5277601.4442627495],[515510.08253772114,5277610.78891219],[515503.91823772306,5277610.361275659],[515501.3504221984,5277610.176614252],[515500.7059071132,5277618.143621341]]]},"properties":{"ID_SOURCE":"w144657480","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":427}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.5615497224,5277509.884127351],[516003.4430796446,5277510.575735355],[516003.59889022575,5277511.265230545],[515999.4810142678,5277512.176373204],[515994.08568932407,5277513.37297277],[515992.3127496184,5277505.399377266],[516001.8034030528,5277503.302684119],[516001.9962435066,5277504.18121873],[516005.14475585317,5277503.489692532],[516005.2189062668,5277503.834429826],[516006.5615497224,5277509.884127351]]]},"properties":{"ID_SOURCE":"w144657484","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":428}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516106.05421734543,5277033.768918788],[516114.6243350464,5277030.791856876],[516115.6746532896,5277033.917790655],[516117.603871029,5277039.691283426],[516103.921808234,5277044.432436848],[516101.0158208869,5277036.088919441],[516100.1964419297,5277033.6415793365],[516104.4816519425,5277032.097473051],[516105.3010293226,5277034.544813752],[516106.27829855744,5277034.214097598],[516106.05421734543,5277033.768918788]]]},"properties":{"ID_SOURCE":"w144657490","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":429}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515737.29513414897,5277088.441604085],[515736.6056915453,5277093.441028306],[515738.3982466129,5277097.11348406],[515742.8350208177,5277095.013823231],[515746.27171769814,5277101.691499513],[515736.94636254176,5277106.334157112],[515730.7470692046,5277093.647477127],[515718.28149764176,5277093.058114821],[515718.2964984021,5277087.50116924],[515737.29513414897,5277088.441604085]]]},"properties":{"ID_SOURCE":"w144657494","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":430}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516062.823957601,5277521.1530661825],[516070.39086106594,5277519.506850777],[516070.58620623185,5277519.474048043],[516071.401999474,5277523.199484296],[516072.46151587076,5277522.969015523],[516073.410672154,5277527.350545265],[516074.70100873813,5277533.2778608855],[516067.2994583324,5277534.880071042],[516065.0302207692,5277524.460006655],[516063.6100232948,5277524.76727948],[516062.823957601,5277521.1530661825]]]},"properties":{"ID_SOURCE":"w144657496","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":431}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516188.31239175476,5276945.863205743],[516177.79062348994,5276948.390178158],[516177.93928907113,5276948.946289892],[516175.76001723716,5276949.38479464],[516174.4118368551,5276948.047372796],[516173.9957573647,5276946.4235768765],[516173.5946368554,5276944.822050489],[516176.7511986143,5276944.052840608],[516176.00910415454,5276940.827726629],[516186.605990128,5276938.300959762],[516188.31239175476,5276945.863205743]]]},"properties":{"ID_SOURCE":"w144657497","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":432}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515902.0431481502,5277758.95104196],[515897.60079320014,5277708.2591367345],[515924.7179630576,5277705.44361506],[515928.35107595415,5277749.909495653],[515930.3786242667,5277749.915043593],[515930.96113101294,5277756.585029104],[515924.7267843539,5277757.123671068],[515913.3103258427,5277757.870431655],[515904.2214890774,5277758.734712999],[515902.0431481502,5277758.95104196]]]},"properties":{"ID_SOURCE":"w144657498","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sports_centre","MAIN_USE":"entertainment, arts and culture","ZINDEX":0,"ID_BUILD":433}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516280.28023707855,5276690.164815276],[516280.50897903804,5276688.9429180045],[516277.65704666945,5276688.156967725],[516276.081019326,5276687.7080038525],[516277.8280767308,5276680.71108563],[516282.1812439819,5276681.83465225],[516282.78863507265,5276679.5024167355],[516280.76226725127,5276678.941052753],[516281.9770493581,5276674.276581523],[516286.3302206447,5276675.400151223],[516286.0260579071,5276676.732977031],[516290.90436232364,5276678.08029819],[516289.1591536518,5276684.410379488],[516287.9583560215,5276684.073601694],[516287.1234631607,5276687.183178349],[516288.84970599983,5276687.632565377],[516287.6352319241,5276692.185896443],[516280.28023707855,5276690.164815276]]]},"properties":{"ID_SOURCE":"w144825729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":434}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516263.8402797597,5276552.527940518],[516262.1233051666,5276548.744396724],[516266.9368569086,5276546.423906742],[516268.7289389447,5276550.207661764],[516263.8402797597,5276552.527940518]]]},"properties":{"ID_SOURCE":"w144825737","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":435}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516255.09996866266,5276589.2907728255],[516251.739586676,5276582.279594161],[516269.5653657445,5276573.438191846],[516273.07563990896,5276580.560939308],[516255.09996866266,5276589.2907728255]]]},"properties":{"ID_SOURCE":"w144825739","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":436}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516277.65704666945,5276688.156967725],[516280.50897903804,5276688.9429180045],[516280.28023707855,5276690.164815276],[516277.35319720855,5276689.378655171],[516277.65704666945,5276688.156967725]]]},"properties":{"ID_SOURCE":"w144825746","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":437}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516265.37226707506,5276568.758612488],[516260.9665557636,5276559.521715651],[516266.5315063541,5276557.092183758],[516270.8627220911,5276566.106597309],[516265.37226707506,5276568.758612488]]]},"properties":{"ID_SOURCE":"w144825751","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":438}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516278.6380902928,5276579.020529477],[516274.67995970574,5276570.896269914],[516284.0820224576,5276566.143545705],[516288.18974067183,5276574.490509394],[516278.6380902928,5276579.020529477]]]},"properties":{"ID_SOURCE":"w144825754","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":439}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.6889797832,5277001.9258882925],[517287.5374518078,5277002.369997866],[517286.7870710367,5277002.1454904],[517286.25540374493,5277004.144429533],[517286.0667738064,5277006.966822038],[517278.06771096477,5277004.57580222],[517279.5314994479,5276999.767789896],[517278.06081118784,5276999.307752384],[517280.4332389615,5276992.012903715],[517284.13985655876,5276993.213101335],[517287.71141711925,5276994.36844441],[517286.79927895305,5276998.033351805],[517288.7500062348,5276998.7059825165],[517287.6889797832,5277001.9258882925]]]},"properties":{"ID_SOURCE":"w145186970","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":440}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516330.7886838716,5277628.1260326],[516330.3390121601,5277627.802465595],[516331.95990465087,5277625.550873055],[516333.7165013254,5277623.110723913],[516334.18119242054,5277623.434333318],[516334.6561683752,5277622.768826732],[516336.2921455148,5277620.49504975],[516344.6186873479,5277626.442175873],[516336.9363725135,5277637.123382875],[516328.6098694225,5277631.165153721],[516330.1855468719,5277628.969003804],[516330.7886838716,5277628.1260326]]]},"properties":{"ID_SOURCE":"w145186981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":441}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516672.83317734336,5277412.350546547],[516675.5210738218,5277415.203425156],[516679.12236980675,5277419.036952515],[516673.6999877244,5277424.356135022],[516672.11260749,5277422.706719115],[516671.2290532606,5277421.792842112],[516669.4973297549,5277423.34384193],[516666.4278308387,5277420.000858243],[516669.9670142267,5277416.676794419],[516668.8514800228,5277415.473289927],[516667.9026907887,5277416.359692582],[516661.491336291,5277420.864734146],[516658.5633742118,5277417.9222632265],[516669.6939851967,5277407.11798386],[516673.66180995,5277411.463800586],[516672.83317734336,5277412.350546547]]]},"properties":{"ID_SOURCE":"w145186993","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":442}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.3796900457,5277728.830584184],[517311.90204910317,5277724.518489275],[517316.7988500157,5277721.799009392],[517313.8442660352,5277727.9696049625],[517309.44614451984,5277742.293585212],[517306.60709022195,5277737.394984774],[517308.6382788488,5277736.178483625],[517307.00206635264,5277733.361777297],[517304.3796900457,5277728.830584184]]]},"properties":{"ID_SOURCE":"w145187029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":443}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.4561747102,5277703.161060319],[516753.48089594423,5277702.546064392],[516754.8650858159,5277743.449543388],[516755.70224287675,5277765.679940613],[516748.7926168969,5277765.99347698],[516745.78852923255,5277766.09597478],[516738.2784703456,5277766.296656543],[516735.4561747102,5277703.161060319]]]},"properties":{"ID_SOURCE":"w145187102","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":444}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.0984979578,5277566.460217418],[516925.9216607178,5277566.120468529],[516925.30990097043,5277569.897447385],[516915.25178224006,5277568.201116336],[516915.8635356275,5277564.4241364505],[516918.7906961145,5277564.988341859],[516920.77551430813,5277553.880118093],[516927.98191224196,5277554.901326522],[516927.2254301976,5277559.378065829],[516926.8357473536,5277561.677529218],[516928.8620693617,5277562.127980689],[516928.0984979578,5277566.460217418]]]},"properties":{"ID_SOURCE":"w145187104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":445}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.34558343835,5277575.960932379],[516641.8035238041,5277574.74827703],[516642.10518124327,5277574.304579744],[516646.91581707017,5277572.762374642],[516649.59641336685,5277580.772112681],[516648.4690111296,5277581.102308287],[516649.51051025564,5277584.550623546],[516643.0461715013,5277586.643798259],[516641.92989007797,5277583.084130496],[516640.95268183044,5277583.414756892],[516640.05135146884,5277580.844849008],[516638.34558343835,5277575.960932379]]]},"properties":{"ID_SOURCE":"w145187117","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":446}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.05033588957,5276938.546326868],[517314.8163055045,5276944.0025977595],[517314.5197704403,5276947.74712909],[517310.6076708747,5276947.446534297],[517310.45151430485,5276949.44658745],[517306.79470578395,5276949.168982108],[517307.5290330635,5276939.635365302],[517314.92524399684,5276940.201938709],[517315.05033588957,5276938.546326868]]]},"properties":{"ID_SOURCE":"w145187124","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":447}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517156.9042417747,5277469.993699263],[517156.8245585772,5277471.549423459],[517156.744220399,5277473.327425594],[517156.3487527432,5277480.105795993],[517145.8370106008,5277479.407989953],[517147.88972210133,5277445.405217769],[517158.3267546434,5277445.991667045],[517157.93095602404,5277452.88117602],[517157.84996223677,5277454.881456011],[517157.770606143,5277456.326041198],[517156.9042417747,5277469.993699263]]]},"properties":{"ID_SOURCE":"w145187136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":448}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.5003958358,5277294.491182594],[516728.9178889209,5277294.558686094],[516722.43631982314,5277294.684548592],[516722.31580476125,5277284.348196051],[516717.28407721274,5277284.333746759],[516716.85984550166,5277248.990056638],[516766.8783030348,5277248.689320033],[516766.99874024745,5277259.025673103],[516727.11960911634,5277259.133248656],[516727.42263271747,5277284.36286545],[516732.3044788287,5277284.265752921],[516732.5003958358,5277294.491182594]]]},"properties":{"ID_SOURCE":"w145187161","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"commercial","ZINDEX":0,"ID_BUILD":449}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.48292923224,5277484.422114126],[517291.48651434557,5277478.2827887675],[517293.8611103043,5277480.312588816],[517303.0599121508,5277488.15305862],[517302.31393371354,5277488.995505221],[517296.23591071385,5277494.912318488],[517295.29441597423,5277495.843097101],[517294.56421851023,5277496.429969697],[517288.35462592414,5277491.021239656],[517289.47675103764,5277489.957628401],[517284.2927868124,5277485.6300061485],[517285.48292923224,5277484.422114126]]]},"properties":{"ID_SOURCE":"w145187164","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":450}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.3024682542,5276824.27447078],[516695.381643689,5276829.597937315],[516682.26670030336,5276819.557771975],[516680.38139974576,5276822.219725746],[516673.261250669,5276816.975765768],[516677.03089546587,5276811.985270848],[516679.7289994605,5276813.993514264],[516683.5740766842,5276808.892099859],[516693.2424304957,5276816.032752685],[516691.4328673132,5276818.4726404715],[516699.3024682542,5276824.27447078]]]},"properties":{"ID_SOURCE":"w145187172","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":451}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.85723972163,5276716.977010619],[516642.28887064813,5276713.860615435],[516652.8185774599,5276708.778288568],[516653.640314,5276710.33659491],[516658.3787825228,5276708.016213043],[516662.1131871834,5276715.362120029],[516657.29897959245,5276717.904561709],[516657.89634428,5276719.1288076565],[516647.5165491829,5276724.322693653],[516645.94818407035,5276721.20629744],[516643.85723972163,5276716.977010619]]]},"properties":{"ID_SOURCE":"w145187180","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":452}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.62934312975,5277219.43275449],[516834.5092550071,5277234.991986873],[516827.59899467975,5277235.305430955],[516827.52806925675,5277233.860407859],[516823.6975937808,5277233.960478545],[516823.6282730069,5277231.959760872],[516821.67532357527,5277232.065258162],[516821.5339323855,5277218.616927508],[516830.0510579963,5277218.41926043],[516830.12294676265,5277219.530866748],[516834.62934312975,5277219.43275449]]]},"properties":{"ID_SOURCE":"w145187183","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":453}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516511.71387437213,5277423.338786094],[516513.06249720504,5277424.454009542],[516514.0962242091,5277430.68077356],[516507.84161912283,5277438.220546468],[516501.45636344835,5277438.869284558],[516494.1885050841,5277432.958277578],[516493.6810769003,5277426.510728412],[516499.4841391451,5277419.303080373],[516502.5641294026,5277418.978390061],[516502.3441886207,5277417.088389127],[516511.71387437213,5277423.338786094]]]},"properties":{"ID_SOURCE":"w145187184","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":454}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516789.5719723143,5277764.999544698],[516783.9318201318,5277765.183332813],[516780.559705637,5277765.30697962],[516771.47202559526,5277765.725351171],[516770.84472763987,5277741.050477284],[516770.7030375476,5277735.49307223],[516769.85225010896,5277702.37092103],[516787.4257668431,5277701.9770103],[516788.4225539184,5277731.309713717],[516788.67202937545,5277738.545643171],[516789.5719723143,5277764.999544698]]]},"properties":{"ID_SOURCE":"w145187188","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":455}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516486.4120931778,5276917.025252349],[516482.1405374171,5276913.678967251],[516481.0849755873,5276915.120796526],[516469.61777482805,5276906.641730167],[516475.04673659644,5276899.099583818],[516480.6683158125,5276903.116522843],[516484.26613502606,5276905.682921138],[516485.3216993393,5276904.241092456],[516486.60352413316,5276902.466485273],[516493.5738392193,5276907.598653238],[516492.14148816187,5276909.483972347],[516486.4120931778,5276917.025252349]]]},"properties":{"ID_SOURCE":"w145187193","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":456}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516602.98359054496,5276735.309531168],[516598.33136110107,5276733.740312728],[516602.2689535313,5276722.526423215],[516603.46972537215,5276722.863265902],[516605.3626282671,5276717.53395553],[516612.79068314796,5276720.222494993],[516610.7481930945,5276725.329096829],[516612.3986584222,5276726.000643323],[516608.3108338152,5276737.214097677],[516604.10893533163,5276735.757298706],[516602.98359054496,5276735.309531168]]]},"properties":{"ID_SOURCE":"w145187203","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":457}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.8622035109,5276783.904895468],[516605.2897054012,5276785.251195936],[516601.57683498634,5276796.688004494],[516600.07596830616,5276796.239166856],[516598.2582018918,5276801.56869361],[516590.52950115094,5276798.990455044],[516592.1970477931,5276793.6604979085],[516590.920866562,5276793.434582343],[516594.6343514586,5276781.775489396],[516599.36165027454,5276783.344919181],[516600.8622035109,5276783.904895468]]]},"properties":{"ID_SOURCE":"w145187212","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":458}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516307.29133105144,5277745.957354433],[516317.34121448436,5277750.542250463],[516313.33567409293,5277759.6444960125],[516307.6356703226,5277757.072308405],[516307.9376042036,5277756.517454735],[516306.745192401,5277755.947301072],[516305.3878218845,5277755.287773708],[516304.1791536382,5277757.840606078],[516299.07865402004,5277755.714665504],[516304.5960240911,5277743.0601677755],[516307.9712284038,5277744.514440392],[516307.29133105144,5277745.957354433]]]},"properties":{"ID_SOURCE":"w145187232","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":459}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.3371534928,5276919.560307952],[516624.40317528124,5276883.075380361],[516638.49253936036,5276893.785039421],[516626.5076162986,5276908.865816557],[516611.3566121012,5276928.04975752],[516607.88783486903,5276932.930013501],[516598.5800765409,5276925.790528468],[516600.6765194449,5276922.806844729],[516596.3371534928,5276919.560307952]]]},"properties":{"ID_SOURCE":"w145187236","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":460}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516700.891425809,5277108.241203948],[516699.69265163667,5277107.237507335],[516706.17699315684,5277098.364922624],[516714.1209826992,5277104.278130832],[516707.7120570621,5277113.039783386],[516705.16398848617,5277111.143095542],[516695.5893053282,5277123.8967133965],[516688.0198812254,5277118.318023207],[516694.5780207481,5277109.890196368],[516697.8755260868,5277112.344727777],[516700.891425809,5277108.241203948]]]},"properties":{"ID_SOURCE":"w145187240","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":461}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.52625149005,5277568.869760477],[516722.4112926098,5277564.865521336],[516725.1170121146,5277564.09531439],[516730.3782596405,5277562.554472655],[516731.493532905,5277566.447574334],[516733.67325597495,5277565.786999629],[516734.9658513901,5277570.691984811],[516736.5703999422,5277576.798178102],[516727.85152576084,5277579.440477498],[516726.73689124855,5277575.325098463],[516724.0311767337,5277576.095304655],[516722.0230397785,5277569.310002259],[516723.52625149005,5277568.869760477]]]},"properties":{"ID_SOURCE":"w145187241","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":462}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517251.8789001233,5277529.178523568],[517250.40296971163,5277520.394094248],[517253.7089013956,5277519.848190881],[517254.99688770203,5277518.56278464],[517255.8178870447,5277517.742782339],[517255.8966079466,5277516.520476235],[517258.0806930462,5277514.415291103],[517259.5072153171,5277514.5306598665],[517265.57132269675,5277520.883617448],[517257.8896467253,5277528.196078461],[517251.8789001233,5277529.178523568]]]},"properties":{"ID_SOURCE":"w145187252","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":463}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517309.62978846015,5276910.056181681],[517309.46618688415,5276912.033984643],[517310.56996948126,5276912.126177688],[517311.83143998473,5276912.22995373],[517311.4652291749,5276916.6744589275],[517309.21260259574,5276916.489938749],[517309.10355709295,5276917.80106482],[517303.4044296798,5276917.32845354],[517302.87459352607,5276923.761876356],[517297.98640831996,5276923.358363981],[517299.16259186494,5276909.19152757],[517309.62978846015,5276910.056181681]]]},"properties":{"ID_SOURCE":"w145187281","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":464}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516993.8670442567,5277623.666608716],[516995.5936043393,5277623.893928715],[516994.75489496783,5277628.225937992],[516993.1486194794,5277627.954513358],[516986.34819817904,5277626.812154189],[516985.1471485237,5277626.641940065],[516985.7605627765,5277622.309272119],[516984.1094221482,5277621.971035126],[516984.79825645493,5277617.5274472],[516986.3743021891,5277617.865465274],[516986.7412491544,5277615.643737176],[516987.5211745065,5277610.866995577],[516995.7027677333,5277612.224553794],[516993.8670442567,5277623.666608716]]]},"properties":{"ID_SOURCE":"w145187300","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":465}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516402.1214377822,5276738.1856527],[516402.1211247505,5276738.296791544],[516402.3439427876,5276739.186536939],[516402.1186204888,5276739.185902292],[516398.9625434446,5276739.7327123955],[516398.2969042765,5276736.063227035],[516405.3604507781,5276734.860584811],[516405.1382592083,5276733.748561618],[516406.3406054837,5276733.529669425],[516406.930819309,5276737.310082936],[516402.1214377822,5276738.1856527]]]},"properties":{"ID_SOURCE":"w145187304","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":466}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.6458155916,5277641.393473947],[516977.10709684034,5277641.133364733],[516978.3374018695,5277633.8461725125],[516979.20058346575,5277633.993171848],[516979.43740014924,5277632.615727272],[516980.08702851506,5277628.738838088],[516985.8591528902,5277629.700365744],[516986.34819817904,5277626.812154189],[516993.1486194794,5277627.954513358],[516992.65953846497,5277630.853838252],[516988.91406676633,5277630.220523439],[516987.3323073508,5277639.562776856],[516989.0136432965,5277639.845532945],[516988.4711225814,5277643.04478013],[516984.86827546917,5277642.4341120515],[516978.6458155916,5277641.393473947]]]},"properties":{"ID_SOURCE":"w145187330","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":467}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.4317805809,5277534.486231401],[516928.6447349652,5277533.564389298],[516934.574504515,5277534.581893772],[516934.26991324406,5277536.025826734],[516936.6717294624,5277536.477373073],[516940.0494850133,5277537.042899927],[516939.2855787751,5277541.486274026],[516941.9123602305,5277542.0496170195],[516940.919928101,5277547.60372514],[516926.7715713428,5277545.006354521],[516928.4317805809,5277534.486231401]]]},"properties":{"ID_SOURCE":"w145187349","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":468}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516877.16630695213,5277652.33464859],[516877.1321743449,5277651.156466349],[516890.4854123403,5277650.772860854],[516890.7514897828,5277660.009361429],[516885.0436784216,5277660.181741812],[516882.3024968005,5277660.240476007],[516882.32828078093,5277661.707597917],[516877.506856582,5277661.793644234],[516877.43927059,5277661.793448297],[516877.3847037183,5277659.892797222],[516877.16630695213,5277652.33464859]]]},"properties":{"ID_SOURCE":"w145187397","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":469}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.5877038311,5277719.516605635],[516890.20248194574,5277712.054602645],[516897.05095634086,5277706.9620386325],[516899.519088835,5277710.414541127],[516899.06690623134,5277710.968928235],[516899.8372865862,5277712.038108039],[516904.52688990993,5277718.542296503],[516896.4749710554,5277724.298198485],[516894.3807040095,5277721.40248187],[516896.1868494475,5277720.074044255],[516895.81363335025,5277719.294981444],[516895.5877038311,5277719.516605635]]]},"properties":{"ID_SOURCE":"w145187416","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":470}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516877.619403831,5277700.681834897],[516872.3846537707,5277693.109145124],[516877.5014339794,5277689.567498823],[516878.2343379997,5277690.614339058],[516879.22153415444,5277692.017564485],[516882.4570718625,5277689.804147659],[516886.1970022162,5277694.927431733],[516882.05839106743,5277697.805067265],[516883.8526149468,5277700.588769129],[516878.05869660847,5277704.573006443],[516876.03918611666,5277701.7886532815],[516877.619403831,5277700.681834897]]]},"properties":{"ID_SOURCE":"w145187428","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":471}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517207.7036440277,5276798.19193115],[517203.64821073227,5276798.0688090185],[517203.73316754587,5276794.73486552],[517201.47996530414,5276794.72820933],[517201.52605433844,5276791.83871027],[517201.57083022455,5276789.393766605],[517207.80535229156,5276789.189906592],[517207.81126374763,5276787.189407384],[517213.218956137,5276787.205389569],[517213.21304282424,5276789.205888775],[517217.49380256166,5276789.329683743],[517217.54294991225,5276798.10987461],[517207.7036440277,5276798.19193115]]]},"properties":{"ID_SOURCE":"w145187447","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":472}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.71210992924,5277468.034676799],[516650.53042772604,5277466.878626851],[516653.49940768705,5277465.975771606],[516654.4368686881,5277469.045913848],[516655.61692512844,5277468.693642001],[516656.89665564155,5277472.876162621],[516658.68231191824,5277478.716115374],[516650.7149415581,5277481.138401034],[516648.93672429596,5277475.320699991],[516645.7948656823,5277476.278633209],[516644.6268217521,5277472.429853976],[516647.7611406639,5277471.483012552],[516646.71210992924,5277468.034676799]]]},"properties":{"ID_SOURCE":"w145187460","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":473}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.18131284905,5276702.787586663],[516462.89748382807,5276706.793468139],[516459.965136244,5276707.89657639],[516461.6065129049,5276711.791106389],[516462.65110985993,5276714.2391333245],[516459.64334418956,5276715.453168253],[516458.82249895146,5276713.561472878],[516455.6641727858,5276714.897338029],[516451.75389163365,5276716.542271734],[516448.09935343114,5276707.418490987],[516458.1003182923,5276703.334577051],[516458.32375737146,5276704.002046886],[516461.18131284905,5276702.787586663]]]},"properties":{"ID_SOURCE":"w145187465","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":474}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.4906596337,5277381.661283954],[516722.0815115916,5277365.924180469],[516730.84290632885,5277374.729400322],[516729.71322415315,5277375.8375528585],[516737.80093683547,5277383.8628686145],[516759.580003863,5277383.814380327],[516760.02699482534,5277411.156076679],[516751.99078616477,5277411.355228471],[516752.04605860956,5277418.246059989],[516716.9736962433,5277418.589811573],[516716.8994462845,5277392.138308451],[516706.4906596337,5277381.661283954]]]},"properties":{"ID_SOURCE":"w145187549","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"religious","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":475}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.7329473166,5277622.768422309],[517211.34021711303,5277620.904596138],[517208.5040160922,5277620.073776252],[517210.24995346216,5277613.743959535],[517207.849175283,5277612.958883182],[517213.01124905574,5277594.191490311],[517216.0124770137,5277595.089484276],[517214.79647451866,5277599.97604665],[517215.9222625426,5277600.201655569],[517214.0995756904,5277607.086943368],[517221.45276308176,5277609.220349403],[517218.492125547,5277619.992168546],[517217.7329473166,5277622.768422309]]]},"properties":{"ID_SOURCE":"w145187558","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":476}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.03348842403,5277696.075369012],[516935.5804930976,5277705.073477707],[516931.75258799986,5277704.395503589],[516925.14713606174,5277703.376036361],[516925.3002341316,5277702.37622194],[516923.19854264986,5277702.036692204],[516920.94666085835,5277701.69672669],[516922.2465365359,5277693.698428924],[516931.17897912563,5277695.058079784],[516931.86517889344,5277691.503597244],[516937.7200150067,5277692.4097481435],[516937.03348842403,5277696.075369012]]]},"properties":{"ID_SOURCE":"w145187568","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":477}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.90204910317,5277724.518489275],[517304.3796900457,5277728.830584184],[517302.7358648309,5277726.047198477],[517302.20954107994,5277726.267914158],[517299.639559031,5277721.792448984],[517296.4569652325,5277716.24822097],[517304.5059900112,5277711.604261359],[517307.9421830263,5277717.727175663],[517313.2077458966,5277714.742053153],[517315.598220388,5277718.972482403],[517315.2971799676,5277719.193866984],[517316.7988500157,5277721.799009392],[517311.90204910317,5277724.518489275]]]},"properties":{"ID_SOURCE":"w145187585","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":478}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.35914887313,5276741.246617147],[516580.81327421847,5276740.025372973],[516575.636239569,5276738.121259195],[516578.4370466805,5276730.460589839],[516583.6891947832,5276732.364919957],[516584.1433215047,5276731.1436760565],[516595.3232601017,5276735.065416505],[516593.73333519144,5276739.506475578],[516593.27952377335,5276740.616579907],[516591.61386124283,5276745.279703264],[516580.35914887313,5276741.246617147]]]},"properties":{"ID_SOURCE":"w145187602","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":479}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517059.2697021393,5277651.531735],[517055.6725980245,5277648.964976726],[517057.482059207,5277646.525199196],[517066.22900415305,5277634.325439504],[517066.3795217693,5277634.214740798],[517069.0806935165,5277635.00063951],[517071.5569027744,5277635.6747398535],[517069.294250316,5277639.00230385],[517069.06928862847,5277638.890504318],[517067.27448098647,5277641.452575157],[517061.15100272134,5277650.2035686225],[517060.55186556483,5277649.646113066],[517059.2697021393,5277651.531735]]]},"properties":{"ID_SOURCE":"w145187644","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":480}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.88409707794,5277528.341236534],[516707.2041310714,5277525.589477363],[516708.1708273605,5277528.926448391],[516706.1412879632,5277529.587463612],[516709.1148754966,5277540.154287198],[516701.7473878009,5277542.911644338],[516701.30031240615,5277541.687822939],[516697.91743695736,5277542.900658352],[516695.9063893696,5277537.11561624],[516699.89068266295,5277535.682224969],[516699.44408449216,5277534.29169526],[516697.5833892732,5277528.451513977],[516697.88409707794,5277528.341236534]]]},"properties":{"ID_SOURCE":"w145187649","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":481}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517115.4146423225,5277584.123435694],[517118.82352909073,5277586.856387018],[517122.08254654467,5277589.477759652],[517117.03212948743,5277595.909025439],[517116.9570330825,5277595.908804645],[517114.4697036637,5277599.013410622],[517110.5738386812,5277595.890040683],[517106.6698053367,5277595.545148044],[517106.8973805652,5277594.767837124],[517109.460130801,5277591.552309646],[517110.2140351195,5277590.554265791],[517114.96242935996,5277584.677805995],[517115.4146423225,5277584.123435694]]]},"properties":{"ID_SOURCE":"w145187658","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":482}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.05540182214,5276777.645329541],[516732.7726602163,5276778.9588397015],[516736.0619056781,5276784.347456651],[516734.5492021255,5276790.633620187],[516734.0635045787,5276792.377118799],[516728.66476546397,5276791.861478313],[516724.52158524067,5276790.904889599],[516724.60419006593,5276796.139809872],[516720.70942967443,5276800.218568791],[516712.75032706227,5276794.194173432],[516711.5733839638,5276793.412817381],[516707.7431779562,5276790.7011305],[516707.2964099772,5276786.732159095],[516716.8432515716,5276773.411671532],[516721.8008033214,5276775.870979917],[516723.04091894196,5276780.8091466],[516732.05540182214,5276777.645329541]]]},"properties":{"ID_SOURCE":"w145187707","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":483}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.5778148249,5277548.014509103],[517004.28006595455,5277555.234813913],[517003.59250817285,5277559.233843223],[516999.1637396638,5277558.554070539],[516998.88926965685,5277559.964746228],[516998.7063438094,5277560.886673532],[516991.12512961787,5277559.6420036815],[516992.95794731803,5277549.200199831],[516996.1854961921,5277549.765320916],[516996.4133828429,5277548.876866782],[517001.81777090003,5277549.781766217],[517003.1009115384,5277547.562714979],[517005.5778148249,5277548.014509103]]]},"properties":{"ID_SOURCE":"w145187719","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":484}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.5925347735,5277543.471027715],[516959.6599360129,5277549.103105004],[516956.31222811784,5277548.537654227],[516956.0837002059,5277549.648387875],[516946.4010402149,5277547.953096724],[516947.84891300794,5277540.733216484],[516952.3601782414,5277541.457646194],[516954.1541574852,5277541.751834],[516954.3059699483,5277541.196576493],[516957.6089477164,5277541.650755876],[516957.456163811,5277542.539430237],[516960.75881680375,5277543.104750395],[516960.5925347735,5277543.471027715]]]},"properties":{"ID_SOURCE":"w145187740","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":485}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.97609346453,5277659.9838217385],[516946.89873322344,5277660.761576137],[516952.00264252105,5277661.665555317],[516949.48080676084,5277676.662104977],[516942.61284830334,5277675.51959992],[516943.7214301801,5277668.754403742],[516933.9638695935,5277667.058913934],[516934.19335870224,5277665.614762234],[516933.0300573019,5277665.377984652],[516932.01688217,5277665.163871926],[516932.17095209827,5277663.830640742],[516932.0961798183,5277663.719283325],[516933.0905242043,5277657.49833876],[516946.97609346453,5277659.9838217385]]]},"properties":{"ID_SOURCE":"w145187764","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":486}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.1343817542,5277421.340842922],[517135.71803767246,5277421.807717853],[517135.3183392449,5277430.0308955265],[517127.6599224143,5277429.4526612],[517127.82156289543,5277425.56323955],[517124.1725226558,5277425.296883971],[517116.7092569357,5277424.752580056],[517116.47285203566,5277428.530642252],[517108.9646286327,5277427.952874093],[517109.5886061647,5277420.063773668],[517117.02206777025,5277420.530182852],[517117.2594535602,5277416.418703861],[517128.2963496943,5277417.340282379],[517128.1343817542,5277421.340842922]]]},"properties":{"ID_SOURCE":"w145187767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":487}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517124.2617765489,5277257.064674367],[517112.61886980006,5277257.808422535],[517112.4758544168,5277255.362924677],[517109.997201513,5277255.466780202],[517110.14021793316,5277257.912277998],[517096.8450982403,5277258.651202644],[517096.48950106674,5277251.8706254605],[517101.29693422513,5277251.551323867],[517100.7317069629,5277239.4354163455],[517116.50553117605,5277238.592646667],[517116.79221282015,5277243.261364618],[517123.55227918754,5277242.947822004],[517124.2617765489,5277257.064674367]]]},"properties":{"ID_SOURCE":"w145187781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":488}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.23697561247,5276740.822978762],[516465.51369377115,5276743.121328302],[516461.1364121532,5276745.242836127],[516456.80531157396,5276736.339416384],[516459.5129500697,5276735.013391974],[516458.9158595555,5276733.678027597],[516459.5962249122,5276732.123994357],[516463.3569426061,5276730.245249658],[516465.0847304908,5276730.138994809],[516465.9058855694,5276731.919552285],[516468.91458700236,5276730.372104051],[516473.9926607102,5276740.722462406],[516470.9088558418,5276742.2696956005],[516470.23697561247,5276740.822978762]]]},"properties":{"ID_SOURCE":"w145187789","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":489}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.10214697296,5277681.304354864],[516643.481530267,5277681.280673179],[516647.93477623194,5277681.260064229],[516647.9125246606,5277678.537072685],[516651.8551563403,5277678.503892577],[516651.8778193306,5277681.082403437],[516652.4260149573,5277681.083971483],[516652.47726729186,5277689.41961181],[516640.7921389734,5277689.497338863],[516640.8030916615,5277690.919961096],[516636.8154113937,5277690.953019907],[516636.76242159604,5277683.217530382],[516640.11173388234,5277683.204874806],[516640.10214697296,5277681.304354864]]]},"properties":{"ID_SOURCE":"w145187791","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":490}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517234.2284779952,5276794.158198632],[517232.1258178817,5276794.040836303],[517232.1419329395,5276788.595032898],[517239.5027304551,5276788.50567957],[517239.5758631555,5276789.17273499],[517240.6051226448,5276789.07575631],[517241.75461889023,5276788.9569058465],[517241.8353197866,5276787.067767872],[517246.8687947999,5276786.6381140435],[517246.8572742143,5276790.5279736],[517249.6365549129,5276790.42506583],[517249.4600045133,5276799.315728514],[517234.0637921805,5276799.047863295],[517234.2284779952,5276794.158198632]]]},"properties":{"ID_SOURCE":"w145187800","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":491}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.7653300292,5277733.002798851],[516910.4854041112,5277735.452873979],[516917.1539669957,5277740.584686433],[516913.1967803077,5277745.641170239],[516912.5560880488,5277746.461744539],[516912.7056312011,5277746.6844588965],[516911.8009462688,5277747.904370168],[516912.5502762583,5277748.462246816],[516909.3089487531,5277752.67614936],[516902.94044801407,5277747.656356936],[516906.4077026603,5277743.220827099],[516905.5191556299,5277738.883788619],[516903.7990804912,5277736.433714949],[516908.7653300292,5277733.002798851]]]},"properties":{"ID_SOURCE":"w145187803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":492}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516873.8372935645,5277660.88277361],[516869.98453712725,5277660.993861846],[516870.0113869932,5277662.094224999],[516862.7865518973,5277662.295573371],[516862.66436745063,5277652.626045327],[516864.1662807544,5277652.630395827],[516864.1743293473,5277649.8519208515],[516868.45510632545,5277649.753182902],[516868.52182932897,5277652.643014465],[516877.16630695213,5277652.33464859],[516877.3847037183,5277659.892797222],[516873.75726547,5277659.993422184],[516873.8372935645,5277660.88277361]]]},"properties":{"ID_SOURCE":"w145187818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":493}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516955.9225024057,5277579.211138613],[516956.3041356864,5277577.100591484],[516960.28199132887,5277577.8901579445],[516960.2043045393,5277578.779051055],[516969.21168778185,5277580.250117379],[516967.4556380356,5277590.136453017],[516961.8263166652,5277589.119789977],[516962.0541965757,5277588.231334459],[516960.3128643641,5277587.915069507],[516958.3013140374,5277587.5535619855],[516958.07343467354,5277588.442017645],[516954.47042117105,5277587.875824116],[516954.62320348853,5277586.987149617],[516955.9225024057,5277579.211138613]]]},"properties":{"ID_SOURCE":"w145187825","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":494}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.4972665067,5276874.56480383],[516540.9965390561,5276875.569320281],[516542.3531770989,5276873.906077604],[516544.45203177375,5276875.356857317],[516535.85747739294,5276886.779840862],[516534.7327878621,5276886.109808618],[516531.5660498919,5276890.435268358],[516525.04511912697,5276885.748889301],[516528.212170208,5276881.312287183],[516526.86279276194,5276880.419339203],[516534.17580726,5276870.659800036],[516538.1485204895,5276873.4495755145],[516539.4972665067,5276874.56480383]]]},"properties":{"ID_SOURCE":"w145187830","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":495}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.15112898295,5277367.709474002],[516409.786602794,5277368.314238415],[516408.3562318499,5277372.211215417],[516405.1677697445,5277371.0463761855],[516404.19144243735,5277373.722095363],[516407.39489179256,5277374.89809029],[516404.8747347205,5277381.7594308695],[516391.6032443325,5277376.909696852],[516394.1385328247,5277370.003937322],[516397.22198388237,5277371.124018818],[516399.6210069843,5277364.606867353],[516401.369037654,5277365.245288383],[516408.15112898295,5277367.709474002]]]},"properties":{"ID_SOURCE":"w145187883","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":496}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516405.1382592083,5276733.748561618],[516405.3604507781,5276734.860584811],[516398.2969042765,5276736.063227035],[516395.66689108283,5276736.500380592],[516394.3286281126,5276728.972453596],[516393.6705893663,5276725.26964833],[516392.46824187733,5276725.488543134],[516391.8758275644,5276722.486103073],[516407.2062421934,5276719.528503046],[516407.94541965413,5276723.753895165],[516405.9913687977,5276724.192948696],[516403.5115648963,5276724.630521909],[516404.0285523397,5276727.7438904485],[516405.1382592083,5276733.748561618]]]},"properties":{"ID_SOURCE":"w145187916","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":497}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516547.5573908152,5276808.059443543],[516547.4709149679,5276812.060228897],[516535.6791948666,5276812.026733296],[516535.8056782892,5276801.868919246],[516535.8745374341,5276796.134303717],[516528.28686780564,5276796.77960112],[516528.30043199076,5276792.00063047],[516528.3016937751,5276791.5560750635],[516536.1162684936,5276790.355723232],[516544.68191441224,5276789.1575157065],[516544.6623373781,5276796.048124525],[516545.71351545386,5276796.162250893],[516545.67972708936,5276808.054108223],[516547.5573908152,5276808.059443543]]]},"properties":{"ID_SOURCE":"w145187977","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":498}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.17849962576,5276744.5809412645],[517315.11826195085,5276743.940676773],[517315.77109560464,5276751.722405279],[517310.36204855953,5276752.150883292],[517310.50730758865,5276753.81841238],[517310.02503531,5276754.350449935],[517309.6030471379,5276754.815982827],[517307.27406147437,5276755.031340167],[517307.41932130925,5276756.698869182],[517302.16049399704,5276757.1278012525],[517301.79783582035,5276752.792270804],[517301.3653528603,5276746.678295877],[517306.3237600596,5276746.248470228],[517306.17849962576,5276744.5809412645]]]},"properties":{"ID_SOURCE":"w145188003","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":499}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.2399259516,5276800.444250611],[517255.2698941102,5276790.3306156695],[517259.30352453387,5276790.209201502],[517261.95505818166,5276790.128148954],[517261.9530814962,5276790.794982025],[517268.56280893914,5276790.703439104],[517268.61056096165,5276799.928185993],[517268.0097075507,5276799.926404229],[517268.06965419673,5276805.039013891],[517268.21920827933,5276805.2617370235],[517268.27882507624,5276810.485485576],[517262.9452723123,5276810.803091404],[517262.60005008144,5276800.577204211],[517255.2399259516,5276800.444250611]]]},"properties":{"ID_SOURCE":"w145188029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":500}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.83694601967,5277139.803944831],[516854.6640777052,5277121.687650621],[516872.6145445282,5277121.406219108],[516872.2399312669,5277095.176132022],[516878.47346829664,5277095.194197938],[516878.5434165683,5277096.972638071],[516883.95114279765,5277096.877176277],[516884.6470821183,5277167.675274046],[516879.3896254569,5277167.771170475],[516879.38479268097,5277169.438254193],[516872.9263514969,5277169.308395293],[516872.63683038944,5277139.633217625],[516854.83694601967,5277139.803944831]]]},"properties":{"ID_SOURCE":"w145188032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":501}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.48947549495,5277062.531856577],[516775.45106287685,5277062.332508772],[516775.46226953634,5277058.442647391],[516826.459355175,5277057.922953933],[516826.43012927455,5277068.036593511],[516820.75964470464,5277068.086893868],[516803.28258398356,5277068.225370425],[516788.058684424,5277068.348167268],[516775.28324600385,5277068.444715386],[516768.87486112147,5277076.972908747],[516756.57076597057,5277093.363953082],[516744.40246796684,5277109.566476286],[516739.4718386662,5277116.1317769615],[516743.81883980124,5277119.256190739],[516736.95805708395,5277128.438843448],[516724.6388838715,5277144.91882407],[516719.61773721594,5277151.639477415],[516711.5239328026,5277145.614691085],[516735.8752202032,5277113.231802851],[516731.60363232973,5277109.9964719545],[516767.48947549495,5277062.531856577]]]},"properties":{"ID_SOURCE":"w145188046","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":502}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.57093036914,5276889.982401481],[517183.9269711364,5276889.034094829],[517184.15261489275,5276914.37464255],[517184.2126331328,5276919.487252095],[517184.26674760407,5276926.600361319],[517149.4920011933,5276926.875717678],[517138.5264697755,5276926.91011727],[517138.28983414196,5276905.23715386],[517138.30488071236,5276900.12476605],[517128.39031673543,5276900.317874013],[517123.2828242758,5276900.413992616],[517123.21915728773,5276896.523911494],[517123.16300680576,5276890.077636533],[517123.3132178237,5276890.078078239],[517128.57093036914,5276889.982401481]]]},"properties":{"ID_SOURCE":"w145188106","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sports_centre","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":503}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516827.33421649766,5277612.73572542],[516826.1320352137,5277612.954530595],[516824.2132581399,5277601.279293686],[516835.33362079,5277599.199782094],[516837.25237630494,5277610.875022681],[516836.5007714528,5277611.095128855],[516839.74778171047,5277630.887426479],[516836.0661519817,5277631.543617885],[516836.28822569567,5277632.6556593655],[516830.8036529557,5277633.528920185],[516827.5546864202,5277614.403461488],[516829.65802138014,5277614.1872615935],[516829.3630984211,5277612.297030374],[516827.33421649766,5277612.73572542]]]},"properties":{"ID_SOURCE":"w145188122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":504}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.72895723255,5276715.323646533],[516569.525652173,5276715.875921313],[516569.1460026441,5276717.319657694],[516569.444219957,5276718.098484374],[516570.715042307,5276720.213755426],[516561.46225800854,5276725.299861716],[516557.7252051941,5276718.843130154],[516560.0570203859,5276717.627223544],[516558.11464802007,5276713.954089038],[516558.7243586477,5276710.843910079],[516562.4024283819,5276711.632347832],[516564.74961674353,5276710.294233105],[516570.9035240367,5276706.7663834905],[516574.4906709164,5276713.111557022],[516570.72895723255,5276715.323646533]]]},"properties":{"ID_SOURCE":"w145188139","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":505}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516997.49163191876,5277591.113188429],[516996.5758734129,5277596.111811912],[516995.9637463243,5277599.999922608],[516992.28597157064,5277599.3223474175],[516992.4403813149,5277597.8779789405],[516986.43584915064,5277596.771284946],[516982.6079433212,5277596.071049868],[516984.059416076,5277587.62864915],[516987.887716454,5277588.195518379],[516988.5749358692,5277584.307626048],[516993.8290990919,5277585.212079923],[516993.1418762664,5277589.099971644],[516994.5680606954,5277589.326414524],[516994.41462348675,5277590.437365964],[516997.49163191876,5277591.113188429]]]},"properties":{"ID_SOURCE":"w145188145","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":506}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.6955466802,5276837.921808367],[516572.1194009371,5276839.0372578995],[516564.9571276676,5276848.574898744],[516563.6828542232,5276847.682155937],[516560.4412840836,5276851.896247316],[516554.070545071,5276847.210263271],[516557.38785127277,5276842.774104209],[516556.0387852694,5276841.770010673],[516563.1259459164,5276832.2321453495],[516564.2500103918,5276833.124460725],[516564.551699864,5276832.68075986],[516567.3243065448,5276834.911442556],[516567.09803936305,5276835.244218099],[516570.6955466802,5276837.921808367]]]},"properties":{"ID_SOURCE":"w145188153","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":507}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516958.67057598336,5277718.588628605],[516965.1892505046,5277723.608919481],[516965.6391712428,5277723.83251056],[516963.1516531098,5277727.048320497],[516961.35326579155,5277725.709401108],[516959.3185853092,5277728.148552366],[516962.3152489076,5277730.602361972],[516958.0940842911,5277736.035922126],[516954.7225959859,5277733.358743104],[516955.5515501466,5277732.360897808],[516949.7825299313,5277727.787360062],[516952.62405362626,5277724.205813469],[516955.58618564456,5277720.469023607],[516956.48505716736,5277721.249621338],[516958.67057598336,5277718.588628605]]]},"properties":{"ID_SOURCE":"w145188205","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":508}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516923.64545945486,5277625.795992669],[516922.7291235034,5277631.016905863],[516919.05103710754,5277630.450515872],[516918.8979383239,5277631.450330345],[516916.54070086643,5277631.176744498],[516914.91914514505,5277630.994209004],[516914.76572417584,5277632.105162582],[516907.40955056425,5277630.972394982],[516908.71006819734,5277622.751817107],[516916.06625196786,5277623.884586307],[516916.2212880591,5277622.217937814],[516920.4247292758,5277622.896992782],[516920.5027324701,5277621.896960099],[516924.1808241398,5277622.463350991],[516923.64545945486,5277625.795992669]]]},"properties":{"ID_SOURCE":"w145188229","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":509}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.1363247266,5277713.717687192],[517099.34014271223,5277713.220828837],[517050.15624407347,5277711.965173119],[517050.41082420206,5277701.963322308],[517050.4111497062,5277701.852183302],[517052.06324049906,5277701.857022186],[517059.64718777017,5277702.1015210925],[517059.9239310311,5277684.542218567],[517060.1912305765,5277670.205947542],[517067.3997415991,5277670.449356128],[517066.70579506457,5277702.233349805],[517119.9439235375,5277703.834485862],[517119.6892239893,5277713.836333949],[517117.1363247266,5277713.717687192]]]},"properties":{"ID_SOURCE":"w145188259","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":510}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.05670342164,5277664.695618526],[516965.50915371784,5277665.372518244],[516965.6635552003,5277663.928148929],[516969.6413501846,5277664.717722038],[516968.19024058187,5277673.048988273],[516963.83697403234,5277672.258322017],[516963.6822493633,5277673.8138304],[516957.0770918005,5277672.683188062],[516956.77217816864,5277674.238259162],[516953.2443131042,5277673.672284919],[516954.8485052449,5277664.341201402],[516958.3012803103,5277664.906957847],[516958.4537375451,5277664.129422348],[516962.05670342164,5277664.695618526]]]},"properties":{"ID_SOURCE":"w145188295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":511}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516625.7584061779,5276742.487452376],[516622.90686306066,5276741.590193945],[516626.2382430323,5276732.263965566],[516634.2671295302,5276734.954248081],[516638.4291607794,5276724.074442976],[516642.4808440291,5276725.530837391],[516643.90661815676,5276725.979471208],[516648.78384675964,5276727.660509067],[516644.5457382067,5276738.8735087225],[516643.1199672946,5276738.424874732],[516640.8502291558,5276744.197655296],[516633.49637277395,5276741.842710898],[516628.6939418057,5276740.273039097],[516627.6341870867,5276743.15964652],[516625.7584061779,5276742.487452376]]]},"properties":{"ID_SOURCE":"w145188309","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":512}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516453.75711796194,5277336.596770183],[516452.7833339574,5277335.704899679],[516447.0566027245,5277342.468249727],[516444.73447769013,5277340.350033675],[516447.9744388278,5277336.580431264],[516448.87375167,5277337.249810899],[516450.7575250848,5277335.032336447],[516441.61983560777,5277326.337618328],[516444.3315919081,5277323.455641031],[516445.6045231288,5277324.792914377],[516444.3231167041,5277326.456392571],[516448.8174909188,5277330.581261884],[516449.79692841467,5277329.472630669],[516455.64026522654,5277334.601575206],[516453.75711796194,5277336.596770183]]]},"properties":{"ID_SOURCE":"w145188351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":513}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.1892505046,5277723.608919481],[516958.67057598336,5277718.588628605],[516961.7607969574,5277714.707733076],[516962.43535545823,5277715.154258311],[516962.8045832305,5277714.721888326],[516963.1888947999,5277714.267334325],[516962.5904026168,5277713.487610783],[516962.8182779332,5277712.599155137],[516965.45599186135,5277709.383782802],[516968.6025284803,5277711.949172253],[516968.97832694615,5277711.839127677],[516970.02965561027,5277711.842192211],[516972.5022791541,5277713.738779651],[516969.6383068635,5277717.286909154],[516969.9377142911,5277717.621201781],[516965.1892505046,5277723.608919481]]]},"properties":{"ID_SOURCE":"w145188378","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":514}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.37579862226,5277694.830044276],[516967.9856296497,5277691.7199030975],[516966.2594125654,5277691.381452209],[516967.174482881,5277686.605101316],[516977.8328196694,5277688.414413903],[516976.9928360175,5277693.190982147],[516976.3169797087,5277693.189011264],[516975.40222694504,5277697.854221778],[516976.3030438789,5277697.967988506],[516975.6922367977,5277701.411545875],[516966.5355005388,5277699.717753064],[516967.1459784526,5277696.38533376],[516967.9717006663,5277696.498880333],[516968.35171129694,5277694.944028638],[516967.37579862226,5277694.830044276]]]},"properties":{"ID_SOURCE":"w145188381","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":515}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.80858518643,5277046.442881533],[517271.2760843469,5277040.753907011],[517271.7434525099,5277035.10938813],[517270.3168129223,5277034.9940167405],[517270.7045278237,5277030.88299171],[517279.93997391773,5277031.688370583],[517279.62735617586,5277035.799617895],[517279.31803690153,5277038.79947637],[517283.14733065217,5277039.144260674],[517284.2699257272,5277040.481271233],[517284.0366975123,5277043.1479357565],[517282.6818649668,5277044.144173147],[517282.44764801516,5277047.1442544125],[517278.54358578834,5277046.688108803],[517278.54259641527,5277047.021525471],[517270.80858518643,5277046.442881533]]]},"properties":{"ID_SOURCE":"w145188393","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":516}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516871.4412696711,5277681.770137322],[516869.42174802703,5277678.985786581],[516868.8951146401,5277679.317680394],[516866.4263067398,5277676.087469133],[516866.9587362622,5277673.755073042],[516868.4635423684,5277672.759173638],[516870.33996131684,5277673.098030715],[516871.16311201523,5277674.100675564],[516874.022535185,5277672.108443988],[516877.029643056,5277676.1626544995],[516878.06189918553,5277677.566010314],[516879.79231454077,5277676.459627976],[516882.1856972888,5277679.800766159],[516874.4272953609,5277685.324155751],[516872.8619965258,5277686.464360217],[516870.0866559222,5277682.76647119],[516871.4412696711,5277681.770137322]]]},"properties":{"ID_SOURCE":"w145188454","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":517}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.9637463243,5277599.999922608],[516996.5758734129,5277596.111811912],[516999.5036593795,5277596.453780004],[516999.7331673989,5277595.009631],[517001.6249154156,5277595.248549079],[517003.33649682405,5277595.464713582],[517003.259128265,5277596.242467171],[517009.4888820757,5277597.3720645355],[517008.95346632734,5277600.7046983605],[517011.20505752636,5277601.155836771],[517010.8227563519,5277603.488658403],[517009.6911163255,5277605.26359097],[516998.5820588627,5277603.45290502],[516998.58303237654,5277603.119488053],[516995.50570597994,5277602.554803972],[516995.9637463243,5277599.999922608]]]},"properties":{"ID_SOURCE":"w145188528","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":518}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.2109570713,5277654.066055053],[516591.19005096174,5277653.06858613],[516592.60197590454,5277653.0281541515],[516630.6184425372,5277652.069686682],[516631.7817175886,5277691.749958427],[516631.78140007734,5277691.8610974355],[516636.88818801247,5277691.764549268],[516636.9582013982,5277693.542988009],[516636.730057553,5277694.5425952785],[516636.9378743218,5277700.655884599],[516607.04782964656,5277701.348521583],[516606.70088745654,5277691.344939653],[516600.5427676032,5277691.438516309],[516600.2065883574,5277677.656208735],[516590.8190381317,5277677.851728],[516590.37452725664,5277659.912480195],[516590.2109570713,5277654.066055053]]]},"properties":{"ID_SOURCE":"w145188561","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":519}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516409.21823611634,5277364.800617691],[516402.4361731445,5277362.325316955],[516397.59689464764,5277360.6668162085],[516399.9966111006,5277353.905159304],[516403.1551690893,5277355.025455432],[516404.28310713946,5277351.850034057],[516407.77179010306,5277353.082402661],[516406.65899554605,5277356.21341011],[516409.6825286059,5277357.277759395],[516410.8180737259,5277354.06901875],[516414.44180773676,5277355.346227962],[516413.2759704373,5277358.643794391],[516416.216985676,5277359.674572512],[516413.83990780637,5277366.391830765],[516409.21823611634,5277364.800617691]]]},"properties":{"ID_SOURCE":"w145188577","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":520}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516848.00444674515,5277736.049694267],[516846.5012685139,5277736.489903943],[516850.29988845676,5277747.281472434],[516835.04061067157,5277752.460902346],[516831.46660684276,5277741.892273156],[516832.9697825263,5277741.452059602],[516834.2476748636,5277741.011194976],[516829.2597152525,5277725.992881152],[516830.83831089886,5277725.441745124],[516825.7004602165,5277710.311861548],[516840.4341748207,5277705.130886619],[516845.49657557777,5277720.371704866],[516844.5193785727,5277720.702297138],[516843.16638621705,5277721.142942239],[516848.00444674515,5277736.049694267]]]},"properties":{"ID_SOURCE":"w145188588","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":521}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.0499646221,5277678.207883762],[516830.51626467647,5277680.984839135],[516827.66457084083,5277680.309755951],[516825.5583689384,5277681.526207569],[516817.0369943937,5277667.831374149],[516822.378407008,5277664.512608362],[516820.73433366796,5277661.729359648],[516833.7506081673,5277653.209207735],[516835.6947388279,5277656.104467761],[516841.1866857043,5277652.675014577],[516847.6907401177,5277662.807566996],[516837.9857368136,5277668.892185558],[516837.6869621954,5277668.335621765],[516834.9484737393,5277670.061484996],[516833.3233914962,5277671.101501229],[516835.86442255834,5277675.332166578],[516831.0499646221,5277678.207883762]]]},"properties":{"ID_SOURCE":"w145188600","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":522}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516939.0644310766,5277746.538815998],[516938.01537223294,5277745.757783936],[516941.2570478387,5277741.432758347],[516941.9328985368,5277741.434725172],[516943.3802446092,5277739.538444194],[516945.40051018423,5277736.888079506],[516947.42806386383,5277736.893981657],[516950.5752406107,5277739.237083467],[516951.70262974134,5277738.906946316],[516954.92457452347,5277741.361408169],[516954.3215526176,5277742.137631635],[516954.5439230534,5277743.138538867],[516953.11130182334,5277745.134885939],[516952.2101681287,5277745.13226179],[516946.631824146,5277752.451257628],[516945.50799649995,5277751.558866588],[516939.0644310766,5277746.538815998]]]},"properties":{"ID_SOURCE":"w145188618","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":523}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.33538717363,5277708.705396627],[516691.80972261843,5277708.703889413],[516621.9641330177,5277711.060264398],[516692.33538717363,5277708.705396627]]]},"properties":{"ID_SOURCE":"w145188679","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":524}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517219.0371513902,5277410.317162406],[517218.9342310174,5277412.10621082],[517220.10557473905,5277412.176359121],[517219.87611908943,5277416.12114785],[517218.8324111271,5277416.06249106],[517218.68980508397,5277418.573831654],[517219.73351259617,5277418.632488418],[517219.3365878607,5277425.877637757],[517209.75551752787,5277425.338065353],[517209.77936118236,5277424.893576126],[517207.2414550536,5277424.74159292],[517207.3076623564,5277404.881083989],[517214.05819655885,5277405.190002758],[517213.7864128027,5277408.212205139],[517219.14030190953,5277408.450316724],[517219.0371513902,5277410.317162406]]]},"properties":{"ID_SOURCE":"w145188727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":525}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.2153020375,5277404.542959224],[516550.9508709273,5277408.312946484],[516549.13445043814,5277410.608378198],[516554.16974379745,5277414.612613812],[516546.0299286935,5277424.847684519],[516540.96466237365,5277420.821142737],[516533.2017288296,5277430.579400671],[516522.90637465386,5277422.381394295],[516526.9310272069,5277417.324839927],[516517.227596908,5277409.595311597],[516518.9083226804,5277407.477308763],[516525.254292268,5277399.515475745],[516539.978078251,5277411.226970153],[516543.88969452656,5277406.314588174],[516544.45167250664,5277406.760744507],[516546.2153020375,5277404.542959224]]]},"properties":{"ID_SOURCE":"w145188743","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":526}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.5868382216,5277646.165097523],[517274.81245528755,5277646.054627018],[517275.0344447083,5277647.166685456],[517279.2427754291,5277646.178914755],[517278.9460208584,5277644.955494274],[517283.90564170876,5277643.858816841],[517284.9444437023,5277648.085219987],[517287.0487744178,5277647.5357683385],[517288.01313783537,5277651.539671084],[517281.2499068198,5277653.075550765],[517281.6955321353,5277654.7439732],[517276.9612078748,5277655.841321086],[517277.1835263261,5277656.842240632],[517262.75462083094,5277660.35591679],[517260.1582374233,5277649.567641122],[517271.29530289,5277646.944425419],[517274.5868382216,5277646.165097523]]]},"properties":{"ID_SOURCE":"w145188778","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":527}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516362.61505892815,5277355.411511538],[516366.1282913485,5277345.240977658],[516373.3234684572,5277347.706283608],[516372.1498617685,5277351.103862117],[516374.7158279684,5277351.977968823],[516376.94191687094,5277345.527005837],[516383.93450789765,5277347.9250711985],[516382.8365887652,5277351.111694891],[516386.07028233184,5277352.221079161],[516383.6700497407,5277359.171677972],[516376.9850986102,5277356.8745039925],[516374.9635013968,5277362.7147731045],[516378.1896800402,5277363.824131906],[516375.7289132313,5277370.941273513],[516365.81028494955,5277367.53473373],[516369.2174704218,5277357.68620895],[516362.61505892815,5277355.411511538]]]},"properties":{"ID_SOURCE":"w145188813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":528}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.13847808616,5277355.523905617],[517271.29204674996,5277351.856743772],[517271.4452858984,5277348.300720894],[517271.60735394096,5277344.300164555],[517271.7444855199,5277341.110855676],[517281.62648394454,5277341.518054594],[517281.33530989557,5277348.530119327],[517281.18987155164,5277351.986139201],[517280.3810186101,5277371.477681031],[517280.2436189879,5277374.7559010275],[517279.9445092034,5277381.91242453],[517270.06257925916,5277381.50522827],[517270.20040158555,5277378.082527382],[517270.36213844694,5277374.193109771],[517270.51570622885,5277370.525947801],[517270.66143457225,5277366.969902524],[517271.13847808616,5277355.523905617]]]},"properties":{"ID_SOURCE":"w145188820","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":529}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.1620274906,5277685.061987704],[516895.6854363829,5277685.841486308],[516896.9646360091,5277684.956079427],[516896.5166450305,5277684.065659657],[516895.39473172487,5277682.50644441],[516897.12547151605,5277681.288928206],[516897.655654794,5277679.7345079025],[516897.5064319092,5277679.4006549595],[516898.78595583065,5277678.404109481],[516899.3109779304,5277678.627913388],[516902.77181681397,5277676.415161833],[516907.555971114,5277683.986570197],[516898.526796483,5277690.073051005],[516899.1249770279,5277690.96390691],[516896.26587697165,5277692.844987214],[516892.1524129128,5277687.053773144],[516895.1620274906,5277685.061987704]]]},"properties":{"ID_SOURCE":"w145188830","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":530}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.0889506391,5277366.935837414],[516880.09571722883,5277364.601919487],[516880.1105392766,5277359.489527866],[516880.11795029487,5277356.933332071],[516880.12632796523,5277354.043719446],[516890.33953986864,5277354.184478796],[516890.2428387671,5277361.630570413],[516890.23413364263,5277364.63132202],[516890.17964593443,5277383.413804617],[516890.24539505504,5277386.637052092],[516890.22411568573,5277393.972222997],[516879.9349079211,5277394.1646628035],[516880.02225127263,5277389.941600303],[516879.9532743659,5277387.829742462],[516880.0438399816,5277382.495290483],[516880.0509288059,5277380.050233547],[516880.0889506391,5277366.935837414]]]},"properties":{"ID_SOURCE":"w145188835","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":531}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.31746463437,5277336.162821931],[516408.7096911235,5277329.401147668],[516415.1619462045,5277331.664359864],[516416.2369179886,5277328.633273317],[516413.145843993,5277327.546502382],[516415.5002499085,5277320.884750173],[516425.3511825764,5277324.346753034],[516423.08009754674,5277330.753114761],[516429.58485274285,5277333.038719037],[516426.0115477931,5277343.16458963],[516419.14666889113,5277340.755719862],[516420.33519965626,5277337.40264875],[516417.244131083,5277336.315875615],[516414.9048431967,5277342.944327934],[516408.26507061074,5277340.602789574],[516409.44605383376,5277337.260808985],[516406.31746463437,5277336.162821931]]]},"properties":{"ID_SOURCE":"w145188855","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":532}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.144209608,5276841.39678773],[517273.15442927065,5276837.951483285],[517274.2092127419,5276836.843213836],[517276.91270622035,5276836.962374037],[517279.8418479806,5276836.971065251],[517280.5952186289,5276836.195322039],[517280.62325231615,5276826.748519654],[517286.40643979126,5276826.765684308],[517286.41171848326,5276824.987462699],[517290.99320606195,5276825.00106475],[517290.9562454019,5276837.44861611],[517290.1300772767,5276837.446163015],[517290.1181976181,5276841.447161718],[517280.8050360573,5276841.419516767],[517280.8020677417,5276842.4197664475],[517274.1927284101,5276842.400156487],[517273.144209608,5276841.39678773]]]},"properties":{"ID_SOURCE":"w145188869","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":533}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.8764923033,5277366.849394003],[516926.8839238723,5277364.293198188],[516926.8227182182,5277359.514005099],[516926.90524922754,5277356.95802765],[516926.83984303824,5277353.623640914],[516936.82840301836,5277353.541548926],[516936.8818413143,5277360.98807683],[516936.9485348491,5277363.877907936],[516936.96737907326,5277383.216303652],[516937.03374891245,5277386.2172738165],[516937.0875096107,5277393.552663154],[516927.0239192523,5277393.6345362],[516927.03587458644,5277389.52239494],[516926.9682071859,5277386.965980701],[516926.98177803215,5277382.298144723],[516926.98888656835,5277379.8530878],[516926.8764923033,5277366.849394003]]]},"properties":{"ID_SOURCE":"w145188872","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":534}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.02329491527,5277504.507054715],[517083.2798929511,5277505.008558837],[517082.89560025197,5277508.008209299],[517083.56821691594,5277509.121582219],[517084.54774607724,5277508.013057268],[517088.5269369256,5277508.358155303],[517087.67900890036,5277515.802041853],[517081.9732341194,5277515.22959836],[517081.66404012986,5277518.22946929],[517080.838294735,5277518.115906679],[517076.03303860826,5277517.76839092],[517076.41732716816,5277514.768739971],[517075.9684049297,5277514.200609616],[517075.36987440306,5277513.431988637],[517075.98695277696,5277507.876802087],[517075.7619861289,5277507.765002331],[517076.14787244523,5277504.220770451],[517079.02329491527,5277504.507054715]]]},"properties":{"ID_SOURCE":"w145188877","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":535}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.4040490381,5276883.363994468],[516792.03402991,5276885.2234578645],[516787.8915592876,5276863.205835831],[516802.0194750921,5276860.468088358],[516800.76255556993,5276853.573795089],[516815.5664549729,5276850.838030716],[516822.372823819,5276886.644701787],[516836.95133298147,5276883.908340903],[516840.9440351841,5276905.703286859],[516819.07651597523,5276909.752257393],[516817.5952746755,5276902.523892488],[516810.5312018422,5276903.948312465],[516813.933738213,5276922.073923062],[516792.06758168124,5276925.678439445],[516786.7423590104,5276897.10015836],[516804.62738872546,5276893.706410887],[516802.4040490381,5276883.363994468]]]},"properties":{"ID_SOURCE":"w145188885","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":536}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516370.0771560082,5277329.714731166],[516373.4158427563,5277320.199436164],[516380.2207784801,5277322.574741124],[516379.16087562736,5277325.594762613],[516382.05691618525,5277326.603168822],[516384.2448785208,5277320.363267187],[516391.18486437754,5277322.783420957],[516390.02651260246,5277326.092126891],[516393.1251016095,5277327.178906679],[516390.6418653146,5277334.262636532],[516384.519698758,5277332.122634228],[516383.5808931751,5277334.809576257],[516386.3568939202,5277335.773190932],[516383.9266770532,5277342.701477144],[516373.8130586107,5277339.1832355745],[516376.36439356755,5277331.91075244],[516370.0771560082,5277329.714731166]]]},"properties":{"ID_SOURCE":"w145188894","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":537}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516401.38484419003,5277319.6446600985],[516402.67900986684,5277316.1140593765],[516399.85813021037,5277315.083626674],[516397.4060474373,5277321.767337949],[516390.4138683871,5277319.213662041],[516391.5188382173,5277316.1937694745],[516388.09775098553,5277314.950487091],[516390.6709246227,5277307.933693421],[516397.16795751476,5277310.308151327],[516399.32486898307,5277304.43492938],[516396.1663766372,5277303.281293798],[516398.67141139833,5277296.464363517],[516408.67209461826,5277300.104583252],[516405.56909277895,5277308.575807812],[516411.9611041931,5277310.905530412],[516407.8818909898,5277322.008016147],[516401.38484419003,5277319.6446600985]]]},"properties":{"ID_SOURCE":"w145188899","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":538}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.85030389344,5277569.32212131],[517072.81944111356,5277563.659758698],[517084.14797225,5277567.471748846],[517085.2081332098,5277564.474081602],[517089.10925253783,5277565.819210616],[517088.5332321838,5277567.61798686],[517087.97236201336,5277569.372351652],[517088.94307386456,5277571.264579885],[517087.5808944502,5277574.817059737],[517085.85073539446,5277575.81224132],[517084.7141749103,5277579.2542440565],[517080.66287033935,5277577.908677289],[517077.661939015,5277576.899614208],[517078.1925058802,5277575.234071478],[517075.7169235587,5277574.337690468],[517075.338506446,5277575.336840029],[517069.56192837266,5277573.319381472],[517070.85030389344,5277569.32212131]]]},"properties":{"ID_SOURCE":"w145188910","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":539}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516358.12578905904,5277614.065788613],[516352.2451891659,5277622.273618955],[516350.61140412133,5277621.090947521],[516349.32237369654,5277620.153752434],[516348.86992466653,5277620.819321091],[516346.39674759546,5277619.034138379],[516344.29842550633,5277617.472288849],[516344.75087426865,5277616.806719844],[516343.9788819684,5277616.271081122],[516341.6778610536,5277614.686435526],[516342.80960691144,5277612.800234585],[516340.4863049994,5277611.126615036],[516340.86334566853,5277610.571973957],[516339.7240358584,5277609.801911086],[516337.8651120663,5277608.56304146],[516339.90050820773,5277605.79025701],[516343.59520065715,5277600.465914144],[516349.216188906,5277604.4827320585],[516347.6332377387,5277606.589944489],[516358.12578905904,5277614.065788613]]]},"properties":{"ID_SOURCE":"w145188917","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":540}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.46642968385,5277757.674354193],[516946.5382887264,5277758.785962964],[516943.8999604956,5277762.223622077],[516942.77289977437,5277762.442621722],[516940.67478856276,5277760.880556398],[516939.9963529006,5277761.767701854],[516933.7774305352,5277756.970590608],[516937.3958620989,5277752.202098938],[516936.57144056796,5277751.644000612],[516937.70206006913,5277750.202470591],[516936.8028672059,5277749.533014733],[516939.0644310766,5277746.538815998],[516945.50799649995,5277751.558866588],[516943.397590337,5277754.220082914],[516944.8962425249,5277755.335844466],[516944.2935468775,5277756.000929966],[516946.46642968385,5277757.674354193]]]},"properties":{"ID_SOURCE":"w145188928","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":541}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516400.0986294759,5277589.621962877],[516406.72058606293,5277584.861606069],[516405.7484026481,5277583.414048042],[516415.4552857648,5277576.550737562],[516416.4277813236,5277577.887158203],[516419.5884216035,5277575.562134052],[516418.61592637515,5277574.225712885],[516425.6137128068,5277569.355297548],[516426.5862072565,5277570.6917198775],[516431.4775309224,5277567.1490469845],[516438.1350964211,5277576.392450535],[516423.6119742665,5277586.79861062],[516422.78936138185,5277585.573751422],[516418.27448105946,5277588.784073582],[516419.0970944333,5277590.008932152],[516406.75621862523,5277598.865330816],[516400.0986294759,5277589.621962877]]]},"properties":{"ID_SOURCE":"w145188981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":542}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.03348842403,5277696.075369012],[516940.03567571886,5277696.6398038585],[516940.8024738499,5277691.196177771],[516941.47833037964,5277691.198144529],[516941.47897722747,5277690.975866522],[516941.70555645705,5277690.531966102],[516944.40736549074,5277691.095529053],[516945.3046255846,5277692.431820037],[516944.92203304125,5277694.875785262],[516949.7255322396,5277695.778888264],[516948.2744585387,5277704.1101597855],[516943.09452056215,5277703.539382193],[516942.71387033,5277705.316513552],[516940.8072338254,5277705.044229089],[516938.8105478268,5277704.74945525],[516938.582675882,5277705.63791182],[516935.5804930976,5277705.073477707],[516937.03348842403,5277696.075369012]]]},"properties":{"ID_SOURCE":"w145188982","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":543}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.1181147049,5277759.327010929],[517167.092535075,5277758.654197459],[517167.01678529487,5277758.876254041],[517162.0651482056,5277757.305694606],[517163.4286420653,5277753.3086751],[517164.3291192068,5277753.533609975],[517165.6171933521,5277749.647508605],[517168.7682092028,5277750.65706048],[517169.7460754725,5277750.1042445665],[517172.29666297283,5277751.000887533],[517172.6695122547,5277751.891107217],[517175.67033692263,5277752.900219805],[517174.4583347202,5277756.453123481],[517175.50867172406,5277756.789642187],[517173.0836870042,5277764.228866963],[517168.0569618326,5277762.658080879],[517169.1181147049,5277759.327010929]]]},"properties":{"ID_SOURCE":"w145188994","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":544}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516941.1996849695,5277580.501956726],[516940.587916735,5277584.278934081],[516939.6722061077,5277589.277566345],[516936.1442878838,5277588.7116026655],[516936.297390696,5277587.711788704],[516931.1930908875,5277586.918962545],[516931.1921212368,5277587.252379509],[516925.2624048342,5277586.234878269],[516926.02435606753,5277582.458335978],[516927.1504815117,5277582.572750026],[516927.8357220519,5277579.351684574],[516929.11527304683,5277578.355145856],[516932.1854320788,5277578.808633946],[516933.6942276035,5277579.035302146],[516933.92113379197,5277578.4802625105],[516937.74912155635,5277579.158237722],[516937.7465348289,5277580.0473496085],[516941.1996849695,5277580.501956726]]]},"properties":{"ID_SOURCE":"w145188999","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":545}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.6495362397,5277562.560218813],[516387.2715074102,5277557.79984005],[516386.2239049032,5277556.463212975],[516395.8560255289,5277549.488519702],[516396.82853013993,5277550.824936991],[516399.98886406934,5277548.611041273],[516399.01667286106,5277547.163484472],[516405.9396912329,5277542.181695143],[516406.91219477187,5277543.518114106],[516411.7284319721,5277539.975213113],[516418.4608436905,5277549.329944306],[516404.163293536,5277559.625648906],[516403.2655758199,5277558.40058094],[516401.1208691803,5277559.972724736],[516398.7503723408,5277561.722057115],[516399.6480904838,5277562.947124393],[516387.3071874416,5277571.803563972],[516380.6495362397,5277562.560218813]]]},"properties":{"ID_SOURCE":"w145189004","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":546}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516903.7990804912,5277736.433714949],[516903.34754487756,5277736.765823713],[516900.72988199384,5277733.090605378],[516901.5578589016,5277732.426169455],[516900.1365456525,5277730.532664044],[516897.6535829606,5277732.1925557265],[516895.1106865611,5277728.628696935],[516897.5188779142,5277726.8574471995],[516901.5072867363,5277723.979386517],[516902.18023535877,5277724.9815998245],[516905.64201616007,5277722.4354328485],[516908.4843193616,5277726.333585671],[516908.03278270026,5277726.665694075],[516908.4739369951,5277727.322701064],[516908.93004556664,5277728.001979521],[516912.0908029147,5277725.6772219315],[516914.40905204933,5277729.01815556],[516908.7653300292,5277733.002798851],[516903.7990804912,5277736.433714949]]]},"properties":{"ID_SOURCE":"w145189018","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":547}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.5778148249,5277548.014509103],[517006.0358636851,5277545.459628727],[517010.53973843827,5277546.139626025],[517010.15645994083,5277548.805864445],[517011.5826536155,5277549.032311458],[517013.0839441851,5277549.258978269],[517013.5429706036,5277546.3706815345],[517017.8212278435,5277547.161165077],[517017.7451562189,5277547.494362503],[517022.473669218,5277548.397305539],[517020.8696631114,5277557.6172300745],[517016.0657356278,5277556.825207799],[517015.7608004138,5277558.380275576],[517011.8573861284,5277557.81316865],[517011.47605623014,5277559.812573146],[517008.0228990698,5277559.357924374],[517008.55831789284,5277556.025290671],[517004.28006595455,5277555.234813913],[517005.5778148249,5277548.014509103]]]},"properties":{"ID_SOURCE":"w145189023","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":548}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516334.63203091803,5277601.930032975],[516334.1419404796,5277602.628839102],[516329.39775931725,5277599.259106312],[516329.8425734384,5277598.637970702],[516328.50102958543,5277597.678405035],[516326.8446727321,5277596.5067910515],[516328.04341177567,5277594.8319409285],[516325.8024551673,5277593.247470185],[516326.30759583274,5277592.53759159],[516324.8236160729,5277591.488715459],[516323.18975448795,5277590.328279604],[516329.040306552,5277582.120336096],[516334.4290535147,5277585.947550317],[516332.77038266434,5277588.276834013],[516343.44293664687,5277595.853182065],[516337.60745948023,5277604.038925645],[516335.6962778373,5277602.688770217],[516334.63203091803,5277601.930032975]]]},"properties":{"ID_SOURCE":"w145189043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":549}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517067.92396812694,5277594.0977481045],[517069.1362640134,5277590.433684245],[517070.186637036,5277590.770183769],[517070.5426536883,5277589.726512203],[517070.94411942456,5277588.5496059945],[517067.49293869536,5277587.428087966],[517067.8716795147,5277586.317798899],[517068.4718000554,5277586.54183818],[517069.2286306216,5277584.543538169],[517068.478316798,5277584.319058472],[517068.70556150493,5277583.652885069],[517072.1570701564,5277584.663264822],[517075.5334810852,5277585.673426364],[517075.3055837368,5277586.561877474],[517079.8825590357,5277587.908982731],[517079.1234429444,5277590.685254276],[517081.9745000754,5277591.582738476],[517080.00308074243,5277598.023071151],[517077.1523524805,5277597.014448917],[517067.92396812694,5277594.0977481045]]]},"properties":{"ID_SOURCE":"w145189136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":550}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516912.08241886954,5277539.851229287],[516912.8015367986,5277535.307695702],[516917.0351123955,5277535.975721347],[516917.19585213054,5277534.931473199],[516919.8831039704,5277535.361614037],[516920.12787234504,5277533.828594543],[516923.49070847174,5277534.360726437],[516923.26115250104,5277535.827106064],[516923.6214574017,5277535.8837233735],[516924.0493174426,5277535.951651073],[516924.3858512356,5277533.852084931],[516928.4317805809,5277534.486231401],[516926.7715713428,5277545.006354521],[516926.2973100067,5277547.9835255025],[516922.3264545504,5277547.360712663],[516922.8696257767,5277543.9280680055],[516915.7986464642,5277542.818347526],[516915.98220555723,5277541.674139716],[516911.8987636358,5277541.02877891],[516912.08241886954,5277539.851229287]]]},"properties":{"ID_SOURCE":"w145189185","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":551}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.6458155916,5277641.393473947],[516984.86827546917,5277642.4341120515],[516983.7276573377,5277649.8660465935],[516984.1015146937,5277650.422836978],[516981.239773725,5277653.192987525],[516980.7895239275,5277653.080534275],[516980.4888171114,5277653.190797125],[516979.5857242881,5277653.855002759],[516978.98301425105,5277654.520084596],[516978.6042947417,5277655.630379512],[516971.2481628835,5277654.49753111],[516971.86091602384,5277650.3871395355],[516973.2922706468,5277648.8353532925],[516973.81664452143,5277649.281441906],[516975.92561154,5277647.131476307],[516976.75412777846,5277646.289228723],[516977.0603445473,5277644.289602736],[516978.1864570705,5277644.404026702],[516978.6458155916,5277641.393473947]]]},"properties":{"ID_SOURCE":"w145189223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":552}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.6578204403,5277499.911898796],[517297.4280634623,5277498.083348838],[517298.4148809704,5277497.063793268],[517296.23591071385,5277494.912318488],[517302.31393371354,5277488.995505221],[517311.6742571232,5277498.070122355],[517315.4708012051,5277501.749030971],[517308.7738060638,5277508.730933917],[517299.87721848197,5277500.291196898],[517298.26560495683,5277501.8090255745],[517297.77661186364,5277502.096536571],[517297.39331681986,5277502.195423728],[517297.0926291696,5277502.294556337],[517296.5673090447,5277502.170741696],[517296.27512170037,5277501.936479748],[517296.05766876735,5277501.824693781],[517295.76581155317,5277501.479292895],[517295.699214186,5277501.145675202],[517295.5650619542,5277500.800742826],[517295.58206246246,5277500.133953638],[517295.6578204403,5277499.911898796]]]},"properties":{"ID_SOURCE":"w145189270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":553}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517120.59046737954,5276896.516182256],[517080.4828658835,5276896.842958794],[517080.42737080413,5276966.9720270615],[517078.7750714521,5276966.967180639],[517079.01942161424,5276986.0839489475],[517080.44640273205,5276986.088134537],[517080.4108682793,5276998.202272637],[517036.9993901123,5276998.519654616],[517036.9694852065,5276983.071130301],[517047.2594259894,5276982.878966366],[517047.0439286759,5276953.870839767],[517053.7285710279,5276953.779273304],[517053.36370453535,5276873.2018342605],[517053.73923315806,5276873.202934026],[517053.6635564068,5276847.751695435],[517122.83851840446,5276847.176711629],[517122.9916130201,5276871.739061793],[517122.9896521962,5276872.405894954],[517120.4357303834,5276872.5095255235],[517120.59046737954,5276896.516182256]]]},"properties":{"ID_SOURCE":"w145189278","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sports_centre","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":554}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.82668075233,5277277.433854216],[516438.5385004917,5277276.582730831],[516438.99277484557,5277275.283677481],[516437.70996790734,5277274.779926541],[516438.30023900885,5277273.192293544],[516436.8823133031,5277272.665933349],[516438.39552622783,5277268.7025137395],[516439.21977109084,5277266.704324083],[516440.6376352805,5277267.252912626],[516441.0612429026,5277266.176052497],[516448.3900979841,5277269.19752716],[516448.0120205106,5277270.107805649],[516449.4899321151,5277270.66767997],[516449.8078351132,5277269.790573517],[516454.71372871933,5277271.816066783],[516451.309991981,5277280.375328969],[516441.2728178358,5277276.357057706],[516440.82668075233,5277277.433854216]]]},"properties":{"ID_SOURCE":"w145189283","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":555}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516441.62654433947,5277249.49556174],[516439.99129136093,5277248.801877418],[516440.14274831844,5277248.357745792],[516440.59335351846,5277248.359018125],[516441.7280263315,5277245.472586873],[516441.5030374549,5277245.360811725],[516441.73053704354,5277244.583475414],[516442.70904594735,5277243.808259925],[516443.76453930954,5277242.366423109],[516444.58077735023,5277240.546035365],[516444.97619922645,5277238.813371022],[516444.97965212836,5277237.590842786],[516445.36017967365,5277235.813680485],[516436.4115763398,5277231.909632834],[516440.8512661284,5277220.852641843],[516451.08003140445,5277226.205130645],[516441.62654433947,5277249.49556174]]]},"properties":{"ID_SOURCE":"w145189332","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":556}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.23641539493,5277253.03281632],[517197.2702346011,5277253.72337894],[517196.1764799303,5277268.057195216],[517197.75326501735,5277268.172992268],[517196.5771895951,5277284.951643457],[517192.90536986856,5277284.740747991],[517188.5427572352,5277284.483359518],[517188.9353208161,5277278.705243644],[517176.696562517,5277277.780006001],[517177.56135875126,5277264.668049475],[517175.0167872704,5277261.659765773],[517167.1866512891,5277268.305067391],[517157.606848385,5277257.051700389],[517158.6612069827,5277256.054548442],[517155.294114926,5277251.821310773],[517162.29585587484,5277245.951530687],[517167.01082967204,5277251.522425037],[517172.5823874076,5277246.759839586],[517175.2020675897,5277249.768343674],[517181.9378602126,5277257.679149429],[517188.920263162,5277258.366597944],[517189.23641539493,5277253.03281632]]]},"properties":{"ID_SOURCE":"w145189333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":557}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.7594032795,5277296.394970356],[517217.98472040374,5277293.850532834],[517213.6825244292,5277293.4821642395],[517214.4213446814,5277284.904348016],[517219.1890380524,5277285.318549726],[517219.3133730201,5277283.9074406605],[517223.11253437784,5277284.229869372],[517223.57143602887,5277283.964491091],[517228.151246953,5277284.422600316],[517229.20133742085,5277284.870267189],[517229.87526788085,5277285.5391009],[517230.62100957497,5277287.31954626],[517230.9158197054,5277289.209797109],[517230.8811748668,5277290.765653258],[517230.8301943517,5277292.76602069],[517230.3795924405,5277292.764687191],[517230.29034958704,5277297.54343907],[517229.2396037445,5277297.318049855],[517226.2283593381,5277299.754217869],[517226.6779742258,5277300.088967852],[517225.695752753,5277302.086580155],[517217.7594032795,5277296.394970356]]]},"properties":{"ID_SOURCE":"w145189359","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":558}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517016.56061005587,5277747.209383724],[517004.69536233466,5277747.285853292],[517004.8095162566,5277759.622722713],[516980.0615773244,5277722.429739675],[516984.56758767436,5277722.331744316],[516984.65208571777,5277719.108932115],[517004.6273055175,5277719.167244568],[517004.76710682083,5277722.724131582],[517015.3548190538,5277722.977347649],[517015.4019776696,5277732.535522075],[517013.8246654388,5277732.6420520535],[517013.81816925673,5277734.864832293],[517016.6720892632,5277734.762033749],[517016.7111238208,5277747.098683715],[517016.56061005587,5277747.209383724]]]},"properties":{"ID_SOURCE":"w145189376","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":559}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.2790926324,5277685.815230502],[516582.0858203597,5277685.606639914],[516582.35676045436,5277695.943423312],[516584.15935940144,5277695.8374182],[516584.2357209159,5277695.393076088],[516586.48857406055,5277695.399494275],[516586.48730747297,5277695.844050312],[516588.51487514947,5277695.8498274265],[516588.9201583838,5277711.743989875],[516580.5085806403,5277712.053446559],[516580.51965934894,5277708.163581137],[516540.11542392644,5277709.160045342],[516539.90655860474,5277703.380176671],[516533.7481372826,5277703.584962961],[516533.5348464844,5277699.361040726],[516531.95753478317,5277699.467701257],[516531.92014696833,5277696.766895353],[516531.8316461473,5277690.909570997],[516535.5113090399,5277690.920021358],[516535.6567642161,5277692.587533091],[516539.63712236384,5277692.487700255],[516539.6532257304,5277686.819610804],[516577.2790926324,5277685.815230502]]]},"properties":{"ID_SOURCE":"w145189416","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":560}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516333.3883249916,5277638.36930806],[516325.75820822135,5277649.195158117],[516327.1072813214,5277650.143630417],[516315.79785859416,5277666.193864366],[516307.8757399079,5277660.648015373],[516309.18760192604,5277658.795654373],[516309.91141506465,5277657.764081277],[516309.139425044,5277657.228447133],[516310.91123975726,5277654.710535805],[516312.53978257073,5277652.403389333],[516313.1618619184,5277652.838577965],[516313.83289152867,5277651.884655364],[516315.28049026534,5277649.83262433],[516316.5169810083,5277648.080079652],[516317.27850037796,5277646.993043217],[516316.7688462541,5277646.635967162],[516318.5858806843,5277644.062614978],[516317.7989327794,5277643.504709801],[516319.1711588006,5277641.552494373],[516319.8949446807,5277640.532036437],[516319.2578765008,5277640.085691095],[516321.0070473826,5277637.612175338],[516322.5601914649,5277635.415960185],[516323.2122479184,5277635.873461891],[516323.96619820676,5277634.80863309],[516325.3987232152,5277632.778790298],[516326.9201778972,5277633.84999977],[516333.3883249916,5277638.36930806]]]},"properties":{"ID_SOURCE":"w145189595","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":561}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.58886161743,5276972.936181041],[516763.70010450686,5276970.052623844],[516770.2952138868,5276974.961765516],[516767.2785567515,5276979.28753058],[516765.6297810486,5276978.060245302],[516764.0465101014,5276980.167343184],[516769.8180212679,5276984.184994962],[516764.6904513707,5276991.283177581],[516762.6667973817,5276989.832534201],[516751.8866086535,5277003.8051264],[516743.94219970243,5276998.003006726],[516748.2397562281,5276992.236096184],[516736.02396819403,5276983.087509472],[516744.99557678454,5276971.22134339],[516751.06592892745,5276975.795534796],[516752.64919633395,5276973.688433408],[516751.07520069514,5276972.572507228],[516752.50794030837,5276970.576112582],[516749.7348297379,5276968.567618678],[516753.95762871735,5276962.689357642],[516756.2059683506,5276964.362924028],[516761.15199108707,5276968.155912032],[516759.11553336866,5276971.150825185],[516761.58886161743,5276972.936181041]]]},"properties":{"ID_SOURCE":"w145189638","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":562}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516447.0566027245,5277342.468249727],[516452.7833339574,5277335.704899679],[516453.75711796194,5277336.596770183],[516462.146919403,5277344.177994639],[516464.17492372997,5277344.072589212],[516473.43450475385,5277336.207852183],[516475.9790896761,5277339.326967772],[516478.3122129461,5277337.555333121],[516481.37997557025,5277341.565050529],[516479.34725152777,5277343.3375342],[516481.74194555666,5277346.345088284],[516471.68383059866,5277355.085557763],[516470.52443740034,5277356.093650406],[516472.0983821414,5277357.20950154],[516470.7399893129,5277359.53959525],[516468.8650184182,5277358.645172666],[516467.9031552571,5277380.092441645],[516463.24732108,5277379.968134832],[516463.16656520084,5277381.968423678],[516459.56243467226,5277381.735953896],[516459.56714756397,5277380.068869564],[516454.9867264995,5277379.833642707],[516455.64531727234,5277359.385773249],[516455.0539449206,5277356.049906682],[516444.2688125425,5277345.683430558],[516447.0566027245,5277342.468249727]]]},"properties":{"ID_SOURCE":"w145189710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":563}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516304.0295693628,5277650.367918061],[516303.2983401657,5277651.366129144],[516301.9187989332,5277653.251643898],[516293.44947718084,5277647.337520978],[516297.45261590055,5277641.79173235],[516301.0637077897,5277636.800548096],[516298.06609640905,5277634.569358014],[516301.9866426774,5277629.02334133],[516298.46428917575,5277626.457262128],[516305.852956257,5277616.030804065],[516314.17243065056,5277621.83338478],[516313.011685107,5277623.352748422],[516312.1373637594,5277624.49503926],[516312.811670782,5277625.052628013],[516311.002516301,5277627.492636169],[516309.3438665631,5277629.821926643],[516308.6692484293,5277629.375477287],[516307.9830422544,5277630.38492788],[516306.63325277856,5277632.370550713],[516307.23277481477,5277632.816789485],[516310.08019186463,5277635.04756351],[516308.6101559802,5277637.066190983],[516307.81859861553,5277638.153144391],[516308.4181199629,5277638.5993832955],[516306.9850730943,5277640.81816657],[516309.5330372773,5277642.714681975],[516307.9124072773,5277644.877369587],[516307.120944487,5277645.930981402],[516307.7204650817,5277646.377220238],[516306.21294725273,5277648.373515364],[516304.5543053211,5277650.702807262],[516304.0295693628,5277650.367918061]]]},"properties":{"ID_SOURCE":"w145189739","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":564}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.3140977976,5276961.228161117],[517130.61801633553,5276985.568680108],[517126.3370725091,5276985.556087499],[517126.4036778747,5276988.445919285],[517124.1505506617,5276988.439292832],[517124.14728228,5276989.550681637],[517121.96893292584,5276989.655415776],[517121.8977502444,5276988.32152837],[517119.6442962355,5276988.42604254],[517119.5773607645,5276985.647349724],[517090.7360138311,5276986.007186325],[517090.0102483007,5276926.211826279],[517119.00308159564,5276925.519010389],[517118.8597328353,5276923.184652535],[517121.2634222308,5276923.080579662],[517121.2673435472,5276921.746913234],[517123.22007616225,5276921.752655089],[517123.44179646653,5276922.975845209],[517125.6949490088,5276922.982471326],[517125.68710434303,5276925.649804194],[517129.8185359902,5276925.439676599],[517130.03077337827,5276929.885894214],[517130.85725529277,5276929.777185755],[517130.8718722981,5276950.3380980315],[517130.87154533603,5276950.449236907],[517130.27070749016,5276950.4474693155],[517130.3140977976,5276961.228161117]]]},"properties":{"ID_SOURCE":"w145189790","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sports_centre","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":565}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.41620173404,5276741.749701179],[516962.13872820156,5276741.968259627],[516961.1037331321,5276736.297116176],[516958.77443005494,5276736.623751711],[516957.07349501934,5276727.505336597],[516956.69763339974,5276727.6153819235],[516956.62479109847,5276726.83719137],[516963.83933035535,5276725.413386002],[516963.76648897864,5276724.635195359],[516966.44190751,5276724.098404613],[516972.93512751756,5276722.77253478],[516972.93609929364,5276722.439118271],[516973.5372845604,5276722.329730738],[516973.98307139333,5276723.998126787],[516981.12218677386,5276722.685262729],[516981.2707816801,5276723.241394937],[516980.81981166796,5276723.351219693],[516982.37146806915,5276732.135787196],[516979.81619136373,5276732.684034902],[516980.7757373626,5276738.466101517],[516979.34804752364,5276738.684218175],[516979.9391853681,5276742.020135298],[516980.2402631564,5276741.7987336265],[516980.3134261683,5276742.465785663],[516963.9312697305,5276745.418814404],[516963.7072426237,5276744.97360267],[516964.0831032598,5276744.863557793],[516963.41620173404,5276741.749701179]]]},"properties":{"ID_SOURCE":"w145189808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":566}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516301.6070147099,5276986.745284223],[516302.2081597542,5276986.63582743],[516302.57901358546,5276988.303962097],[516301.6070147099,5276986.745284223]]]},"properties":{"ID_SOURCE":"w145189958","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":567}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.64388857683,5276718.981942136],[516760.13853585406,5276720.089007037],[516759.7693945277,5276717.865149487],[516761.64388857683,5276718.981942136]]]},"properties":{"ID_SOURCE":"w145189998","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":568}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5779305658,5276731.431489265],[516757.3624104408,5276729.52789732],[516761.4435464667,5276736.3969657635],[516754.5779305658,5276731.431489265]]]},"properties":{"ID_SOURCE":"w145190019","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":569}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516793.9254580695,5276724.187377017],[516798.41332186875,5276730.646427358],[516800.14432254544,5276729.428883522],[516801.8644214753,5276731.99006071],[516800.2839568692,5276733.096898561],[516801.85512230464,5276735.213087047],[516803.4359073318,5276733.995110778],[516805.15632417996,5276736.445150125],[516803.57586014376,5276737.551987089],[516808.1388102413,5276744.011261837],[516798.6557232758,5276750.763424112],[516784.5171428325,5276731.050917582],[516793.9254580695,5276724.187377017]]]},"properties":{"ID_SOURCE":"w145190034","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":570}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.2726181079,5277265.696563462],[517262.355956397,5277262.918312935],[517257.0247945844,5277262.569089835],[517258.279443417,5277244.679284375],[517261.583225784,5277244.911357797],[517263.235116873,5277245.027395216],[517270.14374361694,5277245.270162741],[517269.51557601604,5277254.492911465],[517266.43710182846,5277254.261501652],[517265.8112479452,5277262.7062784005],[517268.8900473161,5277262.826548969],[517268.7339126267,5277264.826604177],[517269.93519385776,5277264.94130708],[517270.09132895863,5277262.941251907],[517280.75397970644,5277263.528587994],[517286.01003864233,5277263.87760986],[517285.776157809,5277266.766553084],[517285.07220705395,5277276.211355396],[517268.0270227895,5277275.271658813],[517267.5510398677,5277283.828020051],[517256.738553625,5277283.12912393],[517255.913766281,5277282.682119813],[517256.53828632,5277274.681897492],[517256.914447888,5277274.460732563],[517261.6454533882,5277274.585896507],[517261.95376355667,5277271.91945282],[517263.91132188187,5277270.258158212],[517264.8876298101,5277270.261053119],[517265.0450812759,5277267.816442085],[517263.9936722968,5277267.813324472],[517262.2726181079,5277265.696563462]]]},"properties":{"ID_SOURCE":"w145190049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":571}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9986896651,5277759.062553216],[516854.78013486054,5277756.0744980145],[516864.9842706023,5277759.104829133],[516864.9986896651,5277759.062553216]]]},"properties":{"ID_SOURCE":"w145190059","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":572}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516888.17325328063,5277764.39563172],[516880.52041002514,5277762.039496896],[516872.94233278395,5277759.794728824],[516865.5144383675,5277757.550405747],[516864.9986896651,5277759.062553216],[516887.7939132827,5277765.728210717],[516888.17325328063,5277764.39563172]]]},"properties":{"ID_SOURCE":"w145190059","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":573}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517186.2258854489,5277178.893624008],[517234.4441925489,5277178.035888094],[517234.6372591148,5277188.928168516],[517188.52352867165,5277189.236415377],[517188.5874752901,5277193.015360204],[517186.7099351956,5277193.009817885],[517186.69714110426,5277197.344235613],[517165.7428262586,5277197.615841176],[517165.4752548,5277211.952097367],[517147.4502740579,5277212.121265344],[517147.49347842217,5277197.450928148],[517111.9681610564,5277198.124393182],[517111.870871093,5277180.119447396],[517172.3284495001,5277180.075158951],[517172.41043462907,5277177.7414632635],[517177.0670741144,5277177.6440589465],[517177.1477496941,5277175.754918984],[517177.82399401115,5277175.645774121],[517177.8295680063,5277173.756412608],[517178.28017911623,5277173.7577420175],[517178.28181857034,5277173.202047457],[517160.25769993436,5277173.037759332],[517160.1904591557,5277170.370204097],[517178.59009551594,5277170.535599857],[517180.23872996576,5277171.763002777],[517180.68638980517,5277172.764582583],[517180.81494952773,5277180.100194041],[517186.29770679196,5277180.005234814],[517186.2258854489,5277178.893624008]]]},"properties":{"ID_SOURCE":"w145190068","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":574}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.1226506469,5277462.932587453],[517212.0429526103,5277464.488310913],[517211.96358317725,5277465.932895417],[517211.32468638226,5277478.8232391905],[517211.2453172923,5277480.267823732],[517211.16463403765,5277482.156964149],[517210.448343014,5277495.825059108],[517210.44341494224,5277497.492143637],[517210.3640462866,5277498.936728234],[517210.0429581845,5277505.937595346],[517206.81409122015,5277505.816911633],[517206.6451734596,5277512.15138907],[517199.66209208244,5277511.797335189],[517199.57977127424,5277514.242170705],[517192.371399626,5277513.887459998],[517190.6444860907,5277513.771220715],[517189.4432547655,5277513.656533999],[517176.3776068881,5277513.173412442],[517174.8759852735,5277513.057842513],[517173.22416864726,5277512.941829938],[517159.3327732746,5277512.345171038],[517157.68095615954,5277512.229162872],[517155.9540414963,5277512.112933884],[517142.51322756166,5277511.517642912],[517140.9365073986,5277511.40186062],[517139.2092650018,5277511.396775568],[517132.301276555,5277511.043023572],[517132.7822777858,5277500.708425224],[517200.0608917429,5277503.907577576],[517202.00771851867,5277455.011757679],[517212.44505747635,5277455.487165074],[517212.1226506469,5277462.932587453]]]},"properties":{"ID_SOURCE":"w145190089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":575}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516320.3624122452,5277181.736991974],[516337.640174227,5277180.229489022],[516338.1456157959,5277187.454994096],[516333.80522496096,5277197.978869468],[516327.3325301822,5277213.653655223],[516326.3577713073,5277213.095222908],[516324.921186466,5277216.536528752],[516325.8965681484,5277216.87268297],[516324.686222976,5277219.98120384],[516323.9317832165,5277221.201626477],[516322.2007166439,5277222.530451162],[516319.64540693077,5277223.190127254],[516319.64852199686,5277222.078737961],[516317.5450654054,5277222.295122262],[516317.69215311296,5277223.406932498],[516305.1327140403,5277224.271980349],[516300.7158627278,5277224.581918653],[516299.7778160578,5277210.909097223],[516313.2237593404,5277209.946495565],[516320.4082313081,5277192.184261242],[516320.93363089365,5277192.29687374],[516320.3624122452,5277181.736991974]]]},"properties":{"ID_SOURCE":"w145190156","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"office","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":576}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516318.8217665332,5277517.0415244],[516324.4646708209,5277486.493884801],[516328.222677359,5277485.393024655],[516329.13725469244,5277480.616576208],[516325.3795565425,5277481.60629679],[516329.4981194943,5277459.056458083],[516330.3999207117,5277458.836707798],[516330.7053011557,5277457.059326853],[516334.35335733026,5277457.680829803],[516343.8534089882,5277454.984564574],[516341.3364873339,5277468.758840528],[516357.77452290576,5277471.80577792],[516358.4610219769,5277468.0289518805],[516368.90621013613,5277465.724372649],[516371.7279666076,5277450.395007664],[516403.44291629846,5277442.148787809],[516399.78153101064,5277462.254786154],[516372.87671841105,5277469.180872575],[516366.01479880454,5277505.837731028],[516357.98342112434,5277504.370341682],[516357.1439211793,5277509.146996813],[516348.43729239405,5277507.455443793],[516353.6232178265,5277479.240485745],[516348.4377187148,5277480.55960062],[516347.36949723266,5277486.558153064],[516340.83910874324,5277485.428421869],[516335.12039639783,5277516.198112997],[516330.6170458309,5277515.296360527],[516330.8463908267,5277513.852185733],[516327.3934670511,5277513.286801911],[516326.47764940636,5277518.507806783],[516318.8217665332,5277517.0415244]]]},"properties":{"ID_SOURCE":"w145190178","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":577}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.1634093542,5277439.419560811],[516889.49146025075,5277439.42631384],[516896.926525983,5277439.3367472375],[516899.25457692164,5277439.343504171],[516903.7604819661,5277439.356584752],[516906.46402499074,5277439.364434772],[516913.5235990838,5277439.2737990115],[516915.7765516471,5277439.280344388],[516920.582850444,5277439.294310768],[516923.211618148,5277439.190811352],[516927.71752335207,5277439.203910471],[516927.687794895,5277449.428694992],[516920.02744650736,5277449.517567532],[516916.7231218867,5277449.507965519],[516902.82961615315,5277449.578752904],[516899.45019330614,5277449.568942667],[516885.3313932951,5277449.639117862],[516882.4776584962,5277449.630842111],[516867.8331710782,5277449.69953541],[516864.9794363306,5277449.691268235],[516851.0108340392,5277449.761961734],[516847.6314113713,5277449.752181575],[516842.07381703454,5277449.847241882],[516841.95287682064,5277439.73316175],[516845.8583157437,5277439.633320658],[516848.6369569862,5277439.64136112],[516853.2179601155,5277439.654619911],[516855.62110929744,5277439.661576785],[516863.13127239235,5277439.572184445],[516865.60952003195,5277439.579362958],[516870.1154248294,5277439.592417498],[516872.5188961354,5277439.488242384],[516879.95363918797,5277439.50979307],[516882.2816900427,5277439.516543216],[516887.1634093542,5277439.419560811]]]},"properties":{"ID_SOURCE":"w145190219","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":578}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517181.2682065722,5277349.723240912],[517186.194340247,5277354.961355654],[517171.2982251527,5277368.9654891705],[517176.5312746844,5277374.53792086],[517170.95842567255,5277379.778400677],[517171.9241568236,5277380.814850117],[517166.3965084833,5277386.011011646],[517165.31845619733,5277384.863092049],[517154.8505983449,5277394.701464104],[517170.69202094624,5277411.54140355],[517178.4864205678,5277404.218047201],[517171.06732818746,5277396.327455447],[517179.41151303233,5277388.48336426],[517184.4349159704,5277393.832904927],[517187.10086849966,5277391.317898036],[517196.9829537712,5277401.838686808],[517186.09333816473,5277412.075861067],[517188.5339133395,5277414.672625969],[517172.0046012072,5277429.927817931],[517162.64109318296,5277419.275231817],[517157.47514183476,5277424.072364405],[517148.33296599856,5277414.754132873],[517143.9095206131,5277409.684239653],[517152.51724892104,5277401.58526428],[517150.09163928125,5277398.999672716],[517147.034144556,5277401.869191059],[517136.9647780414,5277391.15899845],[517152.79460356926,5277376.26840877],[517151.4245436832,5277374.819553751],[517162.4873871238,5277364.4161159685],[517152.08108336484,5277353.349257147],[517158.97185187566,5277346.867876385],[517151.61254278995,5277339.0441708],[517162.3064163992,5277328.995293679],[517172.4357608718,5277339.76127559],[517176.3970221267,5277336.038659468],[517185.523142656,5277345.7347617885],[517181.2682065722,5277349.723240912]]]},"properties":{"ID_SOURCE":"w145190274","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":579}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516443.47414930066,5277680.212181112],[516435.27213275054,5277686.079434457],[516431.8312414235,5277681.290705956],[516430.1756949387,5277682.50857219],[516424.1168078146,5277674.044843834],[516419.82790790155,5277677.033522651],[516417.35947769624,5277673.581224422],[516419.6167275573,5277672.031631912],[516418.56978008675,5277670.4727207],[516420.52633623086,5277669.033420414],[516413.94394555496,5277659.790247196],[516415.5994950442,5277658.572376382],[516412.3081357935,5277654.006361203],[516410.72768132424,5277655.224444637],[516404.5936415918,5277646.760525409],[516400.30441869923,5277649.860357503],[516397.8359653085,5277646.408067756],[516400.0935334975,5277644.747328726],[516398.97148007987,5277643.188209583],[516401.0782320413,5277641.74932588],[516397.63728619914,5277636.960618047],[516407.4948892439,5277629.875438979],[516410.93583124236,5277634.664152593],[516412.0647759747,5277633.778216014],[516418.49763468385,5277642.7986850785],[516419.77645712753,5277642.02431256],[516422.91825297306,5277646.36763018],[516420.5852696671,5277648.139287559],[516423.8766258055,5277652.705307381],[516426.2096083012,5277650.933651307],[516429.4261764775,5277655.38832341],[516427.0180991756,5277657.159766312],[516430.45932253497,5277661.837352738],[516431.58795133594,5277661.062558923],[516438.09584484587,5277670.083262122],[516439.14937764587,5277669.30825772],[516442.3659256914,5277673.76293715],[516440.0332611894,5277675.423447795],[516443.47414930066,5277680.212181112]]]},"properties":{"ID_SOURCE":"w145190323","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":580}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.19147495995,5277352.895527593],[517027.4013554672,5277352.805468743],[517029.8793151325,5277352.923856033],[517034.38561246666,5277352.8258986],[517036.78879766964,5277352.832930165],[517044.0737781615,5277352.743111713],[517046.7022620247,5277352.750806912],[517051.2082343623,5277352.764001443],[517053.536320069,5277352.770819984],[517059.3193102025,5277352.676621441],[517059.3657534159,5277362.457068709],[517051.8480091094,5277362.535072265],[517048.96412656474,5277362.548854823],[517034.6723831602,5277362.618162578],[517031.51794779825,5277362.6978461435],[517017.26378738397,5277362.756192575],[517014.03438288905,5277362.791210532],[516999.88507022307,5277362.949931807],[516996.73089517374,5277362.94072306],[516982.87476300425,5277363.000315639],[516979.81064246653,5277363.013606716],[516974.05022653175,5277363.096835992],[516974.1201417214,5277364.8752781],[516960.00178196275,5277364.722994808],[516960.10893209843,5277353.720457817],[516973.9275684661,5277353.649587641],[516974.0793875728,5277353.094330793],[516978.209861847,5277353.106374126],[516980.68814640853,5277353.113601533],[516984.81862068037,5277353.125649555],[516987.2218057092,5277353.132660661],[516994.65698379517,5277353.043218608],[516996.83487026795,5277353.049576061],[517001.5664654159,5277352.952250944],[517004.1198496046,5277352.959707623],[517011.4045044902,5277352.9809872415],[517013.883113911,5277352.877089831],[517017.7131902626,5277352.888283371],[517020.19147495995,5277352.895527593]]]},"properties":{"ID_SOURCE":"w145190333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":581}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516420.7201475874,5277264.818314036],[516417.619397477,5277272.478217547],[516419.65975057654,5277273.3286337815],[516417.49683280004,5277278.657246012],[516415.8314823375,5277277.985711515],[516415.5293883536,5277278.585014826],[516404.7419016761,5277274.309069746],[516404.34070626716,5277275.430451566],[516393.5982659595,5277271.15465414],[516399.2184626191,5277256.8890145365],[516397.6206945171,5277256.217675666],[516404.7612473116,5277238.121999974],[516411.00929057784,5277222.279955848],[516412.8734921347,5277221.685055502],[516414.4065907564,5277221.322615926],[516415.7580366111,5277221.459793756],[516421.7975405092,5277223.655164754],[516421.04000906897,5277225.964736366],[516431.29479506833,5277230.083611849],[516429.82673187496,5277234.013818549],[516434.8529810822,5277235.9840644915],[516436.4115763398,5277231.909632834],[516445.36017967365,5277235.813680485],[516444.97965212836,5277237.590842786],[516444.97619922645,5277238.813371022],[516444.58077735023,5277240.546035365],[516443.76453930954,5277242.366423109],[516442.70904594735,5277243.808259925],[516441.73053704354,5277244.583475414],[516441.5030374549,5277245.360811725],[516441.7280263315,5277245.472586873],[516440.59335351846,5277248.359018125],[516440.14274831844,5277248.357745792],[516439.99129136093,5277248.801877418],[516441.62654433947,5277249.49556174],[516437.5125999896,5277259.564327746],[516436.3721357244,5277259.183232787],[516434.0888168294,5277264.58929683],[516430.2178254396,5277263.089098466],[516422.5439289058,5277259.911077829],[516420.7201475874,5277264.818314036]]]},"properties":{"ID_SOURCE":"w145190350","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":582}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516691.90699353215,5277046.088285671],[516694.530198495,5277047.985182768],[516699.43232252443,5277040.886291875],[516708.6512433471,5277047.469987041],[516702.01631650777,5277056.453276476],[516694.82169012644,5277051.097933157],[516690.5248668164,5277056.642605639],[516683.4056520246,5277051.176352828],[516682.2749614192,5277052.617930817],[516664.36437144934,5277038.896448787],[516661.19761899003,5277043.221839101],[516663.89562061947,5277045.230076156],[516652.2100818469,5277060.756218734],[516683.8886061441,5277084.452996053],[516674.1716129067,5277097.072873033],[516642.78659241204,5277073.17693519],[516641.5047569993,5277074.951508493],[516634.16020948975,5277069.484671863],[516637.70371408906,5277064.715784116],[516639.05271414976,5277065.719897077],[516642.0679608506,5277061.838620922],[516640.7940636925,5277060.834721905],[516640.944905521,5277060.61287338],[516656.62711359304,5277039.430009732],[516657.75112358294,5277040.322343574],[516660.6165065932,5277036.3295085225],[516661.31628971524,5277027.996025618],[516663.1229134512,5277026.556377872],[516663.3526773136,5277025.001078162],[516661.70103074657,5277024.774072264],[516658.94158742164,5277017.986649149],[516663.08820092794,5277012.441523862],[516670.2965860143,5277013.017855205],[516673.43153764127,5277019.806358938],[516669.50832169724,5277026.01895529],[516667.4060531834,5277025.790657762],[516666.4192070112,5277029.455446574],[516686.2796465517,5277044.18278014],[516687.3349177382,5277042.8521266],[516691.90699353215,5277046.088285671]]]},"properties":{"ID_SOURCE":"w145190370","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":583}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516346.8888312345,5276828.498085541],[516352.24103867414,5276821.511309287],[516356.97032328806,5276825.058835111],[516361.909462539,5276828.762550093],[516356.4067255067,5276835.860034492],[516346.8888312345,5276828.498085541]]]},"properties":{"ID_SOURCE":"w145190378","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":584}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516618.8209548177,5277523.113718153],[516610.2528835621,5277525.53434428],[516606.6089385187,5277512.9651423665],[516615.2521241754,5277510.544725205],[516617.17779905867,5277517.329754023],[516618.8209548177,5277523.113718153]]]},"properties":{"ID_SOURCE":"w145190389","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":585}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.8759852735,5277513.057842513],[517174.7956420472,5277514.835844527],[517173.2185955487,5277514.831192461],[517173.22416864726,5277512.941829938],[517174.8759852735,5277513.057842513]]]},"properties":{"ID_SOURCE":"w145190401","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":586}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.3818001258,5277731.788476628],[516479.75379266666,5277730.3277233085],[516480.2093945172,5277728.550774533],[516486.06300228473,5277729.901027242],[516485.3818001258,5277731.788476628]]]},"properties":{"ID_SOURCE":"w145190408","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":587}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4484362991,5277181.676966661],[517299.7490755641,5277189.565821217],[517300.0943450314,5277189.633531014],[517299.5797532132,5277196.000318094],[517296.9428957671,5277196.259219994],[517297.42886373884,5277189.41444611],[517292.3904339627,5277189.099402634],[517292.9399113352,5277181.098962209],[517296.4388940522,5277181.364976911],[517300.4484362991,5277181.676966661]]]},"properties":{"ID_SOURCE":"w145190437","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":588}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.46576563176,5277209.910836336],[517264.7052401728,5277205.132530943],[517265.90686337196,5277205.136094061],[517265.7424892333,5277209.914622106],[517264.46576563176,5277209.910836336]]]},"properties":{"ID_SOURCE":"w145190447","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":589}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516992.63426737295,5277222.670234612],[516992.51826865505,5277185.2157612005],[517002.28148941917,5277185.244262217],[517002.4725265502,5277222.698955282],[516992.63426737295,5277222.670234612]]]},"properties":{"ID_SOURCE":"w145190463","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":590}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516629.23975760984,5277477.4649767],[516622.0991093596,5277479.6673831],[516620.6560753391,5277474.806450761],[516619.1237461048,5277469.656300257],[516626.26440545963,5277467.4538902175],[516629.23975760984,5277477.4649767]]]},"properties":{"ID_SOURCE":"w145190481","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":591}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516901.208342332,5277102.595373595],[516900.5866690614,5277058.026495267],[516914.5565352133,5277057.844779611],[516914.877367686,5277102.523925881],[516901.208342332,5277102.595373595]]]},"properties":{"ID_SOURCE":"w145190510","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":592}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.0429526103,5277464.488310913],[517212.1226506469,5277462.932587453],[517214.1502999668,5277462.938582265],[517214.14537088695,5277464.6056667045],[517212.0429526103,5277464.488310913]]]},"properties":{"ID_SOURCE":"w145190613","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":593}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0115500395,5277533.590402691],[516851.673640301,5277532.118547681],[516853.27288078936,5277524.454523206],[516857.17626798415,5277525.043751482],[516862.20559892064,5277525.814067214],[516861.0115500395,5277533.590402691]]]},"properties":{"ID_SOURCE":"w145190629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":594}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.73395074013,5277727.848398711],[516973.05702592764,5277729.522270609],[516971.77004822786,5277733.074997124],[516968.77274197317,5277730.843460649],[516970.73395074013,5277727.848398711]]]},"properties":{"ID_SOURCE":"w145190647","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":595}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517314.82518301846,5277044.573085632],[517314.58334849006,5277050.129360099],[517311.50476784824,5277049.897926793],[517311.82170297136,5277044.341875497],[517314.82518301846,5277044.573085632]]]},"properties":{"ID_SOURCE":"w145190653","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":596}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.26461351285,5276718.442357971],[516845.684908661,5276720.780401437],[516841.0953047239,5276723.545620855],[516839.6746870405,5276721.318717339],[516844.26461351285,5276718.442357971]]]},"properties":{"ID_SOURCE":"w145190655","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":597}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517018.16384554276,5277378.562916823],[517022.29430182267,5277378.574991476],[517022.28195431526,5277382.798271581],[517018.1511761756,5277382.89733588],[517018.16384554276,5277378.562916823]]]},"properties":{"ID_SOURCE":"w145190678","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":598}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.0106342476,5277534.219685274],[516617.5052416035,5277539.425297828],[516618.9850171936,5277544.564184555],[516611.84413785976,5277546.877742546],[516608.4942576857,5277536.5321757225],[516616.0106342476,5277534.219685274]]]},"properties":{"ID_SOURCE":"w145190707","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":599}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.8448474734,5277632.399719374],[517022.66427858826,5277637.309812786],[517019.6933497084,5277641.457760568],[517016.7827615365,5277645.516974282],[517009.96365989564,5277640.495748689],[517015.8448474734,5277632.399719374]]]},"properties":{"ID_SOURCE":"w145190724","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":600}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.93783734017,5277695.217502345],[517216.4459444905,5277702.451974304],[517207.2715389248,5277706.759308901],[517203.76309461193,5277699.635981445],[517206.29744458065,5277698.4098176425],[517212.93783734017,5277695.217502345]]]},"properties":{"ID_SOURCE":"w145190727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":601}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.7424892333,5277209.914622106],[517265.90686337196,5277205.136094061],[517278.3723848355,5277205.617631697],[517278.2080004745,5277210.396159421],[517265.7424892333,5277209.914622106]]]},"properties":{"ID_SOURCE":"w145190733","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":602}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516836.0540565685,5277376.032946171],[516833.5006826781,5277376.025563175],[516833.428475406,5277375.025095483],[516836.05727035756,5277374.921556659],[516836.0540565685,5277376.032946171]]]},"properties":{"ID_SOURCE":"w145190740","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":603}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516422.7646277575,5277700.825743677],[516419.9166590381,5277698.817192152],[516424.4408620277,5277692.272700586],[516426.535058931,5277695.279386437],[516422.7646277575,5277700.825743677]]]},"properties":{"ID_SOURCE":"w145190766","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":604}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517122.26779535745,5277552.024143449],[517116.68970720674,5277559.12069711],[517113.10830887256,5277556.309442194],[517109.7217018871,5277553.654357894],[517115.29945996386,5277546.6689366065],[517122.26779535745,5277552.024143449]]]},"properties":{"ID_SOURCE":"w145190767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":605}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.7179976846,5276895.870610231],[517308.3593162381,5276895.293033727],[517308.62584056234,5276891.537299209],[517308.90784881404,5276887.626014968],[517316.2668703974,5276888.092453275],[517315.7179976846,5276895.870610231]]]},"properties":{"ID_SOURCE":"w145190779","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":606}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516948.84189372056,5277457.603451896],[516948.84545266366,5277456.380923289],[516951.2482714518,5277456.499058619],[516951.3204573603,5277457.499527947],[516948.84189372056,5277457.603451896]]]},"properties":{"ID_SOURCE":"w145190785","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":607}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.4298729909,5276750.02741027],[517231.7043217779,5276758.808267498],[517227.2947068521,5276759.073070358],[517222.8400280257,5276759.337743273],[517222.49045859673,5276750.556664362],[517231.4298729909,5276750.02741027]]]},"properties":{"ID_SOURCE":"w145190793","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":608}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.4553018264,5277091.79751278],[517310.987502738,5277097.57539574],[517308.0591527476,5277097.344410737],[517308.4518460283,5277091.566304306],[517311.4553018264,5277091.79751278]]]},"properties":{"ID_SOURCE":"w145190808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":609}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.0659374689,5277257.856784983],[517127.640003721,5277257.519170532],[517128.17126713664,5277255.631355234],[517129.59687434736,5277256.080108739],[517129.0659374689,5277257.856784983]]]},"properties":{"ID_SOURCE":"w145190813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":610}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517140.8565017328,5277513.068724097],[517140.9365073986,5277511.40186062],[517142.51322756166,5277511.517642912],[517142.4335486875,5277513.073367397],[517140.8565017328,5277513.068724097]]]},"properties":{"ID_SOURCE":"w145190815","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":611}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516925.14713606174,5277703.376036361],[516924.06625252153,5277703.206184102],[516923.0454449336,5277703.03650668],[516923.19854264986,5277702.036692204],[516925.3002341316,5277702.37622194],[516925.14713606174,5277703.376036361]]]},"properties":{"ID_SOURCE":"w145190848","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":612}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.0509288059,5277380.050233547],[516880.0438399816,5277382.495290483],[516878.9176749282,5277382.380885675],[516878.9244410807,5277380.046967691],[516880.0509288059,5277380.050233547]]]},"properties":{"ID_SOURCE":"w145190852","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":613}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516863.13127239235,5277439.572184445],[516863.13416951295,5277438.571933787],[516865.5376411,5277438.46775579],[516865.60952003195,5277439.579362958],[516863.13127239235,5277439.572184445]]]},"properties":{"ID_SOURCE":"w145190874","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":614}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516718.78593390365,5277493.61443614],[516716.15049374313,5277496.051946235],[516713.75438721577,5277493.599989468],[516716.540022955,5277491.162909546],[516718.78593390365,5277493.61443614]]]},"properties":{"ID_SOURCE":"w145190882","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":615}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517233.60896351124,5277206.485227453],[517233.7476530158,5277210.3755341545],[517230.442863348,5277210.476893346],[517230.45470338804,5277206.475892296],[517233.60896351124,5277206.485227453]]]},"properties":{"ID_SOURCE":"w145190916","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":616}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517025.97977320506,5277479.389665226],[517031.08480516926,5277479.960296223],[517030.8526842027,5277482.293555501],[517025.8224271267,5277481.834283281],[517025.97977320506,5277479.389665226]]]},"properties":{"ID_SOURCE":"w145190921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":617}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.3391604726,5277314.684484141],[517307.10389394726,5277299.96071835],[517314.6890948839,5277315.109413202],[517306.3391604726,5277314.684484141]]]},"properties":{"ID_SOURCE":"w145190973","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":618}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.35030776873,5277112.201523419],[517278.02691785205,5277104.379283665],[517286.18112982565,5277105.059211006],[517285.63198538224,5277112.948512207],[517281.412239578,5277112.591453128],[517277.35030776873,5277112.201523419]]]},"properties":{"ID_SOURCE":"w145190986","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":619}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516394.79148749856,5277607.500535068],[516393.5123479044,5277608.386052038],[516386.9292195001,5277599.365188496],[516388.20836005546,5277598.47967009],[516392.11336896615,5277603.825377896],[516394.79148749856,5277607.500535068]]]},"properties":{"ID_SOURCE":"w145191014","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":620}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516915.7765516471,5277439.280344388],[516913.5235990838,5277439.2737990115],[516913.5261819978,5277438.384687319],[516915.8545562424,5277438.280311927],[516915.7765516471,5277439.280344388]]]},"properties":{"ID_SOURCE":"w145191031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":621}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517011.4045044902,5277352.9809872415],[517011.33265217824,5277351.869378363],[517013.8863616223,5277351.765700377],[517013.883113911,5277352.877089831],[517011.4045044902,5277352.9809872415]]]},"properties":{"ID_SOURCE":"w145191034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":622}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.20811512624,5277481.529333127],[516685.24751527474,5277482.959933018],[516684.4294013271,5277480.179091366],[516689.3149054349,5277478.748275497],[516690.20811512624,5277481.529333127]]]},"properties":{"ID_SOURCE":"w145191043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":623}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.84472763987,5277741.050477284],[516767.0371152942,5277741.15064943],[516766.9029310304,5277735.593266106],[516770.7030375476,5277735.49307223],[516770.84472763987,5277741.050477284]]]},"properties":{"ID_SOURCE":"w145191044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":624}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517158.7767792895,5277471.666316657],[517158.6967680624,5277473.333179801],[517156.744220399,5277473.327425594],[517156.8245585772,5277471.549423459],[517158.7767792895,5277471.666316657]]]},"properties":{"ID_SOURCE":"w145191073","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":625}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.66143457225,5277366.969902524],[517270.51570622885,5277370.525947801],[517269.5479140003,5277370.1896573445],[517269.63059537666,5277367.633684351],[517270.66143457225,5277366.969902524]]]},"properties":{"ID_SOURCE":"w145191079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":626}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.82854175055,5277467.339041585],[516970.97521519114,5277467.325985126],[516970.97812470875,5277468.904180333],[516969.4010659045,5277468.8995835055],[516967.83148451126,5277468.906122892],[516967.82854175055,5277467.339041585]]]},"properties":{"ID_SOURCE":"w145191129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":627}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.3452677645,5277447.654483011],[517007.057509314,5277447.6594844265],[517007.0675618172,5277449.359954421],[517007.08564357925,5277450.882624021],[517005.41095211543,5277450.877732269],[517005.3452677645,5277447.654483011]]]},"properties":{"ID_SOURCE":"w145191165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":628}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516371.80360164377,5277610.436620839],[516374.06117622077,5277608.7758717965],[516375.18324299017,5277610.3349860255],[516372.85057251866,5277611.995523439],[516371.80360164377,5277610.436620839]]]},"properties":{"ID_SOURCE":"w145191171","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":629}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517205.3749447519,5276722.054280499],[517196.0596234794,5276722.693604554],[517195.6532961381,5276717.85782333],[517195.2613333141,5276713.244364193],[517204.7268851979,5276712.605482631],[517205.3749447519,5276722.054280499]]]},"properties":{"ID_SOURCE":"w145191217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":630}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517100.9222737141,5277506.949731851],[517104.00029381167,5277507.292193523],[517102.4872425896,5277511.066506285],[517100.5353605073,5277510.838492954],[517100.9222737141,5277506.949731851]]]},"properties":{"ID_SOURCE":"w145191221","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":631}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517014.03438288905,5277362.791210532],[517017.26378738397,5277362.756192575],[517017.2744219667,5277364.25661226],[517015.6221704345,5277364.274011273],[517014.04501830135,5277364.291630214],[517014.03438288905,5277362.791210532]]]},"properties":{"ID_SOURCE":"w145191233","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":632}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.23712110886,5277672.133240861],[516418.56978008675,5277670.4727207],[516419.6167275573,5277672.031631912],[516417.35947769624,5277673.581224422],[516416.23712110886,5277672.133240861]]]},"properties":{"ID_SOURCE":"w145191243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":633}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516727.40424774674,5277630.563550835],[516717.63220049336,5277633.869678852],[516715.3994268008,5277626.8614531765],[516719.203082209,5277625.549810476],[516724.94619638997,5277623.554674202],[516727.40424774674,5277630.563550835]]]},"properties":{"ID_SOURCE":"w145191246","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":634}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516769.79010329506,5276798.281389898],[516768.8588430596,5276790.432240269],[516772.65308006713,5276789.976380402],[516773.58430325694,5276797.836644533],[516769.79010329506,5276798.281389898]]]},"properties":{"ID_SOURCE":"w145191253","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":635}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.1585517689,5276759.144462703],[517269.5847204794,5276750.0292960545],[517279.5763024947,5276749.2809565775],[517280.15044802596,5276758.284985399],[517275.3197683455,5276758.704098205],[517270.1585517689,5276759.144462703]]]},"properties":{"ID_SOURCE":"w145191271","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":636}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516929.9574657032,5277495.336076017],[516939.63989459997,5277497.142478429],[516938.03309629334,5277507.362675515],[516932.34370870737,5277506.312524842],[516928.20048880635,5277505.555838996],[516929.9574657032,5277495.336076017]]]},"properties":{"ID_SOURCE":"w145191275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":637}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.4446186602,5277443.402256795],[516995.4368323774,5277446.069591873],[516994.53565237287,5277446.066961285],[516994.54343824537,5277443.399626207],[516995.4446186602,5277443.402256795]]]},"properties":{"ID_SOURCE":"w145191295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":638}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.31998225074,5277461.814912916],[516673.63855175534,5277456.29755929],[516671.82315051625,5277450.357491051],[516678.287332333,5277448.375487325],[516681.78415258904,5277459.8329130635],[516675.31998225074,5277461.814912916]]]},"properties":{"ID_SOURCE":"w145191313","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":639}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.99414098973,5277549.55871708],[516894.5766799195,5277550.358695305],[516893.5665570814,5277562.025455497],[516885.833839535,5277561.225042914],[516886.5068783071,5277554.436346082],[516886.99414098973,5277549.55871708]]]},"properties":{"ID_SOURCE":"w145191340","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":640}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.29204674996,5277351.856743772],[517271.13847808616,5277355.523905617],[517270.19321324804,5277355.187681899],[517270.35132427927,5277352.520792794],[517271.29204674996,5277351.856743772]]]},"properties":{"ID_SOURCE":"w145191349","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":641}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.0324733625,5277723.497699123],[517117.0416231547,5277720.385806872],[517119.5194246969,5277720.504232767],[517119.5106004061,5277723.504986005],[517117.0324733625,5277723.497699123]]]},"properties":{"ID_SOURCE":"w145191358","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":642}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.78879766964,5277352.832930165],[517034.38561246666,5277352.8258986],[517034.4636384781,5277351.825867813],[517036.7917245447,5277351.832679657],[517036.78879766964,5277352.832930165]]]},"properties":{"ID_SOURCE":"w145191360","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":643}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516865.5144383675,5277757.550405747],[516866.045572383,5277755.662565364],[516873.5485633215,5277757.907106766],[516872.94233278395,5277759.794728824],[516865.5144383675,5277757.550405747]]]},"properties":{"ID_SOURCE":"w145191367","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":644}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.39031673543,5276900.317874013],[517138.30488071236,5276900.12476605],[517138.28983414196,5276905.23715386],[517128.45071109047,5276905.319343881],[517128.39031673543,5276900.317874013]]]},"properties":{"ID_SOURCE":"w145191396","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":645}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.3191740858,5277725.000644323],[516716.18302616134,5277720.110096499],[516725.9463068041,5277719.804719271],[516726.1578605842,5277724.5843440825],[516716.3191740858,5277725.000644323]]]},"properties":{"ID_SOURCE":"w145191447","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":646}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516906.46402499074,5277439.364434772],[516903.7604819661,5277439.356584752],[516903.8384844967,5277438.356552138],[516906.4669295557,5277438.36418412],[516906.46402499074,5277439.364434772]]]},"properties":{"ID_SOURCE":"w145191454","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":647}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.0565711807,5277476.6694372315],[516537.46505127376,5277478.981805867],[516534.19167527265,5277468.080801773],[516541.85799032904,5277465.879781216],[516543.50193050754,5277471.419217676],[516545.0565711807,5277476.6694372315]]]},"properties":{"ID_SOURCE":"w145191455","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":648}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.73893089656,5277279.250055908],[516999.63229087356,5277266.902103999],[516999.52639650047,5277254.298532797],[517015.9815680288,5277254.146547635],[517016.1940319211,5277279.098071513],[516999.73893089656,5277279.250055908]]]},"properties":{"ID_SOURCE":"w145191464","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":649}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.05033588957,5276938.546326868],[517314.92524399684,5276940.201938709],[517307.5290330635,5276939.635365302],[517307.63129409263,5276938.079711321],[517312.3395449973,5276938.371557059],[517315.05033588957,5276938.546326868]]]},"properties":{"ID_SOURCE":"w145191477","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":650}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.974226132,5277393.921846064],[516795.96685196826,5277396.478042028],[516794.7652684957,5277396.4745758],[516794.8474205373,5277394.029735422],[516795.974226132,5277393.921846064]]]},"properties":{"ID_SOURCE":"w145191489","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":651}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.3974209982,5277433.8440869665],[516995.39028361184,5277436.289144086],[516994.4133548185,5277436.508572219],[516994.3460421182,5277433.841017974],[516995.3974209982,5277433.8440869665]]]},"properties":{"ID_SOURCE":"w145191499","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":652}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516468.8549585564,5277760.415796282],[516460.22508897324,5277758.279730824],[516460.6049599237,5277756.724846171],[516469.2345172658,5277758.972051203],[516468.8549585564,5277760.415796282]]]},"properties":{"ID_SOURCE":"w145191539","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":653}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.9293477012,5277159.036834298],[517273.4549965727,5277167.037498978],[517265.57094048505,5277166.458415906],[517265.83792060724,5277162.535969562],[517266.1203828683,5277158.45797332],[517273.9293477012,5277159.036834298]]]},"properties":{"ID_SOURCE":"w145191542","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":654}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.5462931591,5276973.368531876],[517214.55089302716,5276971.812587597],[517224.8405324925,5276971.731876294],[517224.7608254351,5276973.287598402],[517214.5462931591,5276973.368531876]]]},"properties":{"ID_SOURCE":"w145191552","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":655}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517057.79924817296,5277666.420179994],[517054.95180558256,5277664.300178453],[517058.6467919812,5277659.08742647],[517061.49423579976,5277661.207429799],[517057.79924817296,5277666.420179994]]]},"properties":{"ID_SOURCE":"w145191576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":656}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.67212820065,5277405.603726367],[516838.6089222773,5277401.4913678],[516842.73968349275,5277401.392176154],[516842.80288650095,5277405.504534772],[516838.67212820065,5277405.603726367]]]},"properties":{"ID_SOURCE":"w145191583","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":657}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517191.3120201554,5277720.048955483],[517196.4623736981,5277730.622464829],[517193.1084577247,5277732.201860305],[517189.1680179011,5277734.04626182],[517184.09274898574,5277723.472980556],[517191.3120201554,5277720.048955483]]]},"properties":{"ID_SOURCE":"w145191637","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":658}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516806.1594873648,5277429.738280173],[516807.6615543852,5277429.709274267],[516807.70902195,5277431.476535503],[516807.7501988431,5277432.821447018],[516806.22560307465,5277432.850387863],[516806.1594873648,5277429.738280173]]]},"properties":{"ID_SOURCE":"w145191654","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":659}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.77521221543,5277492.635284065],[517000.7804345693,5277493.541936076],[517000.396832754,5277496.319313886],[516994.2417422262,5277495.301084872],[516994.77521221543,5277492.635284065]]]},"properties":{"ID_SOURCE":"w145191722","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":660}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.62110929744,5277439.661576785],[516853.2179601155,5277439.654619911],[516853.2208555329,5277438.654369252],[516855.6991035534,5277438.661543543],[516855.62110929744,5277439.661576785]]]},"properties":{"ID_SOURCE":"w145191729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":661}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.96737907326,5277383.216303652],[516938.63467703963,5277383.187812136],[516938.6531973874,5277384.56600068],[516938.67116804793,5277386.133125449],[516937.03374891245,5277386.2172738165],[516936.96737907326,5277383.216303652]]]},"properties":{"ID_SOURCE":"w145191733","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":662}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.31951109186,5277430.761141661],[517006.919272133,5277430.71024452],[517006.92997404066,5277432.188436553],[517006.9485429015,5277433.544397668],[517005.3113956983,5277433.539615642],[517005.31951109186,5277430.761141661]]]},"properties":{"ID_SOURCE":"w145191746","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":663}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516850.29988845676,5277747.281472434],[516846.5012685139,5277736.489903943],[516848.00444674515,5277736.049694267],[516851.57745913876,5277746.951750624],[516850.29988845676,5277747.281472434]]]},"properties":{"ID_SOURCE":"w145191751","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":664}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.8176487976,5277392.060872907],[516805.82695209485,5277388.837843242],[516807.253834348,5277388.841962121],[516807.2868922422,5277390.398015872],[516807.3199501165,5277391.954069626],[516805.8176487976,5277392.060872907]]]},"properties":{"ID_SOURCE":"w145191757","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":665}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.77296408534,5277529.776161401],[517273.4036985379,5277526.063744083],[517274.20493145246,5277526.844101012],[517270.5666872441,5277530.556495558],[517269.77296408534,5277529.776161401]]]},"properties":{"ID_SOURCE":"w145191761","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":666}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517233.7476530158,5277210.3755341545],[517233.60896351124,5277206.485227453],[517237.7398712711,5277206.386315729],[517237.8782289877,5277210.387761455],[517233.7476530158,5277210.3755341545]]]},"properties":{"ID_SOURCE":"w145191766","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":667}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.20493145246,5277526.844101012],[517273.4036985379,5277526.063744083],[517277.50896920095,5277521.87483547],[517278.31020214973,5277522.655192957],[517274.20493145246,5277526.844101012]]]},"properties":{"ID_SOURCE":"w145191792","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":668}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516400.0986294759,5277589.621962877],[516399.12613216473,5277588.285544943],[516405.7484026481,5277583.414048042],[516406.72058606293,5277584.861606069],[516400.0986294759,5277589.621962877]]]},"properties":{"ID_SOURCE":"w145191807","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":669}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516899.25457692164,5277439.343504171],[516896.926525983,5277439.3367472375],[516896.9294289083,5277438.336496585],[516899.2574802487,5277438.343253518],[516899.25457692164,5277439.343504171]]]},"properties":{"ID_SOURCE":"w145191819","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":670}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.6723831602,5277362.618162578],[517034.71272784384,5277364.229809143],[517032.9026699652,5277364.280083515],[517031.55829335295,5277364.309492686],[517031.51794779825,5277362.6978461435],[517034.6723831602,5277362.618162578]]]},"properties":{"ID_SOURCE":"w145191821","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":671}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516897.84165613924,5277538.031640144],[516888.60825376125,5277536.782308954],[516889.75695813773,5277529.11698727],[516894.41869187774,5277529.752896576],[516898.84017796227,5277530.365884282],[516897.84165613924,5277538.031640144]]]},"properties":{"ID_SOURCE":"w145191879","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":672}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.6669629954,5277382.285020421],[516534.994793036,5277383.61678965],[516532.0399584471,5277382.174694634],[516532.6971396212,5277380.831768522],[516535.6669629954,5277382.285020421]]]},"properties":{"ID_SOURCE":"w145191888","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":673}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516987.2218057092,5277353.132660661],[516984.81862068037,5277353.125649555],[516984.8218628438,5277352.014260099],[516987.2250483323,5277352.021271207],[516987.2218057092,5277353.132660661]]]},"properties":{"ID_SOURCE":"w145191911","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":674}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.43382727704,5276740.591171092],[517206.74879171007,5276740.062988126],[517207.689720467,5276752.068867661],[517198.299339623,5276752.70796611],[517197.85953269934,5276746.493951999],[517197.43382727704,5276740.591171092]]]},"properties":{"ID_SOURCE":"w145191920","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":675}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.2354639504,5277557.601636666],[517123.65769944526,5277564.587044739],[517119.9714010272,5277561.697679048],[517116.68970720674,5277559.12069711],[517122.26779535745,5277552.024143449],[517129.2354639504,5277557.601636666]]]},"properties":{"ID_SOURCE":"w145191926","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":676}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.60735394096,5277344.300164555],[517271.4452858984,5277348.300720894],[517270.44092921994,5277347.630902098],[517270.52361122385,5277345.074929208],[517271.60735394096,5277344.300164555]]]},"properties":{"ID_SOURCE":"w145191933","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":677}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.6829457644,5277492.492982495],[516630.31606717216,5277495.028151935],[516628.7678435705,5277490.189144916],[516626.9665065862,5277484.571436347],[516634.5583729217,5277482.148045356],[516637.6829457644,5277492.492982495]]]},"properties":{"ID_SOURCE":"w145191934","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":678}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.4280634623,5277498.083348838],[517295.29441597423,5277495.843097101],[517296.23591071385,5277494.912318488],[517298.4148809704,5277497.063793268],[517297.4280634623,5277498.083348838]]]},"properties":{"ID_SOURCE":"w145191959","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":679}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516576.9895429067,5277444.640849535],[516568.28531162103,5277447.372341576],[516565.0381557465,5277448.385588623],[516562.4324792833,5277440.376105241],[516574.45929597487,5277436.52043564],[516576.9895429067,5277444.640849535]]]},"properties":{"ID_SOURCE":"w145191961","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":680}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.54510487174,5277656.156891116],[516693.0805084563,5277658.361149367],[516690.4012829767,5277649.906834097],[516697.09085614,5277647.814358017],[516697.54206799716,5277647.59337231],[516697.0959562,5277646.036134021],[516705.0631210898,5277643.613911688],[516707.07284616766,5277649.84351404],[516711.35744819226,5277648.410992578],[516713.81295254716,5277656.308975743],[516708.100582519,5277658.070817321],[516707.20709018264,5277655.400895095],[516703.89975763485,5277656.4805758055],[516700.81790440803,5277657.494221265],[516700.22160303086,5277655.936551855],[516699.54510487174,5277656.156891116]]]},"properties":{"ID_SOURCE":"w145191969","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":681}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.72377498174,5277079.233365161],[517272.0722881948,5277078.6994201355],[517272.5192663631,5277072.332431341],[517272.92658383504,5277066.676620162],[517280.6605679747,5277067.255266996],[517279.72377498174,5277079.233365161]]]},"properties":{"ID_SOURCE":"w145191989","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":682}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.35901714297,5276875.997521685],[517285.98229690804,5276868.441862869],[517293.49122594425,5276869.019857076],[517293.01814786537,5276876.575961199],[517290.7053876651,5276876.402383685],[517285.35901714297,5276875.997521685]]]},"properties":{"ID_SOURCE":"w145191998","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":683}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.32741632016,5277427.492046618],[517284.42730399955,5277427.670926597],[517284.25020927715,5277431.671438535],[517280.1503244122,5277431.492558669],[517280.32741632016,5277427.492046618]]]},"properties":{"ID_SOURCE":"w145192006","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":684}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517196.70900861727,5276731.697846235],[517206.0243155693,5276731.05852325],[517206.74879171007,5276740.062988126],[517197.43382727704,5276740.591171092],[517197.08588179055,5276736.333489014],[517196.70900861727,5276731.697846235]]]},"properties":{"ID_SOURCE":"w145192013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":685}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516712.5186112724,5276877.5483384],[516683.66502451553,5276855.793343286],[516687.8875189022,5276850.026174205],[516716.6663320628,5276871.669835541],[516712.5186112724,5276877.5483384]]]},"properties":{"ID_SOURCE":"w145192029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":686}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516973.0238327579,5277457.562759047],[516973.10249498,5277456.340449379],[516975.8060301961,5277456.348331619],[516975.8024655923,5277457.570860223],[516973.0238327579,5277457.562759047]]]},"properties":{"ID_SOURCE":"w145192035","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":687}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.5024547672,5277704.316216019],[517252.94707128993,5277700.892934707],[517257.79760968074,5277711.243330016],[517253.81181454594,5277713.176465435],[517250.502863885,5277714.778189201],[517245.5024547672,5277704.316216019]]]},"properties":{"ID_SOURCE":"w145192044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":688}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517261.583225784,5277244.911357797],[517261.9007632028,5277239.133024376],[517263.5523264002,5277239.360200797],[517263.235116873,5277245.027395216],[517261.583225784,5277244.911357797]]]},"properties":{"ID_SOURCE":"w145192057","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":689}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516934.574504515,5277534.581893772],[516935.63279296184,5277534.785024017],[516936.9763213092,5277535.033440231],[516936.6717294624,5277536.477373073],[516934.26991324406,5277536.025826734],[516934.574504515,5277534.581893772]]]},"properties":{"ID_SOURCE":"w145192059","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":690}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516717.58055825427,5277756.456867363],[516716.81164672377,5277736.560611246],[516726.57521914743,5277736.144096114],[516727.3437780423,5277756.151492604],[516717.58055825427,5277756.456867363]]]},"properties":{"ID_SOURCE":"w145192065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":691}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.191248049,5277076.775009245],[517304.5639998645,5277085.664335236],[517300.41917325003,5277085.363055088],[517296.45452739584,5277085.084541092],[517297.0820933982,5277076.0840753745],[517305.191248049,5277076.775009245]]]},"properties":{"ID_SOURCE":"w145192076","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":692}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.2436189879,5277374.7559010275],[517280.3810186101,5277371.477681031],[517281.58247553324,5277371.5257030465],[517281.5173159088,5277373.237064488],[517281.4525851618,5277374.803945305],[517280.2436189879,5277374.7559010275]]]},"properties":{"ID_SOURCE":"w145192079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":693}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.40730385546,5277387.529332524],[517278.21605394554,5277387.36426527],[517278.35931298824,5277384.641762191],[517281.55056438525,5277384.806829521],[517281.40730385546,5277387.529332524]]]},"properties":{"ID_SOURCE":"w145192115","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":694}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.6137128068,5277569.355297548],[516430.5050369934,5277565.812623849],[516431.4775309224,5277567.1490469845],[516426.5862072565,5277570.6917198775],[516425.6137128068,5277569.355297548]]]},"properties":{"ID_SOURCE":"w145192138","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":695}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516979.81064246653,5277363.013606716],[516982.87476300425,5277363.000315639],[516982.87809101795,5277364.434029969],[516981.06065345614,5277364.43984297],[516979.81400364713,5277364.436207148],[516979.81064246653,5277363.013606716]]]},"properties":{"ID_SOURCE":"w145192141","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":696}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.99707138195,5276898.963820276],[517261.6354913696,5276897.932837287],[517262.18330325803,5276890.488091973],[517267.1316687075,5276890.869524592],[517272.62066125765,5276891.297020945],[517271.99707138195,5276898.963820276]]]},"properties":{"ID_SOURCE":"w145192146","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":697}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517251.0864914057,5276909.460119416],[517239.5229131353,5276908.536754676],[517240.0720120268,5276900.647451771],[517245.10278861073,5276901.09579361],[517251.710381995,5276901.682178925],[517251.0864914057,5276909.460119416]]]},"properties":{"ID_SOURCE":"w145192191","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":698}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.68095615954,5277512.229162872],[517157.6009457078,5277513.896026138],[517156.02389896667,5277513.89137873],[517155.9540414963,5277512.112933884],[517157.68095615954,5277512.229162872]]]},"properties":{"ID_SOURCE":"w145192209","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":699}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.54614990245,5277497.498359916],[517212.54187838384,5277498.943166512],[517210.3640462866,5277498.936728234],[517210.44341494224,5277497.492143637],[517212.54614990245,5277497.498359916]]]},"properties":{"ID_SOURCE":"w145192223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":700}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516768.6121288577,5277689.697396852],[516787.16256215837,5277689.084019258],[516787.37214412185,5277694.530480225],[516768.7469531611,5277695.032501799],[516768.6121288577,5277689.697396852]]]},"properties":{"ID_SOURCE":"w145192224","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":701}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.595538003,5276978.559527645],[517274.69175917015,5276977.992245901],[517275.3031453089,5276974.4375843415],[517278.90683858574,5276974.892836148],[517278.595538003,5276978.559527645]]]},"properties":{"ID_SOURCE":"w145192248","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":702}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.5994352537,5277418.446147886],[517298.94089809473,5277418.6005570935],[517298.89240460447,5277419.756268336],[517297.0752476116,5277419.673071488],[517295.55094242626,5277419.601859155],[517295.5994352537,5277418.446147886]]]},"properties":{"ID_SOURCE":"w145192258","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":703}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517143.1776200995,5277005.277395519],[517129.3574988846,5277005.570143742],[517129.2246184744,5276999.679341074],[517143.194961859,5276999.387034734],[517143.1776200995,5277005.277395519]]]},"properties":{"ID_SOURCE":"w145192270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":704}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.2030243897,5277480.112764153],[517019.3692082457,5277480.037176532],[517019.5714345031,5277487.928701877],[517007.40494247084,5277488.115428002],[517007.3311656428,5277485.092206738],[517007.2030243897,5277480.112764153]]]},"properties":{"ID_SOURCE":"w145192305","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":705}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.1771697487,5276758.005086063],[517293.3993935506,5276758.313201207],[517288.1859300722,5276758.642254762],[517287.6859145225,5276749.971864595],[517297.6774991334,5276749.223556169],[517298.1771697487,5276758.005086063]]]},"properties":{"ID_SOURCE":"w145192306","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":706}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.09274898574,5277723.472980556],[517179.01746149885,5277712.899703942],[517182.4994724769,5277711.1761964625],[517186.1619758629,5277709.364311913],[517191.3120201554,5277720.048955483],[517184.09274898574,5277723.472980556]]]},"properties":{"ID_SOURCE":"w145192351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":707}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.23861044773,5277386.06499503],[516849.4678718758,5277386.074339614],[516849.45682396967,5277387.296846362],[516847.5943666079,5277387.2914567115],[516846.23507312965,5277387.287523511],[516846.23861044773,5277386.06499503]]]},"properties":{"ID_SOURCE":"w145192373","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":708}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.49146025075,5277439.42631384],[516887.1634093542,5277439.419560811],[516887.2417313942,5277438.308389019],[516889.49468430673,5277438.314924223],[516889.49146025075,5277439.42631384]]]},"properties":{"ID_SOURCE":"w145192377","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":709}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517159.8025160894,5277454.887210569],[517159.64773373905,5277456.442713353],[517157.770606143,5277456.326041198],[517157.84996223677,5277454.881456011],[517159.8025160894,5277454.887210569]]]},"properties":{"ID_SOURCE":"w145192384","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":710}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.9371193109,5277494.340426582],[516856.236948171,5277486.3421167955],[516864.26822874526,5277487.810193664],[516862.8932914649,5277495.808284189],[516858.87017944705,5277495.063109648],[516854.9371193109,5277494.340426582]]]},"properties":{"ID_SOURCE":"w145192409","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":711}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516901.7323471347,5277491.253031263],[516910.8149779941,5277492.72422469],[516909.05835676484,5277502.83285435],[516904.5846374266,5277502.097453449],[516900.12593650084,5277501.362099592],[516901.7323471347,5277491.253031263]]]},"properties":{"ID_SOURCE":"w145192435","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":712}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.6009457078,5277513.896026138],[517157.68095615954,5277512.229162872],[517159.3327732746,5277512.345171038],[517159.25276235037,5277514.012034282],[517157.6009457078,5277513.896026138]]]},"properties":{"ID_SOURCE":"w145192458","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":713}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.87796341465,5277114.336385445],[517304.4268021832,5277106.558224784],[517312.3860385634,5277107.137583522],[517311.9122918224,5277114.915966759],[517307.82753545506,5277114.625973797],[517303.87796341465,5277114.336385445]]]},"properties":{"ID_SOURCE":"w145192460","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":714}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.05670342164,5277664.695618526],[516962.33847502904,5277663.351646177],[516963.99727661174,5277663.634329423],[516965.6635552003,5277663.928148929],[516965.50915371784,5277665.372518244],[516962.05670342164,5277664.695618526]]]},"properties":{"ID_SOURCE":"w145192468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":715}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517057.62509040267,5277443.917521117],[517057.09154310665,5277449.161761955],[517056.46540434274,5277455.250394983],[517049.858714042,5277454.564204169],[517050.8678651311,5277443.342028119],[517057.62509040267,5277443.917521117]]]},"properties":{"ID_SOURCE":"w145192512","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":716}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516621.84219457384,5277622.259128125],[516614.1751026575,5277624.793460479],[516610.9010029355,5277614.22582721],[516618.6432034671,5277611.691704921],[516620.22039375396,5277616.897554667],[516621.84219457384,5277622.259128125]]]},"properties":{"ID_SOURCE":"w145192520","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":717}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.1000503148,5277253.841394322],[517310.4481626265,5277253.725343035],[517310.5404454466,5277247.946342236],[517312.2677661277,5277247.951477924],[517312.1000503148,5277253.841394322]]]},"properties":{"ID_SOURCE":"w145192522","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":718}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516811.2414656909,5277386.297257548],[516814.6209251395,5277386.307016496],[516814.6167525194,5277387.751822888],[516812.8143745928,5277387.746617872],[516811.27484344743,5277387.742172364],[516811.2414656909,5277386.297257548]]]},"properties":{"ID_SOURCE":"w145192527","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":719}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.1620274906,5277685.061987704],[516895.7866405045,5277684.60812668],[516896.5166450305,5277684.065659657],[516896.9646360091,5277684.956079427],[516895.6854363829,5277685.841486308],[516895.1620274906,5277685.061987704]]]},"properties":{"ID_SOURCE":"w145192545","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":720}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516662.2216301324,5277656.383368361],[516657.89217968995,5277657.749113633],[516653.50259124883,5277659.136918071],[516650.6724816548,5277650.904469583],[516659.5423589825,5277647.929067426],[516662.2216301324,5277656.383368361]]]},"properties":{"ID_SOURCE":"w145192563","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":721}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.4547944704,5276863.292256154],[517270.0756900237,5276863.059953915],[517270.39160542196,5276857.837318638],[517273.845489136,5276858.180982703],[517273.4547944704,5276863.292256154]]]},"properties":{"ID_SOURCE":"w145192570","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":722}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516367.2544956785,5277572.413993694],[516368.5339515824,5277571.417332008],[516372.17681498255,5277576.528895267],[516374.9669471687,5277580.437751765],[516373.7629012694,5277581.323484268],[516367.2544956785,5277572.413993694]]]},"properties":{"ID_SOURCE":"w145192579","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":723}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.2721196279,5277588.827695341],[516852.48615224054,5277588.69111603],[516852.66787347646,5277577.799930052],[516861.4541791842,5277577.825370609],[516861.36327809363,5277583.282077357],[516861.2721196279,5277588.827695341]]]},"properties":{"ID_SOURCE":"w145192615","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":724}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.7022620247,5277352.750806912],[517044.0737781615,5277352.743111713],[517044.0016067355,5277351.742641364],[517046.7802901549,5277351.750776289],[517046.7022620247,5277352.750806912]]]},"properties":{"ID_SOURCE":"w145192617","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":725}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.25609902584,5277426.3755049],[516796.3241438367,5277428.820778686],[516795.19766558864,5277428.817529005],[516795.2047188851,5277426.372471872],[516796.25609902584,5277426.3755049]]]},"properties":{"ID_SOURCE":"w145192637","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":726}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.32386682415,5277128.705717237],[517269.9654762633,5277128.128188331],[517270.0448639914,5277126.6836053375],[517277.4783588285,5277127.26135719],[517277.32386682415,5277128.705717237]]]},"properties":{"ID_SOURCE":"w145192649","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":727}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.347729882,5277480.385179253],[517213.34247241204,5277482.163402708],[517211.16463403765,5277482.156964149],[517211.2453172923,5277480.267823732],[517213.347729882,5277480.385179253]]]},"properties":{"ID_SOURCE":"w145192668","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":728}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516431.58795133594,5277661.062558923],[516432.7165804381,5277660.287765321],[516436.4491008889,5277665.521877046],[516439.14937764587,5277669.30825772],[516438.09584484587,5277670.083262122],[516431.58795133594,5277661.062558923]]]},"properties":{"ID_SOURCE":"w145192681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":729}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516806.46728671837,5277453.189685249],[516807.9241924952,5277453.193891044],[516807.9352977703,5277454.549829779],[516807.9537203476,5277455.972473572],[516806.45926616655,5277455.968159376],[516806.46728671837,5277453.189685249]]]},"properties":{"ID_SOURCE":"w145192683","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":730}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.6170990961,5277368.443056712],[517317.446498333,5277372.7770065],[517316.17996469175,5277371.884120074],[517316.2633276153,5277369.105869796],[517317.6170990961,5277368.443056712]]]},"properties":{"ID_SOURCE":"w145192688","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":731}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516626.6777309937,5277638.2770823445],[516619.2362626741,5277640.700912472],[516616.1104699618,5277630.800538699],[516623.62704554916,5277628.376919018],[516625.18214230577,5277633.427111338],[516626.6777309937,5277638.2770823445]]]},"properties":{"ID_SOURCE":"w145192697","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":732}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8020198006,5277219.555926856],[517293.881742491,5277218.000205054],[517299.6638810031,5277218.239661671],[517299.7346895066,5277219.6846907595],[517293.8020198006,5277219.555926856]]]},"properties":{"ID_SOURCE":"w145192700","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":733}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516342.43353261234,5276703.231110933],[516352.27079436195,5276703.925563935],[516351.8845719828,5276710.403924825],[516351.24571054423,5276721.260481283],[516341.2582626374,5276720.565608401],[516342.43353261234,5276703.231110933]]]},"properties":{"ID_SOURCE":"w145192756","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":734}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.8480091094,5277362.535072265],[517051.8587975305,5277363.979922563],[517050.34926715796,5277363.986615726],[517048.967405761,5277363.993683123],[517048.96412656474,5277362.548854823],[517051.8480091094,5277362.535072265]]]},"properties":{"ID_SOURCE":"w145192763","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":735}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.2082343623,5277352.764001443],[517051.21148919757,5277351.652611997],[517053.5395753484,5277351.659430536],[517053.536320069,5277352.770819984],[517051.2082343623,5277352.764001443]]]},"properties":{"ID_SOURCE":"w145192765","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":736}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.4618089982,5277646.782776263],[517305.22921247734,5277645.144702261],[517306.2633734079,5277650.927055184],[517296.495649118,5277652.6762664355],[517295.4618089982,5277646.782776263]]]},"properties":{"ID_SOURCE":"w145192834","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":737}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.06596263323,5277090.871572535],[517298.6729484465,5277096.760818468],[517295.66949473927,5277096.529616578],[517296.06250590045,5277090.640370454],[517299.06596263323,5277090.871572535]]]},"properties":{"ID_SOURCE":"w145192859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":738}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517016.56061005587,5277747.209383724],[517016.52455025684,5277759.5458144285],[517004.8095162566,5277759.622722713],[517004.69536233466,5277747.285853292],[517016.56061005587,5277747.209383724]]]},"properties":{"ID_SOURCE":"w145192865","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":739}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.2996409306,5277685.360176225],[516680.00299573055,5277688.331443378],[516677.3228103001,5277680.21055076],[516681.9825725892,5277678.879108422],[516687.69456377736,5277677.239494134],[516690.2996409306,5277685.360176225]]]},"properties":{"ID_SOURCE":"w145192904","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":740}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517061.15100272134,5277650.2035686225],[517059.8917261743,5277651.967003548],[517059.2697021393,5277651.531735],[517060.55186556483,5277649.646113066],[517061.15100272134,5277650.2035686225]]]},"properties":{"ID_SOURCE":"w145192914","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":741}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516968.2215784252,5277378.861711008],[516972.65275519347,5277378.763486972],[516972.715866828,5277382.875847075],[516968.3597923356,5277382.974289922],[516968.2215784252,5277378.861711008]]]},"properties":{"ID_SOURCE":"w145192923","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":742}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.32492412464,5277375.777422989],[517317.14615270286,5277380.33362839],[517315.8570909086,5277379.440675011],[517316.0162139205,5277376.440370154],[517317.32492412464,5277375.777422989]]]},"properties":{"ID_SOURCE":"w145192925","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":743}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517071.5730002417,5277476.522398783],[517079.45600202936,5277477.323498359],[517078.5245070938,5277487.656778725],[517070.5664213776,5277486.85546017],[517071.06977555685,5277481.66670164],[517071.5730002417,5277476.522398783]]]},"properties":{"ID_SOURCE":"w145192940","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":744}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517091.01270973834,5276917.323582347],[517090.8872902729,5276908.87658753],[517099.22495381127,5276908.567645259],[517099.27492967667,5276917.125558605],[517091.01270973834,5276917.323582347]]]},"properties":{"ID_SOURCE":"w145192947","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":745}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517144.9357714689,5277581.431799837],[517149.6845356586,5277575.444229363],[517156.87776726385,5277580.911280667],[517152.1290000574,5277586.898845336],[517148.32260813384,5277583.997993632],[517144.9357714689,5277581.431799837]]]},"properties":{"ID_SOURCE":"w145192976","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":746}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516409.2481489033,5277700.565349721],[516404.66072601895,5277697.573871941],[516397.62970564474,5277692.975100043],[516402.53155599337,5277685.653676086],[516413.99981734535,5277693.2435119795],[516409.2481489033,5277700.565349721]]]},"properties":{"ID_SOURCE":"w145192977","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":747}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.1758507032,5277452.777546677],[516548.26122708694,5277458.896166238],[516545.70567892515,5277459.666882147],[516543.845279003,5277453.6600426575],[516546.1758507032,5277452.777546677]]]},"properties":{"ID_SOURCE":"w145192998","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":748}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.4837950692,5277611.783490525],[516805.998560198,5277615.563733747],[516801.41609185946,5277616.106206741],[516800.90100307687,5277612.437102922],[516805.4837950692,5277611.783490525]]]},"properties":{"ID_SOURCE":"w145193018","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":749}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.15112898295,5277367.709474002],[516401.369037654,5277365.245288383],[516402.4361731445,5277362.325316955],[516409.21823611634,5277364.800617691],[516408.15112898295,5277367.709474002]]]},"properties":{"ID_SOURCE":"w145193040","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":750}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.10660908604,5277692.732281565],[517309.8518900829,5277691.703868796],[517312.1311076846,5277690.421422356],[517312.3192092181,5277690.2997277435],[517317.75807069783,5277699.75168905],[517313.3956155238,5277702.072653294],[517308.10660908604,5277692.732281565]]]},"properties":{"ID_SOURCE":"w145193044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":751}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516885.0436784216,5277660.181741812],[516885.0694294753,5277661.659977639],[516883.6275304654,5277661.678023769],[516882.32828078093,5277661.707597917],[516882.3024968005,5277660.240476007],[516885.0436784216,5277660.181741812]]]},"properties":{"ID_SOURCE":"w145193063","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":752}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516788.05271396635,5277257.9638281735],[516777.9738085334,5277258.068143868],[516777.7532127348,5277235.583916151],[516777.18348930473,5277177.8784670485],[516787.2700436941,5277177.774171325],[516787.35099374165,5277186.165462753],[516787.5484688195,5277206.237887937],[516787.7514012587,5277227.0216245465],[516787.83177254617,5277235.612966701],[516787.9368003534,5277246.071529592],[516788.05271396635,5277257.9638281735]]]},"properties":{"ID_SOURCE":"w145193092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":753}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.7043217779,5276758.808267498],[517231.4298729909,5276750.02741027],[517241.27057699655,5276749.500838274],[517241.92087610444,5276758.171669039],[517236.51961474045,5276758.511326784],[517231.7043217779,5276758.808267498]]]},"properties":{"ID_SOURCE":"w145193111","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":754}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.35901714297,5276875.997521685],[517279.82498059236,5276875.558765757],[517278.07541346893,5276875.420206478],[517278.47336643265,5276867.863878351],[517285.98229690804,5276868.441862869],[517285.35901714297,5276875.997521685]]]},"properties":{"ID_SOURCE":"w145193113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":755}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.21977109084,5277266.704324083],[516439.6584927597,5277265.594164585],[516441.0612429026,5277266.176052497],[516440.6376352805,5277267.252912626],[516439.21977109084,5277266.704324083]]]},"properties":{"ID_SOURCE":"w145193126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":756}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516879.9532743659,5277387.829742462],[516880.02225127263,5277389.941600303],[516879.04596357205,5277389.938769882],[516878.9769863098,5277387.826912053],[516879.9532743659,5277387.829742462]]]},"properties":{"ID_SOURCE":"w145193132","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":757}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.4268021832,5277106.558224784],[517303.87796341465,5277114.336385445],[517299.6355237762,5277114.034815645],[517295.76853083796,5277113.756592133],[517296.3924615466,5277105.978653837],[517304.4268021832,5277106.558224784]]]},"properties":{"ID_SOURCE":"w145193143","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":758}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517227.78967767867,5277726.3806281],[517223.1423133286,5277728.567448667],[517218.6153011818,5277730.687944911],[517215.2570749015,5277723.565054411],[517224.5062260521,5277719.369093528],[517227.78967767867,5277726.3806281]]]},"properties":{"ID_SOURCE":"w145193146","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":759}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.5443799553,5277456.606386101],[516796.5373260273,5277459.051443348],[516795.4859517873,5277459.0484102545],[516795.4930052726,5277456.603353008],[516796.5443799553,5277456.606386101]]]},"properties":{"ID_SOURCE":"w145193156","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":760}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.50476784824,5277049.897926793],[517308.6514973401,5277049.667164855],[517308.89332622127,5277044.110890161],[517311.82170297136,5277044.341875497],[517311.50476784824,5277049.897926793]]]},"properties":{"ID_SOURCE":"w145193194","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":761}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.11795029487,5277356.933332071],[516880.1105392766,5277359.489527866],[516879.0594692188,5277359.3753407765],[516879.0665575779,5277356.930283929],[516880.11795029487,5277356.933332071]]]},"properties":{"ID_SOURCE":"w145193199","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":762}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516840.4341748207,5277705.130886619],[516842.0878721754,5277704.579970871],[516847.30045869836,5277719.821225193],[516845.49657557777,5277720.371704866],[516840.4341748207,5277705.130886619]]]},"properties":{"ID_SOURCE":"w145193204","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":763}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517001.5664654159,5277352.952250944],[517001.5697107769,5277351.840861489],[517004.123095452,5277351.848318167],[517004.1198496046,5277352.959707623],[517001.5664654159,5277352.952250944]]]},"properties":{"ID_SOURCE":"w145193214","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":764}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.209861847,5277353.106374126],[516978.21277865703,5277352.106123617],[516980.69106364576,5277352.113351024],[516980.68814640853,5277353.113601533],[516978.209861847,5277353.106374126]]]},"properties":{"ID_SOURCE":"w145193216","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":765}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516809.91824026156,5277376.401987762],[516809.8463498221,5277375.290381423],[516812.4000449375,5277375.186615093],[516812.39683566446,5277376.298004606],[516809.91824026156,5277376.401987762]]]},"properties":{"ID_SOURCE":"w145193241","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":766}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516968.6302513869,5277290.173272554],[516984.6272729903,5277289.997636142],[516984.9298265802,5277315.004992329],[516968.78299752634,5277315.069051062],[516968.7005074962,5277302.143242369],[516968.6302513869,5277290.173272554]]]},"properties":{"ID_SOURCE":"w145193254","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":767}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.7347461199,5277470.424234589],[516426.87250563543,5277469.221830922],[516426.4153325825,5277471.554478014],[516419.7347461199,5277470.424234589]]]},"properties":{"ID_SOURCE":"w145193270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":768}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516931.7946060732,5277457.553849934],[516931.797515006,5277456.553599253],[516934.35085368535,5277456.561025444],[516934.3479443126,5277457.561276126],[516931.7946060732,5277457.553849934]]]},"properties":{"ID_SOURCE":"w145193275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":769}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.06596263323,5277090.871572535],[517302.0694191344,5277091.102776167],[517301.601299077,5277096.991798746],[517298.6729484465,5277096.760818468],[517299.06596263323,5277090.871572535]]]},"properties":{"ID_SOURCE":"w145193280","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":770}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516828.8152973029,5277386.125747588],[516831.9694595723,5277386.1348653985],[516831.9579976486,5277387.501852809],[516830.2832559472,5277387.508125371],[516828.8413214142,5277387.51507133],[516828.8152973029,5277386.125747588]]]},"properties":{"ID_SOURCE":"w145193299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":771}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.6822493633,5277673.8138304],[516963.83697403234,5277672.258322017],[516968.19024058187,5277673.048988273],[516967.9607433107,5277674.493138673],[516963.6822493633,5277673.8138304]]]},"properties":{"ID_SOURCE":"w145193306","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":772}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.2017568973,5277676.955858511],[517206.0397218357,5277666.189578084],[517213.23936025234,5277669.433920221],[517208.40138461447,5277680.200194749],[517204.69656965573,5277678.533259213],[517201.2017568973,5277676.955858511]]]},"properties":{"ID_SOURCE":"w145193308","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":773}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4892138693,5276965.732311008],[517293.13127948245,5276964.932475722],[517293.2103447798,5276963.599032274],[517300.6443760135,5276964.065674174],[517300.4892138693,5276965.732311008]]]},"properties":{"ID_SOURCE":"w145193312","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":774}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.3846537707,5277693.109145124],[516869.3927637942,5277688.988297],[516872.8619965258,5277686.464360217],[516874.4272953609,5277685.324155751],[516877.5014339794,5277689.567498823],[516872.3846537707,5277693.109145124]]]},"properties":{"ID_SOURCE":"w145193335","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":775}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.7619861289,5277507.765002331],[517075.0113366788,5277507.651660814],[517075.38961499673,5277504.140748549],[517076.14787244523,5277504.220770451],[517075.7619861289,5277507.765002331]]]},"properties":{"ID_SOURCE":"w145193375","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":776}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516920.582850444,5277439.294310768],[516920.66085586656,5277438.294278372],[516923.06432872283,5277438.1901241215],[516923.211618148,5277439.190811352],[516920.582850444,5277439.294310768]]]},"properties":{"ID_SOURCE":"w145193416","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":777}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517199.3375860384,5276808.058659322],[517199.2680597711,5276806.169077075],[517201.4464792831,5276806.064371714],[517201.59143971396,5276807.843037003],[517199.3375860384,5276808.058659322]]]},"properties":{"ID_SOURCE":"w145193435","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":778}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.131278305,5277619.7510204],[517283.32172828494,5277620.473233405],[517279.0162811825,5277621.282889032],[517277.68796992145,5277613.388009041],[517285.8023176909,5277612.078416526],[517287.131278305,5277619.7510204]]]},"properties":{"ID_SOURCE":"w145193446","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":779}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516316.9995908827,5276800.518185244],[516323.9293406349,5276793.424664123],[516329.5851264182,5276798.708544369],[516334.1921529313,5276803.01145873],[516327.33750844595,5276810.10517833],[516316.9995908827,5276800.518185244]]]},"properties":{"ID_SOURCE":"w145193455","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":780}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.44341494224,5277497.492143637],[517210.448343014,5277495.825059108],[517212.6261762754,5277495.831497412],[517212.54614990245,5277497.498359916],[517210.44341494224,5277497.492143637]]]},"properties":{"ID_SOURCE":"w145193468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":781}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.36990366125,5277376.124761416],[516826.6663313575,5277376.116947264],[516826.66922215465,5277375.116696701],[516829.29801692977,5277375.013154824],[516829.36990366125,5277376.124761416]]]},"properties":{"ID_SOURCE":"w145193495","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":782}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517135.6325123722,5277616.713571965],[517138.9869525679,5277612.422330082],[517143.8865327003,5277606.212918843],[517147.16812237864,5277608.812144197],[517150.92921163514,5277611.790659849],[517142.6368856515,5277622.546812207],[517141.48369457514,5277623.977122087],[517136.56126901385,5277620.0949602965],[517137.6315921852,5277618.753317474],[517135.5489252595,5277617.046745799],[517135.6325123722,5277616.713571965]]]},"properties":{"ID_SOURCE":"w145193502","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":783}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517053.8101809799,5277643.847083078],[517046.5405339796,5277638.824494717],[517050.24271289347,5277633.722898571],[517053.6281929196,5277629.064936865],[517060.67190699157,5277634.309151759],[517053.8101809799,5277643.847083078]]]},"properties":{"ID_SOURCE":"w145193514","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":784}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516832.9697825263,5277741.452059602],[516827.9821412709,5277726.322607856],[516829.2597152525,5277725.992881152],[516834.2476748636,5277741.011194976],[516832.9697825263,5277741.452059602]]]},"properties":{"ID_SOURCE":"w145193516","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":785}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.5405339796,5277638.824494717],[517053.8101809799,5277643.847083078],[517047.5515207655,5277652.60880876],[517040.28253002174,5277647.363950136],[517043.42658140947,5277643.08315165],[517046.5405339796,5277638.824494717]]]},"properties":{"ID_SOURCE":"w145193535","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":786}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.0226204094,5277062.86122438],[517306.1321237025,5277063.441020613],[517305.9743198629,5277065.996768698],[517297.8651502763,5277065.305833783],[517298.0226204094,5277062.86122438]]]},"properties":{"ID_SOURCE":"w145193547","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":787}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516827.33421649766,5277612.73572542],[516829.3630984211,5277612.297030374],[516829.65802138014,5277614.1872615935],[516827.5546864202,5277614.403461488],[516827.4517683494,5277613.636298551],[516827.33421649766,5277612.73572542]]]},"properties":{"ID_SOURCE":"w145193587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":788}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.49605039565,5277539.4405856235],[516723.97963390645,5277541.752927086],[516720.8555605,5277531.29680343],[516728.59696161805,5277529.096244261],[516729.92759735155,5277533.8346274365],[516731.49605039565,5277539.4405856235]]]},"properties":{"ID_SOURCE":"w145193597","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":789}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.96430552274,5276762.49728415],[516467.4529366806,5276763.85437229],[516466.118198384,5276760.427494158],[516469.6295689701,5276759.070405218],[516470.96430552274,5276762.49728415]]]},"properties":{"ID_SOURCE":"w145193608","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":790}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516551.1422479204,5277502.137765333],[516543.2503684151,5277504.449272486],[516538.6378877285,5277489.098865566],[516546.4550041964,5277486.67599977],[516548.7539812715,5277494.262273285],[516551.1422479204,5277502.137765333]]]},"properties":{"ID_SOURCE":"w145193618","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":791}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.94707128993,5277700.892934707],[517245.5024547672,5277704.316216019],[517240.4272615276,5277693.742885956],[517243.76642395766,5277692.085675963],[517247.7974518507,5277690.097097695],[517252.94707128993,5277700.892934707]]]},"properties":{"ID_SOURCE":"w145193666","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":792}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516847.6314113713,5277449.752181575],[516851.0108340392,5277449.761961734],[516851.006652304,5277451.206768268],[516849.30943156104,5277451.201856211],[516847.62723047216,5277451.196988111],[516847.6314113713,5277449.752181575]]]},"properties":{"ID_SOURCE":"w145193674","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":793}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.2816900427,5277439.516543216],[516879.95363918797,5277439.50979307],[516879.8817629929,5277438.398185724],[516882.28491272125,5277438.405153601],[516882.2816900427,5277439.516543216]]]},"properties":{"ID_SOURCE":"w145193714","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":794}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516955.1313843909,5277515.636798855],[516956.5857495879,5277506.194141648],[516965.7434412403,5277507.665639611],[516964.28906152514,5277517.1082945885],[516959.6576877045,5277516.361277886],[516955.1313843909,5277515.636798855]]]},"properties":{"ID_SOURCE":"w145193750","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":795}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517047.94850184035,5277314.42230623],[517031.91405950143,5277314.575430886],[517031.67211304413,5277289.457108605],[517047.7066245402,5277289.30398312],[517047.8095242107,5277300.329361262],[517047.94850184035,5277314.42230623]]]},"properties":{"ID_SOURCE":"w145193799","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":796}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516874.1066185697,5277280.340533547],[516873.95410966914,5277255.222482002],[516890.10174703284,5277254.935882035],[516890.25319653295,5277267.450670256],[516890.4040648311,5277280.165508815],[516874.1066185697,5277280.340533547]]]},"properties":{"ID_SOURCE":"w145193805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":797}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.94233278395,5277759.794728824],[516873.5485633215,5277757.907106766],[516881.126642796,5277760.151875611],[516880.52041002514,5277762.039496896],[516872.94233278395,5277759.794728824]]]},"properties":{"ID_SOURCE":"w145193809","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":798}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.1309403669,5276760.977971567],[516527.1128812888,5276760.544712285],[516527.6282222141,5276764.21378637],[516523.7188680175,5276765.5363691915],[516523.1309403669,5276760.977971567]]]},"properties":{"ID_SOURCE":"w145193818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":799}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.41592445935,5277757.330132625],[516400.2001927002,5277756.165372995],[516400.90157568856,5277755.100405869],[516401.9434454574,5277755.792408608],[516400.457825312,5277758.011021201],[516399.41592445935,5277757.330132625]]]},"properties":{"ID_SOURCE":"w145193826","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":800}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516843.06105801393,5277316.259959183],[516842.8277670908,5277303.444857358],[516842.6080160951,5277291.141038357],[516859.0556313729,5277290.966360441],[516859.2082023356,5277316.084412859],[516843.06105801393,5277316.259959183]]]},"properties":{"ID_SOURCE":"w145193845","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":801}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516537.1797212849,5276870.779469844],[516534.0315914778,5276868.547735087],[516534.786120513,5276867.327340138],[516538.08446220704,5276869.559501905],[516537.1797212849,5276870.779469844]]]},"properties":{"ID_SOURCE":"w145193886","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":802}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517232.5593970544,5277256.606213909],[517218.89434092445,5277255.454386814],[517220.68312748516,5277234.67651644],[517234.3485610487,5277235.7172086565],[517233.25961337716,5277248.395047811],[517232.5593970544,5277256.606213909]]]},"properties":{"ID_SOURCE":"w145193906","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":803}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.80328777165,5276951.825143247],[517280.77244959737,5276951.103329806],[517281.2605275078,5276943.5472684335],[517292.2988904286,5276944.269105058],[517292.0706242315,5276947.791560488],[517291.80328777165,5276951.825143247]]]},"properties":{"ID_SOURCE":"w145193907","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":804}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517077.1523524805,5277597.014448917],[517074.0456951606,5277606.452232242],[517064.81765004416,5277603.424397291],[517066.36326563923,5277598.772164359],[517067.92396812694,5277594.0977481045],[517077.1523524805,5277597.014448917]]]},"properties":{"ID_SOURCE":"w145193918","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":805}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.31355526915,5277407.088324472],[517006.74043316767,5277407.092492252],[517006.72815107205,5277408.726212953],[517006.7159988367,5277410.315478081],[517005.3038168743,5277410.422493128],[517005.31355526915,5277407.088324472]]]},"properties":{"ID_SOURCE":"w145193956","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":806}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517288.0195523988,5277219.427614972],[517287.9490709729,5277217.871447118],[517293.881742491,5277218.000205054],[517293.8020198006,5277219.555926856],[517288.0195523988,5277219.427614972]]]},"properties":{"ID_SOURCE":"w145193957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":807}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516747.58180589415,5277299.31355737],[516757.64587497147,5277299.120234851],[516757.6707010953,5277300.931886011],[516757.70626089524,5277304.232842191],[516747.5674201805,5277304.314809626],[516747.55297809205,5277301.502929656],[516747.58180589415,5277299.31355737]]]},"properties":{"ID_SOURCE":"w145193964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":808}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516890.24539505504,5277386.637052092],[516890.17964593443,5277383.413804617],[516891.90692612034,5277383.418815693],[516891.9021861649,5277385.052558287],[516891.8978976333,5277386.5307063535],[516890.24539505504,5277386.637052092]]]},"properties":{"ID_SOURCE":"w145193971","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":809}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517206.0243155693,5276731.05852325],[517196.70900861727,5276731.697846235],[517196.39140042814,5276727.340228032],[517196.0596234794,5276722.693604554],[517205.3749447519,5276722.054280499],[517206.0243155693,5276731.05852325]]]},"properties":{"ID_SOURCE":"w145193984","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":810}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516396.71391161176,5277644.848949041],[516398.97148007987,5277643.188209583],[516400.0935334975,5277644.747328726],[516397.8359653085,5277646.408067756],[516396.71391161176,5277644.848949041]]]},"properties":{"ID_SOURCE":"w145194006","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":811}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516649.38742711843,5277417.507026335],[516647.154645205,5277410.443260129],[516644.84739439597,5277403.157002255],[516652.73976981506,5277400.7344938135],[516657.35488377727,5277415.084738894],[516649.38742711843,5277417.507026335]]]},"properties":{"ID_SOURCE":"w145194013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":812}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.48765249795,5277455.747601688],[517027.6286640556,5277454.832566075],[517027.72033958486,5277449.164698623],[517036.95515328593,5277449.969694157],[517036.48765249795,5277455.747601688]]]},"properties":{"ID_SOURCE":"w145194016","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":813}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.8619083071,5277219.18705536],[517282.0167290997,5277217.631556308],[517287.9490709729,5277217.871447118],[517288.0195523988,5277219.427614972],[517281.8619083071,5277219.18705536]]]},"properties":{"ID_SOURCE":"w145194021","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":814}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517059.9239310311,5277684.542218567],[517059.64718777017,5277702.1015210925],[517052.06324049906,5277701.857022186],[517052.41440506873,5277684.520217333],[517059.9239310311,5277684.542218567]]]},"properties":{"ID_SOURCE":"w145194033","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":815}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517191.95969335176,5277749.936408649],[517189.2758745341,5277748.383637766],[517191.5398666432,5277744.611563722],[517194.1938786001,5277746.086449609],[517191.95969335176,5277749.936408649]]]},"properties":{"ID_SOURCE":"w145194037","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":816}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.2153020375,5277404.542959224],[516535.6725666292,5277396.1775179375],[516543.8123083868,5277385.975774844],[516554.3024814755,5277394.3410812495],[516546.2153020375,5277404.542959224]]]},"properties":{"ID_SOURCE":"w145194046","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":817}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.88507022307,5277362.949931807],[516999.88085165824,5277364.394738118],[516998.228665137,5277364.389914276],[516996.7266773928,5277364.385529372],[516996.73089517374,5277362.94072306],[516999.88507022307,5277362.949931807]]]},"properties":{"ID_SOURCE":"w145194069","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":818}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516883.7117883284,5277490.200485019],[516882.33585802716,5277498.531987958],[516877.2315372711,5277497.716981632],[516872.3523792997,5277496.947088279],[516873.72829565743,5277488.6155830305],[516883.7117883284,5277490.200485019]]]},"properties":{"ID_SOURCE":"w145194086","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":819}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.41948199185,5277426.286637752],[516995.4123446139,5277428.731694843],[516994.2107676974,5277428.728187437],[516994.2179045692,5277426.283130346],[516995.41948199185,5277426.286637752]]]},"properties":{"ID_SOURCE":"w145194103","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":820}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517062.6157533072,5277611.642299393],[517071.3941872085,5277614.335392696],[517067.98423158587,5277624.772549581],[517059.3560040423,5277622.079901443],[517060.9328213937,5277617.027654608],[517062.6157533072,5277611.642299393]]]},"properties":{"ID_SOURCE":"w145194106","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":821}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516950.4358961197,5277467.266150402],[516953.5899498634,5277467.297562002],[516953.5778444851,5277468.875713453],[516951.7755239284,5277468.859351461],[516950.41624943644,5277468.855393891],[516950.4358961197,5277467.266150402]]]},"properties":{"ID_SOURCE":"w145194108","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":822}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516870.0113869932,5277662.094224999],[516869.98453712725,5277660.993861846],[516873.8372935645,5277660.88277361],[516873.871620043,5277661.994272449],[516871.94901305524,5277662.044270169],[516870.0113869932,5277662.094224999]]]},"properties":{"ID_SOURCE":"w145194118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":823}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517090.352082201,5277628.505787879],[517098.3047489782,5277631.085358018],[517095.1193893301,5277641.745439037],[517087.091313722,5277639.276791756],[517088.8430569897,5277633.480427983],[517090.352082201,5277628.505787879]]]},"properties":{"ID_SOURCE":"w145194135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":824}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.2686980227,5277279.634809371],[516936.96593664924,5277254.627457553],[516952.8876300829,5277254.5626541795],[516953.1387436319,5277266.333097785],[516953.41562452435,5277279.570663006],[516937.2686980227,5277279.634809371]]]},"properties":{"ID_SOURCE":"w145194167","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":825}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.43716531934,5277467.3810069775],[516936.40994799347,5277468.992456451],[516934.4650058382,5277468.953456952],[516932.8504626973,5277468.926533013],[516932.88512419834,5277467.337333161],[516936.43716531934,5277467.3810069775]]]},"properties":{"ID_SOURCE":"w145194187","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":826}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.3723295036,5277148.55370975],[516840.31649107626,5277148.653117837],[516840.2635679686,5277140.984315788],[516844.31941173534,5277140.884907654],[516844.3723295036,5277148.55370975]]]},"properties":{"ID_SOURCE":"w145194192","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":827}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.9199670508,5277386.697597406],[516795.91259292787,5277389.253793339],[516794.7857864316,5277389.361682711],[516794.7931600596,5277386.805486776],[516795.9199670508,5277386.697597406]]]},"properties":{"ID_SOURCE":"w145194205","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":828}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.60682870145,5277587.640296946],[517241.9398319822,5277588.720095426],[517241.50702654495,5277582.717255879],[517245.8035055966,5277582.407675685],[517251.87265978224,5277581.969983399],[517252.60682870145,5277587.640296946]]]},"properties":{"ID_SOURCE":"w145194207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":829}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516613.57809241186,5276775.939097028],[516614.2496159097,5276777.496969423],[516603.4212237654,5276782.022815377],[516602.3022250389,5276779.352270934],[516600.063590856,5276774.233460432],[516598.8697988378,5276771.45156374],[516609.9983183154,5276767.037705118],[516610.74495087564,5276768.595791311],[516615.8582561272,5276766.498723685],[516618.84160625516,5276773.8424605625],[516613.57809241186,5276775.939097028]]]},"properties":{"ID_SOURCE":"w145194215","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":830}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516892.4910156998,5277570.3578286255],[516889.4877914476,5277570.1268355325],[516889.528757458,5277568.94887123],[516889.5696590013,5277567.793134722],[516892.72340044996,5277567.913424668],[516892.4910156998,5277570.3578286255]]]},"properties":{"ID_SOURCE":"w145194228","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":831}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516805.98455877596,5277412.288813229],[516807.4489846632,5277412.293040558],[516807.49693373515,5277413.8935933085],[516807.53804666636,5277415.26073257],[516806.0509956642,5277415.289781872],[516805.98455877596,5277412.288813229]]]},"properties":{"ID_SOURCE":"w145194247","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":832}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.3090744112,5277434.04430986],[516796.3023412614,5277436.37822806],[516795.3260613782,5277436.3754116595],[516795.25769565627,5277434.041276819],[516796.3090744112,5277434.04430986]]]},"properties":{"ID_SOURCE":"w145194270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":833}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.43324737216,5276727.306105856],[516404.0285523397,5276727.7438904485],[516403.5115648963,5276724.630521909],[516405.9913687977,5276724.192948696],[516406.43324737216,5276727.306105856]]]},"properties":{"ID_SOURCE":"w145194272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":834}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.90524922754,5277356.95802765],[516926.8227182182,5277359.514005099],[516925.62112705014,5277359.510511883],[516925.6285580511,5277356.954316099],[516926.90524922754,5277356.95802765]]]},"properties":{"ID_SOURCE":"w145194281","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":835}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.0970944333,5277590.008932152],[516418.27448105946,5277588.784073582],[516422.78936138185,5277585.573751422],[516423.6119742665,5277586.79861062],[516421.3394830835,5277588.4148424845],[516419.0970944333,5277590.008932152]]]},"properties":{"ID_SOURCE":"w145194290","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":836}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516852.48615224054,5277588.69111603],[516861.2721196279,5277588.827695341],[516861.14328433,5277594.417660229],[516861.0152861194,5277599.71866379],[516852.30410980294,5277599.693441195],[516852.48615224054,5277588.69111603]]]},"properties":{"ID_SOURCE":"w145194292","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":837}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.48508601607,5277535.17299389],[517265.21141942375,5277535.886443514],[517261.656057049,5277539.510177449],[517260.9297236612,5277538.7967282655],[517264.48508601607,5277535.17299389]]]},"properties":{"ID_SOURCE":"w145194310","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":838}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516813.25016676163,5277574.907462288],[516812.879818738,5277573.128154147],[516814.98381001706,5277572.689670962],[516815.13878457836,5277573.634807829],[516815.2790928568,5277574.457648437],[516813.25016676163,5277574.907462288]]]},"properties":{"ID_SOURCE":"w145194312","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":839}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.2597152525,5277725.992881152],[516827.59972004854,5277720.931215317],[516824.2723719864,5277710.7522939965],[516825.7004602165,5277710.311861548],[516830.83831089886,5277725.441745124],[516829.2597152525,5277725.992881152]]]},"properties":{"ID_SOURCE":"w145194317","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":840}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.92688177474,5277542.650726148],[517187.18012268806,5277542.546237668],[517186.4753772522,5277552.324472463],[517182.0443280734,5277552.422533476],[517184.92688177474,5277542.650726148]]]},"properties":{"ID_SOURCE":"w145194324","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":841}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9682071859,5277386.965980701],[516927.03587458644,5277389.52239494],[516925.90938867274,5277389.519119989],[516925.8417207767,5277386.962705763],[516926.9682071859,5277386.965980701]]]},"properties":{"ID_SOURCE":"w145194357","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":842}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516885.35779362987,5277570.003715786],[516892.4910156998,5277570.3578286255],[516892.0088334944,5277581.24814184],[516884.72543156514,5277580.893593954],[516885.35779362987,5277570.003715786]]]},"properties":{"ID_SOURCE":"w145194399","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":843}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517173.4385678831,5277440.256946549],[517169.7600566058,5277439.8015375305],[517170.1450538239,5277436.579615086],[517173.97376402095,5277437.035467389],[517173.4385678831,5277440.256946549]]]},"properties":{"ID_SOURCE":"w145194409","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":844}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.62325231615,5276826.748519654],[517280.6285292404,5276824.970298046],[517283.44501750916,5276824.978656738],[517286.41171848326,5276824.987462699],[517286.40643979126,5276826.765684308],[517280.62325231615,5276826.748519654]]]},"properties":{"ID_SOURCE":"w145194443","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":845}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.5404454466,5277247.946342236],[517309.26406056085,5277247.831407698],[517309.50786581135,5277241.608297774],[517310.70948150445,5277241.611870156],[517310.5404454466,5277247.946342236]]]},"properties":{"ID_SOURCE":"w145194461","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":846}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.28071626223,5277683.4169762945],[516698.70488812623,5277687.273658222],[516695.723390775,5277679.485312505],[516707.59961380326,5277675.629486721],[516708.85078522045,5277679.26735299],[516710.28071626223,5277683.4169762945]]]},"properties":{"ID_SOURCE":"w145194537","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":847}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.1552775183,5277409.259671939],[516796.07376632886,5277411.48223444],[516795.0220628996,5277411.5903404085],[516794.9536966827,5277409.256205665],[516796.1552775183,5277409.259671939]]]},"properties":{"ID_SOURCE":"w145194576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":848}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9794363306,5277449.691268235],[516867.8331710782,5277449.69953541],[516867.8289851682,5277451.144341937],[516866.304490404,5277451.13992535],[516864.975251127,5277451.136074761],[516864.9794363306,5277449.691268235]]]},"properties":{"ID_SOURCE":"w145194579","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":849}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.10557473905,5277412.176359121],[517218.9342310174,5277412.10621082],[517219.0371513902,5277410.317162406],[517220.2085283431,5277410.376196827],[517220.10557473905,5277412.176359121]]]},"properties":{"ID_SOURCE":"w145194582","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":850}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.8818413143,5277360.98807683],[516938.75932704547,5277360.9935387205],[516938.7552206524,5277362.405003354],[516938.7509202578,5277363.883151361],[516936.9485348491,5277363.877907936],[516936.8818413143,5277360.98807683]]]},"properties":{"ID_SOURCE":"w145194591","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":851}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517029.8793151325,5277352.923856033],[517027.4013554672,5277352.805468743],[517027.4793802795,5277351.805437867],[517029.88256589754,5277351.812466579],[517029.8793151325,5277352.923856033]]]},"properties":{"ID_SOURCE":"w145194597","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":852}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516890.23413364263,5277364.63132202],[516890.2428387671,5277361.630570413],[516891.819926576,5277361.635145728],[516891.8377164976,5277363.268953631],[516891.8563447576,5277364.6138002705],[516890.23413364263,5277364.63132202]]]},"properties":{"ID_SOURCE":"w145194654","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":853}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.11259217444,5277467.375964834],[516988.1157240501,5277468.876362787],[516986.6287504466,5277468.8831381425],[516985.31450233865,5277468.890417788],[516985.303859935,5277467.389997932],[516988.11259217444,5277467.375964834]]]},"properties":{"ID_SOURCE":"w145194670","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":854}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517211.2453172923,5277480.267823732],[517211.32468638226,5277478.8232391905],[517213.4270994913,5277478.940594735],[517213.347729882,5277480.385179253],[517211.2453172923,5277480.267823732]]]},"properties":{"ID_SOURCE":"w145194671","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":855}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.36213844694,5277374.193109771],[517270.20040158555,5277378.082527382],[517269.2257599743,5277377.523936803],[517269.3835403908,5277374.968186528],[517270.36213844694,5277374.193109771]]]},"properties":{"ID_SOURCE":"w145194709","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":856}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.6638810031,5277218.239661671],[517299.7429448478,5277216.906217784],[517305.67594748177,5277216.923848815],[517305.7470848416,5277218.257739056],[517299.6638810031,5277218.239661671]]]},"properties":{"ID_SOURCE":"w145194710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":857}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.2823730947,5277619.116844486],[517032.0910600237,5277623.733854854],[517029.74864814826,5277628.661615914],[517021.64933057583,5277624.859171459],[517026.25879133854,5277615.092335448],[517034.2823730947,5277619.116844486]]]},"properties":{"ID_SOURCE":"w145194738","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":858}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.20872779284,5277519.389398417],[516837.73295465513,5277520.008419005],[516843.29619109415,5277520.535754698],[516842.4456847988,5277528.979927142],[516830.28378417925,5277527.611077517],[516831.20872779284,5277519.389398417]]]},"properties":{"ID_SOURCE":"w145194752","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":859}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9343111592,5277315.602119993],[516540.3875948698,5277314.658719042],[516543.82243861735,5277316.335575543],[516543.361676057,5277317.267840992],[516539.9343111592,5277315.602119993]]]},"properties":{"ID_SOURCE":"w145194759","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":860}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517140.9365073986,5277511.40186062],[517140.8565017328,5277513.068724097],[517139.2043573043,5277513.063860146],[517139.2092650018,5277511.396775568],[517140.9365073986,5277511.40186062]]]},"properties":{"ID_SOURCE":"w145194768","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":861}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.335142646,5277403.724991164],[516995.3276809325,5277406.281187121],[516994.20119822863,5277406.277898948],[516994.1335605678,5277403.7214837875],[516995.335142646,5277403.724991164]]]},"properties":{"ID_SOURCE":"w145194787","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":862}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.3273372146,5277408.523514167],[517292.1899199638,5277408.333400427],[517292.6436818823,5277407.267804792],[517295.49743793765,5277407.2762815375],[517296.3273372146,5277408.523514167]]]},"properties":{"ID_SOURCE":"w145194840","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":863}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.5217925365,5277746.47253719],[516404.3261927198,5277741.673240736],[516408.04379464954,5277736.204520452],[516411.4899349032,5277731.135140918],[516418.6855419539,5277735.934446135],[516411.5217925365,5277746.47253719]]]},"properties":{"ID_SOURCE":"w145194842","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":864}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516484.35889001976,5276793.3208933715],[516488.5667554266,5276792.665967896],[516489.378453261,5276797.780694486],[516485.0222658296,5276797.768361015],[516484.35889001976,5276793.3208933715]]]},"properties":{"ID_SOURCE":"w145194861","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":865}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.1421808529,5277592.971199198],[517183.57049618155,5277595.104778822],[517180.8388185433,5277604.654752816],[517175.9165347101,5277603.273207215],[517173.2603218038,5277602.520733577],[517176.1421808529,5277592.971199198]]]},"properties":{"ID_SOURCE":"w145194872","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":866}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.75020335964,5276771.4740845235],[516737.87343169685,5276770.782497833],[516724.92267403996,5276761.087242847],[516726.2722635922,5276759.290654948],[516739.2301823274,5276769.108187221],[516740.1071457761,5276769.733090808],[516738.75020335964,5276771.4740845235]]]},"properties":{"ID_SOURCE":"w145194910","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":867}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516405.9396912329,5277542.181695143],[516410.7559289382,5277538.638793354],[516411.7284319721,5277539.975213113],[516406.91219477187,5277543.518114106],[516405.9396912329,5277542.181695143]]]},"properties":{"ID_SOURCE":"w145194943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":868}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516938.62854077114,5277457.573728427],[516938.6317742241,5277456.462338786],[516941.33530934545,5277456.470205019],[516941.33207537653,5277457.581594661],[516938.62854077114,5277457.573728427]]]},"properties":{"ID_SOURCE":"w145194945","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":869}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.29786166846,5277693.441332153],[517138.2103336844,5277697.664393235],[517136.10799822526,5277697.54706462],[517136.19519754517,5277693.435142516],[517138.29786166846,5277693.441332153]]]},"properties":{"ID_SOURCE":"w145195019","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":870}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517219.73351259617,5277418.632488418],[517218.68980508397,5277418.573831654],[517218.8324111271,5277416.06249106],[517219.87611908943,5277416.12114785],[517219.8046514733,5277417.432387611],[517219.73351259617,5277418.632488418]]]},"properties":{"ID_SOURCE":"w145195052","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":871}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517275.7351776161,5277233.839340454],[517276.86169381574,5277233.842683017],[517276.69401353825,5277239.732600221],[517275.4172964689,5277239.728812033],[517275.7351776161,5277233.839340454]]]},"properties":{"ID_SOURCE":"w145195071","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":872}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.3853079628,5277227.687051336],[517261.03381657734,5277227.571904731],[517261.5203373053,5277215.459098316],[517263.1722367564,5277215.575135687],[517262.3853079628,5277227.687051336]]]},"properties":{"ID_SOURCE":"w145195075","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":873}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.8839238723,5277364.293198188],[516926.8764923033,5277366.849394003],[516925.90052380326,5277366.735416785],[516925.7574330771,5277364.289923276],[516926.8839238723,5277364.293198188]]]},"properties":{"ID_SOURCE":"w145195091","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":874}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516537.5403127205,5277378.456016348],[516534.5704878453,5277377.002763502],[516535.19747266924,5277375.715321851],[516538.17480796756,5277377.168596342],[516537.5403127205,5277378.456016348]]]},"properties":{"ID_SOURCE":"w145195093","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":875}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.5193785727,5277720.702297138],[516849.4325306114,5277735.609267633],[516848.00444674515,5277736.049694267],[516843.16638621705,5277721.142942239],[516844.5193785727,5277720.702297138]]]},"properties":{"ID_SOURCE":"w145195157","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":876}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516935.3185296994,5277407.8845637925],[516931.2625467858,5277408.095047099],[516931.1246306173,5277403.871330008],[516935.1055175863,5277403.660628159],[516935.3185296994,5277407.8845637925]]]},"properties":{"ID_SOURCE":"w145195164","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":877}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.26573153574,5277277.06290451],[516855.276992279,5277273.173041843],[516858.73193981266,5277273.071904714],[516858.79577727197,5277276.961984829],[516855.26573153574,5277277.06290451]]]},"properties":{"ID_SOURCE":"w145195181","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":878}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.4776584962,5277449.630842111],[516885.3313932951,5277449.639117862],[516885.3272030411,5277451.083924389],[516883.77266894485,5277451.079416108],[516882.47346895,5277451.0756486375],[516882.4776584962,5277449.630842111]]]},"properties":{"ID_SOURCE":"w145195223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":879}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.1642120366,5276835.812861056],[516375.0550810935,5276833.422914182],[516376.549560453,5276830.80421904],[516380.67352630926,5276833.260892528],[516379.1642120366,5276835.812861056]]]},"properties":{"ID_SOURCE":"w145195271","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":880}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.6444860907,5277513.771220715],[517190.5634817337,5277515.771500468],[517189.287153377,5277515.656592047],[517189.4432547655,5277513.656533999],[517190.6444860907,5277513.771220715]]]},"properties":{"ID_SOURCE":"w145195311","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":881}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.9293477012,5277159.036834298],[517266.1203828683,5277158.45797332],[517266.4719204681,5277153.880052469],[517266.74558797764,5277150.235475779],[517274.4797913591,5277150.70297584],[517273.9293477012,5277159.036834298]]]},"properties":{"ID_SOURCE":"w145195340","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":882}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516936.57144056796,5277751.644000612],[516937.3958620989,5277752.202098938],[516936.34066075576,5277753.532708473],[516935.5913336849,5277752.974828752],[516936.0813870697,5277752.309414661],[516936.57144056796,5277751.644000612]]]},"properties":{"ID_SOURCE":"w145195355","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":883}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516811.2452807978,5277280.936671295],[516811.04991736,5277267.966085541],[516810.86751930264,5277255.706832581],[516828.4417450302,5277255.5353205865],[516828.7446511652,5277280.653804616],[516811.2452807978,5277280.936671295]]]},"properties":{"ID_SOURCE":"w145195364","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":884}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516879.01957285556,5277463.802266741],[516882.92499640404,5277463.702450543],[516883.0642348989,5277467.48161094],[516879.1588138818,5277467.581427042],[516879.01957285556,5277463.802266741]]]},"properties":{"ID_SOURCE":"w145195366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":885}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517149.94832343695,5277575.122700571],[517149.6845356586,5277575.444229363],[517144.9357714689,5277581.431799837],[517138.9794976261,5277576.690814342],[517134.1620347114,5277572.853420071],[517141.797047476,5277563.462342093],[517145.70774063695,5277566.652460375],[517143.1751617761,5277569.812490804],[517146.411910791,5277572.344899467],[517149.94832343695,5277575.122700571]]]},"properties":{"ID_SOURCE":"w145195387","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":886}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516525.8491155407,5276835.3381762365],[516535.5286628186,5276838.588707022],[516534.24176012457,5276842.1415250935],[516524.5622180608,5276838.890996416],[516525.8491155407,5276835.3381762365]]]},"properties":{"ID_SOURCE":"w145195389","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":887}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.5833187064,5277190.371323687],[517263.7740661838,5277189.903604638],[517264.23535608844,5277183.77005039],[517264.6337973374,5277178.569884949],[517272.3673038454,5277179.259660148],[517271.5833187064,5277190.371323687]]]},"properties":{"ID_SOURCE":"w145195390","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":888}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.416307038,5277448.937364209],[516796.4089325517,5277451.4935603915],[516795.50775346125,5277451.490960609],[516795.44002926175,5277448.934547783],[516796.416307038,5277448.937364209]]]},"properties":{"ID_SOURCE":"w145195399","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":889}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.5188961354,5277439.488242384],[516870.1154248294,5277439.592417498],[516870.0435467572,5277438.480810274],[516872.5217948689,5277438.487991727],[516872.5188961354,5277439.488242384]]]},"properties":{"ID_SOURCE":"w145195418","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":890}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68603405985,5277216.274875673],[517305.6779294405,5277216.257015304],[517305.6832146694,5277214.478792606],[517311.6909906801,5277214.607791896],[517311.68603405985,5277216.274875673]]]},"properties":{"ID_SOURCE":"w145195426","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":891}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.0019662698,5277160.204846987],[517292.5720054596,5277165.893932389],[517292.1421774659,5277171.538562302],[517284.3329011741,5277171.070815752],[517285.1930047635,5277159.625960421],[517293.0019662698,5277160.204846987]]]},"properties":{"ID_SOURCE":"w145195433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":892}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517183.71475726995,5277088.196075975],[517186.11837988195,5277088.092030011],[517186.17970545654,5277092.760085387],[517183.7009818755,5277092.863909682],[517183.71475726995,5277088.196075975]]]},"properties":{"ID_SOURCE":"w145195464","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":893}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.53204385866,5277419.218883036],[517315.9110552044,5277419.373413641],[517315.8632194337,5277420.306846843],[517314.0761022985,5277420.223734032],[517312.48420862923,5277420.152316264],[517312.53204385866,5277419.218883036]]]},"properties":{"ID_SOURCE":"w145195484","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":894}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516588.9201583838,5277711.743989875],[516588.51487514947,5277695.8498274265],[516592.87102443364,5277695.6399618955],[516593.4264855916,5277711.534552757],[516588.9201583838,5277711.743989875]]]},"properties":{"ID_SOURCE":"w145195489","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":895}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.7131902626,5277352.888283371],[517017.6413391544,5277351.776674411],[517020.26982342586,5277351.784357677],[517020.19147495995,5277352.895527593],[517017.7131902626,5277352.888283371]]]},"properties":{"ID_SOURCE":"w145195501","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":896}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516899.45019330614,5277449.568942667],[516902.82961615315,5277449.578752904],[516902.82542155666,5277451.023559429],[516901.00053367356,5277451.018261657],[516899.5210978157,5277451.013967177],[516899.45019330614,5277449.568942667]]]},"properties":{"ID_SOURCE":"w145195527","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":897}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.218956137,5276787.205389569],[517207.81126374763,5276787.189407384],[517207.8145478885,5276786.07801894],[517213.29734816396,5276786.094223135],[517213.218956137,5276787.205389569]]]},"properties":{"ID_SOURCE":"w145195541","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":898}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516831.46660684276,5277741.892273156],[516835.04061067157,5277752.460902346],[516833.3118331872,5277753.011602964],[516829.9631100899,5277742.443626112],[516831.46660684276,5277741.892273156]]]},"properties":{"ID_SOURCE":"w145195587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":899}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.20437265426,5277211.618687517],[517279.7811715237,5277211.734506737],[517279.53871638083,5277217.513061863],[517277.8861581888,5277217.619297683],[517278.20437265426,5277211.618687517]]]},"properties":{"ID_SOURCE":"w145195606","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":900}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.4618089982,5277646.782776263],[517294.5033927242,5277640.778370427],[517299.529846807,5277639.937526757],[517304.2708059851,5277639.140294812],[517305.22921247734,5277645.144702261],[517295.4618089982,5277646.782776263]]]},"properties":{"ID_SOURCE":"w145195628","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":901}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516819.3062856879,5277376.206820714],[516816.6023924247,5277376.310150188],[516816.60528149473,5277375.309899629],[516819.2340759797,5277375.206353209],[516819.3062856879,5277376.206820714]]]},"properties":{"ID_SOURCE":"w145195662","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":902}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516435.97674881,5277729.092564567],[516436.5825267513,5277727.316036443],[516442.1345113902,5277729.1099529425],[516441.4536372898,5277730.886268415],[516435.97674881,5277729.092564567]]]},"properties":{"ID_SOURCE":"w145195672","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":903}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.9838082491,5276857.449694463],[516528.93638188334,5276859.019706733],[516527.9518036945,5276861.906545859],[516523.0746534863,5276860.22560866],[516523.9838082491,5276857.449694463]]]},"properties":{"ID_SOURCE":"w145195673","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":904}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.7956420472,5277514.835844527],[517174.8759852735,5277513.057842513],[517176.3776068881,5277513.173412442],[517176.29726320447,5277514.951414435],[517174.7956420472,5277514.835844527]]]},"properties":{"ID_SOURCE":"w145195751","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":905}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.5857495879,5277506.194141648],[516955.1313843909,5277515.636798855],[516950.34981337015,5277514.889352162],[516946.42396392033,5277514.277768046],[516947.87831530743,5277504.835108718],[516956.5857495879,5277506.194141648]]]},"properties":{"ID_SOURCE":"w145195767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":906}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.4489454403,5276953.250029925],[517141.0776097573,5276953.257767289],[517141.2121154341,5276958.592875445],[517138.5080217919,5276958.696055837],[517138.4489454403,5276953.250029925]]]},"properties":{"ID_SOURCE":"w145195789","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":907}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517083.02790318645,5277437.323606809],[517075.67053687305,5277436.524044345],[517076.1737691952,5277431.37974223],[517076.6771327585,5277426.190984616],[517084.0345120068,5277426.990548309],[517083.02790318645,5277437.323606809]]]},"properties":{"ID_SOURCE":"w145195802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":908}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.06415363576,5277446.254597263],[516667.3220269016,5277448.677505469],[516665.83504534094,5277443.438560625],[516664.4224596523,5277438.444336884],[516672.16396222095,5277436.243702758],[516675.06415363576,5277446.254597263]]]},"properties":{"ID_SOURCE":"w145195814","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":909}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.47943152505,5277630.731485588],[516697.8807030333,5277634.257554004],[516695.4254862747,5277626.248438909],[516700.07085052104,5277624.716917791],[516706.09932384145,5277622.722581531],[516708.47943152505,5277630.731485588]]]},"properties":{"ID_SOURCE":"w145195827","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":910}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517034.4032744343,5277654.793121017],[517041.07279779116,5277659.591657805],[517034.1360380073,5277669.129392728],[517027.31665398955,5277664.219285514],[517030.890097126,5277659.472948352],[517034.4032744343,5277654.793121017]]]},"properties":{"ID_SOURCE":"w145195881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":911}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.84996223677,5277454.881456011],[517157.93095602404,5277452.88117602],[517159.8835105472,5277452.886930605],[517159.8025160894,5277454.887210569],[517157.84996223677,5277454.881456011]]]},"properties":{"ID_SOURCE":"w145195888","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":912}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517317.43694908696,5277050.248986054],[517314.58334849006,5277050.129360099],[517314.82518301846,5277044.573085632],[517317.43694908696,5277050.248986054]]]},"properties":{"ID_SOURCE":"w145195902","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":913}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517082.24409024045,5277653.266201008],[517082.3296213724,5277649.709973456],[517097.2733411832,5277649.8649810245],[517097.262896585,5277653.421428921],[517082.24409024045,5277653.266201008]]]},"properties":{"ID_SOURCE":"w145195943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":914}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517041.5150981888,5277405.860495103],[517050.22396145645,5277406.775111744],[517049.3685832574,5277416.775198584],[517046.59838440677,5277416.444781361],[517040.66006012197,5277415.749444217],[517041.5150981888,5277405.860495103]]]},"properties":{"ID_SOURCE":"w145195993","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":915}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517282.8270093339,5277516.444762345],[517286.1187987703,5277513.0758806225],[517286.9275085393,5277513.867375482],[517283.62820933363,5277517.236234456],[517282.8270093339,5277516.444762345]]]},"properties":{"ID_SOURCE":"w145196004","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":916}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516352.1291580542,5277583.374337768],[516354.38673741,5277581.713581157],[516355.50912693003,5277583.161552508],[516353.32633214723,5277584.933658622],[516352.1291580542,5277583.374337768]]]},"properties":{"ID_SOURCE":"w145196037","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":917}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.18987155164,5277351.986139201],[517281.33530989557,5277348.530119327],[517282.22138621775,5277348.566091369],[517282.14081041917,5277350.410774891],[517282.07594734855,5277352.022111221],[517281.18987155164,5277351.986139201]]]},"properties":{"ID_SOURCE":"w145196062","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":918}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.1930047635,5277159.625960421],[517286.128873623,5277147.959050562],[517293.9375206054,5277148.649077243],[517293.46193570906,5277154.526964783],[517293.0019662698,5277160.204846987],[517285.1930047635,5277159.625960421]]]},"properties":{"ID_SOURCE":"w145196082","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":919}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.5395180197,5277539.821060907],[517275.82066322037,5277539.118746039],[517278.07289532485,5277536.824832636],[517278.1362279134,5277538.258726001],[517276.5395180197,5277539.821060907]]]},"properties":{"ID_SOURCE":"w145196112","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":920}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.14021793316,5277257.912277998],[517109.997201513,5277255.466780202],[517112.4758544168,5277255.362924677],[517112.61886980006,5277257.808422535],[517110.14021793316,5277257.912277998]]]},"properties":{"ID_SOURCE":"w145196130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":921}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517292.76348599605,5277619.767747338],[517291.2883015194,5277610.761028219],[517301.5056809977,5277609.346564172],[517302.9060842547,5277618.241923713],[517298.48090822366,5277618.906727162],[517292.76348599605,5277619.767747338]]]},"properties":{"ID_SOURCE":"w145196168","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":922}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516300.4643084678,5276804.695186008],[516298.5947314887,5276801.800320108],[516301.6800143119,5276799.697301421],[516303.5499016044,5276802.481029451],[516300.4643084678,5276804.695186008]]]},"properties":{"ID_SOURCE":"w145196173","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":923}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517314.4412418741,5277097.919084362],[517310.987502738,5277097.57539574],[517311.4553018264,5277091.79751278],[517314.8342719452,5277092.029839446],[517314.4412418741,5277097.919084362]]]},"properties":{"ID_SOURCE":"w145196175","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":924}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.20183937385,5277457.513742424],[516956.20475250104,5277456.513491746],[516958.6829930254,5277456.520709893],[516958.7551776576,5277457.521179318],[516956.20183937385,5277457.513742424]]]},"properties":{"ID_SOURCE":"w145196238","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":925}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516873.4289341219,5277203.207506251],[516873.328974356,5277185.869399601],[516933.7120226891,5277185.600138216],[516933.887227367,5277202.827325823],[516873.4289341219,5277203.207506251]]]},"properties":{"ID_SOURCE":"w145196251","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":926}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.81164672377,5277736.560611246],[516716.3191740858,5277725.000644323],[516726.1578605842,5277724.5843440825],[516726.57521914743,5277736.144096114],[516716.81164672377,5277736.560611246]]]},"properties":{"ID_SOURCE":"w145196275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":927}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517184.15261489275,5276914.37464255],[517186.2555604248,5276914.380848817],[517186.3910099695,5276919.382541184],[517184.2126331328,5276919.487252095],[517184.15261489275,5276914.37464255]]]},"properties":{"ID_SOURCE":"w145196280","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":928}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.8224268599,5277457.503534341],[516990.82534593536,5277456.503283667],[516993.07861628674,5277456.39872001],[516993.1504706268,5277457.5103288395],[516990.8224268599,5277457.503534341]]]},"properties":{"ID_SOURCE":"w145196291","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":929}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.8985267964,5277362.460202318],[516522.36851956794,5277363.153440728],[516519.34694846265,5277369.346470374],[516517.90702816204,5277368.642204046],[516520.8985267964,5277362.460202318]]]},"properties":{"ID_SOURCE":"w145196299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":930}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516298.1075784323,5276734.337146298],[516308.10092099383,5276732.920307196],[516309.10981778137,5276740.091644324],[516310.08929163875,5276747.040619878],[516299.9457581596,5276748.457035082],[516298.1075784323,5276734.337146298]]]},"properties":{"ID_SOURCE":"w145196311","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":931}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.12868258834,5276872.118682175],[516540.4098994632,5276870.566364602],[516541.75864572066,5276871.681593436],[516540.477428728,5276873.233910716],[516539.12868258834,5276872.118682175]]]},"properties":{"ID_SOURCE":"w145196315","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":932}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.191248049,5277076.775009245],[517313.2252977372,5277077.465731105],[517312.52293436485,5277086.354832968],[517308.4608870927,5277085.998223278],[517304.5639998645,5277085.664335236],[517305.191248049,5277076.775009245]]]},"properties":{"ID_SOURCE":"w145196322","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":933}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.98888656835,5277379.8530878],[516926.98177803215,5277382.298144723],[516925.7801915677,5277382.294651464],[516925.7872995978,5277379.84959454],[516926.98888656835,5277379.8530878]]]},"properties":{"ID_SOURCE":"w145196347","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":934}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.23588252475,5277562.306815518],[517225.4220958865,5277562.108750697],[517225.6330163183,5277566.966190716],[517225.84406789945,5277571.779175189],[517217.58244271565,5277572.088156272],[517217.23588252475,5277562.306815518]]]},"properties":{"ID_SOURCE":"w145196351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":935}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.942728484,5276804.423666107],[517249.3700834298,5276804.316754137],[517249.2083479722,5276808.206168846],[517247.85610054893,5276808.3133033095],[517247.942728484,5276804.423666107]]]},"properties":{"ID_SOURCE":"w145196358","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":936}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.2093945172,5277728.550774533],[516471.65489084227,5277726.303765908],[516471.95967214345,5277724.748669588],[516480.66468201124,5277726.884964817],[516480.2093945172,5277728.550774533]]]},"properties":{"ID_SOURCE":"w145196373","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":937}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.1959692812,5276963.967931166],[517217.87849290465,5276964.042636651],[517217.81456153287,5276960.263692824],[517230.1323747584,5276960.077848313],[517230.1959692812,5276963.967931166]]]},"properties":{"ID_SOURCE":"w145196390","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":938}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516860.16967771424,5277539.044934224],[516859.67975470854,5277542.255458889],[516853.82443393266,5277541.460526054],[516854.2846688333,5277538.127661071],[516860.16967771424,5277539.044934224]]]},"properties":{"ID_SOURCE":"w145196395","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":939}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516473.9519332466,5277763.764415017],[516468.4741424296,5277762.304097477],[516468.8549585564,5277760.415796282],[516474.6331280354,5277761.876964218],[516473.9519332466,5277763.764415017]]]},"properties":{"ID_SOURCE":"w145196410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":940}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.8900473161,5277262.826548969],[517270.09132895863,5277262.941251907],[517269.93519385776,5277264.94130708],[517268.7339126267,5277264.826604177],[517268.8900473161,5277262.826548969]]]},"properties":{"ID_SOURCE":"w145196435","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":941}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.0429526103,5277464.488310913],[517214.14537088695,5277464.6056667045],[517214.0663295361,5277465.939112218],[517211.96358317725,5277465.932895417],[517212.0429526103,5277464.488310913]]]},"properties":{"ID_SOURCE":"w145196451","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":942}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517261.90142218943,5277238.91074653],[517260.54894499923,5277239.129016797],[517260.7920395152,5277233.128182887],[517262.0690875191,5277233.020828944],[517261.90142218943,5277238.91074653]]]},"properties":{"ID_SOURCE":"w145196460","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":943}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516905.7718195098,5277315.663729674],[516905.5443490513,5277290.54545752],[516921.7666678239,5277290.370302577],[516921.9175309021,5277303.062914785],[516922.06916833017,5277315.488793799],[516905.7718195098,5277315.663729674]]]},"properties":{"ID_SOURCE":"w145196468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":944}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517054.95180558256,5277664.300178453],[517057.79924817296,5277666.420179994],[517057.12045807234,5277667.4184507355],[517054.12249914405,5277665.409148552],[517054.95180558256,5277664.300178453]]]},"properties":{"ID_SOURCE":"w145196480","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":945}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516620.6914244003,5277604.473458569],[516612.4983187771,5277607.117431384],[516608.92508855456,5277596.1043864405],[516617.4182764402,5277593.572404996],[516619.13666480454,5277599.301014815],[516620.6914244003,5277604.473458569]]]},"properties":{"ID_SOURCE":"w145196498","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":946}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.65698379517,5277353.043218608],[516994.7356517901,5277351.820909417],[516996.7633396212,5277351.826828425],[516996.83487026795,5277353.049576061],[516994.65698379517,5277353.043218608]]]},"properties":{"ID_SOURCE":"w145196521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":947}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.85573722294,5277604.671654621],[517196.72491842194,5277608.691580712],[517194.6379432247,5277616.076223713],[517190.841195859,5277615.009181658],[517187.0894720082,5277613.953389004],[517188.95639501075,5277607.33495936],[517191.77768419764,5277608.132383637],[517193.1285436661,5277603.346240729],[517197.85573722294,5277604.671654621]]]},"properties":{"ID_SOURCE":"w145196543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":948}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.5634817337,5277515.771500468],[517190.6444860907,5277513.771220715],[517192.371399626,5277513.887459998],[517192.2903946762,5277515.887739731],[517190.5634817337,5277515.771500468]]]},"properties":{"ID_SOURCE":"w145196587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":949}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.80077339703,5277236.166286236],[517309.37385342555,5277236.162044042],[517309.69143868826,5277230.383713186],[517310.89305669884,5277230.3872856],[517310.80077339703,5277236.166286236]]]},"properties":{"ID_SOURCE":"w145196610","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":950}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516969.95688675315,5277066.897161568],[516969.83680302626,5277056.560806584],[517000.17888366757,5277056.538173877],[517000.2995625029,5277066.652251825],[516969.95688675315,5277066.897161568]]]},"properties":{"ID_SOURCE":"w145196620","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":951}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516848.6369569862,5277439.64136112],[516845.8583157437,5277439.633320658],[516845.8608883243,5277438.744208961],[516848.5644315685,5277438.752032095],[516848.6369569862,5277439.64136112]]]},"properties":{"ID_SOURCE":"w145196638","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":952}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.29792917485,5277633.568970658],[516680.6013226529,5277636.7642370835],[516677.9955729241,5277628.865838024],[516683.16711190745,5277627.157986983],[516687.6921911137,5277625.670567273],[516690.29792917485,5277633.568970658]]]},"properties":{"ID_SOURCE":"w145196640","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":953}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.37579862226,5277694.830044276],[516968.35171129694,5277694.944028638],[516967.9717006663,5277696.498880333],[516967.1459784526,5277696.38533376],[516967.37579862226,5277694.830044276]]]},"properties":{"ID_SOURCE":"w145196646","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":954}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516916.7231218867,5277449.507965519],[516920.02744650736,5277449.517567532],[516920.02357063355,5277450.85123509],[516918.3939381832,5277450.846499317],[516916.71924677,5277450.84163308],[516916.7231218867,5277449.507965519]]]},"properties":{"ID_SOURCE":"w145196650","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":955}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517216.4459444905,5277702.451974304],[517212.93783734017,5277695.217502345],[517219.0141689704,5277692.3124901485],[517222.1876892291,5277690.799259853],[517225.69545877486,5277698.144876363],[517216.4459444905,5277702.451974304]]]},"properties":{"ID_SOURCE":"w145196667","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":956}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.92357068206,5277271.546105418],[517211.50206911884,5277266.39092412],[517223.5518124393,5277267.749121285],[517222.9733034519,5277272.904301424],[517210.92357068206,5277271.546105418]]]},"properties":{"ID_SOURCE":"w145196682","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":957}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.84083455725,5277480.980381867],[517004.1214139152,5277480.9928823635],[517004.18580001575,5277484.660687647],[516999.9048988374,5277484.759326065],[516999.84083455725,5277480.980381867]]]},"properties":{"ID_SOURCE":"w145196695","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":958}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.3374018695,5277633.8461725125],[516978.48963567434,5277633.146434862],[516978.61176631827,5277632.468837408],[516979.43740014924,5277632.615727272],[516979.20058346575,5277633.993171848],[516978.3374018695,5277633.8461725125]]]},"properties":{"ID_SOURCE":"w145196699","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":959}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.7161777157,5277573.8607542515],[517245.29921731644,5277567.5801115995],[517244.92550345894,5277561.910866895],[517252.70636021625,5277561.656069768],[517252.9266130099,5277573.493127849],[517245.7161777157,5277573.8607542515]]]},"properties":{"ID_SOURCE":"w145196705","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":960}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.3145784396,5277477.230775467],[516900.0438122746,5277477.911340852],[516898.9717955733,5277485.021183072],[516894.2428899008,5277484.22947957],[516895.3145784396,5277477.230775467]]]},"properties":{"ID_SOURCE":"w145196710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":961}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.90740549844,5277627.636759148],[517251.37884961173,5277626.9690910885],[517258.1263917516,5277625.666524069],[517259.16257993435,5277630.782034374],[517249.39351929695,5277632.975880612],[517247.90740549844,5277627.636759148]]]},"properties":{"ID_SOURCE":"w145196728","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":962}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.6130010012,5277457.482499225],[516983.615918836,5277456.48224855],[516986.1692576008,5277456.489697467],[516986.1663393261,5277457.48994814],[516983.6130010012,5277457.482499225]]]},"properties":{"ID_SOURCE":"w145196731","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":963}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.1479783252,5277091.334204552],[517304.75528831035,5277097.112311196],[517301.601299077,5277096.991798746],[517302.0694191344,5277091.102776167],[517305.1479783252,5277091.334204552]]]},"properties":{"ID_SOURCE":"w145196753","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":964}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.40714176255,5277174.0977338115],[516718.1260181611,5277174.1965799],[516718.06208504067,5277170.306502182],[516722.3432114985,5277170.207656042],[516722.40714176255,5277174.0977338115]]]},"properties":{"ID_SOURCE":"w145196770","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":965}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516852.87692793837,5277375.859337179],[516850.3986531884,5277375.852164152],[516850.40186971694,5277374.740774641],[516852.95524418884,5277374.748165048],[516852.87692793837,5277375.859337179]]]},"properties":{"ID_SOURCE":"w145196773","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":966}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516613.56470921607,5277549.216589817],[516615.66932811064,5277548.555756661],[516616.3322038094,5277550.480368619],[516616.8536002688,5277551.982245266],[516614.68133178604,5277552.665112908],[516613.56470921607,5277549.216589817]]]},"properties":{"ID_SOURCE":"w145196783","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":967}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.6019330817,5277561.223592925],[516386.2239049032,5277556.463212975],[516387.2715074102,5277557.79984005],[516380.6495362397,5277562.560218813],[516379.6019330817,5277561.223592925]]]},"properties":{"ID_SOURCE":"w145196786","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":968}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517064.16151769436,5277161.085653414],[517064.03704460413,5277152.3052392835],[517073.27558362205,5277151.998901822],[517073.32461489085,5277160.890234871],[517064.16151769436,5277161.085653414]]]},"properties":{"ID_SOURCE":"w145196794","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":969}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517082.73230345326,5277410.093460582],[517090.4687848513,5277409.671605578],[517090.965440319,5277419.564515754],[517086.2786956891,5277419.750811504],[517083.22929812217,5277419.875231117],[517082.73230345326,5277410.093460582]]]},"properties":{"ID_SOURCE":"w145196795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":970}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516842.3936127678,5277458.717130597],[516846.37381555134,5277458.728646089],[516846.43701503833,5277462.841005126],[516842.53191317857,5277462.829706834],[516842.3936127678,5277458.717130597]]]},"properties":{"ID_SOURCE":"w145196812","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":971}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.3127574956,5277411.393579065],[516995.30562019657,5277413.838636095],[516994.3290120485,5277413.946925289],[516994.2613745628,5277411.390510097],[516995.3127574956,5277411.393579065]]]},"properties":{"ID_SOURCE":"w145196817","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":972}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.9646033933,5277457.5421836525],[516965.89242000086,5277456.5417141365],[516968.82124970964,5277456.55024966],[516968.893432598,5277457.550719215],[516965.9646033933,5277457.5421836525]]]},"properties":{"ID_SOURCE":"w145196842","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":973}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516839.6017333061,5276746.547233754],[516841.93906115694,5276743.442079556],[516844.56203326856,5276745.4501819685],[516842.3001335723,5276748.444413508],[516839.6017333061,5276746.547233754]]]},"properties":{"ID_SOURCE":"w145196843","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":974}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.099323886,5276914.29794121],[516726.26120117377,5276930.490334541],[516721.839263077,5276927.254580605],[516733.75216579594,5276911.173533078],[516738.099323886,5276914.29794121]]]},"properties":{"ID_SOURCE":"w145196858","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":975}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.4895450287,5277453.738399509],[516994.58804179763,5277453.846907871],[516994.52137826715,5277450.957075624],[516995.4976557851,5277450.959925434],[516995.4895450287,5277453.738399509]]]},"properties":{"ID_SOURCE":"w145196876","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":976}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.41839374206,5277375.840646045],[516843.6394005285,5277375.943745667],[516843.6426157656,5277374.832356158],[516846.42128793296,5277374.840395489],[516846.41839374206,5277375.840646045]]]},"properties":{"ID_SOURCE":"w145196892","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":977}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.85045208485,5277647.496662686],[517013.14187223604,5277652.785999676],[517009.3267048827,5277658.020657148],[517005.3154843789,5277663.532594315],[516998.01656115055,5277658.243245095],[517005.85045208485,5277647.496662686]]]},"properties":{"ID_SOURCE":"w145196925","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":978}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516412.0647759747,5277633.778216014],[516413.2685036241,5277633.003630375],[516416.51500466093,5277637.502835462],[516419.77645712753,5277642.02431256],[516418.49763468385,5277642.7986850785],[516412.0647759747,5277633.778216014]]]},"properties":{"ID_SOURCE":"w145196946","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":979}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.09571722883,5277364.601919487],[516880.0889506391,5277366.935837414],[516879.1126590796,5277366.933006991],[516879.11974747817,5277364.4879501145],[516880.09571722883,5277364.601919487]]]},"properties":{"ID_SOURCE":"w145196962","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":980}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.52293436485,5277086.354832968],[517313.2252977372,5277077.465731105],[517316.2923439498,5277086.621663307],[517312.52293436485,5277086.354832968]]]},"properties":{"ID_SOURCE":"w145197010","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":981}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517156.9042417747,5277469.993699263],[517158.85711810924,5277469.8883145545],[517158.7767792895,5277471.666316657],[517156.8245585772,5277471.549423459],[517156.9042417747,5277469.993699263]]]},"properties":{"ID_SOURCE":"w145197017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":982}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.6791097383,5277293.211405957],[516996.63773254835,5277289.376959242],[517000.1675790268,5277289.342808645],[517000.20895389235,5277293.177255387],[516996.6791097383,5277293.211405957]]]},"properties":{"ID_SOURCE":"w145197031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":983}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.56476083334,5277141.492233982],[517308.83120904403,5277140.802400232],[517309.26889586117,5277135.046655199],[517309.69070398575,5277129.579826748],[517317.49937301344,5277130.2698849505],[517316.56476083334,5277141.492233982]]]},"properties":{"ID_SOURCE":"w145197039","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":984}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517183.71475726995,5277088.196075975],[517183.7009818755,5277092.863909682],[517181.52299790696,5277092.85748257],[517181.4613406588,5277088.300566147],[517183.71475726995,5277088.196075975]]]},"properties":{"ID_SOURCE":"w145197047","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":985}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517203.64821073227,5276798.0688090185],[517207.7036440277,5276798.19193115],[517207.77185401524,5276800.526068871],[517203.64065900823,5276800.625002493],[517203.64821073227,5276798.0688090185]]]},"properties":{"ID_SOURCE":"w145197049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":986}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516538.1485204895,5276873.4495755145],[516539.12868258834,5276872.118682175],[516540.477428728,5276873.233910716],[516539.4972665067,5276874.56480383],[516538.1485204895,5276873.4495755145]]]},"properties":{"ID_SOURCE":"w145197062","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":987}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.0936090755,5277408.285688449],[517290.6360383335,5277418.220239584],[517288.6086373925,5277418.12530701],[517289.0586947962,5277408.190733423],[517291.0936090755,5277408.285688449]]]},"properties":{"ID_SOURCE":"w145197063","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":988}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516881.768955281,5277616.338656036],[516886.86034420226,5277616.397878026],[516893.8591103092,5277616.484867036],[516893.75885873125,5277625.153490605],[516881.59330341016,5277625.1182010025],[516881.768955281,5277616.338656036]]]},"properties":{"ID_SOURCE":"w145197080","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":989}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.7003671664,5277669.996885787],[516995.2599511239,5277661.013695755],[517002.15413667314,5277666.03512363],[516999.3645694025,5277669.805735658],[516995.594872084,5277674.907166976],[516988.7003671664,5277669.996885787]]]},"properties":{"ID_SOURCE":"w145197093","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":990}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516796.2095358689,5277416.483920857],[516796.20280279365,5277418.817838991],[516795.0760020094,5277418.9257283],[516795.0079565236,5277416.48045457],[516796.2095358689,5277416.483920857]]]},"properties":{"ID_SOURCE":"w145197095","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":991}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516463.49213043,5277293.390894466],[516468.2577125375,5277281.290130402],[516474.03447190486,5277283.4181291675],[516481.8367352992,5277286.329845872],[516483.8782899845,5277281.445472913],[516481.70257942437,5277280.661334836],[516479.9105494328,5277276.988648018],[516478.41986297426,5277272.983395152],[516483.4578926005,5277270.774859265],[516484.35280644434,5277273.000189408],[516487.9617242665,5277271.565590292],[516487.06681157503,5277269.3402595995],[516492.255048914,5277267.13215664],[516495.2373484116,5277274.809253027],[516494.2541149771,5277277.251543783],[516499.35559466574,5277279.155375068],[516501.8502896663,5277273.383173854],[516513.92855351017,5277277.974151579],[516513.09519844904,5277280.528004139],[516510.9002664704,5277286.523330353],[516516.60158964456,5277288.76229739],[516521.4026507189,5277290.665295912],[516517.2424960799,5277301.100637133],[516509.29038467916,5277298.077307991],[516507.1740292806,5277302.850320346],[516513.24989288475,5277305.423765622],[516509.08976322104,5277315.859112852],[516506.98412744724,5277316.853401293],[516507.8042402439,5277318.967383377],[516506.21516818204,5277323.186192006],[516501.7138988395,5277321.506335139],[516500.66848434496,5277319.391715399],[516498.63826616976,5277320.275080743],[516497.65598357224,5277322.383954252],[516469.8250393943,5277311.302317794],[516472.0943911454,5277305.529466326],[516460.46706743975,5277300.828710068],[516463.49213043,5277293.390894466]]]},"properties":{"ID_SOURCE":"w145197116","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"sustenance","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":992}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516648.26892002265,5277257.129017302],[516646.3821863695,5277260.346678209],[516643.37498073984,5277261.449479777],[516641.9398081406,5277264.3350134],[516638.9329230228,5277265.326678331],[516636.4482502863,5277267.54237516],[516630.98272965424,5277261.636349524],[516631.509704415,5277261.193295416],[516627.4666442689,5277256.847294291],[516624.53009860497,5277259.506265111],[516626.2520201979,5277261.40055915],[516620.60455638607,5277266.608007727],[516607.2033861764,5277251.899309892],[516625.3487000289,5277235.835817229],[516627.7449505609,5277238.287736278],[516634.8228611386,5277231.861843103],[516626.13906261703,5277222.056734685],[516629.00052652333,5277219.397550303],[516628.5543626784,5277217.840318432],[516631.7108380911,5277217.071355055],[516631.3391411721,5277215.736615351],[516633.6688687637,5277215.187571247],[516634.42210436583,5277214.411744302],[516639.73841662216,5277219.983926601],[516641.0164082427,5277219.543019689],[516641.6089592517,5277222.434348934],[516643.2624565465,5277221.994515777],[516643.78054039396,5277224.663352734],[516645.20873367,5277224.222876099],[516645.8015998375,5277227.003066875],[516649.9948694533,5277231.349510027],[516640.8087133034,5277239.658736266],[516647.5477826056,5277246.679810437],[516649.2044514779,5277245.128589664],[516650.70233801013,5277246.577690936],[516652.12989074725,5277246.359493852],[516652.87390660914,5277248.806698243],[516655.04515562986,5277251.146845304],[516652.786408882,5277253.140901755],[516650.8996714504,5277256.358561186],[516648.26892002265,5277257.129017302]]]},"properties":{"ID_SOURCE":"w145197142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":993}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7301105095,5276705.41738373],[516761.6819556981,5276705.756420674],[516764.4248722142,5276692.205266224],[516767.6535583496,5276692.547981002],[516768.1096468387,5276690.659918435],[516771.12645236036,5276686.334155411],[516773.15885327547,5276684.784052354],[516771.5883038529,5276682.445594177],[516783.2512109431,5276675.143971165],[516782.5036513788,5276673.919279489],[516783.4110365673,5276671.810239225],[516794.68273239717,5276669.953359428],[516796.1800909575,5276671.624774202],[516795.6485630893,5276673.62375675],[516809.60972263414,5276676.775952118],[516809.2300110336,5276678.219672908],[516812.98317654367,5276679.008485713],[516812.5257891704,5276681.34110009],[516814.8518967809,5276682.125794353],[516816.3242107046,5276684.664032178],[516828.00542076945,5276704.836299897],[516835.1528793628,5276700.633647281],[516845.3180504434,5276717.778566534],[516844.26461351285,5276718.442357971],[516839.6746870405,5276721.318717339],[516835.46126721194,5276723.862749478],[516829.0331640895,5276713.063612292],[516826.1748937373,5276714.5001698695],[516827.1458352625,5276716.392351358],[516818.89242495934,5276721.24754413],[516819.2428310098,5276722.148788253],[516818.7119416455,5276723.925491185],[516822.91508006613,5276724.9378897315],[516822.304587511,5276728.270319103],[516818.6262416504,5276727.592855907],[516817.9416071687,5276730.591652312],[516813.36325502413,5276729.467034236],[516812.678944335,5276732.354692424],[516806.82504729,5276730.781837957],[516807.8126725819,5276726.894796662],[516809.1800078348,5276721.564034645],[516810.5309834673,5276721.901353648],[516811.06411635876,5276719.34667812],[516809.2711555506,5276716.007309618],[516817.8482027456,5276710.91964439],[516806.11497165915,5276690.547195279],[516806.7986423297,5276687.8818141725],[516792.7623998248,5276684.7294088425],[516793.2948871975,5276682.39700951],[516791.26792777114,5276682.0577454325],[516789.9901273944,5276682.387480471],[516788.86158228724,5276683.051065345],[516789.75839436194,5276684.609607442],[516777.7947454889,5276692.021490768],[516777.12165467645,5276691.0192938],[516776.6710062839,5276691.017995526],[516775.4651152422,5276692.459338449],[516774.93583733955,5276693.680351101],[516775.085092963,5276694.014200308],[516776.0608569836,5276694.23929068],[516773.09131029586,5276708.234346101],[516770.61403170926,5276707.782652381],[516770.3059189568,5276710.449119237],[516771.9534895624,5276712.12096049],[516773.4588465955,5276711.013898648],[516784.1563399236,5276725.937448634],[516778.96270662773,5276729.812373586],[516780.3836656001,5276731.928123433],[516776.01846368646,5276735.0274598915],[516763.52542032476,5276717.65368098],[516761.64388857683,5276718.981942136],[516759.7693945277,5276717.865149487],[516757.9224042862,5276707.190417573],[516759.7301105095,5276705.41738373]]]},"properties":{"ID_SOURCE":"w145197166","HEIGHT_WALL":15.0,"HEIGHT_ROOF":15.0,"NB_LEV":5,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":994}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516404.5164179041,5277620.864715114],[516392.3258213585,5277629.721567807],[516389.1092105633,5277625.266916482],[516390.76445167646,5277624.160177658],[516387.4733661888,5277619.483037862],[516385.81781157525,5277620.700916616],[516379.60860281583,5277612.23681298],[516375.3944641633,5277615.33687457],[516372.85057251866,5277611.995523439],[516375.18324299017,5277610.3349860255],[516374.06117622077,5277608.7758717965],[516376.16824698873,5277607.225840149],[516369.5103066285,5277598.093646151],[516371.09045530204,5277596.986690622],[516367.72392964276,5277592.420490083],[516366.14378038095,5277593.527446521],[516360.00929803844,5277585.1747143855],[516355.7200539448,5277588.274579078],[516353.32633214723,5277584.933658622],[516355.50912693003,5277583.161552508],[516354.38673741,5277581.713581157],[516356.4938126384,5277580.163542442],[516352.9776968112,5277575.374650655],[516362.68484295486,5277568.4001134],[516366.20126751665,5277573.077872015],[516367.2544956785,5277572.413993694],[516373.7629012694,5277581.323484268],[516374.9669471687,5277580.437751765],[516378.18390644545,5277584.78125589],[516375.7761284289,5277586.441580829],[516379.1423386137,5277591.118924975],[516381.5504283977,5277589.347462431],[516384.69196861197,5277593.801897916],[516382.3592888234,5277595.4624315025],[516385.8753683114,5277600.2513412675],[516386.9292195001,5277599.365188496],[516393.5123479044,5277608.386052038],[516394.79148749856,5277607.500535068],[516397.9333207515,5277611.843838879],[516395.6003313495,5277613.615506194],[516398.89172674395,5277618.181511547],[516401.2998114533,5277616.410057106],[516404.5164179041,5277620.864715114]]]},"properties":{"ID_SOURCE":"w145197196","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":995}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.1071457761,5276769.733090808],[516739.2301823274,5276769.108187221],[516726.2722635922,5276759.290654948],[516742.0360632537,5276738.852896258],[516749.17855538684,5276744.1748016],[516749.6913314309,5276743.4649819955],[516750.3096415697,5276742.62209828],[516744.7638377596,5276738.382838178],[516744.20753024495,5276735.947277856],[516746.7104313201,5276732.709194105],[516750.3065826813,5276728.01832509],[516754.5779305658,5276731.431489265],[516761.4435464667,5276736.3969657635],[516762.7855070063,5276737.256604633],[516760.50907271187,5276740.095230195],[516761.69308301876,5276741.03221205],[516763.79125975625,5276742.716462097],[516764.74103647866,5276741.530000843],[516767.2610202582,5276745.404919816],[516770.59520028514,5276748.226356887],[516779.77517092664,5276742.39573571],[516793.52929371066,5276765.196807994],[516790.8882914352,5276766.834060976],[516790.3652015098,5276765.910092652],[516787.3479281683,5276767.801883818],[516784.59417213954,5276769.472156537],[516770.8862185781,5276759.318943511],[516770.3433344397,5276760.050902521],[516769.00182833977,5276759.035667484],[516757.18252987496,5276750.277173068],[516756.5080032574,5276749.775103175],[516747.11415508634,5276762.084594029],[516746.2896703551,5276761.49318224],[516740.1071457761,5276769.733090808]]]},"properties":{"ID_SOURCE":"w145197234","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":996}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.952596158,5276728.393859355],[516932.6000132553,5276728.612205878],[516931.56531010167,5276722.829929036],[516927.8834194285,5276723.374924007],[516926.184370221,5276713.589685222],[516929.7163744365,5276712.933113634],[516929.2801526254,5276710.553454332],[516928.7551579681,5276707.706749968],[516929.88242199935,5276707.487747482],[516929.2177593815,5276703.59592319],[516921.55255449604,5276705.018461959],[516920.4427280361,5276699.235969102],[516916.98582455836,5276699.892764501],[516915.2867498799,5276690.107529321],[516917.46585283754,5276689.780439993],[516916.92644224904,5276686.722529388],[516915.9140868067,5276680.995890634],[516915.5382229847,5276681.105938616],[516915.4653745536,5276680.327748648],[516922.83017745096,5276678.904328797],[516922.16421489965,5276675.457060817],[516930.50543339254,5276674.036488025],[516931.1707449344,5276677.706034619],[516932.59844783455,5276677.487906138],[516933.48326521803,5276683.158607106],[516936.9405037601,5276682.390682658],[516938.56540619,5276691.842289163],[516935.1078498296,5276692.721351475],[516936.06744708994,5276698.503410238],[516934.7899651426,5276698.72197469],[516935.530055753,5276702.502879187],[516937.78458643256,5276702.0648770565],[516938.301937118,5276704.95601591],[516943.7877234522,5276703.971716674],[516944.3795320918,5276707.085352278],[516948.06175809825,5276706.429228894],[516949.61152771395,5276715.880620312],[516947.8079713718,5276716.208790512],[516948.91809078096,5276721.88014998],[516948.6173366287,5276721.9904144285],[516949.2832779883,5276725.437685735],[516949.58370849624,5276725.438560159],[516949.6575221999,5276725.883334114],[516947.55321503984,5276726.321768803],[516947.9970682928,5276728.656995875],[516942.58576532593,5276729.863787326],[516942.58414859365,5276730.41948151],[516934.3932227944,5276731.840473764],[516934.17016246414,5276731.061846671],[516934.5457002343,5276731.0629387265],[516933.952596158,5276728.393859355]]]},"properties":{"ID_SOURCE":"w145197250","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":997}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516705.5795588951,5277594.491553363],[516717.9819558492,5277590.526118292],[516720.7385001287,5277598.20268824],[516710.80914689606,5277601.352780142],[516707.8852207535,5277602.277963323],[516706.6207028572,5277598.051017989],[516705.5795588951,5277594.491553363]]]},"properties":{"ID_SOURCE":"w145197294","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":998}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.23641539493,5277253.03281632],[517188.920263162,5277258.366597944],[517181.9378602126,5277257.679149429],[517175.2020675897,5277249.768343674],[517181.67714066914,5277244.230452918],[517189.23641539493,5277253.03281632]]]},"properties":{"ID_SOURCE":"w145197297","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":999}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.04941684846,5276721.261790785],[517237.6867085034,5276716.926264696],[517243.1255623684,5276716.586719156],[517247.90333697974,5276716.289676592],[517248.47951024945,5276724.626868696],[517238.4127826103,5276725.375039259],[517238.04941684846,5276721.261790785]]]},"properties":{"ID_SOURCE":"w145197384","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1000}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4892138693,5276965.732311008],[517300.1147778631,5276970.421300479],[517299.86526424054,5276973.510247198],[517288.5274637775,5276972.476315251],[517289.2268328933,5276964.587462017],[517293.13127948245,5276964.932475722],[517300.4892138693,5276965.732311008]]]},"properties":{"ID_SOURCE":"w145197402","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1001}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517152.1290000574,5277586.898845336],[517156.87776726385,5277580.911280667],[517157.55592941865,5277580.135299593],[517166.02185662545,5277586.93979262],[517160.89530939906,5277593.704215986],[517156.6170303424,5277590.390750008],[517152.1290000574,5277586.898845336]]]},"properties":{"ID_SOURCE":"w145197430","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1002}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.799526758,5277673.598046585],[517236.5150039781,5277670.836466519],[517238.0188873112,5277670.174079485],[517243.01933968544,5277680.636045571],[517239.3943480605,5277682.448005543],[517235.94985057885,5277684.171590167],[517230.799526758,5277673.598046585]]]},"properties":{"ID_SOURCE":"w145197465","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1003}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517195.9297337866,5277758.405886916],[517183.59622382955,5277764.482167706],[517189.1820750364,5277754.718339794],[517195.02991513617,5277757.95866912],[517195.9297337866,5277758.405886916]]]},"properties":{"ID_SOURCE":"w145197471","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1004}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.6207028572,5277598.051017989],[516700.4569985866,5277600.056079828],[516695.12012293184,5277601.796783432],[516692.81316916394,5277594.4549345365],[516704.46331718675,5277590.931873472],[516705.5795588951,5277594.491553363],[516706.6207028572,5277598.051017989]]]},"properties":{"ID_SOURCE":"w145197477","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1005}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.90740549844,5277627.636759148],[517249.39351929695,5277632.975880612],[517247.13899510883,5277633.524900913],[517243.3950619032,5277629.846191687],[517243.32358690724,5277628.623440358],[517247.90740549844,5277627.636759148]]]},"properties":{"ID_SOURCE":"w145197515","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1006}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.20242831856,5277030.4267440755],[517303.8103961898,5277035.982572462],[517303.26188265334,5277043.649593439],[517295.4530957932,5277042.959554712],[517296.318189978,5277029.847619942],[517298.42076373845,5277029.965005702],[517304.20242831856,5277030.4267440755]]]},"properties":{"ID_SOURCE":"w145197524","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1007}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.7855070063,5276737.256604633],[516763.340054562,5276737.691646007],[516764.4040849555,5276738.56159918],[516766.06763064815,5276739.900065578],[516764.74103647866,5276741.530000843],[516763.79125975625,5276742.716462097],[516761.69308301876,5276741.03221205],[516760.50907271187,5276740.095230195],[516762.7855070063,5276737.256604633]]]},"properties":{"ID_SOURCE":"w145197541","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1008}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516398.71353328717,5276852.160967351],[516395.64595459565,5276850.640829004],[516398.44146399066,5276844.758294202],[516401.8168546667,5276846.323756878],[516400.987557888,5276847.432818555],[516398.71353328717,5276852.160967351]]]},"properties":{"ID_SOURCE":"w145197614","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1009}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.5225783435,5277627.248403805],[516657.7868080399,5277631.586477376],[516647.11365200067,5277634.890145277],[516646.10169063206,5277631.61973844],[516644.806969002,5277627.43717614],[516655.5555513221,5277624.022579865],[516656.5225783435,5277627.248403805]]]},"properties":{"ID_SOURCE":"w145197624","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1010}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516437.70996790734,5277274.779926541],[516436.28453248367,5277274.253545288],[516436.8823133031,5277272.665933349],[516438.30023900885,5277273.192293544],[516437.70996790734,5277274.779926541]]]},"properties":{"ID_SOURCE":"w145197666","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1011}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.4847510935,5277583.673046141],[517218.44777502865,5277584.204970552],[517217.6217128813,5277584.202527483],[517217.12496027804,5277574.420742365],[517225.9129166315,5277573.891038037],[517226.19893277495,5277578.748700365],[517226.4847510935,5277583.673046141]]]},"properties":{"ID_SOURCE":"w145197682","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1012}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516303.3444011681,5277144.124067225],[516313.11609516956,5277141.1506617665],[516314.2410718799,5277141.709512615],[516313.48662430514,5277142.929936474],[516303.9402396403,5277145.903972187],[516303.3444011681,5277144.124067225]]]},"properties":{"ID_SOURCE":"w145197685","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1013}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.00279723626,5277408.821199094],[517299.0230549008,5277408.642663084],[517299.7029731745,5277407.288776134],[517299.9279394684,5277407.400584525],[517302.405870972,5277407.519087884],[517303.00279723626,5277408.821199094]]]},"properties":{"ID_SOURCE":"w145197688","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1014}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516488.553915277,5277433.7202963885],[516501.6655935462,5277444.538010367],[516488.4023324022,5277460.726852673],[516475.2906663447,5277449.909168261],[516477.8531293653,5277446.693364192],[516488.553915277,5277433.7202963885]]]},"properties":{"ID_SOURCE":"w145197691","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1015}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.3562025153,5277681.870183982],[517023.53809343197,5277677.478345369],[517026.61446550535,5277673.219567837],[517035.45718591067,5277679.580414108],[517029.12382127834,5277688.230801185],[517028.67422527476,5277687.896066208],[517020.3562025153,5277681.870183982]]]},"properties":{"ID_SOURCE":"w145197695","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1016}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516757.70626089524,5277304.232842191],[516767.69522173895,5277304.039320911],[516767.80125239235,5277319.37692727],[516762.2888192831,5277319.394396514],[516747.7492431721,5277319.430353633],[516747.5674201805,5277304.314809626],[516757.70626089524,5277304.232842191]]]},"properties":{"ID_SOURCE":"w145197731","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"commercial","ZINDEX":0,"ID_BUILD":1017}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517259.3541438978,5277743.478540203],[517258.8324362067,5277742.143313647],[517256.52229591005,5277736.134906062],[517260.7929086393,5277734.380440959],[517265.394335932,5277732.493592102],[517268.67707155395,5277739.7274280405],[517264.2110827069,5277741.525763957],[517259.3541438978,5277743.478540203]]]},"properties":{"ID_SOURCE":"w145197749","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1018}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.76970354444,5277551.530776469],[517218.12374147336,5277541.415130632],[517226.9110900095,5277541.107705671],[517227.3309335036,5277546.421437592],[517227.70723082277,5277551.223796955],[517225.0037393766,5277551.215797633],[517218.76970354444,5277551.530776469]]]},"properties":{"ID_SOURCE":"w145197784","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1019}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.22487834597,5277760.403671911],[516425.6788933333,5277759.182413941],[516425.90574410337,5277758.627354479],[516431.307513518,5277760.420837036],[516430.7014268743,5277762.308504815],[516425.22487834597,5277760.403671911]]]},"properties":{"ID_SOURCE":"w145197795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1020}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.67053687305,5277436.524044345],[517083.02790318645,5277437.323606809],[517084.0789553536,5277437.437830778],[517083.22645798855,5277446.437662605],[517074.8177264459,5277445.635016322],[517075.27521374635,5277440.723973731],[517075.67053687305,5277436.524044345]]]},"properties":{"ID_SOURCE":"w145197802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1021}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517228.6724637682,5276717.344148237],[517218.6053976645,5276718.203491889],[517217.9537444933,5276709.977219691],[517222.7093523363,5276709.557837115],[517227.7955011659,5276709.117208302],[517228.2343115845,5276713.119539407],[517228.6724637682,5276717.344148237]]]},"properties":{"ID_SOURCE":"w145197803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1022}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517310.4424478932,5276826.170246362],[517311.90393475426,5276839.844790589],[517310.3673415558,5276826.170023098],[517310.4424478932,5276826.170246362]]]},"properties":{"ID_SOURCE":"w145197856","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1023}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.2354639504,5277557.601636666],[517129.83852818364,5277556.825431443],[517136.356584154,5277562.06819058],[517130.17575219576,5277569.829797029],[517126.9766412319,5277567.26416619],[517123.65769944526,5277564.587044739],[517129.2354639504,5277557.601636666]]]},"properties":{"ID_SOURCE":"w145197878","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1024}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.20811512624,5277481.529333127],[516689.3149054349,5277478.748275497],[516697.80829968036,5277476.216411311],[516700.4863212017,5277485.115283402],[516692.14217836445,5277487.980991221],[516690.87014563434,5277483.742914728],[516690.20811512624,5277481.529333127]]]},"properties":{"ID_SOURCE":"w145197922","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1025}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.44402513717,5277507.275605005],[516983.29454351787,5277515.163186],[516973.5364122937,5277513.578769837],[516974.1402779822,5277509.946255066],[516974.91246984026,5277505.24728795],[516984.5951929073,5277506.942626253],[516984.44402513717,5277507.275605005]]]},"properties":{"ID_SOURCE":"w145197925","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1026}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516856.236948171,5277486.3421167955],[516854.9371193109,5277494.340426582],[516849.75807943475,5277493.391860189],[516845.02936702775,5277492.533513268],[516846.40556683176,5277484.090862744],[516856.3130113121,5277486.008917313],[516856.236948171,5277486.3421167955]]]},"properties":{"ID_SOURCE":"w145197931","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1027}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517010.4522160435,5277524.689364563],[517011.6794280985,5277515.912896374],[517011.8328704512,5277514.801945506],[517019.4895611541,5277515.935722661],[517017.9586993752,5277525.822700926],[517013.7550690623,5277525.188031369],[517010.4522160435,5277524.689364563]]]},"properties":{"ID_SOURCE":"w145197956","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1028}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.598562462,5277470.247614064],[517054.56431404693,5277471.004466187],[517055.1425036389,5277471.028387892],[517054.5749823992,5277477.61732267],[517053.9763163746,5277484.584042068],[517045.5676361629,5277483.781437856],[517046.598562462,5277470.247614064]]]},"properties":{"ID_SOURCE":"w145197957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1029}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516846.73845716915,5277680.476060629],[516851.17133207485,5277679.7109106155],[516853.63853812456,5277683.496810434],[516840.84983762156,5277691.23959685],[516837.78604365437,5277686.007157752],[516846.73845716915,5277680.476060629]]]},"properties":{"ID_SOURCE":"w145197963","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1030}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517097.262896585,5277653.421428921],[517097.15548805695,5277664.423969185],[517077.03021461214,5277664.253760147],[517077.13758510526,5277653.251219603],[517082.24409024045,5277653.266201008],[517097.262896585,5277653.421428921]]]},"properties":{"ID_SOURCE":"w145198005","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1031}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.2735769887,5277749.1731302375],[517268.4991899578,5277749.0626594825],[517272.7858380244,5277746.963716769],[517273.98009430204,5277749.4123400925],[517269.5425994045,5277751.7331144195],[517268.2735769887,5277749.1731302375]]]},"properties":{"ID_SOURCE":"w145198043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1032}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517260.63113729557,5276755.337461616],[517260.344543638,5276750.668739946],[517269.5847204794,5276750.0292960545],[517270.1585517689,5276759.144462703],[517265.6209563901,5276759.508882837],[517260.8429526967,5276759.894821873],[517260.63113729557,5276755.337461616]]]},"properties":{"ID_SOURCE":"w145198100","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1033}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.05208952754,5277755.271882219],[517230.99153994734,5277760.954639639],[517221.5751908865,5277763.305171748],[517218.97875634657,5277760.141115759],[517225.3782134565,5277754.603048323],[517226.05208952754,5277755.271882219]]]},"properties":{"ID_SOURCE":"w145198118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1034}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516467.78104707506,5277741.852393426],[516462.90336166136,5277740.6160586905],[516465.0755514202,5277731.96440314],[516466.776878814,5277725.178567001],[516467.15675360523,5277723.623682846],[516471.95967214345,5277724.748669588],[516467.78104707506,5277741.852393426]]]},"properties":{"ID_SOURCE":"w145198122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1035}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517049.09251673607,5277434.11221624],[517058.55199572816,5277435.140183624],[517058.1117235049,5277439.306640426],[517057.62509040267,5277443.917521117],[517050.8678651311,5277443.342028119],[517048.16497466015,5277443.111833115],[517049.09251673607,5277434.11221624]]]},"properties":{"ID_SOURCE":"w145198152","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1036}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516314.71602842933,5277159.826629046],[516324.79714656295,5277153.631056283],[516326.6778150262,5277152.524931469],[516330.1175500117,5277157.869287499],[516318.2305604537,5277165.282327454],[516314.71602842933,5277159.826629046]]]},"properties":{"ID_SOURCE":"w145198168","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1037}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516768.6121288577,5277689.697396852],[516768.7469531611,5277695.032501799],[516768.81884699565,5277696.144108185],[516753.5732621676,5277696.54477404],[516753.44162234647,5277690.0982793905],[516768.6121288577,5277689.697396852]]]},"properties":{"ID_SOURCE":"w145198201","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1038}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.55089302716,5276971.812587597],[517214.5462931591,5276973.368531876],[517214.52066530683,5276982.037364343],[517209.2633624945,5276982.021824433],[517209.21814806544,5276971.907964595],[517214.55089302716,5276971.812587597]]]},"properties":{"ID_SOURCE":"w145198231","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1039}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517264.8316908911,5277618.351167357],[517264.31788289215,5277614.348604867],[517272.5840672777,5277612.483744386],[517274.2819302838,5277622.380239104],[517270.7425975534,5277623.147718105],[517265.7153751935,5277624.244206309],[517264.8316908911,5277618.351167357]]]},"properties":{"ID_SOURCE":"w145198240","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1040}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.8205342926,5277679.713908819],[516929.8151957845,5277673.3818245465],[516942.61284830334,5277675.51959992],[516949.48080676084,5277676.662104977],[516948.4864479479,5277682.883046969],[516928.8205342926,5277679.713908819]]]},"properties":{"ID_SOURCE":"w145198250","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1041}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516882.33585802716,5277498.531987958],[516883.7117883284,5277490.200485019],[516883.8645622765,5277489.311808819],[516893.6227578269,5277490.896074467],[516892.1694586032,5277500.005330021],[516887.26016869093,5277499.268678694],[516882.33585802716,5277498.531987958]]]},"properties":{"ID_SOURCE":"w145198257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1042}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516880.52041002514,5277762.039496896],[516881.126642796,5277760.151875611],[516888.7047164715,5277762.396654348],[516888.47653194936,5277763.396251952],[516888.17325328063,5277764.39563172],[516880.52041002514,5277762.039496896]]]},"properties":{"ID_SOURCE":"w145198269","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1043}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68603405985,5277216.274875673],[517311.6909906801,5277214.607791896],[517317.0979558385,5277214.735010451],[517317.15884368366,5277219.514207313],[517311.8269842338,5277219.387211989],[517311.68603405985,5277216.274875673]]]},"properties":{"ID_SOURCE":"w145198282","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1044}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517194.6379432247,5277616.076223713],[517196.72491842194,5277608.691580712],[517206.1262330477,5277611.508971352],[517204.07728758606,5277618.727013513],[517199.2675667814,5277617.379122672],[517194.6379432247,5277616.076223713]]]},"properties":{"ID_SOURCE":"w145198287","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1045}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.6943018657,5277600.412466364],[517131.56845467334,5277606.9546376085],[517131.04114566697,5277607.508785695],[517124.37359732424,5277602.043312268],[517130.02609658544,5277595.169264499],[517133.51754333824,5277597.913581467],[517136.6943018657,5277600.412466364]]]},"properties":{"ID_SOURCE":"w145198288","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1046}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516497.4462509334,5277687.922390335],[516496.9815075305,5277692.922368944],[516493.67795138183,5277692.690728686],[516494.2976056599,5277686.024090221],[516497.52575540286,5277686.366657019],[516497.4462509334,5277687.922390335]]]},"properties":{"ID_SOURCE":"w145198307","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1047}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.92921163514,5277611.790659849],[517158.34637505485,5277617.70293306],[517154.1629849796,5277622.969752894],[517149.9796024498,5277628.236575758],[517142.6368856515,5277622.546812207],[517150.92921163514,5277611.790659849]]]},"properties":{"ID_SOURCE":"w145198309","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1048}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.52229591005,5277736.134906062],[517258.8324362067,5277742.143313647],[517259.3541438978,5277743.478540203],[517249.20420137566,5277747.560636712],[517246.2221535472,5277740.216562557],[517251.1090625661,5277738.286092185],[517256.52229591005,5277736.134906062]]]},"properties":{"ID_SOURCE":"w145198320","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1049}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516365.93990097067,5276837.776194898],[516370.24094784446,5276830.675341124],[516373.7728272958,5276832.685786314],[516375.0550810935,5276833.422914182],[516379.1642120366,5276835.812861056],[516374.86253294686,5276843.135986039],[516365.93990097067,5276837.776194898]]]},"properties":{"ID_SOURCE":"w145198340","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1050}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.1479783252,5277091.334204552],[517308.4518460283,5277091.566304306],[517308.0591527476,5277097.344410737],[517305.0556996871,5277097.113204004],[517304.75528831035,5277097.112311196],[517305.1479783252,5277091.334204552]]]},"properties":{"ID_SOURCE":"w145198351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1051}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.64495246415,5276963.001836839],[517312.2674094054,5276970.21291108],[517312.8910454839,5276962.546115093],[517316.64495246415,5276963.001836839]]]},"properties":{"ID_SOURCE":"w145198355","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1052}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516940.587916735,5277584.278934081],[516941.1996849695,5277580.501956726],[516941.8114539777,5277576.724979456],[516948.1614272399,5277577.843746841],[516955.9225024057,5277579.211138613],[516954.62320348853,5277586.987149617],[516940.587916735,5277584.278934081]]]},"properties":{"ID_SOURCE":"w145198359","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1053}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516742.0360632537,5276738.852896258],[516742.55628572573,5276738.165325393],[516744.20753024495,5276735.947277856],[516744.7638377596,5276738.382838178],[516750.3096415697,5276742.62209828],[516749.6913314309,5276743.4649819955],[516749.17855538684,5276744.1748016],[516742.0360632537,5276738.852896258]]]},"properties":{"ID_SOURCE":"w145198419","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1054}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.21977109084,5277266.704324083],[516438.39552622783,5277268.7025137395],[516432.92712247267,5277266.408711072],[516430.2178254396,5277263.089098466],[516434.0888168294,5277264.58929683],[516439.21977109084,5277266.704324083]]]},"properties":{"ID_SOURCE":"w145198430","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1055}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517028.78603338404,5277495.624300791],[517028.3208194305,5277500.624236567],[517024.5672378405,5277500.168699529],[517024.8003306171,5277497.502023031],[517024.95702590316,5277495.279682827],[517028.78603338404,5277495.624300791]]]},"properties":{"ID_SOURCE":"w145198466","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1056}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.44777502865,5277584.204970552],[517226.4847510935,5277583.673046141],[517226.7527214056,5277589.553142789],[517226.9781984168,5277594.566222096],[517218.94156604086,5277594.987006811],[517218.91353260435,5277594.308970155],[517218.44777502865,5277584.204970552]]]},"properties":{"ID_SOURCE":"w145198496","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1057}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516569.444219957,5276718.098484374],[516569.1460026441,5276717.319657694],[516569.525652173,5276715.875921313],[516570.72895723255,5276715.323646533],[516571.6258224656,5276716.882154985],[516569.444219957,5276718.098484374]]]},"properties":{"ID_SOURCE":"w145198528","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1058}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516320.9921737129,5277144.618066646],[516321.9669446135,5277145.176497971],[516326.6778150262,5277152.524931469],[516324.79714656295,5277153.631056283],[516320.0105495,5277146.504691626],[516320.9921737129,5277144.618066646]]]},"properties":{"ID_SOURCE":"w145198533","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1059}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517206.6812177112,5277652.410118041],[517209.0318520954,5277644.748408378],[517218.06473892834,5277647.698097697],[517220.36046598817,5277648.4495256655],[517217.93472249206,5277656.111008729],[517211.25745413237,5277653.979604906],[517206.6812177112,5277652.410118041]]]},"properties":{"ID_SOURCE":"w145198537","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1060}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516419.65975057654,5277273.3286337815],[516417.619397477,5277272.478217547],[516420.7201475874,5277264.818314036],[516425.02609687555,5277266.542012722],[516421.93285204144,5277274.201935156],[516419.65975057654,5277273.3286337815]]]},"properties":{"ID_SOURCE":"w145198623","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1061}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.85725529277,5276929.777185755],[517149.4091715445,5276929.498373813],[517149.43071833707,5276934.933175176],[517149.49784583616,5276950.392924101],[517138.4574502347,5276950.360419199],[517130.8718722981,5276950.3380980315],[517130.85725529277,5276929.777185755]]]},"properties":{"ID_SOURCE":"w145198655","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1062}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.594872084,5277674.907166976],[516992.895589884,5277678.622475713],[516989.7137552253,5277683.003217119],[516982.2194649065,5277677.757773318],[516988.1012251639,5277669.439437679],[516988.7003671664,5277669.996885787],[516995.594872084,5277674.907166976]]]},"properties":{"ID_SOURCE":"w145198663","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1063}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517260.63113729557,5276755.337461616],[517256.6118783907,5276755.670083226],[517252.8180075433,5276755.981147388],[517252.24414876866,5276746.86598256],[517260.0566318601,5276746.444573673],[517260.344543638,5276750.668739946],[517260.63113729557,5276755.337461616]]]},"properties":{"ID_SOURCE":"w145198696","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1064}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.29001413047,5277409.2963406835],[517309.2352066186,5277409.10646048],[517309.9898625848,5277407.875050837],[517312.6176608958,5277408.105144051],[517312.5422315854,5277408.216059689],[517313.29001413047,5277409.2963406835]]]},"properties":{"ID_SOURCE":"w145198701","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1065}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.0188873112,5277670.174079485],[517236.5150039781,5277670.836466519],[517230.799526758,5277673.598046585],[517225.7239507906,5277663.135868979],[517228.7471659696,5277661.666653488],[517233.0187458184,5277659.60097891],[517238.0188873112,5277670.174079485]]]},"properties":{"ID_SOURCE":"w145198709","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1066}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517230.99153994734,5277760.954639639],[517226.05208952754,5277755.271882219],[517230.1477155177,5277751.738637133],[517234.4089490773,5277748.07251721],[517239.4975989311,5277754.089143456],[517231.2158358977,5277761.288723498],[517230.99153994734,5277760.954639639]]]},"properties":{"ID_SOURCE":"w145198727","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1067}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.9804047673,5277139.4038074305],[517286.9645665943,5277144.738474908],[517281.4086508811,5277144.166283085],[517281.7993357643,5277139.0550079355],[517286.9053024706,5277139.403584457],[517286.9804047673,5277139.4038074305]]]},"properties":{"ID_SOURCE":"w145198752","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1068}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516795.96685196826,5277396.478042028],[516795.974226132,5277393.921846064],[516795.91259292787,5277389.253793339],[516795.9199670508,5277386.697597406],[516795.8560893919,5277382.807517402],[516806.2207336119,5277382.504006795],[516806.08817971125,5277376.390930879],[516809.91824026156,5277376.401987762],[516812.39683566446,5277376.298004606],[516816.6023924247,5277376.310150188],[516819.3062856879,5277376.206820714],[516826.6663313575,5277376.116947264],[516829.36990366125,5277376.124761416],[516833.5006826781,5277376.025563175],[516836.0540565685,5277376.032946171],[516843.6394005285,5277375.943745667],[516846.41839374206,5277375.840646045],[516850.3986531884,5277375.852164152],[516852.87692793837,5277375.859337179],[516856.9326083959,5277375.759938181],[516856.9781039489,5277385.98493918],[516849.4678718758,5277386.074339614],[516846.23861044773,5277386.06499503],[516831.9694595723,5277386.1348653985],[516828.8152973029,5277386.125747588],[516814.6209251395,5277386.307016496],[516811.2414656909,5277386.297257548],[516805.6838115704,5277386.392352721],[516805.82695209485,5277388.837843242],[516805.8176487976,5277392.060872907],[516805.98455877596,5277412.288813229],[516806.0509956642,5277415.289781872],[516806.1594873648,5277429.738280173],[516806.22560307465,5277432.850387863],[516806.46728671837,5277453.189685249],[516806.45926616655,5277455.968159376],[516806.4701151141,5277457.413009286],[516806.51254834945,5277463.525825855],[516796.599919438,5277463.386079696],[516796.5373260273,5277459.051443348],[516796.5443799553,5277456.606386101],[516796.4089325517,5277451.4935603915],[516796.416307038,5277448.937364209],[516796.3023412614,5277436.37822806],[516796.3090744112,5277434.04430986],[516796.3241438367,5277428.820778686],[516796.25609902584,5277426.3755049],[516796.20280279365,5277418.817838991],[516796.2095358689,5277416.483920857],[516796.07376632886,5277411.48223444],[516796.1552775183,5277409.259671939],[516795.96685196826,5277396.478042028]]]},"properties":{"ID_SOURCE":"w145198754","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1069}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516975.8024655923,5277457.570860223],[516983.6130010012,5277457.482499225],[516986.1663393261,5277457.48994814],[516990.8224268599,5277457.503534341],[516993.1504706268,5277457.5103288395],[516995.55361257825,5277457.5173434885],[516995.4895450287,5277453.738399509],[516995.4976557851,5277450.959925434],[516995.4368323774,5277446.069591873],[516995.4446186602,5277443.402256795],[516995.39028361184,5277436.289144086],[516995.3974209982,5277433.8440869665],[516995.4123446139,5277428.731694843],[516995.41948199185,5277426.286637752],[516995.30562019657,5277413.838636095],[516995.3127574956,5277411.393579065],[516995.3276809325,5277406.281187121],[516995.335142646,5277403.724991164],[516995.27074965026,5277400.057186459],[517005.2589069572,5277400.0863510035],[517005.31355526915,5277407.088324472],[517005.3038168743,5277410.422493128],[517005.31951109186,5277430.761141661],[517005.3113956983,5277433.539615642],[517005.3452677645,5277447.654483011],[517005.41095211543,5277450.877732269],[517005.4578083502,5277460.547041437],[516995.6196266261,5277460.629453708],[516995.6752586634,5277467.298010833],[516988.11259217444,5277467.375964834],[516985.303859935,5277467.389997932],[516970.97521519114,5277467.325985126],[516967.82854175055,5277467.339041585],[516953.5899498634,5277467.297562002],[516950.4358961197,5277467.266150402],[516936.43716531934,5277467.3810069775],[516932.88512419834,5277467.337333161],[516927.48557387304,5277467.321631608],[516927.58910779457,5277457.541621001],[516931.7946060732,5277457.553849934],[516934.3479443126,5277457.561276126],[516938.62854077114,5277457.573728427],[516941.33207537653,5277457.581594661],[516948.84189372056,5277457.603451896],[516951.3204573603,5277457.499527947],[516956.20183937385,5277457.513742424],[516958.7551776576,5277457.521179318],[516965.9646033933,5277457.5421836525],[516968.893432598,5277457.550719215],[516973.0238327579,5277457.562759047],[516975.8024655923,5277457.570860223]]]},"properties":{"ID_SOURCE":"w145198761","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1070}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516444.3315919081,5277323.455641031],[516442.83524355944,5277321.4508980205],[516444.8676501007,5277319.789540621],[516447.7258434793,5277318.241656498],[516448.399545355,5277319.021538524],[516451.7095960551,5277317.030373559],[516455.54346441495,5277315.707529894],[516458.6241351962,5277315.160538381],[516464.25757844344,5277314.843046264],[516468.91189286974,5277315.52304847],[516472.5132341596,5277316.755774417],[516475.6633451306,5277318.20950539],[516477.9116260808,5277319.882965389],[516478.6645128423,5277319.218257187],[516483.38825853734,5277321.898984551],[516480.52376562916,5277325.669630109],[516481.94531472446,5277327.5630313065],[516477.35321563715,5277331.439927978],[516474.58552977786,5277327.542201708],[516473.0882495321,5277325.870867725],[516471.0646403859,5277324.420324818],[516468.81510178815,5277323.191423235],[516464.1611077654,5277322.400282134],[516459.72958455107,5277322.610032187],[516457.3251308673,5277323.047794618],[516455.9714478861,5277323.710807467],[516452.8106570585,5277326.0358112985],[516449.79692841467,5277329.472630669],[516448.8174909188,5277330.581261884],[516444.3231167041,5277326.456392571],[516445.6045231288,5277324.792914377],[516444.3315919081,5277323.455641031]]]},"properties":{"ID_SOURCE":"w145198767","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1071}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517253.71572939714,5277286.932264318],[517265.970993213,5277287.346469401],[517265.63424418634,5277297.070212888],[517271.36386684765,5277297.26503016],[517271.5531145891,5277291.697482023],[517273.3628677684,5277291.758420723],[517273.4866627987,5277288.002259033],[517281.76196609804,5277288.282437341],[517281.70444768254,5277289.949365278],[517287.2913862273,5277290.14377468],[517287.19271927245,5277293.022005442],[517289.6257715266,5277293.095913856],[517289.4937300776,5277297.09655861],[517290.8078526864,5277297.144917004],[517290.7173872094,5277299.789778283],[517290.6107465962,5277302.823581238],[517284.7910097163,5277302.62847747],[517284.57773484517,5277308.696083625],[517282.587779741,5277308.623492515],[517282.47228091693,5277312.112942996],[517274.354688707,5277311.844345386],[517274.40423320944,5277310.332989555],[517268.9600038604,5277310.139015679],[517269.07516497944,5277306.760703896],[517267.0852090499,5277306.688118091],[517267.2165757329,5277302.909750673],[517265.36927587,5277302.848702527],[517265.4182578338,5277301.526282829],[517263.00773891475,5277301.45245132],[517262.97496381024,5277302.374815405],[517262.00906827365,5277303.927910415],[517261.1862612081,5277302.814071922],[517260.50838265754,5277303.478901765],[517259.61179287283,5277301.920285125],[517258.1809358969,5277303.249722645],[517257.35911624494,5277301.802467893],[517255.70197105524,5277303.464655042],[517254.58106746234,5277301.571954662],[517253.37551212276,5277302.902061041],[517252.25361971743,5277301.3427779125],[517250.89720590226,5277302.894717617],[517249.99896709557,5277301.891797135],[517250.54409618955,5277295.336157581],[517250.02004055097,5277294.77890539],[517251.22526749165,5277293.559937258],[517250.17715591914,5277292.445432805],[517251.1557651793,5277291.670352894],[517251.45715441153,5277291.337826165],[517250.1837414244,5277290.222654161],[517251.9904308959,5277288.783188382],[517250.64257562894,5277287.445515896],[517252.74999702035,5277285.895801468],[517252.9752982436,5277285.896469079],[517253.71572939714,5277286.932264318]]]},"properties":{"ID_SOURCE":"w145198772","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1072}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.5810001403,5277528.995463378],[517286.63751346356,5277528.070200271],[517284.9577295636,5277529.78788214],[517278.07289532485,5277536.824832636],[517275.82066322037,5277539.118746039],[517276.5395180197,5277539.821060907],[517277.99965728074,5277541.259099455],[517278.1263328721,5277541.592895262],[517278.0505760943,5277541.814950341],[517277.9744894904,5277542.148144402],[517277.8236356259,5277542.369976617],[517277.6727817719,5277542.591808835],[517277.29597700876,5277543.035250427],[517276.9945992006,5277543.367775921],[517276.7085376706,5277543.600320924],[517276.32478399936,5277543.8548040325],[517275.98658329906,5277543.942712411],[517275.5884038816,5277543.997100842],[517275.3180543947,5277543.99629863],[517273.1016107561,5277541.822493115],[517267.50488664134,5277547.540712478],[517263.6710246765,5277543.783926254],[517264.0476306101,5277543.407167169],[517260.88018410164,5277540.308084745],[517261.656057049,5277539.510177449],[517265.21141942375,5277535.886443514],[517264.48508601607,5277535.17299389],[517269.77296408534,5277529.776161401],[517270.5666872441,5277530.556495558],[517274.20493145246,5277526.844101012],[517278.31020214973,5277522.655192957],[517277.50896920095,5277521.87483547],[517282.8270093339,5277516.444762345],[517283.62820933363,5277517.236234456],[517286.9275085393,5277513.867375482],[517287.78622680577,5277512.991919687],[517291.2082791726,5277516.336280679],[517291.584888658,5277515.959523383],[517295.2315689725,5277519.526833844],[517289.53687819623,5277525.34476699],[517291.813234844,5277527.574326631],[517291.8943564318,5277528.074697364],[517291.6824335717,5277528.629767697],[517291.38793676154,5277529.173478796],[517291.1391585311,5277529.495045788],[517290.7555353284,5277529.705072355],[517290.356958714,5277529.892826549],[517290.0263327246,5277529.958528616],[517289.69580576086,5277529.990889011],[517289.2451891935,5277530.000664807],[517288.8998738112,5277529.955183364],[517288.6824547941,5277529.832283772],[517288.33766744303,5277529.608980005],[517287.95552944543,5277529.318881376],[517287.5810001403,5277528.995463378]]]},"properties":{"ID_SOURCE":"w145198776","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1073}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8020198006,5277219.555926856],[517299.7346895066,5277219.6846907595],[517299.6638810031,5277218.239661671],[517305.7470848416,5277218.257739056],[517305.67594748177,5277216.923848815],[517305.6779294405,5277216.257015304],[517311.68603405985,5277216.274875673],[517311.8269842338,5277219.387211989],[517317.15884368366,5277219.514207313],[517317.14363855065,5277224.626597609],[517312.1748206831,5277253.952756548],[517312.1000503148,5277253.841394322],[517312.2677661277,5277247.951477924],[517310.5404454466,5277247.946342236],[517310.70948150445,5277241.611870156],[517310.80077339703,5277236.166286236],[517310.89305669884,5277230.3872856],[517310.90197824576,5277227.386534737],[517305.27005155873,5277227.147513353],[517305.1866924229,5277229.925763161],[517299.103830978,5277229.796547409],[517299.1743092522,5277231.352715437],[517275.89494281186,5277230.61675739],[517275.7351776161,5277233.839340454],[517275.4172964689,5277239.728812033],[517275.2492880214,5277245.729868251],[517275.09941591375,5277245.618283683],[517270.14374361694,5277245.270162741],[517263.235116873,5277245.027395216],[517263.5523264002,5277239.360200797],[517261.9007632028,5277239.133024376],[517261.90142218943,5277238.91074653],[517262.0690875191,5277233.020828944],[517262.2353008839,5277230.1539123375],[517262.3853079628,5277227.687051336],[517263.1722367564,5277215.575135687],[517263.33924480824,5277209.907496184],[517264.46576563176,5277209.910836336],[517265.7424892333,5277209.914622106],[517278.2080004745,5277210.396159421],[517278.20437265426,5277211.618687517],[517277.8861581888,5277217.619297683],[517277.8097377198,5277218.063630502],[517276.3077120479,5277218.059173567],[517276.3014464867,5277220.170813034],[517277.95334432827,5277220.286854604],[517277.9477377607,5277222.176216242],[517281.62736818875,5277222.298276383],[517281.5582045634,5277220.297552924],[517281.56051362946,5277219.519580488],[517281.8619083071,5277219.18705536],[517288.0195523988,5277219.427614972],[517293.8020198006,5277219.555926856]]]},"properties":{"ID_SOURCE":"w145198792","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1074}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.0722881948,5277078.6994201355],[517279.72377498174,5277079.233365161],[517278.9468784715,5277090.478414992],[517272.26403647126,5277090.014028072],[517272.4837864961,5277086.824965532],[517271.5151559016,5277086.755408363],[517271.6642140699,5277084.610850938],[517272.0722881948,5277078.6994201355]]]},"properties":{"ID_SOURCE":"w145198805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1075}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.04941684846,5276721.261790785],[517229.18407889927,5276722.124673508],[517228.6724637682,5276717.344148237],[517228.2343115845,5276713.119539407],[517232.47898728156,5276712.7653371645],[517237.3246575328,5276712.368460998],[517237.6867085034,5276716.926264696],[517238.04941684846,5276721.261790785]]]},"properties":{"ID_SOURCE":"w145198829","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1076}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516388.0159817567,5276759.595907595],[516386.78580745275,5276769.706161083],[516372.29421101866,5276768.220583519],[516373.6029050229,5276756.888010903],[516376.90637177246,5276757.3418591395],[516376.7530318722,5276758.452825169],[516379.9517225836,5276758.773012809],[516388.0159817567,5276759.595907595]]]},"properties":{"ID_SOURCE":"w145198855","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1077}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516707.2041310714,5277525.589477363],[516697.88409707794,5277528.341236534],[516695.85405287094,5277521.322487316],[516694.09174130316,5277515.215853709],[516701.83315344923,5277513.01525898],[516704.43414080795,5277522.580751888],[516706.23807149095,5277522.030228563],[516707.2041310714,5277525.589477363]]]},"properties":{"ID_SOURCE":"w145198859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1078}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.7507537666,5277625.46647911],[516736.4114120963,5277624.265576548],[516741.1694968629,5277622.712184226],[516743.5505152978,5277630.387685748],[516731.599080129,5277634.243222365],[516728.9205378256,5277625.566611593],[516732.3781485362,5277624.465148969],[516732.7507537666,5277625.46647911]]]},"properties":{"ID_SOURCE":"w145198861","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1079}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.30244434276,5277349.331020035],[516536.0125784041,5277347.854876917],[516542.1998948657,5277350.8287728885],[516541.45962505013,5277352.338171601],[516535.30244434276,5277349.331020035]]]},"properties":{"ID_SOURCE":"w145198914","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1080}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.83120904403,5277140.802400232],[517316.56476083334,5277141.492233982],[517315.70558471355,5277152.603667785],[517308.6473060833,5277152.138122174],[517308.7316588048,5277149.026456032],[517308.20594357885,5277149.024893284],[517308.51083461946,5277144.991421646],[517308.83120904403,5277140.802400232]]]},"properties":{"ID_SOURCE":"w145198926","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1081}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516441.41824926453,5276865.773750677],[516442.0979671754,5276864.441992847],[516444.9485357922,5276865.6725795865],[516440.6402060732,5276875.329572671],[516429.689201371,5276870.186236119],[516433.392278691,5276862.083483495],[516437.6978014937,5276864.062809163],[516441.41824926453,5276865.773750677]]]},"properties":{"ID_SOURCE":"w145198952","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1082}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.4361986754,5276735.114747594],[516432.6521126781,5276738.449548707],[516421.19606512896,5276739.184097037],[516420.26040760643,5276724.733294286],[516430.3342521982,5276724.083755826],[516430.80178691895,5276731.4091829285],[516431.0464593106,5276735.199737985],[516432.4361986754,5276735.114747594]]]},"properties":{"ID_SOURCE":"w145198991","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1083}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.6060773505,5276928.914093929],[517255.9100391946,5276929.146163577],[517255.9834974633,5276929.70208049],[517263.2667057507,5276930.390507137],[517262.9239870775,5276934.523893388],[517262.6437909012,5276937.83503016],[517251.9064247215,5276936.914089875],[517252.6060773505,5276928.914093929]]]},"properties":{"ID_SOURCE":"w145199005","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1084}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516847.04784737,5277573.5603475105],[516837.96211284737,5277573.200642968],[516836.7769578576,5277567.529079743],[516842.55265655194,5277569.879724056],[516844.95639510837,5277569.664398686],[516847.5119354086,5277568.893814017],[516847.04784737,5277573.5603475105]]]},"properties":{"ID_SOURCE":"w145199019","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1085}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516517.87437857996,5276866.545821611],[516516.29841780796,5276866.0967924455],[516514.1004930917,5276873.092363711],[516504.7210995466,5276869.953858616],[516505.7983120077,5276866.178160099],[516507.60378830886,5276859.848311828],[516518.8595815456,5276863.436703045],[516517.87437857996,5276866.545821611]]]},"properties":{"ID_SOURCE":"w145199024","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1086}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516813.8172490181,5277560.572051392],[516816.03580577805,5277572.470429654],[516814.98381001706,5277572.689670962],[516812.879818738,5277573.128154147],[516813.25016676163,5277574.907462288],[516815.2790928568,5277574.457648437],[516818.5277698792,5277593.7053518165],[516809.73731661006,5277595.124782849],[516809.5155572343,5277593.901603477],[516806.0599348033,5277594.302844678],[516802.66121607705,5277574.988031464],[516801.6089646943,5277575.296186379],[516799.5411504937,5277563.198196851],[516813.8172490181,5277560.572051392]]]},"properties":{"ID_SOURCE":"w145199036","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1087}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516315.57610974263,5276718.826502036],[516315.1912301204,5276722.159615141],[516304.0777872128,5276721.239372078],[516305.17099253146,5276706.349711508],[516315.30868450925,5276707.044943266],[516314.785628106,5276714.123077524],[516314.44980570575,5276718.712206853],[516315.57610974263,5276718.826502036]]]},"properties":{"ID_SOURCE":"w145199043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1088}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.0120262327,5276815.816218573],[516460.1773733125,5276818.814632372],[516449.37115493056,5276815.561044628],[516451.1070425362,5276809.920049414],[516453.54032015026,5276802.013774434],[516462.9955855617,5276804.930131058],[516459.81126551563,5276815.479405185],[516461.0120262327,5276815.816218573]]]},"properties":{"ID_SOURCE":"w145199057","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1089}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.3548190538,5277722.977347649],[517016.63143001386,5277722.98107907],[517016.6720892632,5277734.762033749],[517013.81816925673,5277734.864832293],[517013.8246654388,5277732.6420520535],[517015.4019776696,5277732.535522075],[517015.3548190538,5277722.977347649]]]},"properties":{"ID_SOURCE":"w145199086","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1090}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.25642012747,5277390.035091541],[516641.2040805077,5277390.365503206],[516643.36257283395,5277397.1512048],[516635.9962065575,5277399.464089047],[516634.37305314565,5277394.558183361],[516632.49671915994,5277388.895803838],[516641.0653181156,5277386.364071518],[516642.25642012747,5277390.035091541]]]},"properties":{"ID_SOURCE":"w145199089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1091}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517083.6209491524,5277537.217911613],[517083.7768180354,5277535.284534146],[517084.5651427995,5277535.3535314035],[517084.51816027303,5277536.009119142],[517089.0079275006,5277536.377943924],[517088.87677173625,5277537.566756242],[517084.07185824646,5277537.108094824],[517083.6209491524,5277537.217911613]]]},"properties":{"ID_SOURCE":"w145199105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1092}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.3047489782,5277631.085358018],[517090.352082201,5277628.505787879],[517092.73306788615,5277620.688525489],[517094.4467520017,5277615.069875689],[517100.59908714844,5277616.977323107],[517103.3750319928,5277617.874597277],[517099.13015157694,5277631.310062161],[517098.3047489782,5277631.085358018]]]},"properties":{"ID_SOURCE":"w145199118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1093}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516395.1962089976,5276716.9384642085],[516390.7871916845,5276711.658030072],[516388.68373153027,5276709.140352355],[516387.7805611541,5276709.804648988],[516385.6096270558,5276707.242326631],[516394.3421613572,5276700.1539621595],[516403.1000502829,5276710.736897519],[516395.1962089976,5276716.9384642085]]]},"properties":{"ID_SOURCE":"w145199120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1094}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.3900979841,5277269.19752716],[516448.81370690383,5277268.12066759],[516450.2239341949,5277268.713692828],[516449.8078351132,5277269.790573517],[516449.4899321151,5277270.66767997],[516448.0120205106,5277270.107805649],[516448.3900979841,5277269.19752716]]]},"properties":{"ID_SOURCE":"w145199125","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1095}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516397.5495825426,5276814.748052596],[516393.843453552,5276813.270573248],[516387.7215832955,5276810.830495691],[516391.2024476307,5276801.615694405],[516404.1824317789,5276806.431253263],[516400.0972550886,5276816.866882117],[516397.1709207943,5276815.858383732],[516397.5495825426,5276814.748052596]]]},"properties":{"ID_SOURCE":"w145199128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1096}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517064.16151769436,5277161.085653414],[517073.32461489085,5277160.890234871],[517074.9020831122,5277160.783720737],[517075.4215547496,5277214.132382513],[517056.4199420832,5277214.410108076],[517055.974747306,5277161.283946206],[517064.16151769436,5277161.085653414]]]},"properties":{"ID_SOURCE":"w145199129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1097}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517052.2106550375,5277497.693381194],[517051.7847276643,5277502.093274695],[517051.43624209,5277505.693187603],[517041.0753803781,5277504.7737325495],[517041.47429078986,5277496.772825716],[517044.7776126296,5277497.115915505],[517051.30980850407,5277497.579602831],[517052.2106550375,5277497.693381194]]]},"properties":{"ID_SOURCE":"w145199142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1098}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.62179970986,5277685.440208232],[517138.62212689593,5277685.32906923],[517128.2596361006,5277685.076291969],[517128.521218064,5277672.740525662],[517140.6112524874,5277672.887249405],[517140.4240857207,5277685.445514334],[517138.62179970986,5277685.440208232]]]},"properties":{"ID_SOURCE":"w145199160","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1099}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.1399599993,5277584.007911696],[517039.9611442825,5277577.567125485],[517048.36480787414,5277580.036806809],[517046.4540198661,5277586.299504196],[517045.104416194,5277590.696694272],[517034.52556964697,5277587.331533109],[517035.73914669896,5277583.222906441],[517038.1399599993,5277584.007911696]]]},"properties":{"ID_SOURCE":"w145199169","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1100}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516513.09519844904,5277280.528004139],[516517.1458937331,5277282.206591331],[516518.9464122128,5277282.878538367],[516518.2657788424,5277284.543704842],[516516.60158964456,5277288.76229739],[516510.9002664704,5277286.523330353],[516513.09519844904,5277280.528004139]]]},"properties":{"ID_SOURCE":"w145199220","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1101}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.92417471454,5277529.437573266],[517038.9303636166,5277519.215644675],[517043.50967772846,5277519.784748219],[517043.3555787487,5277521.117976226],[517050.0366405903,5277522.026657791],[517048.9592409092,5277530.91469692],[517043.5618315636,5277530.187598127],[517037.92417471454,5277529.437573266]]]},"properties":{"ID_SOURCE":"w145199224","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1102}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516865.7419256131,5277627.183916397],[516859.8847599863,5277627.055811127],[516859.8186760143,5277623.943701801],[516857.5661167781,5277623.826038912],[516857.67403805,5277612.490079046],[516862.9005392137,5277612.571899287],[516865.93429616815,5277612.625143362],[516865.7419256131,5277627.183916397]]]},"properties":{"ID_SOURCE":"w145199243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1103}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.6725980245,5277648.964976726],[517059.2697021393,5277651.531735],[517059.8917261743,5277651.967003548],[517060.5437232487,5277652.424587992],[517058.130892278,5277655.751716249],[517053.2597684313,5277652.292106977],[517055.6725980245,5277648.964976726]]]},"properties":{"ID_SOURCE":"w145199261","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1104}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.56727119745,5276861.410864172],[517316.08303402824,5276861.672245793],[517314.11052624724,5276855.522067973],[517313.56727119745,5276861.410864172]]]},"properties":{"ID_SOURCE":"w145199267","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1105}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.08303402824,5276861.672245793],[517316.7151083504,5276863.643021023],[517316.87093862,5276861.754107158],[517316.08303402824,5276861.672245793]]]},"properties":{"ID_SOURCE":"w145199267","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1106}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.55961742136,5276833.147087084],[516456.90853687277,5276832.69786177],[516454.63556519826,5276839.6932427175],[516445.2554584294,5276836.777111489],[516446.8247209985,5276831.624659187],[516448.439426805,5276826.338968002],[516459.54510831233,5276829.926819849],[516458.55961742136,5276833.147087084]]]},"properties":{"ID_SOURCE":"w145199282","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1107}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.0974204299,5277687.200262669],[516668.8131746561,5277688.521673278],[516667.9206237235,5277685.518339965],[516661.68199376215,5277687.50100008],[516658.9995562189,5277680.158089009],[516664.00580257195,5277678.460862074],[516669.748686388,5277676.521240855],[516673.0974204299,5277687.200262669]]]},"properties":{"ID_SOURCE":"w145199295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1108}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517099.34014271223,5277713.220828837],[517117.1363247266,5277713.717687192],[517117.0416231547,5277720.385806872],[517117.0324733625,5277723.497699123],[517116.9485556233,5277726.498231579],[517099.0015703528,5277726.223210577],[517099.34014271223,5277713.220828837]]]},"properties":{"ID_SOURCE":"w145199323","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1109}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.18774175027,5277764.645070088],[517274.54622188455,5277761.083719093],[517272.9778157622,5277758.18942548],[517280.5738883456,5277754.322068908],[517284.0094209218,5277760.667247523],[517279.0456109926,5277763.208732012],[517276.18774175027,5277764.645070088]]]},"properties":{"ID_SOURCE":"w145199334","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1110}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516418.09365731716,5276827.253589403],[516410.53133633314,5276824.253727934],[516407.36535613413,5276823.000041615],[516406.7610608908,5276824.220876153],[516403.6100385303,5276822.989461969],[516407.8454302954,5276812.554258718],[516421.80019286467,5276817.928302491],[516418.09365731716,5276827.253589403]]]},"properties":{"ID_SOURCE":"w145199366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1111}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.831487615,5277293.82924783],[516772.5136142775,5277273.823157702],[516787.90986760077,5277273.645250027],[516788.09394418047,5277313.989550406],[516779.63017070084,5277313.965152176],[516775.627339054,5277313.953617635],[516775.6105185767,5277293.726114336],[516772.831487615,5277293.82924783]]]},"properties":{"ID_SOURCE":"w145199382","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1112}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.490244011,5276754.180993914],[516363.2393288448,5276756.42543583],[516368.26310862147,5276759.429213085],[516363.05635523173,5276768.083478931],[516351.4353575471,5276760.71561473],[516357.3205629337,5276751.174126531],[516360.2450632124,5276752.849437776],[516359.490244011,5276754.180993914]]]},"properties":{"ID_SOURCE":"w145199406","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1113}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.15998487856,5276835.544942617],[516486.6031866017,5276823.001559063],[516495.75482801854,5276827.028507132],[516492.8374993587,5276833.45523536],[516491.37127959623,5276836.685249599],[516492.4966131985,5276837.132995665],[516491.136518817,5276840.018777314],[516481.15998487856,5276835.544942617]]]},"properties":{"ID_SOURCE":"w145199410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1114}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517162.3005867164,5277626.494645106],[517163.2807666829,5277625.163855217],[517162.38125250686,5277624.605503624],[517163.4424266258,5277621.274433316],[517166.58990766184,5277623.50651254],[517163.64936600055,5277627.498881018],[517162.3005867164,5277626.494645106]]]},"properties":{"ID_SOURCE":"w145199417","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1115}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.30045372434,5277496.507053572],[516566.74324686517,5277495.769366962],[516570.83964489703,5277494.525144275],[516573.146792844,5277501.866943221],[516562.6236435509,5277505.171193343],[516560.01830594044,5277497.050571295],[516564.07737411035,5277495.728439768],[516564.30045372434,5277496.507053572]]]},"properties":{"ID_SOURCE":"w145199423","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1116}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.1088877172,5277599.814312529],[516736.50042925775,5277601.13761677],[516736.05336572556,5277599.913792564],[516732.8286022651,5277600.993694298],[516727.7847848193,5277602.668526363],[516725.10398694786,5277594.769890758],[516737.1305950232,5277590.914556757],[516740.1088877172,5277599.814312529]]]},"properties":{"ID_SOURCE":"w145199470","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1117}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516519.2186466431,5276842.765726808],[516527.6239056912,5276845.12351173],[516524.3618608239,5276856.561649183],[516514.45607390796,5276853.643914397],[516515.2150135666,5276850.867572869],[516516.8663997754,5276851.20567589],[516517.5720731299,5276848.673691057],[516519.2186466431,5276842.765726808]]]},"properties":{"ID_SOURCE":"w145199501","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1118}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516365.9803641554,5276796.654606386],[516371.41022994556,5276788.778948236],[516383.25427762134,5276796.925458705],[516377.14500580257,5276806.021732263],[516374.3710628611,5276804.235695841],[516375.1255665534,5276803.015280389],[516371.85729261715,5276800.738840313],[516365.9803641554,5276796.654606386]]]},"properties":{"ID_SOURCE":"w145199508","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1119}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517131.56845467334,5277606.9546376085],[517136.6943018657,5277600.412466364],[517140.28294216463,5277603.301555473],[517143.8865327003,5277606.212918843],[517138.9869525679,5277612.422330082],[517136.06539792626,5277609.9686509995],[517135.83912787656,5277610.301404848],[517131.56845467334,5277606.9546376085]]]},"properties":{"ID_SOURCE":"w145199530","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1120}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516457.12561083207,5276782.463311396],[516467.1905608224,5276782.269484921],[516467.3725103388,5276797.60728369],[516455.73097471934,5276797.574374829],[516455.66623202333,5276793.90658043],[516457.2437874173,5276793.799898814],[516457.20280259114,5276789.698726571],[516457.12561083207,5276782.463311396]]]},"properties":{"ID_SOURCE":"w145199542","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1121}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.7177350956,5277094.376954088],[517018.4107492735,5277165.619627101],[516968.4656840355,5277166.251840211],[516967.54836966057,5277094.452823486],[516979.03943255765,5277094.37518008],[516979.11323910276,5277094.819954682],[517017.7177350956,5277094.376954088]]]},"properties":{"ID_SOURCE":"w145199594","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1122}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.38961499673,5277504.140748549],[517070.2318445564,5277503.636607871],[517070.8278235259,5277497.592343345],[517071.268785145,5277493.192495276],[517080.06025114213,5277494.06294363],[517079.02329491527,5277504.507054715],[517076.14787244523,5277504.220770451],[517075.38961499673,5277504.140748549]]]},"properties":{"ID_SOURCE":"w145199628","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1123}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516460.22508897324,5277758.279730824],[516453.60746421723,5277764.218122583],[516455.34710162744,5277757.154541378],[516455.8023798273,5277755.488729661],[516460.6049599237,5277756.724846171],[516460.22508897324,5277758.279730824]]]},"properties":{"ID_SOURCE":"w145199669","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1124}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516641.99311113067,5277560.967472024],[516642.9700054819,5277560.747984792],[516641.80945500743,5277556.910340945],[516640.21747027885,5277551.626645617],[516649.2367335291,5277548.985074123],[516653.7747313046,5277564.001939129],[516644.0026150976,5277567.308190554],[516641.99311113067,5277560.967472024]]]},"properties":{"ID_SOURCE":"w145199672","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1125}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516950.0416367462,5277097.069191187],[516951.0485045119,5277163.978311386],[516933.39889491827,5277164.149235542],[516932.4627257536,5277098.685142985],[516946.50792204705,5277098.3925837],[516946.51148009725,5277097.170055785],[516950.0416367462,5277097.069191187]]]},"properties":{"ID_SOURCE":"w145199681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1126}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517231.70864058106,5276833.494238675],[517231.7178490799,5276830.382350814],[517237.05105308595,5276830.175855278],[517237.46319948876,5276843.180434991],[517222.5306241548,5276843.636380942],[517217.5581066838,5276843.788386236],[517217.21149281523,5276834.007056805],[517231.70864058106,5276833.494238675]]]},"properties":{"ID_SOURCE":"w145199683","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1127}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516350.14115640917,5276740.151132215],[516350.2065905175,5276743.596647285],[516338.86475332006,5276743.7870935155],[516338.52819376724,5276729.8936843565],[516348.29279937886,5276729.6988093],[516348.538234479,5276735.912208629],[516348.71380343806,5276740.25826458],[516350.14115640917,5276740.151132215]]]},"properties":{"ID_SOURCE":"w145199695","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1128}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516788.67202937545,5277738.545643171],[516788.4225539184,5277731.309713717],[516790.3452653897,5277731.215232858],[516790.3401367104,5277732.993457078],[516794.2453778874,5277732.893581789],[516794.30476219987,5277738.339610129],[516788.67202937545,5277738.545643171]]]},"properties":{"ID_SOURCE":"w145199712","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1129}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.9778157622,5277758.18942548],[517274.54622188455,5277761.083719093],[517276.18774175027,5277764.645070088],[517262.9029833845,5277762.271720974],[517272.52955811756,5277757.4101155335],[517272.9778157622,5277758.18942548]]]},"properties":{"ID_SOURCE":"w145199726","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1130}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516619.6293858116,5277581.9090275755],[516618.2012820208,5277582.349510522],[516619.3169435474,5277586.131451677],[516611.12444702716,5277588.553148422],[516607.70329802216,5277576.873699197],[516617.2488183643,5277574.011299784],[516618.51346985856,5277578.215997581],[516619.6293858116,5277581.9090275755]]]},"properties":{"ID_SOURCE":"w145199732","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1131}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.22431139875,5276770.278760565],[516430.2407983634,5276781.164857856],[516415.60247340694,5276778.456221229],[516417.2820850899,5276768.791799414],[516423.61041238345,5276769.943269086],[516428.4673920661,5276770.823859214],[516428.69647565734,5276769.490828693],[516432.22431139875,5276770.278760565]]]},"properties":{"ID_SOURCE":"w145199742","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1132}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517046.598562462,5277470.247614064],[517047.87725226104,5277456.736744185],[517056.39114128397,5277457.528545718],[517055.88744014315,5277462.83955815],[517055.45341181435,5277467.43947929],[517054.9053587609,5277467.382303861],[517054.56431404693,5277471.004466187],[517046.598562462,5277470.247614064]]]},"properties":{"ID_SOURCE":"w145199744","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1133}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.0659374689,5277257.856784983],[517129.59687434736,5277256.080108739],[517128.17126713664,5277255.631355234],[517128.6261222664,5277254.187874764],[517131.8525141051,5277255.19762614],[517130.7916201125,5277258.417561478],[517129.0659374689,5277257.856784983]]]},"properties":{"ID_SOURCE":"w145199748","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1134}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.2027961482,5277444.580528358],[516360.1177173648,5277439.692946041],[516367.40757327614,5277437.824057725],[516367.0220833439,5277441.379449074],[516363.1138442752,5277442.479862051],[516362.50524873263,5277445.256647749],[516359.2027961482,5277444.580528358]]]},"properties":{"ID_SOURCE":"w145199760","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1135}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516913.20762452687,5277651.438984495],[516913.17921107804,5277661.219216443],[516909.87468380295,5277661.320757027],[516909.80217077397,5277660.4314269],[516906.14469396824,5277660.53194443],[516898.912345889,5277660.733226169],[516898.7876405495,5277651.95280924],[516913.20762452687,5277651.438984495]]]},"properties":{"ID_SOURCE":"w145199775","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1136}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.8210088191,5276856.949693304],[516426.7266689885,5276855.396291547],[516429.87704178755,5276856.849996086],[516425.6454039727,5276865.951517664],[516415.1437504848,5276861.254035217],[516418.6199284128,5276853.706332515],[516422.68553088605,5276855.540488871],[516425.8210088191,5276856.949693304]]]},"properties":{"ID_SOURCE":"w145199782","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1137}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.5290364502,5277691.441493311],[517149.19156885636,5277691.806312729],[517149.1109080966,5277693.695454577],[517138.29786166846,5277693.441332153],[517136.19519754517,5277693.435142516],[517136.20108608407,5277691.434640453],[517138.5290364502,5277691.441493311]]]},"properties":{"ID_SOURCE":"w145199789","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1138}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.23588252475,5277562.306815518],[517216.8850483616,5277553.970281655],[517218.76280078327,5277553.864695014],[517218.76970354444,5277551.530776469],[517225.0037393766,5277551.215797633],[517225.205769867,5277556.539999043],[517225.4220958865,5277562.108750697],[517217.23588252475,5277562.306815518]]]},"properties":{"ID_SOURCE":"w145199793","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1139}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517306.2633734079,5277650.927055184],[517305.22921247734,5277645.144702261],[517310.78927409067,5277644.160972535],[517314.2198818245,5277652.173252719],[517308.81034903164,5277653.04628671],[517308.36704430747,5277650.599889224],[517306.2633734079,5277650.927055184]]]},"properties":{"ID_SOURCE":"w145199826","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1140}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517181.52299790696,5277092.85748257],[517182.0444556251,5277145.205900331],[517162.89175147435,5277145.705113536],[517162.00294401177,5277039.56392373],[517180.85591068736,5277038.952681544],[517181.4613406588,5277088.300566147],[517181.52299790696,5277092.85748257]]]},"properties":{"ID_SOURCE":"w145199836","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1141}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.90735496255,5277480.068134649],[516837.22177445004,5277491.621809321],[516832.71815926937,5277490.830807341],[516833.17613649525,5277488.27591377],[516830.29360244784,5277487.845248609],[516826.3451289783,5277487.255908231],[516827.64781108726,5277478.257341519],[516838.90735496255,5277480.068134649]]]},"properties":{"ID_SOURCE":"w145199853","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1142}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516347.70144341077,5276779.821164273],[516355.6054611241,5276773.508393969],[516364.2866403355,5276784.646755586],[516355.8537592765,5276792.069426052],[516353.53325280425,5276789.284415678],[516354.7374584342,5276788.398679724],[516352.304789044,5276785.435531292],[516347.70144341077,5276779.821164273]]]},"properties":{"ID_SOURCE":"w145199896","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1143}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.29454351787,5277515.163186],[516984.44402513717,5277507.275605005],[516990.5240071147,5277508.293604544],[516991.13678840635,5277504.183215878],[516994.96514305664,5277504.750089556],[516993.8779630814,5277511.870984921],[516993.1277669363,5277516.747837721],[516983.29454351787,5277515.163186]]]},"properties":{"ID_SOURCE":"w145199899","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1144}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.86229650106,5277699.7561596595],[517293.07027974125,5277693.454462949],[517300.53983110504,5277706.924594038],[517292.0395733353,5277711.789498765],[517288.62542651204,5277705.822255464],[517285.988235351,5277701.213228996],[517283.43104415934,5277702.539316369],[517281.86229650106,5277699.7561596595]]]},"properties":{"ID_SOURCE":"w145199900","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1145}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.0978999462,5277340.135488573],[516608.45780324604,5277338.703105773],[516611.2852740029,5277347.935779733],[516604.6707733305,5277349.92854328],[516598.8830691797,5277351.679163732],[516596.7260918505,5277344.337784533],[516604.54374372965,5277341.803857822],[516604.0978999462,5277340.135488573]]]},"properties":{"ID_SOURCE":"w145199905","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1146}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516747.58180589415,5277299.31355737],[516747.3999494456,5277284.209127739],[516757.5385372797,5277284.227184975],[516757.64587497147,5277299.120234851],[516747.58180589415,5277299.31355737]]]},"properties":{"ID_SOURCE":"w145199931","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":1147}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.1107918204,5276719.106563762],[517264.788876457,5276718.429141201],[517264.9559898191,5276720.33012738],[517268.3217047266,5276720.040029338],[517274.5347934438,5276719.491643403],[517275.3633927734,5276728.807617557],[517258.1065014145,5276730.334635257],[517257.1107918204,5276719.106563762]]]},"properties":{"ID_SOURCE":"w145199945","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1148}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517105.1140177535,5277537.192107653],[517099.4931554629,5277533.285698277],[517104.6213162743,5277525.965526657],[517114.4384807543,5277532.996193245],[517109.6129884832,5277539.539266256],[517106.83259978064,5277537.586146961],[517105.4911362543,5277536.637515979],[517105.1140177535,5277537.192107653]]]},"properties":{"ID_SOURCE":"w145199966","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1149}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517294.1865497695,5276988.941818927],[517305.9746122551,5276990.088240136],[517305.6622053503,5276994.121688616],[517305.34999703453,5276998.088453809],[517301.22026099626,5276997.7427623775],[517301.06509950396,5276999.409399284],[517293.4812352975,5276998.831171728],[517294.1865497695,5276988.941818927]]]},"properties":{"ID_SOURCE":"w145199990","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1150}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.4866465984,5276965.508386825],[517260.8639967018,5276955.500990055],[517264.6812251169,5276954.867695418],[517270.1064857473,5276953.972436591],[517271.30142522673,5276961.311210912],[517271.75228355284,5276961.2347503025],[517273.746307332,5276962.507659499],[517273.8956592887,5276962.797066166],[517271.50380653894,5276963.979167647],[517270.977744976,5276964.088747172],[517262.4866465984,5276965.508386825]]]},"properties":{"ID_SOURCE":"w145200002","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1151}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516801.8644214753,5276731.99006071],[516802.6925284538,5276731.325611464],[516804.2640142084,5276733.330661753],[516803.4359073318,5276733.995110778],[516801.85512230464,5276735.213087047],[516800.2839568692,5276733.096898561],[516801.8644214753,5276731.99006071]]]},"properties":{"ID_SOURCE":"w145200027","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1152}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.04269481613,5277044.820975417],[516722.8841005644,5277034.17406849],[516740.7961658343,5277047.340036239],[516729.5623222627,5277062.422764093],[516718.77042659174,5277054.38970123],[516721.93785431224,5277049.842064273],[516715.04269481613,5277044.820975417]]]},"properties":{"ID_SOURCE":"w145200035","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1153}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516681.3854584009,5277598.978915342],[516674.09379117173,5277601.514244714],[516673.94550837734,5277600.8469806025],[516671.2920938017,5277601.71738694],[516668.23277813854,5277602.720000236],[516665.5534903734,5277594.265697289],[516678.25720111583,5277589.967620575],[516681.3854584009,5277598.978915342]]]},"properties":{"ID_SOURCE":"w145200058","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1154}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517109.460130801,5277591.552309646],[517101.7431513346,5277585.416938798],[517107.7730823964,5277577.877138723],[517111.33164696494,5277580.788349344],[517115.4146423225,5277584.123435694],[517114.96242935996,5277584.677805995],[517110.2140351195,5277590.554265791],[517109.460130801,5277591.552309646]]]},"properties":{"ID_SOURCE":"w145200093","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1155}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.4484362991,5277181.676966661],[517304.3226958926,5277182.021899091],[517308.10683294863,5277182.366566201],[517307.4077922643,5277190.14428096],[517302.7525471536,5277189.77479758],[517302.2474771746,5277195.463659368],[517299.5797532132,5277196.000318094],[517300.0943450314,5277189.633531014],[517299.7490755641,5277189.565821217],[517300.4484362991,5277181.676966661]]]},"properties":{"ID_SOURCE":"w145200110","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1156}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516392.9671682374,5276841.742107808],[516393.4963526662,5276840.521060376],[516396.4214234223,5276841.974112429],[516391.9645094298,5276851.075023747],[516381.4643654101,5276845.82190796],[516385.24280957284,5276837.608197567],[516389.35997577617,5276839.80923674],[516392.9671682374,5276841.742107808]]]},"properties":{"ID_SOURCE":"w145200119","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1157}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516397.5427002329,5276763.846035065],[516401.9720165928,5276764.569803208],[516408.65354264394,5276765.655567564],[516406.89758495515,5276775.764335581],[516392.5590381258,5276773.278881102],[516394.468314754,5276762.059143272],[516397.69666987064,5276762.5127918655],[516397.5427002329,5276763.846035065]]]},"properties":{"ID_SOURCE":"w145200135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1158}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.84511304816,5277434.358718482],[516638.5647813451,5277446.705873229],[516627.1399982051,5277450.118570387],[516624.83416661015,5277442.332194671],[516630.24664604285,5277440.458274535],[516628.9823531964,5277436.120208397],[516634.84511304816,5277434.358718482]]]},"properties":{"ID_SOURCE":"w145200160","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1159}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516456.33729279035,5276875.373911835],[516456.7910677549,5276874.263796684],[516459.4911029859,5276875.605104937],[516454.4298165321,5276885.926798355],[516442.35477027786,5276879.891143606],[516446.73663578974,5276870.790058183],[516452.2420178158,5276873.417394235],[516456.33729279035,5276875.373911835]]]},"properties":{"ID_SOURCE":"w145200167","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1160}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.67091734573,5276734.63150343],[516482.3431100308,5276735.967082732],[516479.259300415,5276737.514311505],[516474.2560263844,5276727.275299909],[516487.1176739292,5276720.86559488],[516491.5241622773,5276729.658110895],[516485.3188849595,5276732.785795686],[516481.67091734573,5276734.63150343]]]},"properties":{"ID_SOURCE":"w145200169","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1161}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.42076373845,5277029.965005702],[517298.73537607916,5277025.186926093],[517296.7082345068,5277024.958624428],[517297.18295766466,5277016.846824441],[517305.0668832454,5277017.537088577],[517304.6818644773,5277023.259647444],[517304.20242831856,5277030.4267440755],[517298.42076373845,5277029.965005702]]]},"properties":{"ID_SOURCE":"w145200180","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1162}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517122.9916130201,5276871.739061793],[517128.5497651029,5276871.644268381],[517128.57093036914,5276889.982401481],[517123.3132178237,5276890.078078239],[517123.2149694072,5276872.406557504],[517122.9896521962,5276872.405894954],[517122.9916130201,5276871.739061793]]]},"properties":{"ID_SOURCE":"w145200185","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1163}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.34846033546,5277541.741286523],[516641.5601508885,5277539.038333818],[516640.04300398444,5277533.8437645435],[516647.70990899106,5277531.420605295],[516650.982082621,5277542.655091828],[516642.33861169324,5277545.186594972],[516641.3712451459,5277542.071912837],[516642.34846033546,5277541.741286523]]]},"properties":{"ID_SOURCE":"w145200205","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1164}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.46799227374,5277355.730324723],[516578.74563293066,5277355.400543079],[516577.9271333248,5277352.730856059],[516582.5120027685,5277351.410234294],[516585.41175835335,5277361.643360244],[516579.774555322,5277363.294402484],[516577.59509083617,5277363.843895788],[516577.8175409433,5277364.8447878435],[516573.60849626164,5277366.055343231],[516571.15425800206,5277357.601728796],[516577.46799227374,5277355.730324723]]]},"properties":{"ID_SOURCE":"w145200216","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1165}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516500.3904779438,5276807.9256037725],[516500.31318270427,5276811.348488988],[516500.2185358954,5276815.593759188],[516490.30479916185,5276815.454537258],[516490.26210903283,5276804.007022462],[516501.9784236097,5276804.151352078],[516501.96771547856,5276807.930073134],[516500.3904779438,5276807.9256037725]]]},"properties":{"ID_SOURCE":"w145200225","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1166}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517284.9577295636,5277529.78788214],[517286.63751346356,5277528.070200271],[517287.5810001403,5277528.995463378],[517286.64662598795,5277530.05963249],[517284.9577295636,5277529.78788214]]]},"properties":{"ID_SOURCE":"w145200236","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1167}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516551.8112818837,5276711.935654492],[516552.1899797671,5276710.825333514],[516555.1176043432,5276711.389354221],[516552.7620947842,5276720.940675693],[516541.57894383674,5276718.130405562],[516543.47936895303,5276710.133743138],[516548.9514122019,5276711.316258123],[516551.8112818837,5276711.935654492]]]},"properties":{"ID_SOURCE":"w145200238","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1168}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.49243007647,5276796.93894674],[516426.27956246206,5276800.892100055],[516424.3845306017,5276807.043896418],[516414.70455638994,5276803.904689663],[516418.8723955338,5276790.801950476],[516429.678363154,5276794.166620211],[516428.69319645804,5276797.275753438],[516427.49243007647,5276796.93894674]]]},"properties":{"ID_SOURCE":"w145200256","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1169}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.9829675512,5276832.693366587],[516569.28434117517,5276832.360804827],[516572.88216558855,5276834.927257573],[516571.9622642731,5276836.191632864],[516570.6955466802,5276837.921808367],[516567.09803936305,5276835.244218099],[516567.3243065448,5276834.911442556],[516568.3571825939,5276833.536248221],[516568.9829675512,5276832.693366587]]]},"properties":{"ID_SOURCE":"w145200263","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1170}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516341.3364873339,5277468.758840528],[516343.8534089882,5277454.984564574],[516344.76925176714,5277449.763562897],[516345.249631054,5277449.853823395],[516361.2824375294,5277452.81072081],[516358.4610219769,5277468.0289518805],[516357.77452290576,5277471.80577792],[516341.3364873339,5277468.758840528]]]},"properties":{"ID_SOURCE":"w145200300","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1171}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.981562874,5277620.111761936],[516802.687914643,5277617.776976093],[516802.5377224186,5277617.776542613],[516802.31628319185,5277616.442224479],[516804.3445202981,5277616.225798711],[516804.85992736695,5277619.783763868],[516802.981562874,5277620.111761936]]]},"properties":{"ID_SOURCE":"w145200305","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1172}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.3915035117,5277180.120457434],[516339.0814534799,5277175.1211026665],[516337.4366978809,5277172.449132373],[516338.8661278391,5277171.564024977],[516340.51088303636,5277174.235995669],[516339.8938502769,5277180.013533476],[516338.3915035117,5277180.120457434]]]},"properties":{"ID_SOURCE":"w145200339","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1173}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.76254435617,5277011.32254798],[517277.5950251812,5277012.009656357],[517276.73557668366,5277023.232232397],[517268.92675947386,5277022.542229338],[517269.17438073107,5277017.552783905],[517269.32601056475,5277014.541343354],[517270.527673101,5277014.544907327],[517270.76254435617,5277011.32254798]]]},"properties":{"ID_SOURCE":"w145200374","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1174}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.4951723747,5276888.528430904],[516470.8729004365,5276887.751520998],[516473.7982426821,5276889.0934732575],[516469.1168697577,5276897.860272361],[516458.6171934405,5276892.495877841],[516462.69551077625,5276884.505343788],[516467.29281865904,5276886.874505619],[516470.4951723747,5276888.528430904]]]},"properties":{"ID_SOURCE":"w145200376","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1175}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516644.518551423,5277596.984018195],[516642.4890430296,5277597.645055609],[516641.1493802703,5277593.417909969],[516651.7475122412,5277590.114016386],[516654.87040537194,5277601.014659677],[516646.60281840246,5277603.436091712],[516645.0321725196,5277598.574787229],[516644.518551423,5277596.984018195]]]},"properties":{"ID_SOURCE":"w145200378","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1176}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.02691785205,5277104.379283665],[517277.35030776873,5277112.201523419],[517272.5899866835,5277111.787296812],[517269.3538533827,5277111.510962284],[517269.47826979397,5277110.07762686],[517266.48239806405,5277109.8242345005],[517267.04208807147,5277103.435351275],[517278.02691785205,5277104.379283665]]]},"properties":{"ID_SOURCE":"w145200385","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1177}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.1345113902,5277729.1099529425],[516442.5891601256,5277727.666418305],[516450.99191315996,5277730.468654869],[516455.79325831763,5277732.149323381],[516452.8479544415,5277740.676543404],[516450.03895960626,5277748.804046494],[516445.2376265866,5277747.123382658],[516450.3867592378,5277732.022903478],[516442.1345113902,5277729.1099529425]]]},"properties":{"ID_SOURCE":"w145200432","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1178}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.9303636166,5277519.215644675],[517037.92417471454,5277529.437573266],[517033.6227600857,5277528.858173137],[517029.5165325102,5277528.301575106],[517030.5935778348,5277519.524671458],[517032.77042661887,5277519.86445943],[517033.00124637067,5277517.975755988],[517038.9319899492,5277518.659949805],[517038.9303636166,5277519.215644675]]]},"properties":{"ID_SOURCE":"w145200500","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1179}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517123.3132178237,5276890.078078239],[517123.16300680576,5276890.077636533],[517123.21915728773,5276896.523911494],[517120.59046737954,5276896.516182256],[517120.4357303834,5276872.5095255235],[517122.9896521962,5276872.405894954],[517123.2149694072,5276872.406557504],[517123.3132178237,5276890.078078239]]]},"properties":{"ID_SOURCE":"w145200516","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1180}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.7868080399,5277631.586477376],[516656.5225783435,5277627.248403805],[516659.75456809474,5277626.257392514],[516659.8303001757,5277626.035329417],[516663.23513924645,5277625.000358727],[516669.60137252643,5277623.062521453],[516672.0582175055,5277630.51593054],[516658.67905466666,5277634.700947849],[516657.7868080399,5277631.586477376]]]},"properties":{"ID_SOURCE":"w145200521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1181}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.55420472875,5277528.325899135],[517078.86837478017,5277536.837206027],[517073.77884034085,5277536.122096326],[517068.0205813332,5277535.527284486],[517068.72056784085,5277527.304981742],[517072.39935723913,5277527.649188128],[517072.5524849865,5277526.649377785],[517079.8349664755,5277527.337577407],[517079.55420472875,5277528.325899135]]]},"properties":{"ID_SOURCE":"w145200548","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1182}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516857.9045713346,5277558.810165494],[516867.59142422176,5277559.060502693],[516867.3503558271,5277564.505660151],[516866.3740974016,5277564.502831784],[516866.2927220764,5277566.669824413],[516866.1294886282,5277571.170518171],[516857.1185263136,5277570.9221402835],[516857.6041838348,5277558.809295698],[516857.9045713346,5277558.810165494]]]},"properties":{"ID_SOURCE":"w145200569","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1183}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.9901639523,5277484.975816006],[516417.83034318127,5277479.97689162],[516419.7347461199,5277470.424234589],[516426.4153325825,5277471.554478014],[516424.6608012175,5277481.21869559],[516424.2853119041,5277481.217636301],[516423.75210240134,5277483.883488706],[516416.9901639523,5277484.975816006]]]},"properties":{"ID_SOURCE":"w145200654","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1184}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.9460208584,5277644.955494274],[517279.2427754291,5277646.178914755],[517275.0344447083,5277647.166685456],[517274.81245528755,5277646.054627018],[517274.5868382216,5277646.165097523],[517274.21564643545,5277644.719176468],[517278.6492661594,5277643.732073812],[517278.9460208584,5277644.955494274]]]},"properties":{"ID_SOURCE":"w145200659","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1185}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.5062260521,5277719.369093528],[517235.8613374076,5277714.067982164],[517238.4004123977,5277718.854519274],[517237.14445315435,5277719.484298269],[517236.21937200613,5277719.959461192],[517237.26411785255,5277722.185354144],[517229.7444430467,5277725.608433282],[517227.78967767867,5277726.3806281],[517224.5062260521,5277719.369093528]]]},"properties":{"ID_SOURCE":"w145200681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1186}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516508.9171726998,5276714.481249308],[516513.92480942386,5276723.164346831],[516508.2371254031,5276726.515754539],[516505.27294047805,5276728.252246232],[516506.1695061396,5276729.921883446],[516501.27932699374,5276732.797657613],[516495.22458035854,5276722.5556485355],[516495.29968800966,5276722.555861284],[516508.9171726998,5276714.481249308]]]},"properties":{"ID_SOURCE":"w145200693","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1187}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.25540374493,5277004.144429533],[517286.7870710367,5277002.1454904],[517287.5374518078,5277002.369997866],[517287.6889797832,5277001.9258882925],[517291.2178810668,5277002.269785926],[517290.7484455252,5277008.603364075],[517285.94311015646,5277008.144537463],[517286.0667738064,5277006.966822038],[517286.25540374493,5277004.144429533]]]},"properties":{"ID_SOURCE":"w145200729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1188}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.45600202936,5277477.323498359],[517071.5730002417,5277476.522398783],[517071.6494017313,5277476.078063125],[517072.02521736885,5277475.9680251945],[517072.3737824864,5277472.34588586],[517072.72192434024,5277468.868227221],[517080.75516502064,5277469.658655066],[517079.98136151535,5277477.436179493],[517079.45600202936,5277477.323498359]]]},"properties":{"ID_SOURCE":"w145200754","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1189}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516401.9434454574,5277755.792408608],[516403.9194034861,5277752.786084737],[516411.86436620064,5277758.143192904],[516395.4794126012,5277763.209459601],[516399.41592445935,5277757.330132625],[516400.457825312,5277758.011021201],[516401.9434454574,5277755.792408608]]]},"properties":{"ID_SOURCE":"w145200755","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1190}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.5085806403,5277712.053446559],[516588.9201583838,5277711.743989875],[516597.3317370849,5277711.434545348],[516600.9369260533,5277711.222544974],[516566.1638753689,5277712.568308689],[516580.5085806403,5277712.053446559]]]},"properties":{"ID_SOURCE":"w145200776","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1191}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517316.2668703974,5276888.092453275],[517315.4063396285,5276899.648438233],[517315.7179976846,5276895.870610231],[517316.2668703974,5276888.092453275]]]},"properties":{"ID_SOURCE":"w145200777","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1192}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.71210992924,5277468.034676799],[516643.532508123,5277469.059187256],[516639.36513459135,5277455.710490349],[516648.1589331835,5277453.179412319],[516649.997045989,5277459.063968099],[516651.3589138218,5277463.413432122],[516649.63006839337,5277463.964187192],[516650.53042772604,5277466.878626851],[516646.71210992924,5277468.034676799]]]},"properties":{"ID_SOURCE":"w145200845","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1193}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.2671110201,5277560.869379301],[517240.1430519982,5277561.485485001],[517239.85977809585,5277555.705368568],[517243.9755834802,5277555.550847855],[517250.67505285447,5277555.292845093],[517250.9688542258,5277557.516514738],[517256.75197470345,5277557.311373778],[517256.97331223043,5277558.645709315],[517257.2671110201,5277560.869379301]]]},"properties":{"ID_SOURCE":"w145200857","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1194}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.492125547,5277619.992168546],[517232.837453986,5277619.367774168],[517233.33713662665,5277628.149310471],[517228.8085193742,5277628.247046778],[517224.5502478552,5277628.345586466],[517224.33318030497,5277625.566445139],[517217.50535833044,5277623.545728966],[517217.7329473166,5277622.768422309],[517218.492125547,5277619.992168546]]]},"properties":{"ID_SOURCE":"w145200865","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1195}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516664.68856172246,5277529.135242425],[516668.44660626666,5277528.0346017275],[516669.41427895945,5277531.038149338],[516670.2413031506,5277530.707097665],[516671.3491131231,5277534.600166014],[516672.99221013376,5277540.384145729],[516665.77588865324,5277542.808561535],[516661.98251607874,5277530.01661641],[516664.68856172246,5277529.135242425]]]},"properties":{"ID_SOURCE":"w145200889","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1196}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516484.35889001976,5276793.3208933715],[516482.2942785682,5276779.756000815],[516491.98716199544,5276778.3386269305],[516493.08667636843,5276785.254632877],[516493.61055439146,5276788.568080999],[516494.8125779785,5276788.460345926],[516495.25408913556,5276791.684649112],[516488.5667554266,5276792.665967896],[516484.35889001976,5276793.3208933715]]]},"properties":{"ID_SOURCE":"w145200957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1197}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516408.78731155,5276851.45582257],[516409.31618525565,5276850.345915415],[516412.01655567606,5276851.5760626905],[516407.70952305757,5276860.788524361],[516397.1346176939,5276855.42402968],[516398.71353328717,5276852.160967351],[516400.987557888,5276847.432818555],[516405.3449252073,5276849.679001557],[516408.78731155,5276851.45582257]]]},"properties":{"ID_SOURCE":"w145201000","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1198}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516368.09814424283,5277753.1298174225],[516368.6976490901,5277753.576062651],[516366.398272881,5277756.770426963],[516365.88105948985,5277756.435553215],[516359.01516287745,5277751.881747486],[516367.3096024634,5277739.790812505],[516374.0556059052,5277744.255378751],[516370.4283106359,5277749.668804612],[516368.09814424283,5277753.1298174225]]]},"properties":{"ID_SOURCE":"w145201057","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1199}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.48412443255,5276794.022096487],[517150.3646787903,5276783.574602619],[517154.9461986888,5276783.588097552],[517154.95864006644,5276779.364821479],[517158.4886661526,5276779.375221673],[517158.5516565704,5276783.487580205],[517158.5956533039,5276794.045991817],[517150.48412443255,5276794.022096487]]]},"properties":{"ID_SOURCE":"w145201095","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1200}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.455862022,5277058.910266782],[517269.7972994655,5277058.220708096],[517270.34958614176,5277051.798461746],[517270.80858518643,5277046.442881533],[517278.54259641527,5277047.021525471],[517278.23327824735,5277050.021384053],[517281.23675660224,5277050.252576871],[517280.53443915286,5277059.141682099],[517277.455862022,5277058.910266782]]]},"properties":{"ID_SOURCE":"w145201105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1201}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.9204221601,5277468.4681339385],[517263.27465006785,5277484.978604249],[517256.60444840905,5277480.402092193],[517235.66463721916,5277476.116746245],[517240.8042155304,5277467.551960543],[517242.45702595805,5277464.80058477],[517238.55850619066,5277462.566241595],[517249.2682095879,5277447.149510635],[517279.9204221601,5277468.4681339385]]]},"properties":{"ID_SOURCE":"w145201128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"commercial","ZINDEX":0,"ID_BUILD":1202}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5286628186,5276838.588707022],[516525.8491155407,5276835.3381762365],[516524.57357171696,5276834.889997462],[516525.63420512737,5276831.669954447],[516527.2101745297,5276832.118986097],[516528.3153058483,5276829.099121425],[516530.9190906311,5276822.015796167],[516540.2231256916,5276825.265268602],[516535.5286628186,5276838.588707022]]]},"properties":{"ID_SOURCE":"w145201139","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1203}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516725.1170121146,5277564.09531439],[516721.4027114315,5277549.969877733],[516730.7230415868,5277547.10701719],[516732.382277303,5277552.479842853],[516733.84804692055,5277557.229729516],[516730.9163936324,5277558.221562932],[516732.1824998774,5277561.892818373],[516730.3782596405,5277562.554472655],[516725.1170121146,5277564.09531439]]]},"properties":{"ID_SOURCE":"w145201165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1204}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517077.3087685207,5277390.072366343],[517077.579499518,5277400.186892098],[517074.42501860595,5277400.288780164],[517074.13928956015,5277395.286646349],[517074.815506419,5277395.17748955],[517074.67150121304,5277393.065408976],[517077.00804630754,5277390.1826241985],[517077.3087685207,5277390.072366343]]]},"properties":{"ID_SOURCE":"w145201170","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1205}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517189.1820750364,5277754.718339794],[517191.95969335176,5277749.936408649],[517194.1938786001,5277746.086449609],[517194.91846210894,5277744.843821944],[517198.06730860664,5277746.586907161],[517201.5910343205,5277748.531153749],[517195.9297337866,5277758.405886916],[517195.02991513617,5277757.95866912],[517189.1820750364,5277754.718339794]]]},"properties":{"ID_SOURCE":"w145201177","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1206}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516668.44660626666,5277528.0346017275],[516664.68856172246,5277529.135242425],[516660.5231889904,5277515.119695037],[516668.3403221837,5277512.696992754],[516669.9391656585,5277518.202994938],[516671.3149418472,5277522.930379633],[516670.3380400687,5277523.149862114],[516671.5284584642,5277527.043166983],[516668.44660626666,5277528.0346017275]]]},"properties":{"ID_SOURCE":"w145201273","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1207}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.9053024706,5277139.403584457],[517287.61059075966,5277129.514228742],[517295.04408035695,5277130.092003033],[517294.82849551894,5277134.403590207],[517294.64480050263,5277138.092888778],[517290.2147539523,5277137.746312558],[517290.0589389628,5277139.635227917],[517286.9804047673,5277139.4038074305],[517286.9053024706,5277139.403584457]]]},"properties":{"ID_SOURCE":"w145201286","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1208}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516898.84017796227,5277530.365884282],[516904.90584079665,5277531.139245124],[516907.7735222713,5277531.5032203095],[516907.6977795179,5277531.725280173],[516913.1028425986,5277532.407819203],[516912.8015367986,5277535.307695702],[516912.08241886954,5277539.851229287],[516897.84165613924,5277538.031640144],[516898.84017796227,5277530.365884282]]]},"properties":{"ID_SOURCE":"w145201315","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1209}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516617.8382586354,5277551.673864068],[516621.0366504774,5277562.463563724],[516612.09188362164,5277565.327671136],[516607.40136638616,5277551.088383287],[516613.56470921607,5277549.216589817],[516614.68133178604,5277552.665112908],[516616.8536002688,5277551.982245266],[516617.8382586354,5277551.673864068]]]},"properties":{"ID_SOURCE":"w145201316","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1210}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.21450936917,5277357.143414981],[516523.9059121814,5277363.913554696],[516540.6525228846,5277372.085429715],[516538.17480796756,5277377.168596342],[516535.19747266924,5277375.715321851],[516534.5704878453,5277377.002763502],[516537.5403127205,5277378.456016348],[516535.6669629954,5277382.285020421],[516532.6971396212,5277380.831768522],[516532.0399584471,5277382.174694634],[516534.994793036,5277383.61678965],[516532.50200496695,5277388.722143897],[516512.8005901205,5277379.10820679],[516517.90702816204,5277368.642204046],[516519.34694846265,5277369.346470374],[516522.36851956794,5277363.153440728],[516527.95840192406,5277351.710788192],[516532.9531511573,5277354.147817817],[516533.7914582054,5277352.494214627],[516535.30244434276,5277349.331020035],[516541.45962505013,5277352.338171601],[516542.1998948657,5277350.8287728885],[516544.8286762615,5277345.445959799],[516528.1494895336,5277337.307606836],[516535.4692950542,5277322.313397958],[516536.39176140307,5277322.76057721],[516539.9343111592,5277315.602119993],[516543.361676057,5277317.267840992],[516543.82243861735,5277316.335575543],[516549.7773223966,5277319.186564998],[516548.5988451632,5277321.6171778785],[516549.611304168,5277322.109070948],[516550.17787068133,5277320.943713062],[516555.8401098722,5277323.704965059],[516556.4519902603,5277322.450824753],[516571.55626721185,5277329.817910902],[516565.9360170613,5277341.338233226],[516556.8689822229,5277336.911304299],[516551.20345544163,5277348.520423908],[516546.27620381414,5277346.116912411],[516543.42833796766,5277351.954775716],[516544.43621918757,5277351.413054351],[516545.5481840443,5277356.528647182],[516544.26201875316,5277359.85918778],[516541.24793747807,5277363.407099033],[516539.14294470375,5277364.179097984],[516537.4150277062,5277364.396469481],[516534.56377651554,5277363.499252746],[516533.13941297476,5277362.6060890965],[516532.0918083343,5277361.269436191],[516530.67596366466,5277357.3755214745],[516529.1727123218,5277357.815812995],[516528.875469625,5277356.703570673],[516527.21450936917,5277357.143414981]]]},"properties":{"ID_SOURCE":"w145201330","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":1211}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516572.5243621491,5277390.747532919],[516564.4743941252,5277393.136359635],[516563.5526202322,5277389.810655515],[516565.2063802929,5277389.259661247],[516562.304706472,5277379.693378692],[516570.2724941996,5277377.159833235],[516571.97629099246,5277382.777245221],[516573.54617161665,5277387.949717139],[516571.8927267189,5277388.389570086],[516572.5243621491,5277390.747532919]]]},"properties":{"ID_SOURCE":"w145201413","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1212}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.55420472875,5277528.325899135],[517084.4044124644,5277528.7068917435],[517084.70044689573,5277525.073484677],[517089.8884970626,5277525.488815237],[517089.0079275006,5277536.377943924],[517084.51816027303,5277536.009119142],[517084.5651427995,5277535.3535314035],[517083.7768180354,5277535.284534146],[517083.6209491524,5277537.217911613],[517078.86837478017,5277536.837206027],[517079.55420472875,5277528.325899135]]]},"properties":{"ID_SOURCE":"w145201419","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1213}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.85723972163,5276716.977010619],[516645.94818407035,5276721.20629744],[516643.90661815676,5276725.979471208],[516642.4808440291,5276725.530837391],[516644.3702876456,5276721.424066816],[516642.80223768455,5276718.196532635],[516638.44980093907,5276716.850418482],[516639.12989868957,5276715.407544977],[516643.85723972163,5276716.977010619]]]},"properties":{"ID_SOURCE":"w145201424","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1214}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.3696908357,5277743.113387293],[516474.2407467909,5277741.314970401],[516473.7094242488,5277743.31398521],[516467.78104707506,5277741.852393426],[516471.65489084227,5277726.303765908],[516480.2093945172,5277728.550774533],[516479.75379266666,5277730.3277233085],[516485.3818001258,5277731.788476628],[516481.3696908357,5277743.113387293]]]},"properties":{"ID_SOURCE":"w145201433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1215}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516524.4826023722,5276787.544205692],[516524.33428096725,5276786.876946331],[516520.42714976956,5276787.421559415],[516519.6179999031,5276781.417717715],[516523.3746058953,5276780.98381671],[516522.8887074904,5276777.525991963],[516522.12301475013,5276772.089085999],[516532.0412420527,5276770.67241804],[516534.25153699174,5276785.793698716],[516524.4826023722,5276787.544205692]]]},"properties":{"ID_SOURCE":"w145201452","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1216}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516810.37561806856,5276983.857381007],[516806.7545310764,5276963.397203874],[516787.44304853363,5276966.675691675],[516786.9997906903,5276964.118198313],[516779.8610158738,5276965.4313000385],[516775.86876843293,5276943.41411661],[516822.6837882295,5276934.991412053],[516826.74647328013,5276958.564789018],[516821.2609467921,5276959.549198286],[516822.36728806054,5276966.55420217],[516826.1241194602,5276966.009357691],[516827.96929290047,5276977.239810492],[516824.4377816636,5276977.785304772],[516825.6169717671,5276985.568498678],[516814.7220389032,5276987.204124691],[516814.1327580772,5276983.201389924],[516810.37561806856,5276983.857381007]]]},"properties":{"ID_SOURCE":"w145201468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1217}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517049.09251673607,5277434.11221624],[517049.4023489533,5277430.890066093],[517046.32428537216,5277430.547633429],[517046.943296599,5277424.325610828],[517050.0964620503,5277424.668263732],[517050.17448990233,5277423.668233039],[517059.7087586544,5277424.807561128],[517059.16896802915,5277429.618337683],[517058.55199572816,5277435.140183624],[517049.09251673607,5277434.11221624]]]},"properties":{"ID_SOURCE":"w145201470","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1218}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.944905521,5277060.61287338],[516640.7940636925,5277060.834721905],[516642.0679608506,5277061.838620922],[516639.05271414976,5277065.719897077],[516637.70371408906,5277064.715784116],[516637.7788173306,5277064.715998712],[516635.08081584057,5277062.7077737],[516638.24690320314,5277058.604646916],[516640.944905521,5277060.61287338]]]},"properties":{"ID_SOURCE":"w145201471","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1219}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516598.5554321972,5276776.340816724],[516599.67506684165,5276778.789082731],[516598.622619486,5276779.119502028],[516598.8463563026,5276779.675838526],[516595.98880936485,5276780.890231319],[516594.571912951,5276777.329721398],[516597.50425152725,5276776.22668083],[516597.6531983781,5276776.671664361],[516598.5554321972,5276776.340816724]]]},"properties":{"ID_SOURCE":"w145201474","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1220}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.95334432827,5277220.286854604],[517280.4313558937,5277220.405348379],[517280.656989503,5277220.2948781345],[517280.9573945232,5277220.295769717],[517281.1069373175,5277220.5184933515],[517281.5582045634,5277220.297552924],[517281.62736818875,5277222.298276383],[517277.9477377607,5277222.176216242],[517277.95334432827,5277220.286854604]]]},"properties":{"ID_SOURCE":"w145201475","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1221}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516705.0589977392,5276990.6672399705],[516704.0794549482,5276991.775827899],[516692.31358566927,5276982.850903541],[516693.0674961487,5276981.852806606],[516689.9198045887,5276979.509848015],[516716.6829872374,5276944.355303653],[516738.34163051867,5276960.643931693],[516711.8040220187,5276995.687885306],[516705.0589977392,5276990.6672399705]]]},"properties":{"ID_SOURCE":"w145201505","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1222}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517180.6197239343,5277678.89560096],[517178.07008982904,5277677.66553752],[517179.50674050034,5277674.335577796],[517182.2062385095,5277675.677224132],[517184.9280439812,5277669.461419743],[517192.20245716895,5277672.817096539],[517191.28022157686,5277674.870462554],[517187.9692230363,5277682.251494157],[517180.6197239343,5277678.89560096]]]},"properties":{"ID_SOURCE":"w145201515","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1223}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.1128812888,5276760.544712285],[516523.1309403669,5276760.977971567],[516518.09655420756,5276761.741667409],[516517.1088430579,5276755.137165249],[516516.03263991023,5276747.954485718],[516526.2510206993,5276746.649798776],[516527.64840975485,5276757.100900196],[516528.7002260835,5276756.992745774],[516529.06661385304,5276760.216838226],[516527.1128812888,5276760.544712285]]]},"properties":{"ID_SOURCE":"w145201532","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1224}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516610.1281548161,5277463.962495624],[516608.49165876576,5277458.467517283],[516606.7807587789,5277452.727819521],[516615.1233234934,5277450.417684329],[516615.1974702471,5277450.751315545],[516618.579747129,5277449.760710096],[516620.7366568126,5277457.102098765],[516617.4291647664,5277458.204056279],[516618.3214602743,5277461.318519602],[516610.1281548161,5277463.962495624]]]},"properties":{"ID_SOURCE":"w145201536","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1225}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.2736425941,5277674.4959609145],[517270.0633943471,5277672.369597018],[517267.91182139947,5277668.595569571],[517276.8630246098,5277663.620827976],[517283.06328979955,5277674.642089369],[517274.3373840933,5277679.61748996],[517274.0383218586,5277679.17204266],[517272.53377720685,5277680.056698404],[517269.84452223853,5277675.269701135],[517271.2736425941,5277674.4959609145]]]},"properties":{"ID_SOURCE":"w145201538","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1226}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.9654762633,5277128.128188331],[517277.32386682415,5277128.705717237],[517277.47407169716,5277128.706162933],[517277.0007028933,5277136.373410252],[517272.94583607005,5277136.139100308],[517272.71525401954,5277137.916654416],[517269.33663862216,5277137.573213214],[517269.60010072,5277132.305964193],[517269.81560101005,5277128.016603924],[517269.9654762633,5277128.128188331]]]},"properties":{"ID_SOURCE":"w145201543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1227}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.03447190486,5277283.4181291675],[516474.6393633505,5277281.975022929],[516475.6222732689,5277279.643867795],[516476.076021034,5277278.533753506],[516479.9105494328,5277276.988648018],[516481.70257942437,5277280.661334836],[516483.8782899845,5277281.445472913],[516481.8367352992,5277286.329845872],[516474.03447190486,5277283.4181291675]]]},"properties":{"ID_SOURCE":"w145201544","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1228}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517052.2106550375,5277497.693381194],[517051.30980850407,5277497.579602831],[517044.7776126296,5277497.115915505],[517045.0880901581,5277493.6714868825],[517041.5594732019,5277493.3277374655],[517041.9515531968,5277487.6607491365],[517045.70579234266,5277487.894019423],[517053.0634231252,5277488.582405263],[517052.5982854577,5277493.548997405],[517052.2106550375,5277497.693381194]]]},"properties":{"ID_SOURCE":"w145201547","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1229}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517268.2735769887,5277749.1731302375],[517263.68622498517,5277751.382324515],[517262.5581611303,5277751.934679317],[517260.5464294135,5277746.593994809],[517265.35906745127,5277744.385466203],[517266.8517273876,5277747.501812975],[517267.52856643527,5277747.170400568],[517268.4991899578,5277749.0626594825],[517268.2735769887,5277749.1731302375]]]},"properties":{"ID_SOURCE":"w145201562","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1230}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.2726181079,5277265.696563462],[517263.9936722968,5277267.813324472],[517265.0450812759,5277267.816442085],[517264.8876298101,5277270.261053119],[517263.91132188187,5277270.258158212],[517261.95376355667,5277271.91945282],[517260.602282438,5277271.804306281],[517260.85113777104,5277268.926520474],[517261.14643756056,5277265.582084779],[517262.2726181079,5277265.696563462]]]},"properties":{"ID_SOURCE":"w145201597","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1231}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516609.2907062783,5277441.620992353],[516610.25842416444,5277444.624529618],[516604.39441433485,5277446.830600138],[516603.2771309917,5277443.604357583],[516600.64615348855,5277444.485974196],[516599.1939667794,5277440.191834814],[516597.5183201709,5277435.252447569],[516605.185336686,5277432.829232428],[516608.16296245053,5277442.062334715],[516609.2907062783,5277441.620992353]]]},"properties":{"ID_SOURCE":"w145201620","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1232}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.6512433471,5277047.469987041],[516699.43232252443,5277040.886291875],[516694.530198495,5277047.985182768],[516691.90699353215,5277046.088285671],[516698.76818336523,5277036.772214335],[516710.1711734424,5277041.250519352],[516715.04269481613,5277044.820975417],[516711.4991146569,5277049.589816127],[516708.6512433471,5277047.469987041]]]},"properties":{"ID_SOURCE":"w145201625","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1233}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.96430552274,5276762.49728415],[516469.6295689701,5276759.070405218],[516479.6151247489,5276755.097624438],[516483.32913405244,5276764.410531948],[516478.55442326615,5276766.308622293],[516476.291152944,5276767.202450142],[516476.9102020675,5276768.737930066],[516473.8724500676,5276769.940758801],[516473.49952437927,5276769.017244008],[516470.0331602116,5276770.396685848],[516467.4529366806,5276763.85437229],[516470.96430552274,5276762.49728415]]]},"properties":{"ID_SOURCE":"w145201628","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1234}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516666.3712969358,5277649.615711893],[516676.2180656535,5277646.4208519915],[516678.67457367247,5277653.985403189],[516672.8943714942,5277655.835996859],[516668.6776251433,5277657.179828923],[516667.93239670235,5277655.177176808],[516665.1516315182,5277655.947195356],[516663.1431362439,5277649.2730515115],[516665.92454065406,5277648.280754004],[516666.3712969358,5277649.615711893]]]},"properties":{"ID_SOURCE":"w145201630","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1235}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.7690603874,5276804.007617156],[517289.9651780321,5276804.4482580535],[517289.610466454,5276797.434281873],[517281.3474091607,5276797.854313639],[517280.9216036218,5276789.484221298],[517287.7724336316,5276789.137794064],[517294.0823963722,5276788.8231105395],[517294.40874383063,5276795.270189575],[517298.3149214394,5276795.070626046],[517298.7690603874,5276804.007617156]]]},"properties":{"ID_SOURCE":"w145201671","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1236}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516810.3998160378,5277087.339735558],[516820.2912604613,5277087.23493294],[516820.36879652686,5277094.192510207],[516820.5990273748,5277115.887670372],[516820.812311659,5277135.648949178],[516820.9428936547,5277147.641314913],[516810.90885768377,5277147.7457042085],[516810.97947093146,5277154.50321026],[516802.83057358506,5277154.590828481],[516780.9674911249,5277154.827855065],[516776.829206206,5277154.871499817],[516776.72316277196,5277144.757469305],[516811.01618101646,5277144.389590974],[516810.3998160378,5277087.339735558]]]},"properties":{"ID_SOURCE":"w145201678","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1237}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517128.2596361006,5277685.076291969],[517138.62212689593,5277685.32906923],[517138.62179970986,5277685.440208232],[517138.5290364502,5277691.441493311],[517136.20108608407,5277691.434640453],[517136.19519754517,5277693.435142516],[517136.10799822526,5277697.54706462],[517128.14791823155,5277697.523639407],[517128.2596361006,5277685.076291969]]]},"properties":{"ID_SOURCE":"w145201708","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1238}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516730.8165008331,5277645.2438250035],[516732.8987379986,5277652.362764174],[516730.26751525165,5277653.355461321],[516730.3413333467,5277653.800233135],[516727.3496845844,5277654.780781831],[516723.9521373666,5277655.893533934],[516724.24996565655,5277656.783508855],[516720.7169608541,5277657.995899634],[516718.18860498234,5277649.319724858],[516730.8165008331,5277645.2438250035]]]},"properties":{"ID_SOURCE":"w145201718","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1239}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.7432532724,5277583.287261583],[517011.5609752487,5277582.151947697],[517012.2482111683,5277578.2640581615],[517009.9211898245,5277577.923838955],[517011.08172090404,5277571.403315767],[517011.982573658,5277566.371309136],[517020.01370553864,5277567.839601394],[517018.029027234,5277578.836653027],[517020.4311443723,5277579.17709502],[517019.7432532724,5277583.287261583]]]},"properties":{"ID_SOURCE":"w145201723","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1240}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517028.67422527476,5277687.896066208],[517022.11364461074,5277697.21263604],[517013.8697492571,5277691.52039956],[517016.2835147342,5277687.85983586],[517017.4076688561,5277688.641101465],[517017.78476928454,5277688.086504021],[517018.1618697825,5277687.531906603],[517016.962295452,5277686.861560348],[517020.3562025153,5277681.870183982],[517028.67422527476,5277687.896066208]]]},"properties":{"ID_SOURCE":"w145201728","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1241}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516592.0997945436,5277412.897890353],[516594.7307849683,5277412.0162698915],[516596.9622040734,5277419.5801411895],[516594.25643483043,5277420.350407636],[516594.0330394523,5277419.682931736],[516583.96095479873,5277422.7661495935],[516581.35624213633,5277414.423241149],[516586.55006031384,5277412.859849288],[516591.57853732386,5277411.340446814],[516592.0997945436,5277412.897890353]]]},"properties":{"ID_SOURCE":"w145201735","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1242}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.7153751935,5277624.244206309],[517266.6771202515,5277629.137217257],[517262.91233995947,5277629.959602338],[517259.16257993435,5277630.782034374],[517258.1263917516,5277625.666524069],[517258.9527775083,5277625.55783391],[517261.95859578706,5277624.89990579],[517261.0745782743,5277619.118006402],[517264.8316908911,5277618.351167357],[517265.7153751935,5277624.244206309]]]},"properties":{"ID_SOURCE":"w145201747","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1243}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.04647822666,5276738.079651586],[516600.2698996992,5276738.747126941],[516597.9384012187,5276739.851878646],[516597.48997396545,5276739.072622334],[516597.0386958184,5276739.2936156355],[516595.46999113966,5276736.288371838],[516599.0044775752,5276734.742489036],[516600.5731808583,5276737.747733781],[516600.04647822666,5276738.079651586]]]},"properties":{"ID_SOURCE":"w145201759","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1244}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.86627530097,5276894.471994372],[517293.6549089044,5276897.361002562],[517293.31809316424,5276902.027875713],[517289.33816903067,5276901.793777886],[517289.1013037164,5276905.682969149],[517282.7941067063,5276905.108546906],[517283.18183829414,5276900.997523502],[517285.65965579066,5276901.227157971],[517286.28227367415,5276893.893776621],[517293.86627530097,5276894.471994372]]]},"properties":{"ID_SOURCE":"w145201771","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1245}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516602.98359054496,5276735.309531168],[516604.10893533163,5276735.757298706],[516602.66985246376,5276739.976505981],[516597.78090071474,5276742.407643878],[516593.27952377335,5276740.616579907],[516593.73333519144,5276739.506475578],[516597.85980933515,5276741.074191839],[516601.54514206375,5276739.306461034],[516602.98359054496,5276735.309531168]]]},"properties":{"ID_SOURCE":"w145201773","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1246}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.81665981037,5277521.422476267],[516722.3066687181,5277522.854339191],[516722.6414782802,5277523.944471836],[516723.4970524785,5277526.747654764],[516718.0101635918,5277528.398994742],[516716.74499831774,5277524.394325681],[516717.94783190987,5277523.953219958],[516714.97169921704,5277514.27550392],[516723.6913032944,5277511.410907339],[516726.81665981037,5277521.422476267]]]},"properties":{"ID_SOURCE":"w145201776","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1247}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517074.8177264459,5277445.635016322],[517083.22645798855,5277446.437662605],[517082.76151977543,5277451.326454804],[517090.5701084802,5277451.905071047],[517089.95105329354,5277458.127089386],[517078.6889342764,5277457.204922435],[517078.7514905819,5277456.360442555],[517078.8449990512,5277455.204861699],[517073.8901462684,5277454.634629352],[517074.8177264459,5277445.635016322]]]},"properties":{"ID_SOURCE":"w145201778","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1248}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.46285137616,5276799.06162681],[517167.72140037076,5276799.074179949],[517172.77608021605,5276799.089083927],[517172.8882746008,5276811.981633281],[517163.4245257719,5276812.064872047],[517163.50258042733,5276811.064843774],[517144.1995479448,5276811.23026158],[517144.15781590587,5276799.893877926],[517163.46055839205,5276799.839598739],[517163.46285137616,5276799.06162681]]]},"properties":{"ID_SOURCE":"w145201781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1249}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517048.89479992347,5277552.92021458],[517053.0979507363,5277553.710504165],[517050.96203517035,5277565.040521494],[517043.6064530121,5277563.685304104],[517042.91984518775,5277567.350911939],[517037.2901893003,5277566.445314971],[517039.6559224978,5277553.560006323],[517044.82743411366,5277554.486492149],[517048.437709151,5277555.141674716],[517048.89479992347,5277552.92021458]]]},"properties":{"ID_SOURCE":"w145201783","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1250}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517130.3140977976,5276961.228161117],[517130.27070749016,5276950.4474693155],[517130.87154533603,5276950.449236907],[517130.8718722981,5276950.3380980315],[517138.4574502347,5276950.360419199],[517138.4489454403,5276953.250029925],[517138.5080217919,5276958.696055837],[517138.57625709096,5276961.030193273],[517130.3140977976,5276961.228161117]]]},"properties":{"ID_SOURCE":"w145201788","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1251}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517011.6794280985,5277515.912896374],[517010.4522160435,5277524.689364563],[517005.39263689687,5277523.996630267],[517000.4681668699,5277523.326522886],[517001.7707861394,5277514.4391329745],[517002.5214360873,5277514.5524650505],[517002.98240733123,5277510.997333809],[517009.21257724555,5277512.01579153],[517008.75160226994,5277515.570922295],[517011.6794280985,5277515.912896374]]]},"properties":{"ID_SOURCE":"w145201791","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1252}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516689.60807847267,5277698.694984154],[516689.6600077831,5277698.9174128715],[516636.9378743218,5277700.655884599],[516636.730057553,5277694.5425952785],[516636.9582013982,5277693.542988009],[516658.8882056398,5277692.827720934],[516677.7389961586,5277692.214854275],[516689.37970003695,5277691.914794207],[516689.60807847267,5277698.694984154]]]},"properties":{"ID_SOURCE":"w145201794","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1253}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.49800025014,5277213.220217558],[516761.5446268322,5277223.111798014],[516752.17915517266,5277223.20709852],[516730.9322270828,5277223.423856467],[516707.8152174773,5277223.657553363],[516693.7256918652,5277223.806077918],[516693.74034961197,5277218.693687349],[516683.6013614437,5277218.775766508],[516683.26603045507,5277178.54218575],[516693.33030552795,5277178.348751615],[516693.38053145993,5277184.406016457],[516693.56634963,5277208.657261131],[516693.6038487702,5277213.914282948],[516761.49800025014,5277213.220217558]]]},"properties":{"ID_SOURCE":"w145201796","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1254}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517117.84869128384,5277471.434697155],[517108.4640527,5277470.517992847],[517108.8506470628,5277466.740371465],[517108.0248948672,5277466.626805022],[517108.51287251175,5277461.5713724345],[517109.10925444565,5277455.4048592625],[517117.4428691984,5277456.207334335],[517116.1328727653,5277467.539755219],[517118.3854878027,5277467.657517988],[517117.84869128384,5277471.434697155]]]},"properties":{"ID_SOURCE":"w145201808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1255}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517138.2103336844,5277697.664393235],[517138.29786166846,5277693.441332153],[517149.1109080966,5277693.695454577],[517151.66414300405,5277693.702976327],[517150.79630152544,5277733.377389455],[517156.8789667589,5277733.395312629],[517156.6173263522,5277745.731078981],[517137.0937447538,5277745.340154082],[517138.2103336844,5277697.664393235]]]},"properties":{"ID_SOURCE":"w145201810","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1256}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.36218788003,5277721.510736306],[516433.58313144324,5277725.751610134],[516428.53171331104,5277732.850306545],[516417.88865075633,5277725.596187896],[516421.0788252476,5277720.759485979],[516422.7908130573,5277718.163641613],[516423.16566002596,5277718.38697887],[516424.97546088556,5277715.724727151],[516429.3228065987,5277718.626631699],[516427.36218788003,5277721.510736306]]]},"properties":{"ID_SOURCE":"w145201821","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1257}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516483.4578926005,5277270.774859265],[516484.28494293033,5277270.443781251],[516482.19628420414,5277265.436576086],[516483.8507009681,5277264.663280883],[516486.0141444635,5277269.781838217],[516487.06681157503,5277269.3402595995],[516487.9617242665,5277271.565590292],[516484.35280644434,5277273.000189408],[516483.4578926005,5277270.774859265]]]},"properties":{"ID_SOURCE":"w145201827","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1258}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516922.7291235034,5277631.016905863],[516923.64545945486,5277625.795992669],[516937.1562751129,5277628.058082432],[516936.92807718547,5277629.057677957],[516935.70552664576,5277636.2782172],[516929.7982605009,5277635.305232275],[516925.42223798856,5277634.581212754],[516925.1179771219,5277635.914007412],[516921.96491918655,5277635.571421824],[516922.7291235034,5277631.016905863]]]},"properties":{"ID_SOURCE":"w145201840","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1259}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.4743941252,5277393.136359635],[516572.5243621491,5277390.747532919],[516573.3426689233,5277393.483902719],[516574.7256611537,5277393.076622209],[516575.8935460731,5277397.003184063],[516577.50784572324,5277402.39806338],[516572.5395703788,5277403.873193423],[516571.051347561,5277404.313516895],[516571.5869031086,5277406.126620921],[516564.8072332041,5277408.130073392],[516563.2822200361,5277403.024415236],[516568.6413242452,5277401.439249649],[516566.86341123126,5277395.477094006],[516565.3075343987,5277395.939454414],[516564.4743941252,5277393.136359635]]]},"properties":{"ID_SOURCE":"w145201849","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1260}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.12374147336,5277541.415130632],[517211.6647328096,5277541.6183118345],[517211.5991640733,5277538.395059513],[517220.00971609884,5277538.531069982],[517219.2106016152,5277529.415230757],[517225.8959024374,5277528.8793075625],[517226.33563418576,5277532.548226912],[517226.4939422645,5277534.882634234],[517226.9110900095,5277541.107705671],[517218.12374147336,5277541.415130632]]]},"properties":{"ID_SOURCE":"w145201852","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1261}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516389.1761863108,5277708.177460778],[516396.0714606529,5277712.975892134],[516392.21758941456,5277718.833225812],[516389.4346391009,5277723.07093441],[516388.0854366446,5277722.178017001],[516385.9740245307,5277725.283990756],[516379.0784438977,5277720.596710273],[516381.26557427336,5277717.268667322],[516382.54030962026,5277717.93909378],[516389.1761863108,5277708.177460778]]]},"properties":{"ID_SOURCE":"w145201913","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1262}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517254.63904100156,5277611.430271562],[517245.14197493275,5277613.058117362],[517242.39210490935,5277613.505646277],[517241.95963114715,5277607.391667473],[517247.2265130237,5277606.518148647],[517253.8307691062,5277605.426318012],[517253.97865601524,5277606.204736043],[517263.220111785,5277604.676172615],[517264.0303515528,5277610.013293554],[517256.06652781216,5277611.212222592],[517254.63904100156,5277611.430271562]]]},"properties":{"ID_SOURCE":"w145201917","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1263}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516771.5108877847,5276917.950550124],[516774.2471974396,5276932.740024608],[516759.5943754739,5276935.25404841],[516756.7822851298,5276920.686642459],[516751.22163009655,5276921.670901578],[516749.74510308146,5276912.775470929],[516764.0237307893,5276909.81578571],[516765.72459221276,5276919.045285326],[516771.5108877847,5276917.950550124]]]},"properties":{"ID_SOURCE":"w145201929","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1264}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516330.16412933957,5276819.893400734],[516338.454831923,5276809.580661167],[516342.906209469,5276813.138509661],[516347.37254046166,5276816.718631525],[516339.08214392036,5276826.9202196635],[516336.1592338887,5276824.6892244825],[516336.6871607317,5276823.912727381],[516333.53955263307,5276821.4588236995],[516333.0122494365,5276822.013043363],[516330.16412933957,5276819.893400734]]]},"properties":{"ID_SOURCE":"w145201949","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1265}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.2225135415,5277381.123801015],[516634.470886875,5277381.343933237],[516635.4389196126,5277384.236335458],[516629.4255936004,5277386.108534709],[516628.5329747514,5277383.105209021],[516627.4806346747,5277383.435623161],[516626.1856843593,5277379.308636276],[516624.28056703345,5277373.201617975],[516631.87257707876,5277370.778223567],[516635.2225135415,5277381.123801015]]]},"properties":{"ID_SOURCE":"w145201956","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1266}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517209.0318520954,5277644.748408378],[517206.6812177112,5277652.410118041],[517195.8031773493,5277648.710358209],[517196.1816105146,5277647.711216326],[517192.80591264693,5277646.478706585],[517194.7003756553,5277640.705023521],[517196.8086971894,5277641.34474869],[517198.3767880634,5277641.827282718],[517198.5282929964,5277641.383170436],[517209.0318520954,5277644.748408378]]]},"properties":{"ID_SOURCE":"w145201957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1267}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516867.59142422176,5277559.060502693],[516857.9045713346,5277558.810165494],[516857.9077894813,5277557.698775664],[516855.2046232239,5277557.579809076],[516855.3009565579,5277550.244853675],[516858.07922320574,5277550.364037755],[516858.15850382956,5277548.919448451],[516867.99492315657,5277549.392499153],[516867.8174414367,5277553.626415673],[516867.59142422176,5277559.060502693]]]},"properties":{"ID_SOURCE":"w145201980","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1268}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.81398893544,5277526.844155254],[516639.3928129256,5277522.22778799],[516637.76326756214,5277516.943986337],[516645.95651141147,5277514.30004913],[516646.17957935884,5277515.078666123],[516649.0355065616,5277514.308853286],[516650.9711934708,5277520.204803065],[516648.03985373245,5277521.085539188],[516649.0072202961,5277524.200222327],[516640.81398893544,5277526.844155254]]]},"properties":{"ID_SOURCE":"w145201981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1269}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.0787587174,5277278.581084946],[516568.3079473764,5277275.794703723],[516566.80150982965,5277277.346374888],[516557.88888723886,5277268.763254893],[516564.3668265252,5277262.00215068],[516573.35455063445,5277270.585494272],[516575.23776024947,5277268.590338036],[516578.15877289535,5277271.377150192],[516571.0787587174,5277278.581084946]]]},"properties":{"ID_SOURCE":"w145201984","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1270}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.129186849,5276928.12142589],[517280.09813969815,5276927.773074372],[517279.5542655858,5276933.884152051],[517275.1991676878,5276933.537810618],[517275.8188017431,5276927.204677629],[517277.5455580296,5276927.432080518],[517278.3193627417,5276919.7657271335],[517285.82789634453,5276920.454850529],[517285.42428528774,5276924.854790354],[517285.129186849,5276928.12142589]]]},"properties":{"ID_SOURCE":"w145202017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1271}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516642.12499784253,5276718.63915617],[516643.3942055795,5276721.310137338],[516642.49164305587,5276721.752116866],[516642.79048559594,5276722.308669652],[516639.70694327063,5276723.744674703],[516637.9148384485,5276720.071942647],[516640.99838226405,5276718.635936653],[516641.2975427052,5276719.081350522],[516642.12499784253,5276718.63915617]]]},"properties":{"ID_SOURCE":"w145202021","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1272}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.49637277395,5276741.842710898],[516632.5117233147,5276744.729531979],[516629.51028493437,5276743.720702426],[516628.9807249113,5276745.052867203],[516625.3039542864,5276743.819831916],[516625.7584061779,5276742.487452376],[516627.6341870867,5276743.15964652],[516628.6939418057,5276740.273039097],[516633.49637277395,5276741.842710898]]]},"properties":{"ID_SOURCE":"w145202028","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1273}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.063590856,5276774.233460432],[516602.3022250389,5276779.352270934],[516600.8622035109,5276783.904895468],[516599.36165027454,5276783.344919181],[516600.6514569064,5276778.791866063],[516599.2329788263,5276775.787049254],[516594.7313114974,5276774.107122857],[516595.1863875175,5276772.552463192],[516600.063590856,5276774.233460432]]]},"properties":{"ID_SOURCE":"w145202032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1274}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517026.25879133854,5277615.092335448],[517026.1089240612,5277614.980757209],[517027.0920001378,5277612.649693573],[517024.61707602924,5277611.53105624],[517027.03868219233,5277605.20316161],[517029.8136685116,5277606.433817617],[517030.3435688213,5277604.990548467],[517039.1184493741,5277608.906121909],[517036.93463830015,5277613.523152377],[517034.2823730947,5277619.116844486],[517026.25879133854,5277615.092335448]]]},"properties":{"ID_SOURCE":"w145202034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1275}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.1562751129,5277628.058082432],[516938.15063068754,5277621.837139045],[516941.8290441597,5277622.292402098],[516941.83001442935,5277621.9589851145],[516953.31453380524,5277623.770656275],[516952.1641452216,5277631.991661687],[516944.7031029442,5277630.769629621],[516940.37958130485,5277630.067979667],[516940.3808748906,5277629.623423686],[516936.92807718547,5277629.057677957],[516937.1562751129,5277628.058082432]]]},"properties":{"ID_SOURCE":"w145202041","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1276}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516896.41437299247,5277589.92984013],[516896.564565942,5277589.930276029],[516896.3212136206,5277596.15340554],[516899.02436122263,5277596.272391274],[516898.78294207854,5277601.828686805],[516896.07979705255,5277601.709701176],[516896.0791519558,5277601.931979157],[516888.34519818693,5277601.576119021],[516888.55850324134,5277595.352902007],[516888.75549977086,5277589.57419744],[516896.41437299247,5277589.92984013]]]},"properties":{"ID_SOURCE":"w145202043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1277}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.3705494745,5276849.101758041],[516484.1217604418,5276850.557192441],[516480.56535699585,5276859.882865472],[516476.6636249176,5276858.538147166],[516476.3603711807,5276859.537546906],[516473.4343858032,5276858.417871183],[516473.81274500396,5276857.41868377],[516471.71952215664,5276856.623670155],[516463.75923653785,5276853.611499427],[516467.39040855604,5276844.397167532],[516480.3705494745,5276849.101758041]]]},"properties":{"ID_SOURCE":"w145202055","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1278}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.3136061747,5277607.46255786],[517303.0922812094,5277606.128220427],[517302.5755255739,5277603.1259054495],[517306.18080956873,5277602.914341629],[517309.04339138226,5277599.9220726285],[517313.5382658555,5277603.603057201],[517314.4076902588,5277614.275079991],[517310.55439732905,5277614.552585231],[517305.619455686,5277614.915789631],[517305.1913430734,5277607.356999123],[517303.3136061747,5277607.46255786]]]},"properties":{"ID_SOURCE":"w145202058","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1279}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517291.48651434557,5277478.2827887675],[517285.48292923224,5277484.422114126],[517284.2927868124,5277485.6300061485],[517278.65090645745,5277491.359194578],[517275.86384685786,5277494.196106389],[517271.7480706545,5277491.794386121],[517280.9724630733,5277480.896702148],[517277.57106626104,5277478.174792485],[517283.4336128037,5277471.47934063],[517288.8870849158,5277476.096726118],[517291.48651434557,5277478.2827887675]]]},"properties":{"ID_SOURCE":"w145202088","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1280}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516502.3441886207,5277417.088389127],[516502.2722400442,5277415.976786651],[516496.7281617816,5277411.293201357],[516507.20438776305,5277398.097252036],[516518.9083226804,5277407.477308763],[516517.227596908,5277409.595311597],[516508.71906881494,5277420.107237712],[516508.26690126193,5277420.661654885],[516511.71387437213,5277423.338786094],[516502.3441886207,5277417.088389127]]]},"properties":{"ID_SOURCE":"w145202101","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1281}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516548.26122708694,5277458.896166238],[516546.1758507032,5277452.777546677],[516546.7772682996,5277452.556976188],[516545.8088873811,5277449.775727444],[516555.20470404567,5277446.801660651],[516555.9493663634,5277449.026575461],[516556.250391581,5277448.805151747],[516558.6326746712,5277456.147157885],[516553.0552068065,5277457.953991432],[516548.4098439145,5277459.4522879915],[516548.26122708694,5277458.896166238]]]},"properties":{"ID_SOURCE":"w145202107","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1282}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517269.1643174669,5276876.594083089],[517268.9765862066,5276876.582412369],[517265.52248247823,5276876.316548362],[517265.45986059285,5276877.1721394295],[517264.52127024694,5276877.091558727],[517263.76286761224,5276877.033740335],[517263.614565511,5276878.922677891],[517253.40243529907,5276878.136660495],[517254.0115742754,5276870.269765025],[517269.5625511052,5276871.471717637],[517269.1643174669,5276876.594083089]]]},"properties":{"ID_SOURCE":"w145202112","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1283}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516445.2376265866,5277747.123382658],[516439.46100443375,5277745.106548883],[516440.21759849694,5277743.108167176],[516432.1149230267,5277740.41793294],[516432.5695684141,5277738.974397503],[516435.97674881,5277729.092564567],[516441.4536372898,5277730.886268415],[516442.1345113902,5277729.1099529425],[516450.3867592378,5277732.022903478],[516445.2376265866,5277747.123382658]]]},"properties":{"ID_SOURCE":"w145202130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1284}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517073.362226725,5277404.175560283],[517072.51006738556,5277413.064254227],[517068.21559114085,5277412.651559297],[517062.90003157494,5277412.146963053],[517063.28725135815,5277408.147061143],[517060.8844146353,5277408.0288796285],[517061.19523168856,5277404.47331336],[517063.59774414997,5277404.702633951],[517069.52892563597,5277405.275719592],[517069.75845818035,5277403.831573722],[517073.362226725,5277404.175560283]]]},"properties":{"ID_SOURCE":"w145202134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1285}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517187.9692230363,5277682.251494157],[517187.28909989627,5277683.694305803],[517183.47271014925,5277691.840713767],[517181.6212013996,5277695.791832037],[517174.57176861155,5277692.547971906],[517176.38651295344,5277688.330007036],[517174.13660730433,5277687.323109557],[517175.5732533828,5277683.993148821],[517177.82316007884,5277685.000046849],[517180.6197239343,5277678.89560096],[517187.9692230363,5277682.251494157]]]},"properties":{"ID_SOURCE":"w145202141","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1286}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.0117999632,5277681.809420065],[516734.0935818028,5277680.8180183675],[516733.20074383554,5277677.92581401],[516738.84526069177,5277676.25271391],[516745.8276294231,5277674.183363667],[516748.1332051059,5277681.969790743],[516736.18219196546,5277685.7141790185],[516736.6292487344,5277686.938003414],[516732.9463885986,5277688.038816006],[516732.12800758705,5277685.369105636],[516731.0117999632,5277681.809420065]]]},"properties":{"ID_SOURCE":"w145202150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1287}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.12800758705,5277685.369105636],[516729.2715141692,5277686.361155758],[516728.82509453816,5277684.915053918],[516718.076580665,5277688.32951508],[516715.3961291446,5277680.319743817],[516720.84596521006,5277678.446015462],[516726.2958048062,5277676.572292211],[516726.8911390866,5277678.463381384],[516729.5974452757,5277677.470898497],[516731.0117999632,5277681.809420065],[516732.12800758705,5277685.369105636]]]},"properties":{"ID_SOURCE":"w145202175","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1288}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.8987379986,5277652.362764174],[516730.8165008331,5277645.2438250035],[516734.2741002539,5277644.142363493],[516734.7965759137,5277645.255264522],[516744.3426873013,5277642.170795302],[516747.0227973513,5277650.29171847],[516741.4830673311,5277652.076251969],[516737.10090002685,5277653.486242817],[516736.3560140978,5277651.372442898],[516732.97319478507,5277652.5852580145],[516732.8987379986,5277652.362764174]]]},"properties":{"ID_SOURCE":"w145202178","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1289}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517270.89703659376,5276965.977885288],[517270.977744976,5276964.088747172],[517271.50380653894,5276963.979167647],[517273.8956592887,5276962.797066166],[517276.70819764544,5276961.582871865],[517277.7378148338,5276963.8865217725],[517277.25619014003,5276974.332239018],[517274.7784034626,5276974.1026080195],[517270.27312653285,5276973.75582456],[517270.6720526215,5276965.866078142],[517270.89703659376,5276965.977885288]]]},"properties":{"ID_SOURCE":"w145202214","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1290}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.2129406339,5277417.6231182525],[516616.94828163047,5277416.191813164],[516620.6316082653,5277414.979788353],[516621.450396627,5277417.53834274],[516622.8034422984,5277417.0976461945],[516623.9637800298,5277421.024196486],[516625.70436299726,5277426.886237666],[516617.36176036333,5277429.196357701],[516614.7586842304,5277420.297739303],[516613.10524532467,5277420.737580553],[516612.2129406339,5277417.6231182525]]]},"properties":{"ID_SOURCE":"w145202219","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1291}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516868.312377776,5277543.50300351],[516859.67975470854,5277542.255458889],[516860.16967771424,5277539.044934224],[516861.0115500395,5277533.590402691],[516862.20559892064,5277525.814067214],[516870.1626923552,5277526.948518002],[516869.2402710429,5277534.28107931],[516866.50786017417,5277533.884173022],[516864.51107958436,5277533.600538788],[516863.59252943395,5277539.599433299],[516868.772298804,5277540.281278619],[516868.312377776,5277543.50300351]]]},"properties":{"ID_SOURCE":"w145202223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1292}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.3915035117,5277180.120457434],[516320.3624122452,5277181.736991974],[516321.0523465412,5277176.737635091],[516315.2202547417,5277167.496687505],[516318.2305604537,5277165.282327454],[516330.1175500117,5277157.869287499],[516332.6299735316,5277161.799569056],[516338.8661278391,5277171.564024977],[516337.4366978809,5277172.449132373],[516339.0814534799,5277175.1211026665],[516338.3915035117,5277180.120457434]]]},"properties":{"ID_SOURCE":"w145202249","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1293}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517004.8095162566,5277759.622722713],[517016.52455025684,5277759.5458144285],[517016.67473883764,5277759.546253437],[517004.8095162566,5277759.622722713]]]},"properties":{"ID_SOURCE":"w145202275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1294}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516594.4095507822,5277498.371033446],[516597.5665034864,5277497.379773637],[516597.2686475138,5277496.489805484],[516601.3725297501,5277495.256739571],[516607.5659052465,5277493.40725323],[516610.24595884676,5277501.639249888],[516600.0989093214,5277504.722225659],[516600.39676443307,5277505.612193968],[516597.08962060977,5277506.603024074],[516595.67575627274,5277502.042258621],[516594.4095507822,5277498.371033446]]]},"properties":{"ID_SOURCE":"w145202307","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1295}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516574.3817590134,5276835.820643687],[516572.88216558855,5276834.927257573],[516569.28434117517,5276832.360804827],[516568.9829675512,5276832.693366587],[516566.2100442642,5276830.573821967],[516566.58715646394,5276830.019196019],[516565.46277558175,5276829.238019055],[516572.3240150325,5276819.921801789],[516573.8229797904,5276821.037465439],[516577.3665843221,5276816.268542603],[516583.6612828744,5276821.287754547],[516580.2688381487,5276825.723684719],[516581.3925848166,5276826.727142255],[516574.3817590134,5276835.820643687]]]},"properties":{"ID_SOURCE":"w145202397","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1296}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.7608254351,5276973.287598402],[517224.88604855316,5276981.734597439],[517225.7869717353,5276981.848402379],[517226.15455465415,5277035.307760408],[517209.10602855467,5277035.25734951],[517208.587423562,5276982.0198267875],[517209.2633624945,5276982.021824433],[517214.52066530683,5276982.037364343],[517214.5462931591,5276973.368531876],[517224.7608254351,5276973.287598402]]]},"properties":{"ID_SOURCE":"w145202407","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1297}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516595.67575627274,5277502.042258621],[516592.51912315935,5277502.922380475],[516592.22190018103,5277501.810134625],[516581.9997630987,5277504.892927896],[516579.3941358508,5277496.88343609],[516585.5652581582,5277494.933837131],[516589.8422120533,5277493.579002279],[516590.3621953943,5277495.581001775],[516593.2938558206,5277494.589097666],[516594.4095507822,5277498.371033446],[516595.67575627274,5277502.042258621]]]},"properties":{"ID_SOURCE":"w145202419","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1298}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517281.86229650106,5277699.7561596595],[517280.0695815685,5277696.527778667],[517281.2734127362,5277695.753372187],[517278.7335709922,5277691.233550098],[517275.52142997464,5277685.51142233],[517283.64557549905,5277680.867656882],[517287.53007000603,5277687.7698694505],[517291.2160079359,5277685.669156439],[517295.1011505933,5277692.349096133],[517293.07027974125,5277693.454462949],[517281.86229650106,5277699.7561596595]]]},"properties":{"ID_SOURCE":"w145202469","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1299}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516689.60807847267,5277698.694984154],[516689.37970003695,5277691.914794207],[516696.1385825423,5277691.823034433],[516715.2146663542,5277691.2109352155],[516733.76476885,5277690.708526505],[516752.01449415076,5277690.2053125305],[516753.44162234647,5277690.0982793905],[516753.5732621676,5277696.54477404],[516753.19746686047,5277696.654832513],[516689.60807847267,5277698.694984154]]]},"properties":{"ID_SOURCE":"w145202472","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1300}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.2129406339,5277417.6231182525],[516609.50716843025,5277418.393377617],[516608.6145444075,5277415.390054841],[516610.0426883125,5277414.949569565],[516608.32423513156,5277409.220964242],[516607.14141819853,5277405.272125118],[516614.73274497077,5277403.070986267],[516617.63336918375,5277412.970712412],[516616.205224211,5277413.41119583],[516616.94828163047,5277416.191813164],[516612.2129406339,5277417.6231182525]]]},"properties":{"ID_SOURCE":"w145202503","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1301}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.63962748874,5276755.117091688],[516604.26897801284,5276758.652542909],[516601.72895790293,5276753.866291874],[516600.4505505619,5276754.418346164],[516595.1486579204,5276743.622679274],[516597.78090071474,5276742.407643878],[516602.66985246376,5276739.976505981],[516605.37752284243,5276738.650549312],[516610.52982057945,5276749.223519304],[516609.10056280624,5276749.997420917],[516611.63962748874,5276755.117091688]]]},"properties":{"ID_SOURCE":"w145202505","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1302}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516595.1863875175,5276772.552463192],[516594.7313114974,5276774.107122857],[516593.2158710208,5276778.770674046],[516581.8854847436,5276774.959648295],[516582.1887609073,5276773.960254131],[516577.0120733317,5276771.945000113],[516579.51243789075,5276764.283475693],[516584.6149739093,5276765.965101457],[516585.14547148376,5276764.299516091],[516596.55066677596,5276768.221900979],[516595.1863875175,5276772.552463192]]]},"properties":{"ID_SOURCE":"w145202506","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1303}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517216.0124770137,5277595.089484276],[517213.01124905574,5277594.191490311],[517213.39133166627,5277592.63665469],[517218.91353260435,5277594.308970155],[517218.94156604086,5277594.987006811],[517226.9781984168,5277594.566222096],[517227.049677323,5277595.788973149],[517225.0214166065,5277596.005251703],[517224.5659058915,5277597.671003381],[517216.0124770137,5277595.089484276]]]},"properties":{"ID_SOURCE":"w145202513","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1304}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.5925347735,5277543.471027715],[516963.5949929652,5277543.9687910015],[516963.3198185102,5277545.623974069],[516973.58075711183,5277547.309865286],[516972.00608940097,5277556.796624214],[516965.63337419444,5277555.744448644],[516962.3832319247,5277555.20150665],[516962.138582788,5277556.69006885],[516958.50560834684,5277556.090443684],[516959.6599360129,5277549.103105004],[516960.5925347735,5277543.471027715]]]},"properties":{"ID_SOURCE":"w145202521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1305}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516667.4861243016,5276242.011259175],[516671.37679920706,5276242.100192232],[516671.3823663296,5276240.155264033],[516675.97179240244,5276240.179516485],[516675.9166753097,5276254.182956638],[516672.8821137906,5276254.163154994],[516672.897385046,5276248.828494706],[516672.34154318186,5276248.826903553],[516671.6955647989,5276248.825054443],[516671.6942922878,5276249.269609466],[516667.43518309266,5276249.312989407],[516667.4861243016,5276242.011259175]]]},"properties":{"ID_SOURCE":"w145337927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1306}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517305.0802982018,5276558.085091268],[517304.9366834798,5276555.861868829],[517310.94679094426,5276555.435171534],[517312.03874851,5276567.108095005],[517311.3624310167,5276567.217224354],[517311.57685778674,5276570.885474741],[517306.24209230253,5276571.536457754],[517305.80497528234,5276566.978427534],[517299.1185629094,5276567.514260883],[517298.2433260007,5276558.731618071],[517302.07504784083,5276558.365125446],[517305.0802982018,5276558.085091268]]]},"properties":{"ID_SOURCE":"w145337928","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1307}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.97606548684,5276489.944335643],[516340.84603565175,5276492.7280741],[516335.27787507884,5276496.268922969],[516335.0528551159,5276496.157152137],[516330.865050711,5276489.588166587],[516324.50899434637,5276479.456636542],[516306.97788310447,5276463.4034102345],[516311.04788341245,5276458.413522644],[516329.85307834315,5276475.470590432],[516338.44966738205,5276490.165138192],[516338.97606548684,5276489.944335643]]]},"properties":{"ID_SOURCE":"w145337929","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1308}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.5222984181,5276481.470739185],[516680.31343389687,5276481.453980959],[516682.61939806753,5276481.438358056],[516682.63804506185,5276485.417213035],[516681.706672203,5276485.414545161],[516681.7167281909,5276487.148353424],[516681.7266886661,5276488.91550333],[516682.41770682327,5276488.9174827095],[516682.4235602682,5276492.118323116],[516676.82018012024,5276492.146730802],[516674.56686129555,5276492.140278768],[516674.5222984181,5276481.470739185]]]},"properties":{"ID_SOURCE":"w145337930","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1309}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516790.53429914545,5276207.044499045],[516790.60685031035,5276207.933825562],[516790.60044244904,5276210.156600517],[516783.5400215393,5276210.025111197],[516783.6316145111,5276206.913464361],[516783.7232716203,5276203.779589793],[516783.789704294,5276201.579215774],[516813.0150405297,5276202.241432401],[516817.3639058591,5276202.342899469],[516828.53293089947,5276202.54186923],[516830.95896437566,5276202.604449174],[516830.95318345027,5276204.604946605],[516830.94624633976,5276207.005543534],[516830.9429062476,5276208.161386503],[516820.5252917838,5276207.875670312],[516817.2730673067,5276207.788481165],[516814.46398502885,5276207.713687097],[516790.53429914545,5276207.044499045]]]},"properties":{"ID_SOURCE":"w145337934","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1310}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.1929301007,5276439.103341156],[516667.1324668222,5276439.08313104],[516666.53157633083,5276439.081411425],[516666.5621089828,5276428.412087777],[516673.5471555676,5276428.5432209205],[516674.14836534153,5276428.433802469],[516674.13754677516,5276432.212521239],[516673.4615441722,5276432.210585865],[516673.4106546487,5276434.24429666],[516673.37656922603,5276435.655673255],[516674.2027941415,5276435.658038712],[516674.1929301007,5276439.103341156]]]},"properties":{"ID_SOURCE":"w145337935","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1311}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517093.5543074549,5276512.004226442],[517101.4242536637,5276517.695458526],[517099.6144271219,5276520.135218955],[517100.81358084036,5276521.027858045],[517102.6123107282,5276522.366817149],[517099.5958267834,5276526.470130523],[517097.57209311804,5276525.019372009],[517095.0843213667,5276528.123982113],[517089.31355667056,5276523.772594992],[517094.51704104897,5276516.674921988],[517091.6690459535,5276514.554907656],[517093.5543074549,5276512.004226442]]]},"properties":{"ID_SOURCE":"w145337938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1312}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.75980560255,5276423.970533366],[516706.7919672758,5276420.614206682],[516709.96912210225,5276420.645549544],[516713.1537880609,5276420.676915694],[516713.16410585836,5276419.69891594],[516717.14495489036,5276419.732569142],[516717.08253370575,5276425.77838972],[516717.07068399555,5276427.2898556525],[516713.48041974986,5276427.257323351],[516713.46962348727,5276428.402031297],[516706.71723159426,5276428.338201481],[516706.75980560255,5276423.970533366]]]},"properties":{"ID_SOURCE":"w145337940","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1313}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516946.2249259165,5276602.041416175],[516945.7098333448,5276598.3723054],[516947.9637581893,5276598.156584816],[516947.6739942948,5276594.488129638],[516958.4191573518,5276592.963452916],[516959.1547155591,5276598.300303184],[516959.522494141,5276600.968728374],[516955.9907422586,5276601.514143123],[516955.98847713403,5276602.292114825],[516951.9008859025,5276602.847027683],[516946.37061667367,5276603.597796705],[516946.2249259165,5276602.041416175]]]},"properties":{"ID_SOURCE":"w145337941","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1314}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516569.1589265336,5276316.772204441],[516568.4258190121,5276310.435157834],[516568.3522868567,5276309.879250319],[516572.40965245315,5276309.446235263],[516572.77889241796,5276311.670079272],[516583.3729831122,5276310.588837857],[516584.40082944895,5276318.927239749],[516573.6568442844,5276319.896913014],[516573.36240181775,5276317.784421429],[516573.21628739557,5276316.339189954],[516569.1589265336,5276316.772204441]]]},"properties":{"ID_SOURCE":"w145337942","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1315}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516891.1347322494,5276613.995602714],[516892.5340797486,5276623.557680408],[516889.6038641444,5276623.882600728],[516889.01201742404,5276620.768971189],[516880.1452926307,5276622.076940648],[516879.1150273713,5276614.738730815],[516883.1728494146,5276614.083654859],[516882.80471455934,5276611.526373342],[516887.68906168407,5276610.7625569375],[516888.04971576895,5276613.308703106],[516888.2041896236,5276614.431662567],[516891.1347322494,5276613.995602714]]]},"properties":{"ID_SOURCE":"w145337944","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1316}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.93107249046,5276084.046963248],[517222.7400981614,5276081.940657906],[517228.28454186884,5276086.736061721],[517226.5512889029,5276088.620310073],[517226.9258820266,5276088.95483705],[517219.1613510951,5276098.267612018],[517210.319697754,5276090.795120696],[517213.40995672974,5276087.247782346],[517215.8080800457,5276089.144244796],[517218.2807174098,5276086.161895977],[517220.40657546173,5276083.600853777],[517220.93107249046,5276084.046963248]]]},"properties":{"ID_SOURCE":"w145337946","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1317}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516670.1818092707,5276449.650130074],[516667.1022510827,5276449.641316076],[516667.1324668222,5276439.08313104],[516674.1929301007,5276439.103341156],[516674.71870928205,5276439.104846507],[516674.7823651609,5276443.106057973],[516674.18179327704,5276442.99319878],[516674.1398465626,5276444.526806552],[516674.0974543964,5276446.216008638],[516674.6986623595,5276446.106590245],[516674.7635909636,5276449.663246592],[516670.1818092707,5276449.650130074]]]},"properties":{"ID_SOURCE":"w145337949","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1318}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517166.8489588574,5276618.580577553],[517175.19589241466,5276615.2709951615],[517175.49403417914,5276616.049852931],[517174.89250628225,5276616.270358448],[517175.1906480341,5276617.0492162],[517174.1348607828,5276618.490919701],[517174.93262738036,5276620.493788491],[517175.7751310156,5276622.6079291245],[517168.02940658364,5276625.808143224],[517166.836837104,5276622.6927137375],[517168.1904365711,5276622.141005127],[517166.8489588574,5276618.580577553]]]},"properties":{"ID_SOURCE":"w145337951","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1319}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.59483290475,5276652.920783607],[517309.7551011564,5276653.123507804],[517309.75311908126,5276653.790340725],[517297.8833252419,5276654.644189807],[517297.74169116555,5276651.754134288],[517297.38331389,5276645.973800211],[517303.8968531085,5276645.448565601],[517309.32856432424,5276645.009034507],[517309.32559129264,5276646.009283873],[517312.1052725983,5276645.7952669505],[517312.17737470445,5276646.806853484],[517312.59483290475,5276652.920783607]]]},"properties":{"ID_SOURCE":"w145337952","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1320}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.22544057714,5276389.7889128225],[516685.2480469976,5276381.898059481],[516687.95239923423,5276381.794668082],[516687.95271768485,5276381.6835293025],[516690.4614602359,5276381.690718274],[516692.1589926209,5276381.69558328],[516692.3044387022,5276383.363095518],[516695.4591439988,5276383.372138076],[516695.5097240795,5276391.93003943],[516692.0545757373,5276391.920135724],[516691.91008540156,5276389.91920713],[516685.22544057714,5276389.7889128225]]]},"properties":{"ID_SOURCE":"w145337956","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1321}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.95156708546,5276222.220368039],[517308.9872522494,5276229.123023099],[517299.882938141,5276234.31954081],[517299.06097571715,5276232.872282952],[517295.44923361024,5276234.973211502],[517291.56343471626,5276228.182150535],[517295.4759659422,5276225.970973048],[517295.6252040056,5276226.304835392],[517301.04233106703,5276223.32015171],[517301.4907047492,5276224.09946169],[517304.95156708546,5276222.220368039]]]},"properties":{"ID_SOURCE":"w145337964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1322}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516903.1605693834,5276611.140861891],[516902.1296859319,5276604.024925684],[516910.6205745257,5276602.827037952],[516910.1792780093,5276599.60270373],[516913.4863443987,5276598.834329157],[516914.7354408043,5276608.39597576],[516911.8048935325,5276608.832023742],[516911.98872880475,5276610.188462598],[516912.3196837134,5276612.612270344],[516907.4353347972,5276613.376066096],[516906.9927467461,5276610.59628733],[516903.1605693834,5276611.140861891]]]},"properties":{"ID_SOURCE":"w145337965","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1323}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517215.23307244317,5276385.329897137],[517221.0032245264,5276389.903685524],[517218.66621058446,5276392.786409125],[517219.7151487452,5276393.678628365],[517215.492784047,5276399.1119933855],[517207.6995410358,5276392.865136388],[517209.7347880091,5276390.426075682],[517211.2334143071,5276391.653041448],[517212.236016144,5276390.433467225],[517213.41954408935,5276388.992148424],[517212.6697382045,5276388.545373379],[517215.23307244317,5276385.329897137]]]},"properties":{"ID_SOURCE":"w145337966","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1324}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517258.73528944195,5276634.7451551445],[517259.09370585,5276640.525486645],[517253.90988622623,5276640.954685055],[517254.27390485,5276644.845656377],[517250.5174833989,5276645.167947313],[517250.15346228937,5276641.276976232],[517243.9177929188,5276641.814207707],[517243.62788869074,5276638.256875921],[517243.1927025778,5276633.032017121],[517251.6671513403,5276632.323592836],[517258.5188558977,5276631.74373931],[517258.73528944195,5276634.7451551445]]]},"properties":{"ID_SOURCE":"w145337967","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1325}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516714.7056279539,5276586.590736155],[516716.56996442424,5276591.263956021],[516717.0171112226,5276592.487776591],[516712.28012014704,5276594.25241652],[516712.50321549096,5276595.031034864],[516707.0148162404,5276596.904662482],[516704.03148460796,5276589.560882434],[516709.74585575005,5276587.46562091],[516709.5975502636,5276586.798357005],[516711.3797162036,5276586.081062519],[516713.9589994075,5276585.032637068],[516714.7056279539,5276586.590736155]]]},"properties":{"ID_SOURCE":"w145337970","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1326}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516672.45671105385,5276470.984351197],[516679.1492195798,5276470.959058283],[516680.2082832801,5276470.962091454],[516680.22591341246,5276475.296590501],[516679.71515966626,5276475.295127669],[516679.7182463222,5276476.839978434],[516679.7219059242,5276478.184779373],[516680.30777022295,5276478.186457332],[516680.31343389687,5276481.453980959],[516674.5222984181,5276481.470739185],[516672.4867966843,5276481.464911624],[516672.45671105385,5276470.984351197]]]},"properties":{"ID_SOURCE":"w145337972","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1327}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5410906715,5276193.007678636],[516822.57344048034,5276193.1333510475],[516822.4903009915,5276195.911602712],[516829.0249372268,5276196.0416199295],[516829.85087504645,5276196.155146128],[516829.84766363876,5276197.266533581],[516831.04949460295,5276197.270006453],[516831.00483968365,5276199.726064193],[516830.977712736,5276201.3152831355],[516830.95896437566,5276202.604449174],[516828.53293089947,5276202.54186923],[516817.3639058591,5276202.342899469],[516817.3146952709,5276201.1757908175],[516817.3647058048,5276199.464384263],[516817.5410906715,5276193.007678636]]]},"properties":{"ID_SOURCE":"w145337973","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1328}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516724.044408532,5276577.837508493],[516731.46364765783,5276583.638085228],[516727.0907001996,5276589.404789381],[516724.4621912561,5276589.2861004835],[516720.7143807936,5276586.60798516],[516720.7923620957,5276585.607951484],[516721.7735713633,5276583.94367284],[516721.0995009876,5276583.274899008],[516722.0115165932,5276582.166120387],[516722.9085106492,5276581.057298771],[516722.0842210842,5276580.388093476],[516724.044408532,5276577.837508493]]]},"properties":{"ID_SOURCE":"w145337974","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1329}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.22544057714,5276389.7889128225],[516678.9160369596,5276389.770840486],[516678.91030791786,5276391.771338532],[516675.00512438064,5276391.537876761],[516674.80301729025,5276383.424100671],[516678.40871297836,5276383.323285548],[516678.41316875484,5276381.767342642],[516680.59908859455,5276381.718033058],[516682.76998606726,5276381.66868126],[516682.76934936194,5276381.890958817],[516685.2480469976,5276381.898059481],[516685.22544057714,5276389.7889128225]]]},"properties":{"ID_SOURCE":"w145337976","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1330}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.0351038638,5276612.901207529],[517161.8425290167,5276609.785779142],[517163.0455851884,5276609.344765474],[517161.7788829818,5276605.895699325],[517170.2006132801,5276602.697469956],[517170.4246302057,5276603.142689561],[517169.8231011751,5276603.363195598],[517169.97102588066,5276604.141610179],[517169.21534667525,5276605.69533915],[517169.968510002,5276607.54248001],[517170.8559517485,5276609.70120827],[517163.0351038638,5276612.901207529]]]},"properties":{"ID_SOURCE":"w145337977","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1331}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.60455288953,5276137.293740729],[517221.0826810887,5276134.393694421],[517218.3686753498,5276137.719861718],[517203.90689206216,5276125.674040223],[517216.4207206611,5276110.596016813],[517224.8132864835,5276117.51149124],[517244.96999132435,5276134.242090666],[517246.9183808155,5276135.803815571],[517236.9683052099,5276147.55516963],[517236.893519024,5276147.443808602],[517234.5856963713,5276145.503148445],[517232.77238257613,5276143.986283166],[517232.39746453374,5276143.762894508],[517231.4173509663,5276144.982531562],[517229.68345662387,5276147.089056583],[517229.00906453066,5276146.5313631445],[517227.0308250631,5276144.9028721005],[517221.81543128873,5276140.6196843],[517224.60455288953,5276137.293740729]]]},"properties":{"ID_SOURCE":"w145337978","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1332}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516892.5340797486,5276623.557680408],[516891.1347322494,5276613.995602714],[516894.1403843917,5276613.559762225],[516893.9936160121,5276612.370141107],[516893.70004682196,5276610.002012767],[516898.73461495055,5276609.2386413915],[516899.10242046526,5276611.907062745],[516903.1605693834,5276611.140861891],[516904.19080504304,5276618.479076006],[516895.47429120983,5276619.787458179],[516895.9152717951,5276623.122930194],[516892.5340797486,5276623.557680408]]]},"properties":{"ID_SOURCE":"w145337979","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1333}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517163.0351038638,5276612.901207529],[517170.8559517485,5276609.70120827],[517171.64555437793,5276611.926332057],[517172.1967736752,5276613.483914349],[517173.99808054394,5276613.933785289],[517174.4454573831,5276615.04650244],[517175.04698538885,5276614.825996876],[517175.19589241466,5276615.2709951615],[517166.8489588574,5276618.580577553],[517165.43204284256,5276615.131067739],[517164.22866011487,5276615.683219731],[517163.0351038638,5276612.901207529]]]},"properties":{"ID_SOURCE":"w145337982","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1334}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516337.7194217889,5276509.501393433],[516336.8165382499,5276510.054559013],[516338.9093395303,5276513.728039486],[516333.0413823327,5276517.04577006],[516332.4436167754,5276515.93269684],[516329.28368619515,5276517.813210448],[516326.069521855,5276512.247215236],[516328.32657180267,5276510.919866787],[516326.2334512828,5276507.357528953],[516328.71614607715,5276505.919673548],[516328.7201969911,5276504.4748691],[516330.37512018386,5276503.590391959],[516331.5750177125,5276504.260594733],[516333.7566498249,5276503.044176574],[516335.02885198756,5276504.714839953],[516337.7194217889,5276509.501393433]]]},"properties":{"ID_SOURCE":"w145337983","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1335}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.0308125049,5276390.070834495],[516706.1067906644,5276381.913398913],[516708.6830064428,5276381.965245157],[516708.68332528963,5276381.854106377],[516710.2833395235,5276381.81424102],[516713.04014316876,5276381.755467638],[516713.11047124065,5276383.422764866],[516716.2651765342,5276383.431818691],[516716.23997613665,5276392.211782271],[516712.78482793004,5276392.201866265],[516712.7154566658,5276390.201152683],[516706.0308125049,5276390.070834495]]]},"properties":{"ID_SOURCE":"w145337984","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1336}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516518.01120495045,5276421.098210783],[516515.542924623,5276417.42360129],[516512.1559710244,5276419.859070581],[516506.7703039064,5276411.952886395],[516515.12408589997,5276406.1973059615],[516516.15665657003,5276407.6005940605],[516516.77024022694,5276408.424767763],[516518.3507381535,5276407.3178534545],[516521.9415973603,5276412.440464414],[516520.43652702443,5276413.436452032],[516523.20399110124,5276417.556471117],[516518.01120495045,5276421.098210783]]]},"properties":{"ID_SOURCE":"w145337985","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1337}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.9109585862,5276147.123309944],[516651.94601089903,5276147.053543425],[516651.9847312733,5276144.019541784],[516652.006204453,5276141.763468368],[516650.6090945178,5276141.748360285],[516650.5914979999,5276142.648541111],[516645.8443485774,5276142.590516405],[516645.88357398397,5276139.378692774],[516658.22464775696,5276139.536229144],[516658.9006525393,5276139.549276541],[516658.8038267275,5276147.139837461],[516656.9109585862,5276147.123309944]]]},"properties":{"ID_SOURCE":"w145337986","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1338}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517185.4517021284,5276525.055753925],[517192.57208048436,5276530.189199169],[517191.07122076186,5276532.274196267],[517189.9323995975,5276533.849019433],[517190.3787955135,5276535.295154067],[517189.7749624222,5276536.293629645],[517190.67398688564,5276537.074261716],[517190.2974524023,5276537.406569576],[517182.5775115519,5276531.826798953],[517184.84032601543,5276528.610422386],[517183.6418425066,5276527.495488347],[517185.4517021284,5276525.055753925]]]},"properties":{"ID_SOURCE":"w145337988","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1339}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516939.75023026107,5276581.461724694],[516932.1806521488,5276575.771584197],[516933.9900680072,5276573.442910543],[516933.11319242243,5276572.784636334],[516930.84225058317,5276571.09982353],[516933.85794598,5276567.218700421],[516935.8059493202,5276568.891461273],[516938.3693747487,5276565.564724015],[516944.1402097498,5276569.915961681],[516939.2383643544,5276576.681226521],[516941.71148300875,5276578.577796315],[516939.75023026107,5276581.461724694]]]},"properties":{"ID_SOURCE":"w145337989","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1340}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517193.5219631019,5276513.743317912],[517200.56723801396,5276518.876551078],[517199.2998708262,5276520.7399561405],[517198.22864443064,5276522.314977304],[517198.675039196,5276523.761112549],[517197.84521643835,5276524.98119944],[517198.66978779854,5276525.539333328],[517198.21748549945,5276526.093696459],[517190.49753709306,5276520.513915453],[517192.83579871163,5276517.1866249405],[517191.6366581993,5276516.293966872],[517193.5219631019,5276513.743317912]]]},"properties":{"ID_SOURCE":"w145337990","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1341}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.69625532243,5276340.116551329],[516683.4151561387,5276339.993146712],[516683.26811453886,5276338.881328673],[516683.64367756026,5276338.8824044885],[516683.5781158651,5276335.548026198],[516683.5921238596,5276330.657920306],[516686.2213871341,5276330.554312891],[516686.287265812,5276333.777552421],[516686.2821711685,5276335.555772751],[516687.78442411334,5276335.560076935],[516687.69625532243,5276340.116551329]]]},"properties":{"ID_SOURCE":"w145337992","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1342}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516921.06230761996,5276550.62168593],[516919.02691462793,5276553.171986505],[516920.19630336796,5276553.9755900735],[516921.95038587163,5276555.180995868],[516919.00915629003,5276559.2846208885],[516916.7471466441,5276562.278822899],[516914.3487999168,5276560.493620743],[516908.6527205466,5276556.25376962],[516913.7044442876,5276549.600054381],[516911.08172980713,5276547.480782793],[516913.2679867197,5276544.708638124],[516921.06230761996,5276550.62168593]]]},"properties":{"ID_SOURCE":"w145337993","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1343}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.98697083746,5276600.338721499],[516935.31114238163,5276609.900591022],[516932.1552669371,5276610.335973511],[516932.35311750934,5276612.036987029],[516932.5949347147,5276614.116003569],[516927.710584307,5276614.879782319],[516927.1928969579,5276612.099783666],[516923.58636884077,5276612.533860923],[516922.5558335386,5276605.30678221],[516930.8968293532,5276603.997348706],[516930.53065338323,5276600.773231274],[516933.98697083746,5276600.338721499]]]},"properties":{"ID_SOURCE":"w145337994","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1344}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.21283725597,5276248.830284825],[516647.40364599053,5276248.8000267865],[516647.4797155816,5276243.209919151],[516646.60842683614,5276243.196314863],[516645.9474568325,5276243.183311799],[516645.94640863425,5276243.550069687],[516641.6650471949,5276243.493379202],[516641.76127849024,5276236.102866662],[516645.88490611163,5276236.159106383],[516645.90507457627,5276234.35870151],[516650.4042731609,5276234.416017822],[516650.21283725597,5276248.830284825]]]},"properties":{"ID_SOURCE":"w145337995","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1345}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.2913073146,5276546.461011791],[517172.1018109079,5276543.798995568],[517173.5259508554,5276544.803452926],[517175.9393031106,5276541.476377037],[517183.3594535098,5276546.832974877],[517182.8317164687,5276547.498256398],[517182.0819287676,5276547.051485136],[517181.62897392944,5276547.828127171],[517179.825680018,5276548.045086785],[517178.68656990404,5276549.719937094],[517177.4116726045,5276551.594438706],[517170.2913073146,5276546.461011791]]]},"properties":{"ID_SOURCE":"w145337996","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1346}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516410.34324121574,5276565.831123986],[516406.429397881,5276568.709728772],[516407.2524726923,5276569.823444545],[516395.81109204615,5276578.571257717],[516389.8248519773,5276570.552349262],[516398.7816723657,5276563.909181891],[516398.1829854005,5276563.129518242],[516400.7420361269,5276561.247349669],[516402.1637996821,5276563.140728616],[516406.00284796226,5276560.150770581],[516410.34324121574,5276565.831123986]]]},"properties":{"ID_SOURCE":"w145337997","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1347}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.93243625667,5276344.531260802],[516520.19928003236,5276338.194220101],[516523.3549554954,5276337.869753061],[516523.5771402256,5276338.981780086],[516524.62903192913,5276338.873624824],[516524.5573879519,5276337.650885211],[516524.4103159842,5276336.539071262],[516534.6291043454,5276335.345536942],[516535.7296039574,5276344.573253854],[516521.15241432877,5276346.421259166],[516520.93243625667,5276344.531260802]]]},"properties":{"ID_SOURCE":"w145337999","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1348}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516487.63356162235,5276485.584289026],[516490.76429409895,5276494.039769613],[516482.1702829003,5276497.149580479],[516473.39582706837,5276500.325577396],[516470.264758569,5276491.981244912],[516477.55835021206,5276489.223384053],[516476.8876996676,5276487.332111892],[516477.41693334345,5276486.111072652],[516481.7777572805,5276484.5674567],[516482.9031598715,5276485.015200502],[516483.64860486373,5276487.01782474],[516487.63356162235,5276485.584289026]]]},"properties":{"ID_SOURCE":"w145338000","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1349}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516316.73461361456,5276627.028351085],[516318.6082869731,5276628.478417172],[516316.1215987521,5276631.36108177],[516306.68029370735,5276623.332579293],[516316.62799029966,5276611.468494874],[516317.67702611885,5276612.360551712],[516319.2592995232,5276610.586750302],[516323.3055333292,5276614.043420827],[516321.7980571497,5276615.928570478],[516324.270735652,5276618.0471553905],[516316.73461361456,5276627.028351085]]]},"properties":{"ID_SOURCE":"w145338001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1350}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.16350462975,5276534.828445533],[517136.6950320301,5276528.357414285],[517138.50487164233,5276525.917665318],[517137.4481724502,5276525.114349426],[517135.5821137629,5276523.686269593],[517138.6737348756,5276519.583195853],[517140.9227910876,5276521.0346318595],[517142.9586199269,5276518.373269908],[517148.804133197,5276522.836070202],[517143.67700664786,5276529.48936082],[517147.0491103948,5276532.166642715],[517145.16350462975,5276534.828445533]]]},"properties":{"ID_SOURCE":"w145338002","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1351}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.5921238596,5276330.657920306],[516683.5781158651,5276335.548026198],[516683.64367756026,5276338.8824044885],[516683.26811453886,5276338.881328673],[516680.0382725543,5276338.872077657],[516679.96666119347,5276337.649336056],[516672.07951793866,5276337.737892767],[516672.02317574585,5276331.180490285],[516672.09987916943,5276330.6250114525],[516677.50799431826,5276330.640495148],[516683.5921238596,5276330.657920306]]]},"properties":{"ID_SOURCE":"w145338003","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1352}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.8907887826,5276455.3037001835],[516706.29402528197,5276455.421733241],[516706.41396032204,5276465.98034944],[516699.35321085516,5276466.071238974],[516698.82743410417,5276466.069731393],[516698.6899587649,5276461.623748945],[516699.51618000487,5276461.6261180015],[516699.51997230115,5276460.30356637],[516699.52414701454,5276458.847648192],[516698.622814322,5276458.845063773],[516698.5579004369,5276455.288407075],[516703.8907887826,5276455.3037001835]]]},"properties":{"ID_SOURCE":"w145338004","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1353}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516931.07396308734,5276336.373391101],[516927.83442863263,5276339.698165728],[516920.99611863465,5276332.976569873],[516912.6298168625,5276324.761272872],[516916.0195765015,5276321.436926186],[516919.861308765,5276317.669335677],[516922.6551400335,5276320.389261512],[516925.4789492201,5276323.131503772],[516924.34902742883,5276324.239617285],[516928.0936844841,5276328.029250035],[516929.22360626434,5276326.921137242],[516934.6903572907,5276332.605155218],[516932.6260010523,5276334.755263435],[516931.07396308734,5276336.373391101]]]},"properties":{"ID_SOURCE":"w145338006","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1354}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516466.44843573053,5276380.641837062],[516462.45118617895,5276381.086209579],[516462.6269941489,5276382.664889826],[516462.75880293746,5276383.865570833],[516454.6891660625,5276384.765225329],[516453.9492169788,5276378.150324554],[516452.31127107184,5276378.323520774],[516451.7765466068,5276373.50966269],[516461.55928991997,5276372.425908458],[516461.7572236783,5276374.149132759],[516465.67933436437,5276373.715661284],[516466.44843573053,5276380.641837062]]]},"properties":{"ID_SOURCE":"w145338009","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1355}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516690.5027590644,5276356.795546235],[516689.6768414376,5276356.682039718],[516689.8471307291,5276349.680727466],[516694.42867253604,5276349.804998043],[516695.85580934695,5276349.809089012],[516697.58307738026,5276349.92518048],[516697.57262623776,5276353.570532245],[516697.5642780681,5276356.482368125],[516696.88826666714,5276356.480430052],[516696.96274180355,5276356.7029229365],[516693.5826849343,5276356.693233713],[516690.5027590644,5276356.795546235]]]},"properties":{"ID_SOURCE":"w145338011","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1356}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517198.21748549945,5276526.093696459],[517197.76518328825,5276526.648059623],[517196.94028381957,5276526.201064662],[517196.4128715408,5276526.75520614],[517194.91033945244,5276526.861909441],[517193.83927942056,5276528.381362023],[517192.57208048436,5276530.189199169],[517185.4517021284,5276525.055753925],[517187.56331626297,5276522.1723515475],[517188.8378944472,5276522.954091673],[517190.49753709306,5276520.513915453],[517198.21748549945,5276526.093696459]]]},"properties":{"ID_SOURCE":"w145338013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1357}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.04806920385,5276323.662489892],[516608.56149847194,5276327.9984012665],[516607.43449042866,5276328.106327192],[516608.4584958795,5276337.778398909],[516600.34348234587,5276338.755520352],[516599.806342147,5276334.830758871],[516599.5340319732,5276332.862810514],[516598.5569336589,5276333.082305092],[516598.1176599608,5276329.080024957],[516601.04832350777,5276328.643819038],[516600.5342551537,5276324.530185876],[516608.04806920385,5276323.662489892]]]},"properties":{"ID_SOURCE":"w145338015","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1358}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.46364765783,5276583.638085228],[516724.044408532,5276577.837508493],[516726.2305647635,5276575.065293717],[516727.0551738302,5276575.623360781],[516727.61321911484,5276574.846985543],[516728.48800172866,5276573.626961262],[516729.3874010967,5276574.296383215],[516730.4430857339,5276572.854599437],[516731.3450393911,5276572.634911201],[516734.8678447405,5276575.201246978],[516735.91203266074,5276577.760461424],[516731.46364765783,5276583.638085228]]]},"properties":{"ID_SOURCE":"w145338016","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1359}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516985.0901306705,5276075.463537107],[516989.2966272776,5276075.475805147],[516989.2739353142,5276083.255515752],[516984.76665659907,5276083.353510267],[516984.6951056082,5276082.130765265],[516979.73713057814,5276082.227449451],[516978.4601598776,5276082.223726995],[516978.4851051405,5276073.666045341],[516982.5410469253,5276073.789009304],[516982.6113023103,5276075.45630915],[516985.0901306705,5276075.463537107]]]},"properties":{"ID_SOURCE":"w145338017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1360}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.0777111475,5276366.793095081],[516564.35851729795,5276367.182618905],[516564.7822196793,5276371.3849037625],[516560.5446285673,5276371.817411478],[516560.4205404606,5276370.550066325],[516558.6097994609,5276370.7338553155],[516555.20623792417,5276371.068712525],[516554.3515285668,5276362.5863258075],[516563.3526048567,5276361.689458074],[516563.3015749905,5276361.144728541],[516567.4864689947,5276360.756528761],[516568.0777111475,5276366.793095081]]]},"properties":{"ID_SOURCE":"w145338019","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1361}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516958.4191573518,5276592.963452916],[516957.90115898853,5276590.29459041],[516967.8198054437,5276588.878664076],[516968.4847798422,5276592.659353286],[516971.5658822164,5276592.112632766],[516971.93300774373,5276595.0033363495],[516972.2266431175,5276597.338127008],[516965.9222224142,5276598.264445005],[516962.5333377238,5276598.754702131],[516962.31092332315,5276597.7537965],[516959.1547155591,5276598.300303184],[516958.4191573518,5276592.963452916]]]},"properties":{"ID_SOURCE":"w145338020","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1362}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.5972869465,5276537.873611258],[516973.9911678581,5276533.104492986],[516975.42344316264,5276531.33043173],[516977.3086481826,5276528.779712957],[516980.6060422239,5276531.345540525],[516978.72116059356,5276533.785119444],[516986.3661826561,5276539.364400306],[516981.0119826494,5276546.684009421],[516974.8287595672,5276542.087025882],[516972.61780850874,5276540.435713653],[516973.14616988716,5276539.548135539],[516970.5972869465,5276537.873611258]]]},"properties":{"ID_SOURCE":"w145338022","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1363}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.0645910083,5276225.851110913],[517250.1718470764,5276219.179348579],[517244.29159818497,5276211.148762117],[517245.64661671704,5276210.152516642],[517242.0556074914,5276205.251737413],[517247.47568830906,5276201.26675535],[517251.066695476,5276206.167537895],[517251.8949283152,5276205.50315277],[517258.5531003182,5276214.63633515],[517259.68211909884,5276213.861702694],[517263.79726026667,5276219.319745112],[517255.0645910083,5276225.851110913]]]},"properties":{"ID_SOURCE":"w145338024","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1364}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516531.5204305014,5276319.110321046],[516530.64052636665,5276311.550326414],[516530.56667518045,5276311.105558151],[516534.92480435653,5276310.562230992],[516535.21799902094,5276313.119275652],[516544.83592716284,5276311.924053209],[516545.6733025292,5276318.583697973],[516546.01184390683,5276321.040846358],[516541.1356008286,5276321.527123848],[516536.1692232072,5276322.013149503],[516535.7283280628,5276318.566568093],[516531.5204305014,5276319.110321046]]]},"properties":{"ID_SOURCE":"w145338025","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1365}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.71665907174,5276538.906071527],[517027.51153036684,5276544.596984378],[517025.70141826384,5276547.147906587],[517026.67563779786,5276547.906505126],[517028.3992013609,5276549.26744951],[517025.23223908193,5276553.481500985],[517023.28360634064,5276552.030987819],[517021.1724093936,5276554.803310868],[517015.17661152466,5276550.340199717],[517020.3790072928,5276543.575876862],[517017.7556791211,5276541.678834776],[517019.71665907174,5276538.906071527]]]},"properties":{"ID_SOURCE":"w145338032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1366}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516321.2221880637,5276660.605115925],[516321.994185258,5276661.185206059],[516322.8711471913,5276661.832274328],[516323.32366688765,5276661.166704494],[516328.721190726,5276664.849446475],[516324.7987307664,5276670.839993627],[516317.9015342072,5276666.263935217],[516317.4496383424,5276666.70722781],[516309.1275498303,5276661.349209609],[516318.3312640003,5276646.926831054],[516326.57763311255,5276652.506929346],[516321.2221880637,5276660.605115925]]]},"properties":{"ID_SOURCE":"w145338034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1367}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516698.82386113843,5276572.097010564],[516704.3132373755,5276569.889958816],[516705.65596518334,5276573.116862421],[516705.12956049514,5276573.337631869],[516706.0842360913,5276575.685418647],[516707.2924340054,5276578.6785433255],[516704.58530366916,5276579.782174876],[516704.9579819943,5276580.783501425],[516700.4469509402,5276582.326519683],[516697.8366019438,5276575.872930472],[516700.0927567169,5276574.879142271],[516698.82386113843,5276572.097010564]]]},"properties":{"ID_SOURCE":"w145338035","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1368}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516570.50711102615,5276661.309104884],[516576.64101115847,5276670.106600405],[516572.5018298336,5276672.984452699],[516571.0804647966,5276670.979892816],[516569.77852947265,5276671.876420064],[516568.82278835983,5276672.52942516],[516569.34664913855,5276673.197754032],[516564.3042778782,5276676.739880789],[516559.7410050175,5276670.28079855],[516564.707638415,5276666.960731891],[516563.8849235899,5276665.735854762],[516570.50711102615,5276661.309104884]]]},"properties":{"ID_SOURCE":"w145338042","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1369}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516717.08253370575,5276425.77838972],[516717.14495489036,5276419.732569142],[516717.1417823032,5276418.221060105],[516721.27291931916,5276418.232919573],[516721.42027063435,5276419.233599947],[516723.67361771036,5276419.24007004],[516727.80475401296,5276419.251934143],[516727.6350588643,5276426.030968582],[516727.63250515686,5276426.920078873],[516720.8724728346,5276426.900666592],[516720.8759827639,5276425.678139944],[516717.08253370575,5276425.77838972]]]},"properties":{"ID_SOURCE":"w145338044","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1370}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.7865106091,5276133.524856163],[516652.15747679595,5276133.517339207],[516652.1488977147,5276136.518085078],[516645.8395374322,5276136.388910493],[516645.8434759629,5276135.010790168],[516645.84779563895,5276133.499303358],[516647.6502440265,5276133.615594497],[516647.6689858203,5276127.058409124],[516655.0299708514,5276127.190592629],[516655.1000013947,5276128.9690271765],[516654.7865106091,5276133.524856163]]]},"properties":{"ID_SOURCE":"w145338046","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1371}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.9107668768,5276683.189316969],[517276.6027573859,5276683.210631148],[517276.84039303707,5276686.656670076],[517272.51324132265,5276686.955025557],[517272.2972785305,5276683.798014588],[517270.75723135285,5276683.904586867],[517269.32987944863,5276684.0003797645],[517269.4017247879,5276685.100876873],[517265.5704179458,5276685.356252032],[517264.92297862767,5276675.729625664],[517276.3568324711,5276674.963328175],[517276.9107668768,5276683.189316969]]]},"properties":{"ID_SOURCE":"w145338047","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1372}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516867.44372486806,5276598.9230702445],[516857.97577624145,5276600.340471974],[516857.5338069785,5276597.338419451],[516860.84054577403,5276596.681153819],[516859.5139966388,5276587.897273419],[516866.72771770274,5276586.806764136],[516867.242217293,5276590.698145364],[516869.94744211866,5276590.26142222],[516870.75851296174,5276595.48733987],[516868.20370223565,5276595.857814449],[516867.0014384791,5276596.032155814],[516867.44372486806,5276598.9230702445]]]},"properties":{"ID_SOURCE":"w145338048","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1373}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516583.8013408294,5276368.549397242],[516578.15879979904,5276369.100145439],[516572.7341485042,5276369.629291173],[516572.4204320216,5276366.372005942],[516568.0777111475,5276366.793095081],[516567.4864689947,5276360.756528761],[516571.87429333857,5276360.324453531],[516572.0494714854,5276362.114300771],[516578.44336320716,5276361.487887548],[516578.0347556438,5276357.263416747],[516582.6554634321,5276356.8208985515],[516583.8013408294,5276368.549397242]]]},"properties":{"ID_SOURCE":"w145338050","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1374}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517182.5775115519,5276531.826798953],[517190.2974524023,5276537.406569576],[517189.8451518176,5276537.960933362],[517189.09569144674,5276537.403022403],[517188.56828092324,5276537.957164598],[517186.9906418281,5276538.063648248],[517185.6176699348,5276540.0823403215],[517184.5011879971,5276541.723914333],[517177.45592683746,5276536.590700389],[517179.26643674914,5276533.928686421],[517180.4659033562,5276534.710203168],[517182.5775115519,5276531.826798953]]]},"properties":{"ID_SOURCE":"w145338054","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1375}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.98307237215,5276656.081367511],[516649.91738840076,5276654.311520414],[516649.17011591804,5276652.97570714],[516648.57242477225,5276651.862601061],[516657.0743157097,5276646.774484944],[516659.24165640643,5276650.559435564],[516661.04712410585,5276649.564343061],[516661.705294692,5276655.790051327],[516653.4303272284,5276660.323110948],[516654.7001784105,5276662.771816661],[516651.766182946,5276664.430522536],[516646.98307237215,5276656.081367511]]]},"properties":{"ID_SOURCE":"w145338061","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1376}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.53621929686,5276557.314148005],[516969.195111537,5276555.096186453],[516968.44576192903,5276554.4938483955],[516966.57241960877,5276552.976889803],[516969.438252237,5276548.984208704],[516971.6122289721,5276550.435360464],[516973.72372772015,5276547.551880719],[516978.0710310548,5276550.67646586],[516979.64509822184,5276551.792452486],[516974.59232890245,5276558.779527144],[516977.2156632806,5276560.676549824],[516975.3304685107,5276563.227268733],[516967.53621929686,5276557.314148005]]]},"properties":{"ID_SOURCE":"w145338064","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1377}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517162.3773580354,5276581.2244326575],[517162.23630968464,5276578.112103324],[517163.8136098962,5276578.116751792],[517163.59974548506,5276574.226229416],[517170.4353729894,5276574.024099838],[517172.4633318353,5276574.030079369],[517172.46202096675,5276574.474634603],[517171.7857070303,5276574.583780151],[517171.8581949631,5276575.473112083],[517170.50229057216,5276576.802791488],[517170.7056504081,5276579.159554291],[517170.86538620194,5276581.027173483],[517162.3773580354,5276581.2244326575]]]},"properties":{"ID_SOURCE":"w145338065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1378}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.71665907174,5276538.906071527],[517021.451336175,5276536.466066762],[517024.22423582914,5276538.58582723],[517029.5027376158,5276531.488315757],[517030.55167941074,5276532.380501118],[517035.34864906245,5276535.839863285],[517033.01048516145,5276539.167216891],[517035.1093398549,5276540.618172684],[517032.16867303965,5276544.499463059],[517029.9870355482,5276543.103836114],[517029.01990416204,5276542.489739438],[517027.51153036684,5276544.596984378],[517019.71665907174,5276538.906071527]]]},"properties":{"ID_SOURCE":"w145338066","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1379}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.014077943,5276227.201428651],[517118.5764272356,5276227.448867779],[517118.6306353829,5276234.561968434],[517117.57544691226,5276235.781403955],[517115.54802352394,5276235.553166329],[517115.4676840565,5276237.331165581],[517110.4353774133,5276237.2052399935],[517110.4494168605,5276232.426273791],[517111.42589873617,5276232.429142539],[517111.35568248335,5276230.761840635],[517110.0039567562,5276230.646729833],[517110.014077943,5276227.201428651]]]},"properties":{"ID_SOURCE":"w145338067","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1380}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.61650699284,5276500.243625821],[517217.5219264933,5276500.36631022],[517217.52619789797,5276498.921505893],[517220.6805126607,5276499.041971895],[517220.2799845521,5276507.487409828],[517217.68155738787,5276507.346359473],[517215.99934617773,5276507.252474575],[517214.8700612768,5276508.138254497],[517213.9690645233,5276508.024451509],[517213.890669071,5276509.135617456],[517213.2146752454,5276509.133619409],[517213.21763164084,5276508.133370247],[517213.61650699284,5276500.243625821]]]},"properties":{"ID_SOURCE":"w145338070","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1381}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516524.86435684736,5276573.601313702],[516523.8219676539,5276570.375304455],[516521.1407221985,5276562.365638564],[516531.44116436166,5276558.727258372],[516534.64343184634,5276568.405503912],[516531.4105625127,5276569.507723146],[516531.93222847633,5276570.954020206],[516529.526197486,5276571.836308297],[516529.07964062,5276570.39022463],[516528.2150599641,5276570.676734046],[516527.4256520812,5276570.941228987],[516528.0224284892,5276572.3877388565],[516524.86435684736,5276573.601313702]]]},"properties":{"ID_SOURCE":"w145338075","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1382}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.00442714687,5276588.3333323775],[517160.93914270547,5276584.998946751],[517162.44165913167,5276584.892234714],[517162.3773580354,5276581.2244326575],[517170.86538620194,5276581.027173483],[517171.46626217326,5276581.028945169],[517171.388531096,5276581.917834174],[517170.7122180445,5276582.02697985],[517170.86047088687,5276582.694255616],[517169.35467713565,5276583.912353576],[517169.4236921093,5276585.97975687],[517169.49244489707,5276588.136071223],[517161.00442714687,5276588.3333323775]]]},"properties":{"ID_SOURCE":"w145338076","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1383}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517193.5219631019,5276513.743317912],[517195.40759779885,5276511.0815307675],[517196.8323981555,5276511.863716168],[517198.94402267784,5276508.980317952],[517200.0677249396,5276509.983894479],[517206.28908337106,5276514.33672287],[517206.0624388894,5276514.78061233],[517205.38775907794,5276514.334060001],[517204.48380820564,5276515.220507648],[517202.9812729836,5276515.327208873],[517201.78934285074,5276517.079696459],[517200.56723801396,5276518.876551078],[517193.5219631019,5276513.743317912]]]},"properties":{"ID_SOURCE":"w145338078","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1384}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.98697083746,5276600.338721499],[516936.91752409743,5276599.902684671],[516937.4335917673,5276603.238378219],[516946.2249259165,5276602.041416175],[516946.37061667367,5276603.597796705],[516947.1803233535,5276609.268280538],[516943.4229269878,5276609.924186004],[516943.79071199655,5276612.59261023],[516938.90668206126,5276613.245240781],[516938.5076874937,5276610.976829219],[516938.24169093877,5276609.464554865],[516935.31114238163,5276609.900591022],[516933.98697083746,5276600.338721499]]]},"properties":{"ID_SOURCE":"w145338079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1385}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.5693817131,5276164.126699312],[516653.76027672034,5276164.051982811],[516653.6845700563,5276166.885827417],[516647.067398986,5276166.711315355],[516647.1515668711,5276163.544075919],[516649.10442627047,5276163.594113673],[516649.15454644733,5276161.827136526],[516649.3326339671,5276157.3376037935],[516655.4770682107,5276157.34405705],[516656.83633087424,5276157.4590837695],[516656.64272719366,5276159.49238568],[516656.5693817131,5276164.126699312]]]},"properties":{"ID_SOURCE":"w145338080","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1386}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516412.84039399575,5276665.863895654],[516414.04024854064,5276666.534115691],[516415.9057395312,5276670.873822884],[516414.0258388984,5276671.646501944],[516415.487372752,5276675.407143954],[516416.71031294623,5276678.544731337],[516418.0638274799,5276677.992848527],[516419.10719546885,5276680.885422798],[516408.58046294824,5276684.967922156],[516403.73412285687,5276672.284341343],[516409.82478462084,5276669.856427039],[516408.8558920649,5276667.18634379],[516412.84039399575,5276665.863895654]]]},"properties":{"ID_SOURCE":"w145338083","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1387}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516557.51415128954,5276238.274487984],[516557.7334898829,5276240.386764942],[516558.1008442799,5276243.27744029],[516557.12404850434,5276243.3858030625],[516555.24651860923,5276243.269326335],[516553.6688122302,5276243.375981663],[516553.67355036084,5276241.708900328],[516552.321185148,5276241.816196485],[516552.2508090172,5276240.148901688],[516553.7530864893,5276240.153171241],[516553.7584563916,5276238.263812404],[516557.51415128954,5276238.274487984]]]},"properties":{"ID_SOURCE":"w145338084","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1388}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516479.180492564,5276553.022158738],[516478.7326638324,5276552.020634249],[516473.91997456487,5276554.007532949],[516470.5623492207,5276546.107117375],[516475.07428962825,5276544.230504786],[516474.62708829745,5276543.006703014],[516474.6277170908,5276542.784425394],[516480.0425537985,5276540.3546723975],[516481.90677874355,5276545.138955127],[516482.80159357743,5276544.785840589],[516483.8618391455,5276544.366510612],[516486.248997278,5276550.152532255],[516479.180492564,5276553.022158738]]]},"properties":{"ID_SOURCE":"w145338085","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1389}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.2916256427,5276543.91893362],[517254.42366225,5276543.597755083],[517254.71126009536,5276547.9330584975],[517253.43419379584,5276547.995958787],[517253.7505848675,5276552.753678642],[517254.153550987,5276558.7119646715],[517252.1249282664,5276558.928234314],[517246.790487916,5276559.46813298],[517246.50189743465,5276555.466246303],[517246.14214610454,5276550.130471603],[517243.6631904144,5276550.234270851],[517243.2299714789,5276544.34257998],[517250.2916256427,5276543.91893362]]]},"properties":{"ID_SOURCE":"w145338088","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1390}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.5342551537,5276324.530185876],[516600.16977818793,5276320.639258501],[516599.02017168485,5276320.7693495825],[516597.2394274015,5276320.964326092],[516596.35897542466,5276313.626598846],[516601.5433513879,5276313.085676012],[516601.4710896037,5276312.085212997],[516608.8340600514,5276311.439367333],[516609.71227800887,5276319.55506786],[516607.83382289374,5276319.771990415],[516608.19829479913,5276323.662918273],[516608.04806920385,5276323.662489892],[516600.5342551537,5276324.530185876]]]},"properties":{"ID_SOURCE":"w145338089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1391}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517173.41479020775,5276557.028499829],[517171.99695821106,5276558.980378973],[517170.9260083205,5276560.466494175],[517171.071640189,5276562.022880365],[517170.4678131524,5276563.021357977],[517171.3674914211,5276563.579709488],[517171.3665083366,5276563.913125907],[517163.569837313,5276558.88885277],[517165.83197567257,5276555.894746335],[517164.4071820134,5276555.11256845],[517166.4439926469,5276552.117798155],[517167.7182394286,5276553.010672509],[517173.41479020775,5276557.028499829]]]},"properties":{"ID_SOURCE":"w145338091","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1392}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.05656647217,5276569.861295649],[516887.646485941,5276573.641757592],[516888.0877970104,5276576.866089937],[516884.5560374502,5276577.411548008],[516884.9989610868,5276580.08018608],[516879.96404750977,5276580.9547081655],[516879.6541927213,5276579.019978491],[516879.3738017139,5276577.28538578],[516876.4432415473,5276577.721451566],[516875.1173554576,5276568.715290208],[516878.04792004655,5276568.279223751],[516878.5653127924,5276571.1703565875],[516887.05656647217,5276569.861295649]]]},"properties":{"ID_SOURCE":"w145338092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1393}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.12501634983,5276379.91073393],[516424.0117833797,5276379.932969521],[516423.92538842635,5276383.933753828],[516425.42762873217,5276383.937990368],[516428.35699733027,5276383.946252739],[516428.34530384414,5276388.091729307],[516428.32909597305,5276393.837604374],[516416.01074637886,5276393.802869985],[516416.0223371268,5276389.690735014],[516418.65125505574,5276389.698145654],[516418.74203273834,5276384.141418297],[516416.03800028807,5276384.133795905],[516416.12501634983,5276379.91073393]]]},"properties":{"ID_SOURCE":"w145338094","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1394}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.4353729894,5276574.024099838],[517163.59974548506,5276574.226229416],[517162.17266338994,5276574.222023695],[517162.0316147279,5276571.109694397],[517163.5344623032,5276570.8918438265],[517163.3957070806,5276567.001542868],[517172.4095237747,5276566.805835438],[517172.33212009456,5276567.583585612],[517171.5059137246,5276567.581149442],[517171.6531837523,5276568.58184163],[517170.1473862113,5276569.799939364],[517170.2626792789,5276571.456261908],[517170.4353729894,5276574.024099838]]]},"properties":{"ID_SOURCE":"w145338096","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1395}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516655.1000013947,5276128.9690271765],[516661.33393633546,5276129.209135633],[516661.4641379048,5276136.211305709],[516664.84368671395,5276136.4432534585],[516664.9105342515,5276139.333075521],[516664.45888925076,5276139.665202239],[516658.9006525393,5276139.549276541],[516658.22464775696,5276139.536229144],[516658.18482332723,5276137.702311093],[516658.1584326215,5276136.424129693],[516654.70345054474,5276136.3031097725],[516654.7865106091,5276133.524856163],[516655.1000013947,5276128.9690271765]]]},"properties":{"ID_SOURCE":"w145338097","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1396}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.2233309667,5276179.523405319],[516614.4682841606,5276179.532660816],[516614.86823065684,5276178.889191739],[516615.29834992863,5276178.201352902],[516615.3975601072,5276169.755022709],[516620.1373029367,5276169.768545719],[516623.43484192394,5276169.777956237],[516623.7108762584,5276178.336496992],[516622.350882654,5276181.111106768],[516620.1728753135,5276180.993751698],[516620.0124977064,5276184.549762839],[516611.27679735696,5276184.480386129],[516611.2066591496,5276182.73529361],[516611.2233309667,5276179.523405319]]]},"properties":{"ID_SOURCE":"w145338098","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1397}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.49244489707,5276588.136071223],[517169.5304002506,5276590.547916272],[517169.5554307463,5276592.248428652],[517170.75455888064,5276593.141082307],[517170.82639133855,5276594.252691873],[517171.5778123012,5276594.143767679],[517171.5755183821,5276594.921739357],[517169.62234846444,5276595.027120369],[517162.71196386,5276595.117890683],[517162.49678931833,5276591.671923487],[517161.144820856,5276591.667939357],[517161.00442714687,5276588.3333323775],[517169.49244489707,5276588.136071223]]]},"properties":{"ID_SOURCE":"w145338100","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1398}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516470.8132272443,5276112.107452926],[516470.7333975235,5276113.774321521],[516467.504059421,5276113.542911195],[516468.1326356518,5276103.764401686],[516469.5642322124,5276102.212494814],[516480.0031063629,5276103.019998537],[516479.7664391873,5276107.0203553075],[516478.5649042043,5276106.905816235],[516478.5249253146,5276107.761478219],[516478.4853866309,5276108.4615459815],[516483.36726961733,5276108.697638814],[516483.1306003307,5276112.697995491],[516470.8132272443,5276112.107452926]]]},"properties":{"ID_SOURCE":"w145338104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1399}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.21283725597,5276248.830284825],[516650.4042731609,5276234.416017822],[516654.7005686678,5276234.506099303],[516654.66556538106,5276236.23977794],[516658.8041520374,5276236.318297518],[516658.7408915234,5276240.0524092605],[516658.6775357079,5276243.819862649],[516654.7342503385,5276243.741901599],[516654.7430647198,5276243.2862541815],[516654.0745833543,5276243.273228711],[516653.4211247568,5276243.260246278],[516653.32993137604,5276248.883652526],[516650.21283725597,5276248.830284825]]]},"properties":{"ID_SOURCE":"w145338105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1400}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516991.75136024825,5276109.49170499],[516998.00281841704,5276103.730682445],[517000.09956892586,5276105.95959532],[516999.5721377502,5276106.513754304],[517000.7404054028,5276107.728586583],[517002.5676782188,5276109.634408768],[517003.3913539503,5276110.5259306375],[517000.6797328067,5276113.074227864],[516993.82541274314,5276119.500326677],[516990.75508145255,5276116.268318813],[516990.83895044867,5276113.267792247],[516993.17401664477,5276111.051810871],[516991.75136024825,5276109.49170499]]]},"properties":{"ID_SOURCE":"w145338107","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1401}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.592871686,5276405.782560502],[517175.7281365202,5276409.330583175],[517173.40524468303,5276407.434357463],[517174.611293084,5276405.993097215],[517172.06371959456,5276403.873930004],[517171.38509212853,5276404.761047069],[517165.91470833,5276400.410470887],[517171.04131744616,5276393.979478413],[517176.1894108717,5276398.095715384],[517178.16023059236,5276399.668598441],[517179.1402905492,5276398.448952066],[517182.21233509894,5276401.014228621],[517178.592871686,5276405.782560502]]]},"properties":{"ID_SOURCE":"w145338109","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1402}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517170.2913073146,5276546.461011791],[517177.4116726045,5276551.594438706],[517176.0541880625,5276553.457583039],[517174.9983236491,5276554.921514028],[517175.36961179273,5276556.367426043],[517174.61556383607,5276557.365460191],[517175.2154589454,5276557.700648671],[517174.98881849647,5276558.144539361],[517173.41479020775,5276557.028499829],[517167.7182394286,5276553.010672509],[517169.75472483493,5276550.127042179],[517168.4056954595,5276549.122807157],[517170.2913073146,5276546.461011791]]]},"properties":{"ID_SOURCE":"w145338110","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1403}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517225.1557395243,5276331.901020191],[517224.1743440904,5276333.565213808],[517221.1221869275,5276331.889092179],[517215.0253786237,5276328.536875948],[517219.02738371666,5276321.435763412],[517224.80219822505,5276324.45361226],[517225.70749640296,5276323.122612902],[517228.70674914774,5276324.909720132],[517228.3292125933,5276325.575441752],[517231.17922416644,5276327.028689592],[517229.59363635146,5276329.802492149],[517227.7056267491,5276333.242238998],[517225.1557395243,5276331.901020191]]]},"properties":{"ID_SOURCE":"w145338113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1404}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.05656647217,5276569.861295649],[516886.615898793,5276566.4146858],[516895.2570582297,5276565.217211197],[516894.8157501911,5276561.992878357],[516898.1218683828,5276561.557911486],[516899.521862744,5276570.897712447],[516896.14064012916,5276571.332460602],[516896.47328071145,5276573.178345468],[516896.8798053026,5276575.44677576],[516891.7704210617,5276576.098792099],[516891.32878961565,5276572.985598283],[516887.646485941,5276573.641757592],[516887.05656647217,5276569.861295649]]]},"properties":{"ID_SOURCE":"w145338114","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1405}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516709.7243320666,5276333.1779091945],[516712.8039518916,5276333.18674558],[516713.17983421375,5276333.076684531],[516713.1788774279,5276333.410100841],[516713.7053040352,5276333.189332147],[516713.60946045286,5276340.413136686],[516710.00405635,5276340.402791302],[516710.00086766575,5276341.514179018],[516700.9125652471,5276341.376971162],[516701.01126133837,5276333.15291751],[516707.1859698669,5276333.015031512],[516709.72496979136,5276332.955631655],[516709.7243320666,5276333.1779091945]]]},"properties":{"ID_SOURCE":"w145338115","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1406}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517208.15169821994,5276341.519911849],[517201.25250048045,5276337.720780319],[517197.50310394703,5276335.598052925],[517201.0514521687,5276329.495846166],[517204.651282552,5276331.395854517],[517206.23751469667,5276328.399767663],[517213.21117607446,5276332.421404547],[517211.4743876427,5276335.528184345],[517210.7245746933,5276335.081409605],[517209.84827595076,5276336.768144133],[517208.98713159194,5276338.410467681],[517209.661831622,5276338.8570202505],[517208.15169821994,5276341.519911849]]]},"properties":{"ID_SOURCE":"w145338117","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1407}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517168.4223475765,5276237.709299538],[517160.68561337603,5276237.686498987],[517160.0122076158,5276236.795397204],[517159.94462487684,5276234.23898468],[517158.8933567379,5276234.124747759],[517158.9071085086,5276229.456920345],[517163.63961993455,5276229.359724883],[517163.7111313033,5276230.582472459],[517165.36331210815,5276230.69848122],[517165.2931112669,5276229.031178631],[517168.3727867442,5276229.040255772],[517168.4223475765,5276237.709299538]]]},"properties":{"ID_SOURCE":"w145338118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1408}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517243.2299714789,5276544.34257998],[517241.6523330323,5276544.449048827],[517241.43687403016,5276541.11421768],[517239.55879469606,5276541.219797642],[517239.2698692465,5276537.32905025],[517240.6225083982,5276537.110774886],[517240.1935623692,5276529.77427998],[517247.9312254374,5276529.352631911],[517248.2664356692,5276535.366286489],[517248.50149444793,5276539.690319932],[517250.0037280119,5276539.683655382],[517250.2916256427,5276543.91893362],[517243.2299714789,5276544.34257998]]]},"properties":{"ID_SOURCE":"w145338120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1409}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.95981978177,5276251.664452645],[516692.96943168034,5276237.827591571],[516697.2586269867,5276237.773202544],[516697.26864751213,5276239.518124042],[516701.4225091547,5276239.507805973],[516701.40232353314,5276241.308210708],[516701.4468622833,5276246.731954242],[516697.0526416548,5276246.7415832],[516697.0544258795,5276246.119206172],[516696.4760496133,5276246.1175481165],[516695.98780990567,5276246.116148504],[516696.0019576822,5276251.662058526],[516692.95981978177,5276251.664452645]]]},"properties":{"ID_SOURCE":"w145338122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1410}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.35817069875,5276538.691870197],[517100.75614411617,5276540.588286982],[517097.73999710276,5276544.580462604],[517095.7613026759,5276543.140950849],[517094.6670131553,5276542.348646341],[517092.8575232265,5276544.677270136],[517085.13782546064,5276538.986490019],[517087.1736224962,5276536.325108568],[517089.9468246009,5276538.333761579],[517095.2250807905,5276531.34744829],[517097.9979562342,5276533.467243926],[517100.84593973705,5276535.587261442],[517098.35817069875,5276538.691870197]]]},"properties":{"ID_SOURCE":"w145338123","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1411}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516437.73578211525,5276337.027322271],[516436.6691829015,5276337.024312051],[516436.69665742305,5276332.612145166],[516442.1197299937,5276332.64968044],[516442.16816117434,5276326.137033229],[516439.6293498424,5276326.129866463],[516439.65886569035,5276320.995297646],[516450.07688929955,5276321.069169426],[516449.9979511671,5276333.06091557],[516446.71555877535,5276333.040531569],[516444.2594057685,5276333.022482221],[516444.23296104453,5276337.067891139],[516437.73578211525,5276337.027322271]]]},"properties":{"ID_SOURCE":"w145338126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1412}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.2195319077,5276349.887232619],[516489.2924417599,5276350.665416705],[516485.1596843148,5276351.209415777],[516484.7181322147,5276347.985115683],[516475.40135506116,5276348.959009662],[516474.9607405311,5276345.401294008],[516475.7872925837,5276345.29249251],[516474.83283652837,5276337.510016129],[516483.69927066076,5276336.423706905],[516484.16920212517,5276340.237127396],[516484.433410504,5276342.427326575],[516488.26540922857,5276341.993615163],[516489.2195319077,5276349.887232619]]]},"properties":{"ID_SOURCE":"w145338128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1413}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.1987808469,5276313.079136292],[516643.90736395563,5276313.095447069],[516643.8527998493,5276316.418367425],[516643.8170060755,5276318.429893264],[516645.2441505449,5276318.433971814],[516645.15792066266,5276322.323614037],[516641.4773926471,5276322.313096433],[516641.4691361152,5276325.202704427],[516634.7840987447,5276325.183606973],[516634.79393911624,5276321.738305135],[516635.7700883779,5276321.852232941],[516635.87027984066,5276313.072484819],[516638.1987808469,5276313.079136292]]]},"properties":{"ID_SOURCE":"w145338129","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1414}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516684.5820054198,5276242.071321719],[516684.5969667422,5276239.470696389],[516688.5479571682,5276239.4820159245],[516688.5527020535,5276237.826048497],[516692.96943168034,5276237.827591571],[516692.95981978177,5276251.664452645],[516689.79749992717,5276251.666503965],[516689.7981142249,5276246.209548023],[516689.05448760645,5276246.207417172],[516688.2282358108,5276246.205049675],[516688.22648437304,5276246.816312825],[516684.59097685013,5276246.805897223],[516684.5820054198,5276242.071321719]]]},"properties":{"ID_SOURCE":"w145338130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1415}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517110.56664931326,5276218.089596064],[517115.6737600498,5276218.326881197],[517115.74593483674,5276219.327350646],[517117.92424546706,5276219.333752356],[517118.5970063754,5276220.447126719],[517118.5764272356,5276227.448867779],[517110.014077943,5276227.201428651],[517110.0222401856,5276224.422959967],[517111.4490814482,5276224.538291446],[517111.4546322348,5276222.648932745],[517110.628703453,5276222.5353665855],[517110.56664931326,5276218.089596064]]]},"properties":{"ID_SOURCE":"w145338134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1416}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516460.0192814614,5276529.295215216],[516462.10885667545,5276534.080128344],[516452.1814534157,5276538.60880241],[516450.389800583,5276534.713851931],[516449.4875379747,5276535.044722464],[516447.6968238742,5276530.816356422],[516448.4488667784,5276530.485061333],[516450.32913138374,5276529.601254632],[516448.7621772565,5276525.929218821],[516456.9595512985,5276522.2847674675],[516459.0488174855,5276527.18081824],[516460.0192814614,5276529.295215216]]]},"properties":{"ID_SOURCE":"w145338136","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1417}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517195.0100752866,5276213.225856234],[517188.9087660774,5276218.987111863],[517183.6661854455,5276213.748075757],[517183.7449065264,5276212.525771179],[517185.62768172787,5276210.864230601],[517184.8033922383,5276210.194960204],[517188.41904515686,5276206.760298265],[517191.56433348963,5276209.992632878],[517190.7354521548,5276210.879304054],[517191.7837714631,5276211.99379541],[517192.8383236738,5276210.996650817],[517195.0100752866,5276213.225856234]]]},"properties":{"ID_SOURCE":"w145338139","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1418}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.5161613529,5276516.04731395],[516690.2640070403,5276516.113623442],[516690.19194287265,5276520.292270214],[516689.1554530654,5276520.2781858975],[516689.12827006006,5276521.900747851],[516689.1013418531,5276523.434398761],[516690.10024413513,5276523.459489325],[516690.0988427043,5276523.948500059],[516689.93360022514,5276523.9480265],[516689.879966363,5276526.937531172],[516682.3166578448,5276526.815835304],[516682.4979184417,5276515.980232304],[516686.5161613529,5276516.04731395]]]},"properties":{"ID_SOURCE":"w145338140","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1419}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517035.24264163716,5276520.724546939],[517042.96208691545,5276526.52639938],[517041.07685230725,5276529.077096964],[517042.22346849745,5276529.95845626],[517043.84974840627,5276531.196866759],[517040.908420631,5276535.300430292],[517040.0087255739,5276534.742098999],[517037.7469691818,5276537.625115263],[517035.34864906245,5276535.839863285],[517030.55167941074,5276532.380501118],[517035.8298693957,5276525.39413422],[517033.281973273,5276523.386166116],[517035.24264163716,5276520.724546939]]]},"properties":{"ID_SOURCE":"w145338142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1420}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.35607418703,5276653.309460205],[516570.30898182234,5276651.75052454],[516573.9965765317,5276649.204804649],[516576.53982924693,5276652.879654369],[516583.38831619243,5276648.120144072],[516587.80199656077,5276654.356539101],[516589.0813743528,5276653.47106559],[516592.82160168514,5276658.81642831],[516586.87631975237,5276662.911661665],[516583.28599014255,5276657.677869325],[516580.89276198007,5276659.349264703],[516577.2652890049,5276661.88403742],[516571.35607418703,5276653.309460205]]]},"properties":{"ID_SOURCE":"w145338143","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1421}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516658.6775357079,5276243.819862649],[516658.7408915234,5276240.0524092605],[516663.38286559604,5276240.087916058],[516663.3774283326,5276241.988388756],[516667.4861243016,5276242.011259175],[516667.43518309266,5276249.312989407],[516663.9574478511,5276249.291924211],[516663.95916494523,5276248.691774929],[516663.2906524201,5276248.689862277],[516662.539514752,5276248.687713322],[516662.5091984484,5276254.0334445145],[516658.64090658136,5276254.000151195],[516658.6775357079,5276243.819862649]]]},"properties":{"ID_SOURCE":"w145338145","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1422}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.9166753097,5276254.182956638],[516675.97179240244,5276240.179516485],[516680.5387797818,5276240.170366392],[516680.5483278609,5276242.0819959855],[516684.5820054198,5276242.071321719],[516684.59097685013,5276246.805897223],[516684.59823127405,5276249.517725891],[516680.5946043756,5276249.528486185],[516680.5959093973,5276249.0728172865],[516679.8597945251,5276249.070709123],[516679.34150956536,5276249.06922486],[516679.35694626084,5276254.170579802],[516675.9166753097,5276254.182956638]]]},"properties":{"ID_SOURCE":"w145338150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1423}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516677.5002887559,5276149.705097958],[516685.22726859554,5276153.172557282],[516685.602525208,5276153.284771935],[516684.16610790376,5276156.503707024],[516682.81594867515,5276155.833001745],[516681.9237987714,5276157.853188109],[516680.01855312224,5276162.159950058],[516679.71809358837,5276162.159089612],[516672.2161491262,5276158.803421301],[516675.0129014041,5276152.698746772],[516674.1875908461,5276152.362965078],[516675.62464001053,5276148.921750083],[516677.5002887559,5276149.705097958]]]},"properties":{"ID_SOURCE":"w145338158","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1424}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517168.02940658364,5276625.808143224],[517175.7751310156,5276622.6079291245],[517176.7368249134,5276625.055840788],[517177.3406178152,5276626.613578679],[517179.0664834737,5276627.17436848],[517178.9156099779,5276627.396202988],[517179.2140784624,5276628.063922146],[517179.9661509629,5276627.732721403],[517180.26429143746,5276628.511579434],[517171.8425927453,5276631.7097943025],[517170.5007918277,5276628.260504637],[517169.2223024362,5276628.812434149],[517168.02940658364,5276625.808143224]]]},"properties":{"ID_SOURCE":"w145338162","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1425}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.28058505175,5276627.536977323],[516693.3343394492,5276626.762019669],[516691.1647820996,5276623.755028219],[516690.6377454764,5276624.198076627],[516687.94560778525,5276620.078191362],[516694.8693338596,5276615.31902734],[516699.2074927832,5276621.666430204],[516700.3360394216,5276621.002828017],[516702.9546528442,5276624.566809505],[516693.17106003466,5276631.318280769],[516691.00150431856,5276628.311289359],[516692.28058505175,5276627.536977323]]]},"properties":{"ID_SOURCE":"w145338164","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1426}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517213.61650699284,5276500.243625821],[517213.21763164084,5276508.133370247],[517210.91213532485,5276507.993188728],[517209.3125456883,5276507.899549927],[517207.58106497827,5276509.228110873],[517206.9050711646,5276509.22611356],[517206.82700544165,5276510.226140806],[517206.1510117455,5276510.22414358],[517206.466229555,5276505.223785419],[517206.77849258744,5276501.2236764645],[517210.15780944156,5276501.455941323],[517210.31197167333,5276500.122719714],[517213.61650699284,5276500.243625821]]]},"properties":{"ID_SOURCE":"w145338165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1427}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516918.9141399428,5276457.547029952],[516918.74209725973,5276449.544469814],[516923.23393985356,5276449.490836693],[516923.30614449055,5276450.491304048],[516924.74076788116,5276450.495472991],[516926.8363695887,5276450.501563337],[516926.8389537269,5276449.612453029],[516929.46784515766,5276449.620094315],[516929.51937230397,5276457.733444249],[516926.9659186345,5276457.61488245],[516926.81246629736,5276458.725833736],[516923.1320240507,5276458.715137932],[516923.06046539044,5276457.492392985],[516918.9141399428,5276457.547029952]]]},"properties":{"ID_SOURCE":"w145338167","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1428}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516826.7068914081,5276608.363241816],[516832.85234824265,5276613.04887096],[516831.0423427529,5276615.599853693],[516829.5433737272,5276614.484124202],[516828.11084214295,5276616.369360225],[516829.28764511854,5276617.206308969],[516833.1328672705,5276619.940346102],[516830.2671629628,5276623.933094411],[516826.6696411597,5276621.255344721],[516824.6339930244,5276623.916817231],[516820.13708702486,5276620.569634825],[516826.32010670047,5276612.252015339],[516824.89624500595,5276611.13650407],[516826.7068914081,5276608.363241816]]]},"properties":{"ID_SOURCE":"w145338168","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1429}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517210.0640409757,5276406.097752944],[517207.50071864633,5276409.313231539],[517209.0744522152,5276410.54041872],[517206.88833243423,5276413.201313441],[517198.34562277986,5276406.396555798],[517200.6829494515,5276403.402685241],[517201.5072096003,5276404.071958158],[517202.5025258862,5276402.774562919],[517203.61854678486,5276401.299700805],[517202.8690700279,5276400.741788232],[517206.6387802639,5276395.973915243],[517212.9337258001,5276400.882665468],[517209.2397820927,5276405.428478812],[517210.0640409757,5276406.097752944]]]},"properties":{"ID_SOURCE":"w145338169","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1430}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517118.70674584503,5276208.666640491],[517108.5669686363,5276208.414567558],[517108.5751301403,5276205.636098956],[517109.85174736875,5276205.750988746],[517109.9324119627,5276203.86185076],[517108.6554678604,5276203.858099696],[517108.6688527743,5276199.30141123],[517113.7766331764,5276199.316417169],[517113.847828873,5276200.65030279],[517117.3030912938,5276200.660456452],[517117.43862178316,5276205.662141412],[517118.71556549455,5276205.665894403],[517118.70674584503,5276208.666640491]]]},"properties":{"ID_SOURCE":"w145338170","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1431}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.2505477502,5276532.568018746],[516714.23746242846,5276532.497688316],[516714.2306059921,5276529.652491807],[516714.26983634545,5276526.4517804785],[516715.83957543614,5276526.478513787],[516715.87804108317,5276523.544535608],[516721.9242226208,5276523.628576779],[516721.8850518765,5276526.807060297],[516723.25950437726,5276526.833234881],[516723.2309395809,5276528.933693571],[516723.7792437077,5276528.935268075],[516723.7603918769,5276530.268890587],[516723.25715395657,5276530.267445493],[516723.2505477502,5276532.568018746]]]},"properties":{"ID_SOURCE":"w145338171","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1432}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516746.6498233929,5276604.909424253],[516745.3007343536,5276603.905287303],[516749.07057756523,5276598.914840215],[516751.2570576102,5276596.031495917],[516753.3681107647,5276593.259075188],[516754.11920402327,5276593.261235964],[516757.21051877,5276589.157960011],[516757.0631781359,5276588.157278442],[516759.62649265316,5276584.830462674],[516761.4361563201,5276582.3905967325],[516765.4323156312,5276577.067392436],[516766.85651699913,5276578.07175025],[516746.6498233929,5276604.909424253]]]},"properties":{"ID_SOURCE":"w145338172","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1433}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.66891291726,5276166.062696697],[517261.24861324474,5276166.854245214],[517263.3508405639,5276167.193894862],[517265.37070494896,5276169.978374796],[517264.8435835888,5276170.421371127],[517266.0404783918,5276172.092014788],[517254.44843944017,5276180.282001447],[517252.1294314409,5276177.052080336],[517254.7640434519,5276175.170509617],[517252.37057719234,5276171.7180884415],[517255.45686827204,5276169.5044368245],[517254.18518431287,5276167.7224341],[517256.66891291726,5276166.062696697]]]},"properties":{"ID_SOURCE":"w145338173","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1434}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.9873950573,5276656.711071435],[516634.58540593705,5276657.71303719],[516640.4543481174,5276654.062193169],[516643.0707596535,5276658.404119661],[516643.6937153677,5276658.561495666],[516644.4217593866,5276658.741400039],[516643.51092869946,5276662.07298891],[516642.9877106292,5276661.182375704],[516638.8494425941,5276663.726764408],[516639.44745191,5276664.728730676],[516642.81176658993,5276670.184191537],[516636.943156591,5276673.723894408],[516628.870813592,5276659.9195113005],[516633.9873950573,5276656.711071435]]]},"properties":{"ID_SOURCE":"w145338174","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1435}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516769.1732608185,5276529.954917905],[516769.16046015033,5276534.400470076],[516768.48446938145,5276534.398523645],[516768.5458192307,5276539.177708527],[516767.7202489501,5276538.953052042],[516767.7879991769,5276541.509460828],[516761.5538697067,5276541.491514831],[516761.7117666988,5276538.824615848],[516760.6602263051,5276538.821589444],[516760.7141523292,5276535.743174237],[516760.75132915203,5276533.264865362],[516759.69978775654,5276533.261839131],[516759.7844929818,5276529.927891156],[516769.1732608185,5276529.954917905]]]},"properties":{"ID_SOURCE":"w145338175","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1436}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.93918767857,5276541.493775966],[516721.6698886168,5276541.57691146],[516721.61665339366,5276544.421935509],[516723.17887662206,5276544.448649245],[516723.14264132734,5276546.604655826],[516723.76605371776,5276546.606446017],[516723.74688276247,5276548.051207375],[516723.093426563,5276548.049330915],[516723.05572327494,5276550.716576025],[516713.9752585327,5276550.579368537],[516714.03896736784,5276546.700775046],[516714.0836033935,5276544.23360131],[516715.8936895517,5276544.261024455],[516715.93918767857,5276541.493775966]]]},"properties":{"ID_SOURCE":"w145338179","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1437}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516917.612213872,5276432.547923665],[516917.66488782293,5276440.272287482],[516914.0971977185,5276440.228583061],[516914.09971534816,5276439.361700527],[516912.19943133864,5276439.345067993],[516910.4643922148,5276439.328915884],[516910.4433353974,5276441.40716758],[516906.9807694978,5276441.37488673],[516907.0345278934,5276433.206273156],[516910.31683130166,5276433.238030603],[516910.3374040296,5276431.326487113],[516914.0102878692,5276431.359380732],[516914.0068019471,5276432.5596796125],[516917.612213872,5276432.547923665]]]},"properties":{"ID_SOURCE":"w145338180","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1438}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516952.4676607564,5276418.456734214],[516952.5204505181,5276426.125528892],[516946.2107621838,5276426.218305673],[516946.14082482643,5276424.439866577],[516944.5257657056,5276424.490737292],[516942.9858181236,5276424.541826967],[516943.1341011858,5276425.209096694],[516938.77731100086,5276425.307563244],[516938.79929148115,5276417.750125986],[516942.5548712344,5276417.761050133],[516942.6332159819,5276416.649880814],[516946.4642314472,5276416.549887206],[516946.5335220414,5276418.550603853],[516952.4676607564,5276418.456734214]]]},"properties":{"ID_SOURCE":"w145338184","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1439}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.5398204581,5276532.5226495825],[516743.47792336275,5276532.548339968],[516743.4230159062,5276535.971285588],[516743.38523936813,5276538.6607583035],[516741.6577086867,5276538.655791889],[516741.7993023718,5276541.656971491],[516735.9407230808,5276541.640132532],[516735.9490270524,5276538.750523577],[516734.52161715983,5276538.857561479],[516734.3784228789,5276536.412076101],[516733.85392984544,5276535.966010124],[516733.8571232766,5276534.854622072],[516734.45800390386,5276534.856348655],[516734.5398204581,5276532.5226495825]]]},"properties":{"ID_SOURCE":"w145338195","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1440}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.9407230808,5276541.640132532],[516741.7993023718,5276541.656971491],[516741.7906759932,5276544.657719261],[516743.36766546307,5276544.773392644],[516743.4276277232,5276547.429804477],[516743.50063081825,5276550.775320117],[516734.48776536924,5276550.638274995],[516734.41840388905,5276548.63756063],[516733.7427341264,5276548.52447942],[516733.7468855757,5276547.079674926],[516734.4976654275,5276547.1929719625],[516734.42990067706,5276544.636563572],[516736.0072096726,5276544.641096151],[516735.9407230808,5276541.640132532]]]},"properties":{"ID_SOURCE":"w145338197","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1441}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.2361503834,5276318.533266288],[517253.74663911655,5276315.759247394],[517252.9217138958,5276315.312244714],[517254.7346311889,5276311.872283555],[517255.7094534112,5276312.430870331],[517257.5213852983,5276309.324326331],[517264.19590050477,5276312.900578871],[517262.3081944142,5276316.229175714],[517261.55838283326,5276315.782394437],[517260.67485161655,5276317.369074164],[517259.8215636443,5276318.889159811],[517260.6464878336,5276319.336163471],[517259.13566736976,5276322.22131936],[517252.2361503834,5276318.533266288]]]},"properties":{"ID_SOURCE":"w145338200","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1442}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517196.7809870162,5276224.01163696],[517200.3215243841,5276220.576760558],[517204.81524121994,5276225.035621655],[517203.8354752653,5276226.1441247165],[517206.45625961927,5276228.930359456],[517199.4338717642,5276236.278181116],[517193.3831360751,5276230.003150175],[517195.4925630577,5276227.897722971],[517196.6159924074,5276229.012437001],[517199.25253214093,5276226.464008639],[517196.7809870162,5276224.01163696]]]},"properties":{"ID_SOURCE":"w145338201","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1443}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516606.46123879857,5276643.073465539],[516600.327988354,5276634.053661295],[516603.2626179878,5276632.172651934],[516601.54271900875,5276629.500395267],[516607.3368766277,5276625.73816508],[516608.9819821823,5276628.299070413],[516609.7346557943,5276627.745518464],[516615.26893090137,5276636.096785223],[516611.5062010233,5276638.642264748],[516611.1322423998,5276638.085499418],[516609.792580692,5276639.037479995],[516608.6485824473,5276639.856651227],[516609.3961828848,5276641.081320425],[516606.46123879857,5276643.073465539]]]},"properties":{"ID_SOURCE":"w145338202","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1444}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.8345039249,5276502.443207164],[517277.228539854,5276502.654787982],[517277.2750568855,5276502.1659109825],[517276.3578750623,5276492.316206369],[517280.18950720155,5276491.994154794],[517279.9671431006,5276490.993237077],[517290.9356094198,5276490.247813581],[517292.0964610518,5276504.032592078],[517287.1378488911,5276504.462430177],[517287.0653775792,5276503.5730968695],[517286.9942258277,5276502.239208389],[517280.90895487915,5276502.665707625],[517280.8345039249,5276502.443207164]]]},"properties":{"ID_SOURCE":"w145338203","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1445}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516929.51937230397,5276457.733444249],[516929.46784515766,5276449.620094315],[516932.92328274227,5276449.519000162],[516932.91714320844,5276451.630637145],[516934.89256666217,5276451.636380977],[516936.5224787879,5276451.64112069],[516936.4499532367,5276450.751791948],[516940.35605731857,5276450.6520128045],[516940.5497094071,5276461.544269597],[516936.94405674085,5276461.644922334],[516936.5743192698,5276459.643331942],[516932.74397861026,5276459.521054413],[516932.67403762514,5276457.742615396],[516929.51937230397,5276457.733444249]]]},"properties":{"ID_SOURCE":"w145338204","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1446}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.46003083343,5276648.912729059],[517200.4081818678,5276649.020762026],[517201.1336627775,5276657.691808532],[517197.60257824854,5276658.014799131],[517197.53107999306,5276656.792050285],[517186.93815461494,5276657.649896245],[517186.7128290891,5276657.6492312495],[517186.06210734585,5276649.089547068],[517193.04884952056,5276648.554471071],[517192.97669394413,5276647.553999942],[517194.55955385853,5276645.669296844],[517201.17075761734,5276645.133121772],[517201.3369748681,5276647.345294545],[517201.46003083343,5276648.912729059]]]},"properties":{"ID_SOURCE":"w145338206","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1447}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516928.07562002866,5276432.444959823],[516931.35802074615,5276432.4433874935],[516931.3607024894,5276431.520935576],[516935.11633798527,5276431.509627191],[516935.1138495501,5276432.365395836],[516938.74179512984,5276432.353718493],[516938.74937427836,5276440.077951492],[516934.9036107215,5276440.088995429],[516934.9062607169,5276439.17765738],[516933.2988461837,5276439.184097523],[516931.3759641212,5276439.189620974],[516931.3729592661,5276440.223211688],[516928.083051803,5276440.224762169],[516928.07562002866,5276432.444959823]]]},"properties":{"ID_SOURCE":"w145338207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1448}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.1694914565,5276212.204530228],[517153.02383305336,5276212.212935702],[517152.9277711106,5276219.325594177],[517150.74946044624,5276219.319179377],[517150.81999285845,5276220.875343006],[517149.990137538,5276222.095436217],[517144.7321487854,5276222.079956254],[517144.7502402669,5276215.93398361],[517143.39808645204,5276215.963345438],[517143.4196767319,5276208.62818829],[517148.22666461766,5276208.753478848],[517148.2916351401,5276212.199001075],[517150.1694914565,5276212.204530228]]]},"properties":{"ID_SOURCE":"w145338208","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1449}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517137.26007426437,5276183.1590691805],[517137.1059209849,5276184.492292038],[517133.72543661663,5276184.593486359],[517133.72968680627,5276183.148682741],[517131.0255602422,5276183.140728618],[517131.1215956647,5276176.028070246],[517144.11644196353,5276176.066305886],[517144.0318403648,5276179.289108207],[517144.933216487,5276179.291761453],[517144.989029153,5276185.849168193],[517140.5572682053,5276185.836124351],[517140.489676149,5276183.279712285],[517137.26007426437,5276183.1590691805]]]},"properties":{"ID_SOURCE":"w145338212","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1450}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516472.2916240235,5276704.819517863],[516467.8866590367,5276695.471322679],[516479.16952724947,5276689.612834393],[516478.1236748109,5276687.609359921],[516484.29166231304,5276684.403764095],[516485.41230671946,5276686.518591123],[516488.19539767335,5276685.0816538725],[516490.0624010054,5276688.865690915],[516487.2045179701,5276690.191275802],[516491.8350946696,5276699.428984851],[516485.59264015715,5276702.412082437],[516483.8749104945,5276698.961888449],[516478.60977452254,5276701.6254547695],[516472.2916240235,5276704.819517863]]]},"properties":{"ID_SOURCE":"w145338218","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1451}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516850.4259418468,5276613.766531414],[516847.11985696864,5276614.20152532],[516846.9738184785,5276612.756286128],[516844.64479415596,5276612.9718285315],[516844.8210697217,5276614.350471276],[516845.4529910249,5276619.197992164],[516841.0947409788,5276619.852225562],[516840.2078952966,5276614.848372341],[516836.8263814645,5276615.394293713],[516836.165822641,5276610.057676158],[516846.30973216536,5276608.642194402],[516846.0905131278,5276606.529905075],[516849.32149311254,5276606.0946932705],[516850.4259418468,5276613.766531414]]]},"properties":{"ID_SOURCE":"w145338219","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1452}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517154.95552610647,5276219.442706056],[517155.1267047752,5276212.330268847],[517157.98071891523,5276212.449815496],[517159.933689407,5276212.455569078],[517159.86872577504,5276209.0100467],[517164.37558342,5276209.023326639],[517164.20341082336,5276216.469179802],[517163.0015836535,5276216.465638177],[517162.9104220321,5276221.911215372],[517157.2765350528,5276222.005756129],[517156.5270306747,5276221.44784974],[517156.53292345355,5276219.447352314],[517154.95552610647,5276219.442706056]]]},"properties":{"ID_SOURCE":"w145338220","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1453}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.07320472837,5276199.448356732],[516622.06495814346,5276202.3379641725],[516612.8255744459,5276202.42274308],[516612.9945063363,5276195.865985478],[516614.6501945016,5276194.759311744],[516614.5858591499,5276190.980380097],[516621.34616501443,5276190.999668357],[516621.4903679083,5276193.111733252],[516622.76699691836,5276193.226516247],[516622.7558953051,5276197.116372383],[516621.4041527149,5276197.001375026],[516621.32206072134,5276199.446213108],[516622.07320472837,5276199.448356732]]]},"properties":{"ID_SOURCE":"w145338221","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1454}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3291203006,5276479.350491839],[516520.185895406,5276480.608567302],[516517.5389702382,5276481.668000585],[516518.2096082715,5276483.559277439],[516513.9986800682,5276485.214430894],[516508.7061447024,5276470.973545554],[516511.71373149066,5276469.870674905],[516512.6826105288,5276472.540774473],[516520.2015795396,5276469.783605893],[516519.3081296599,5276467.002579336],[516522.46625775244,5276465.789001548],[516526.3436438832,5276475.802575204],[516522.58400322945,5276477.236723719],[516523.3291203006,5276479.350491839]]]},"properties":{"ID_SOURCE":"w145338223","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1455}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516713.5019786626,5276482.560503212],[516713.3997573128,5276492.007085394],[516710.1474670169,5276491.997752814],[516707.54112814233,5276491.990275126],[516707.46984353376,5276490.656394076],[516704.3155151093,5276490.536206076],[516704.40879600204,5276484.201510084],[516707.56376553036,5276484.099420532],[516707.5679104008,5276482.65461618],[516709.82155180443,5276482.549942175],[516709.8985758397,5276481.883324906],[516711.4755829067,5276481.998989597],[516711.54909910547,5276482.554899107],[516713.5019786626,5276482.560503212]]]},"properties":{"ID_SOURCE":"w145338224","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1456}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.738653627,5276391.394490513],[516662.5365448377,5276391.502190849],[516662.5314573531,5276393.280411342],[516663.7332477862,5276393.283849786],[516663.79818393645,5276396.840505698],[516655.98686873337,5276396.707021366],[516655.995768342,5276393.595135488],[516654.71854825964,5276393.702622632],[516654.6593272215,5276388.145468803],[516655.034887062,5276388.146542782],[516655.0450574332,5276384.590101827],[516663.6829390307,5276384.61481002],[516663.738653627,5276391.394490513]]]},"properties":{"ID_SOURCE":"w145338225","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1457}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516679.7911977476,5276608.718577493],[516676.65475527104,5276602.374630508],[516681.0925652695,5276600.16454578],[516682.5113631012,5276603.058242875],[516685.74551662325,5276601.51155217],[516688.3593705692,5276606.742609218],[516691.668632794,5276605.19613703],[516693.6103208222,5276609.091593199],[516681.80163442605,5276614.837021242],[516680.4576299114,5276612.054678212],[516681.736394427,5276611.391502696],[516680.2424891474,5276608.497590617],[516679.7911977476,5276608.718577493]]]},"properties":{"ID_SOURCE":"w145338226","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1458}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516917.66488782293,5276440.272287482],[516917.612213872,5276432.547923665],[516920.62427802355,5276432.523332062],[516920.611742045,5276431.667519773],[516924.8932218904,5276431.635504636],[516924.9057249408,5276432.502430815],[516928.07562002866,5276432.444959823],[516928.083051803,5276440.224762169],[516924.4699719576,5276440.292059188],[516924.4577918405,5276439.313994211],[516922.4447762645,5276439.319258682],[516920.8147961189,5276439.336750676],[516920.82717059035,5276440.2481323695],[516917.66488782293,5276440.272287482]]]},"properties":{"ID_SOURCE":"w145338228","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1459}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516704.3132373755,5276569.889958816],[516698.82386113843,5276572.097010564],[516697.7051836036,5276569.315309854],[516695.6753118087,5276569.976328517],[516693.0652704569,5276563.411602785],[516697.27587522054,5276561.867717424],[516698.0228299015,5276563.314675488],[516700.8047576158,5276562.322395105],[516701.9456810869,5276565.204185934],[516702.7435853025,5276567.218103334],[516703.1945620245,5276567.108257054],[516704.3132373755,5276569.889958816]]]},"properties":{"ID_SOURCE":"w145338229","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1460}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.6698886168,5276541.57691146],[516715.93918767857,5276541.493775966],[516715.9787060476,5276538.193039662],[516714.19859822415,5276538.187930481],[516714.2140515414,5276535.420595778],[516714.23746242846,5276532.497688316],[516723.2505477502,5276532.568018746],[516723.23671775765,5276534.768545516],[516723.83008738415,5276534.770249436],[516723.82625756215,5276536.103915099],[516723.23288807244,5276536.102211179],[516723.2108449735,5276538.547221761],[516721.7236663702,5276538.542951449],[516721.6698886168,5276541.57691146]]]},"properties":{"ID_SOURCE":"w145338230","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1461}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.6829390307,5276384.61481002],[516655.0450574332,5276384.590101827],[516655.1300220341,5276381.14501447],[516654.6039198111,5276381.254649679],[516654.54469843995,5276375.697495963],[516656.1220531408,5276375.702006795],[516656.0555227497,5276372.701044989],[516663.5667394776,5276372.722530914],[516663.63199404714,5276376.168047928],[516662.27965787705,5276376.27531851],[516662.4251126563,5276377.9428299675],[516663.70170036674,5276378.057622066],[516663.6829390307,5276384.61481002]]]},"properties":{"ID_SOURCE":"w145338232","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1462}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.9052339006,5276489.29388101],[516770.8973907668,5276484.192545373],[516770.8703505026,5276467.499282166],[516770.8633392615,5276462.10898584],[516767.69362231303,5276462.110972967],[516767.68050489173,5276456.231644396],[516777.6028083989,5276456.215764356],[516777.61085090315,5276458.638633276],[516782.1476231432,5276458.629476707],[516782.1968181045,5276491.082415818],[516776.12030294153,5276491.087136646],[516776.117978227,5276489.286666501],[516772.2948132484,5276489.286768766],[516770.9052339006,5276489.29388101]]]},"properties":{"ID_SOURCE":"w145338233","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1463}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517313.5827982815,5276451.9718759945],[517313.73202941124,5276452.305738937],[517308.6949573406,5276453.846723315],[517308.17446406465,5276452.066940161],[517305.54326160945,5276452.837099425],[517302.6863962326,5276453.717729195],[517302.38925350277,5276452.6054487415],[517299.0663692744,5276453.595835566],[517297.2077686019,5276447.1330948165],[517300.53062317317,5276446.153820813],[517300.4561722259,5276445.931320119],[517310.9809959665,5276442.850681019],[517313.5827982815,5276451.9718759945]]]},"properties":{"ID_SOURCE":"w145338234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1464}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517188.9087660774,5276218.987111863],[517195.0100752866,5276213.225856234],[517196.95746704104,5276215.12098089],[517196.05281513993,5276216.229707025],[517197.1762466521,5276217.344421134],[517197.92935752816,5276216.67980656],[517200.9247351218,5276219.800563972],[517200.3215243841,5276220.576760558],[517196.7809870162,5276224.01163696],[517196.1820430038,5276223.343030277],[517195.2777206301,5276224.340617796],[517193.85153704596,5276224.002988285],[517188.9087660774,5276218.987111863]]]},"properties":{"ID_SOURCE":"w145338237","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1465}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.65943577065,5276691.184176617],[516871.52862894896,5276692.625717314],[516872.80224565335,5276693.740804966],[516870.6918153858,5276696.29090522],[516864.3965829063,5276691.493661402],[516866.4322259192,5276688.83220252],[516867.85573867674,5276690.058862976],[516874.11386200285,5276681.74151089],[516878.9104780034,5276685.311883917],[516876.7249339155,5276687.861764275],[516880.4722854635,5276690.6511195805],[516877.5317970522,5276694.532488523],[516873.3790563128,5276691.675276613],[516872.65943577065,5276691.184176617]]]},"properties":{"ID_SOURCE":"w145338241","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1466}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516649.1142526682,5276357.232781887],[516648.5216138456,5276354.341456013],[516647.018095097,5276354.781717043],[516645.5310938116,5276349.442762213],[516646.13262884674,5276349.222202095],[516645.3159207174,5276345.885677453],[516653.6597655042,5276343.686736506],[516655.3686021869,5276350.248864282],[516654.01530676085,5276350.689553109],[516654.5366445642,5276352.246999452],[516655.73939696216,5276351.917019906],[516656.5560982547,5276355.253546054],[516649.1142526682,5276357.232781887]]]},"properties":{"ID_SOURCE":"w145338244","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1467}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.9746347262,5276368.635057004],[516710.97718584357,5276367.745946795],[516708.573275547,5276367.850189461],[516708.34793885244,5276367.849543001],[516706.545181537,5276367.866599394],[516700.6110603173,5276367.938491955],[516700.7094371466,5276359.825576729],[516712.0520375008,5276359.635833556],[516712.19875414134,5276360.858791143],[516716.40504415764,5276360.870862595],[516716.3878185531,5276366.872356463],[516712.0313083823,5276366.859853947],[516712.1013180469,5276368.638289899],[516710.9746347262,5276368.635057004]]]},"properties":{"ID_SOURCE":"w145338251","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1468}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516520.93243625667,5276344.531260802],[516517.4005715451,5276345.076941581],[516517.2534984134,5276343.965127798],[516507.8609665791,5276345.161034403],[516507.7129466025,5276344.38263719],[516504.7822982025,5276344.818890046],[516504.12234742317,5276339.148896907],[516507.05331361794,5276338.6015049415],[516506.8317557026,5276337.267201009],[516516.07375959534,5276336.18200549],[516516.1911978349,5276337.149253622],[516516.36727632326,5276338.627910514],[516520.19928003236,5276338.194220101],[516520.93243625667,5276344.531260802]]]},"properties":{"ID_SOURCE":"w145338253","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1469}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.59719628363,5276186.583967687],[516824.5453584517,5276186.581806259],[516824.5851630126,5276185.8039435465],[516824.6252886239,5276184.91494209],[516826.06742461986,5276184.941336013],[516827.85521617753,5276184.924273083],[516827.7601933753,5276191.814658166],[516829.11225447344,5276191.818564676],[516829.0593503114,5276194.530219816],[516829.0249372268,5276196.0416199295],[516822.4903009915,5276195.911602712],[516822.57344048034,5276193.1333510475],[516817.5410906715,5276193.007678636],[516817.5495304829,5276190.084729665],[516817.59719628363,5276186.583967687]]]},"properties":{"ID_SOURCE":"w145338254","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1470}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.2195319077,5276349.887232619],[516488.26540922857,5276341.993615163],[516492.54808391974,5276341.561182456],[516492.32061658753,5276339.660050063],[516492.03456961387,5276337.22528142],[516500.7510971291,5276336.027433985],[516501.63103608286,5276343.587424312],[516501.85007576324,5276345.810838252],[516501.32208398945,5276346.587319942],[516497.038782696,5276347.242023744],[516496.81690803333,5276346.01885895],[516493.1348215582,5276346.564128925],[516493.42771788465,5276349.232310362],[516489.2195319077,5276349.887232619]]]},"properties":{"ID_SOURCE":"w145338257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1471}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.56080596324,5276437.277283824],[516985.90549893363,5276444.93873306],[516983.26773300953,5276445.397827304],[516983.3933154922,5276446.120601776],[516979.76356369955,5276446.754628493],[516979.6232177536,5276445.942899273],[516975.9709329052,5276446.5768626565],[516974.64089321875,5276439.03771218],[516978.41345796664,5276438.370756673],[516978.59809345525,5276439.449350324],[516980.07102053217,5276439.198023168],[516982.1301401267,5276438.837265909],[516981.93809135834,5276437.725308608],[516984.56080596324,5276437.277283824]]]},"properties":{"ID_SOURCE":"w145338260","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1472}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516743.47792336275,5276532.548339968],[516734.5398204581,5276532.5226495825],[516734.62035964173,5276530.633505735],[516734.0201172709,5276530.409501524],[516733.87436779967,5276528.853126629],[516734.47588775464,5276528.632575606],[516734.557065672,5276526.521154162],[516736.13437957544,5276526.525686761],[516736.2181132152,5276523.52515492],[516742.0767107299,5276523.541994114],[516742.1431944439,5276526.54295773],[516743.57028797537,5276526.547060494],[516743.5240737,5276529.558814103],[516743.47792336275,5276532.548339968]]]},"properties":{"ID_SOURCE":"w145338262","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1473}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.9242226208,5276523.628576779],[516715.87804108317,5276523.544535608],[516715.8728122948,5276520.132531241],[516714.29517770524,5276520.239142935],[516714.33290896064,5276517.56078402],[516714.3875123328,5276514.237863183],[516723.25021374517,5276514.374445693],[516723.2435118315,5276516.708360529],[516723.7692840158,5276516.7098703245],[516723.8396070741,5276518.377168048],[516723.1632953218,5276518.4863656815],[516723.15818912274,5276520.264586523],[516721.8809954826,5276520.37205889],[516721.9242226208,5276523.628576779]]]},"properties":{"ID_SOURCE":"w145338263","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1474}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516961.2935142561,5276439.032166732],[516964.2453244354,5276439.062992094],[516964.22470164706,5276440.985649337],[516965.8395621382,5276441.00146737],[516967.7999345842,5276441.018292471],[516967.8022659314,5276440.218093211],[516971.5051885522,5276440.251110634],[516971.4384226164,5276447.697278026],[516968.2687943224,5276447.665814367],[516968.2651676767,5276448.9105687905],[516964.35193920956,5276448.876940799],[516964.3725620328,5276446.954283528],[516961.22546668304,5276446.922889344],[516961.2935142561,5276439.032166732]]]},"properties":{"ID_SOURCE":"w145338269","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1475}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.58686932287,5276483.809119226],[516722.56772193796,5276490.477447033],[516719.71351722395,5276490.469252187],[516719.63393963,5276492.024979718],[516716.9374680011,5276492.017239066],[516713.3997573128,5276492.007085394],[516713.5019786626,5276482.560503212],[516716.13085498934,5276482.568048232],[516716.057977225,5276481.789861074],[516717.7107330223,5276481.683465445],[516717.9335130409,5276482.5732226465],[516719.7361710934,5276482.57839762],[516719.7323422723,5276483.912063176],[516722.58686932287,5276483.809119226]]]},"properties":{"ID_SOURCE":"w145338270","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1476}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.25204138266,5276327.520823335],[517248.76219629415,5276324.857941884],[517247.7873755022,5276324.299356256],[517249.7505127091,5276320.859838393],[517250.72566307895,5276321.307285584],[517252.2361503834,5276318.533266288],[517259.13566736976,5276322.22131936],[517257.32307995274,5276325.550140439],[517256.49815639574,5276325.103137245],[517255.5540108872,5276326.867461744],[517254.8364554151,5276328.210126689],[517255.51148242195,5276328.545545808],[517254.00099611084,5276331.319564293],[517247.25204138266,5276327.520823335]]]},"properties":{"ID_SOURCE":"w145338272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1477}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.210311259,5276318.576462682],[516656.1979585347,5276317.642854069],[516654.2450872839,5276317.6150415605],[516654.1822638936,5276318.570663134],[516650.952728424,5276318.450289508],[516650.82410875376,5276310.892423843],[516654.27930511057,5276310.902302975],[516654.2080057519,5276309.568422991],[516659.9162744314,5276309.695888218],[516660.0655466543,5276310.029734234],[516662.69450080284,5276310.03725495],[516662.59490480996,5276318.594725128],[516656.210311259,5276318.576462682]]]},"properties":{"ID_SOURCE":"w145338273","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1478}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.0075603635,5276378.701984249],[516994.4170223005,5276380.124646725],[516993.8261785769,5276376.677591326],[516992.69917241164,5276376.785442705],[516991.8829908082,5276373.337730071],[516993.7620921919,5276372.898653828],[516993.3952868537,5276369.896811112],[517001.21117466694,5276368.474805076],[517001.87777596805,5276371.699802908],[517000.14922235,5276372.028176259],[517000.4370665811,5276373.7739100875],[517000.6659239438,5276375.141596702],[517001.49215755524,5276375.1440085685],[517002.0075603635,5276378.701984249]]]},"properties":{"ID_SOURCE":"w145338275","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1479}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.55012613995,5276564.172814664],[516957.4491773344,5276564.953410699],[516952.09568409534,5276572.050768931],[516954.86923889455,5276573.948218851],[516952.83351557713,5276576.609646534],[516945.18915757095,5276570.808131704],[516946.92314711335,5276568.590382335],[516946.2487449224,5276568.043835097],[516944.150557258,5276566.359519798],[516947.31777712516,5276562.034285497],[516949.2661018256,5276563.595912035],[516951.52812775155,5276560.60172261],[516955.50053169567,5276563.502920221],[516956.55012613995,5276564.172814664]]]},"properties":{"ID_SOURCE":"w145338276","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1480}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.14172395587,5276318.369984738],[517274.029764628,5276314.930252298],[517274.85468830005,5276315.377257968],[517275.64795628865,5276313.83476853],[517276.5167332706,5276312.159135504],[517275.0167814494,5276311.376708154],[517277.88657056494,5276306.161653201],[517284.7109732007,5276309.849513673],[517281.8415095228,5276314.953426545],[517283.2663465896,5276315.735632761],[517281.45308381075,5276319.28672386],[517280.4031523028,5276318.727909898],[517278.74110702163,5276321.94603129],[517272.14172395587,5276318.369984738]]]},"properties":{"ID_SOURCE":"w145338277","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1481}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.51724150917,5276231.391515956],[517137.9447346219,5276231.284576435],[517137.80497125624,5276227.727694468],[517134.9509642471,5276227.608157685],[517134.9646967994,5276222.940330313],[517141.57441170735,5276223.070919272],[517141.79615598853,5276224.294108692],[517145.0263892913,5276224.192476879],[517145.21181779896,5276237.752067465],[517137.9264213173,5276237.508346358],[517137.8607910276,5276234.285101619],[517136.58385358134,5276234.281344415],[517136.51724150917,5276231.391515956]]]},"properties":{"ID_SOURCE":"w145338278","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1482}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.66666639573,5276514.518379316],[516743.6047969349,5276514.544069829],[516743.59533892985,5276517.83377836],[516743.5875424628,5276520.545565133],[516742.08533719886,5276520.541246441],[516742.0767107299,5276523.541994114],[516736.2181132152,5276523.52515492],[516736.22673666396,5276520.524407247],[516734.57463022775,5276520.408519994],[516734.6564469828,5276518.074820973],[516733.98077367316,5276517.961739751],[516734.0603548036,5276516.406012342],[516734.66123733413,5276516.4077389445],[516734.66666639573,5276514.518379316]]]},"properties":{"ID_SOURCE":"w145338294","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1483}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.74391012086,5276360.147089336],[516659.6013721726,5276367.265342095],[516651.2578765536,5276369.353135764],[516650.3663797496,5276365.905256774],[516649.9153884969,5276366.015107145],[516648.57829976146,5276360.787719668],[516649.856480102,5276360.346814846],[516649.1142526682,5276357.232781887],[516656.5560982547,5276355.253546054],[516657.37343432906,5276358.367794786],[516656.02045847,5276358.697344377],[516656.6162716282,5276360.477283288],[516657.74391012086,5276360.147089336]]]},"properties":{"ID_SOURCE":"w145338296","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1484}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.52295786253,5276383.657042472],[516608.61046170705,5276384.579751383],[516609.6380382744,5276385.093924391],[516610.4031030312,5276385.473981263],[516611.1735247641,5276383.975792851],[516614.4062873488,5276385.585425595],[516612.1246541245,5276390.224555987],[516615.40244841005,5276391.845431731],[516613.9439429355,5276394.942068175],[516609.2035281236,5276392.594613934],[516609.0133083009,5276390.815836497],[516603.6635327133,5276391.434078634],[516603.2532031125,5276387.820869112],[516602.8351083202,5276384.29654925],[516608.52295786253,5276383.657042472]]]},"properties":{"ID_SOURCE":"w145338299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1485}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.92293880985,5276336.902989404],[517269.5219768378,5276340.590164418],[517269.8217681385,5276340.813332846],[517267.0274451074,5276345.917475919],[517268.75239708915,5276346.811708172],[517266.8640402251,5276350.362581228],[517265.66388799594,5276349.803324511],[517263.9267471643,5276353.021227577],[517257.2526072926,5276349.33383624],[517259.06551672914,5276345.893876265],[517259.89010776917,5276346.452018615],[517260.6004473832,5276345.009307105],[517261.4770231595,5276343.233669142],[517259.90229416447,5276342.33988425],[517262.92293880985,5276336.902989404]]]},"properties":{"ID_SOURCE":"w145338300","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1486}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516449.89656465803,5276342.363018743],[516449.84357320546,5276350.487178316],[516445.84762238245,5276350.464779399],[516445.8346819051,5276352.387459008],[516448.49363028555,5276352.406081797],[516448.4664920674,5276356.695996134],[516444.6132590014,5276356.674001103],[516444.61448284244,5276356.240559874],[516443.1348004708,5276356.22526814],[516443.1326354066,5276356.992125701],[516436.6129449939,5276356.951494414],[516436.64076451893,5276352.417074733],[516440.32124183234,5276352.438576816],[516440.3341804901,5276350.515897199],[516436.69128954934,5276350.483387224],[516436.7190777594,5276345.9600814665],[516438.9348966716,5276345.966335335],[516438.9605848506,5276342.187659403],[516437.7062051957,5276342.184118971],[516437.73578211525,5276337.027322271],[516444.23296104453,5276337.067891139],[516444.26673191,5276341.069014235],[516444.26318599744,5276342.3248823825],[516449.89656465803,5276342.363018743]]]},"properties":{"ID_SOURCE":"w145338302","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1487}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.2600855458,5276461.626969252],[516428.5791216488,5276464.967700927],[516430.159587432,5276463.860762662],[516432.6285287023,5276467.313058567],[516431.8004269264,5276467.977560147],[516432.75798968837,5276469.347280017],[516433.6706736231,5276470.650189602],[516434.4984616115,5276470.096827082],[516436.9667703053,5276473.771402468],[516427.40982255014,5276480.079399239],[516420.827650277,5276470.280544657],[516421.05329634994,5276470.170041208],[516418.8851065826,5276466.607458421],[516420.39014574944,5276465.6114445515],[516426.2600855458,5276461.626969252]]]},"properties":{"ID_SOURCE":"w145338308","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1488}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.2413854295,5276452.159099749],[516908.3607748998,5276457.605292951],[516908.29536207416,5276459.438908533],[516905.17818871106,5276459.452087359],[516905.17454327457,5276460.707955686],[516901.12599371345,5276460.718433228],[516901.1160351851,5276458.973510627],[516894.9042858558,5276458.977715245],[516894.8966487886,5276451.253482216],[516901.43889546825,5276451.250236665],[516901.4486926655,5276453.050728638],[516903.19881445315,5276453.044693914],[516904.858802879,5276453.038398086],[516904.86131914385,5276452.171515531],[516908.2413854295,5276452.159099749]]]},"properties":{"ID_SOURCE":"w145338311","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1489}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516555.56768535834,5276394.53132604],[516554.89142568427,5276394.618315464],[516555.08232532116,5276396.1636996595],[516555.7811183797,5276396.076774314],[516556.3025016201,5276400.268222429],[516546.0460139296,5276401.550522917],[516545.53181888285,5276397.470235846],[516545.0509136424,5276397.535553466],[516543.94911351526,5276388.774616846],[516556.1141623859,5276387.253230478],[516556.7238480338,5276392.089539735],[516556.7385544663,5276392.200721224],[516557.0103706281,5276394.346489783],[516555.56768535834,5276394.53132604]]]},"properties":{"ID_SOURCE":"w145338318","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1490}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.5669686363,5276208.414567558],[517118.70674584503,5276208.666640491],[517118.6972728842,5276211.8896640865],[517117.1949877717,5276211.8852488315],[517117.03071449435,5276216.663773374],[517115.67833240406,5276216.770938757],[517115.6737600498,5276218.326881197],[517110.56664931326,5276218.089596064],[517108.46377886046,5276217.972279001],[517108.4768372265,5276213.526729176],[517109.8292199273,5276213.419562119],[517109.75900294166,5276211.752260286],[517108.5568483672,5276211.859868643],[517108.5669686363,5276208.414567558]]]},"properties":{"ID_SOURCE":"w145338322","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1491}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.1064980724,5276431.212800068],[517024.8999839509,5276435.8946795],[517022.7152574896,5276438.111088088],[517023.3141990284,5276438.779677164],[517020.82805462595,5276441.328624632],[517020.22878827056,5276440.771174596],[517017.51698751736,5276443.430603741],[517012.1252085246,5276437.857864776],[517014.68678663054,5276435.197994265],[517015.3608407513,5276435.866801955],[517016.4606814496,5276434.769732011],[517017.92209645634,5276433.318071651],[517017.2480423306,5276432.649263671],[517019.4324439497,5276430.543991832],[517020.1064980724,5276431.212800068]]]},"properties":{"ID_SOURCE":"w145338326","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1492}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.592871686,5276405.782560502],[517182.21233509894,5276401.014228621],[517183.41838700516,5276399.572970201],[517185.74127876095,5276401.469199881],[517185.0626489243,5276402.356315353],[517186.561441281,5276403.527705399],[517188.0602330334,5276404.699095831],[517188.73919106805,5276403.700841931],[517191.7361168739,5276406.2659018645],[517186.83581443876,5276412.364124906],[517183.98812929785,5276410.13292704],[517183.38494032586,5276410.909125557],[517180.4627971416,5276408.455430257],[517181.0663138374,5276407.568092662],[517178.592871686,5276405.782560502]]]},"properties":{"ID_SOURCE":"w145338331","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1493}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.56080596324,5276437.277283824],[516987.566718537,5276436.78592205],[516987.7894591555,5276437.6756896],[516989.788263755,5276437.392556927],[516991.6217587373,5276437.131170585],[516991.47445428756,5276436.130483234],[516995.00663409085,5276435.473951109],[516996.1151416713,5276441.7010109825],[516996.2617964924,5276442.92397603],[516993.0300661102,5276443.581384016],[516993.0277961523,5276444.359355525],[516989.0449544882,5276445.014574181],[516988.8966772037,5276444.347303247],[516985.90549893363,5276444.93873306],[516984.56080596324,5276437.277283824]]]},"properties":{"ID_SOURCE":"w145338333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1494}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1566535209,5276370.173300824],[517206.6267114142,5276374.635048669],[517204.06370559015,5276377.739389874],[517203.23944198375,5276377.070116631],[517202.0783821491,5276378.533731782],[517201.1284245366,5276379.731235263],[517202.77727956243,5276380.958642502],[517198.93245086796,5276385.72629608],[517192.71291729086,5276380.706644135],[517196.4075198662,5276375.93854293],[517195.0584544548,5276374.9343021],[517197.546016308,5276371.940873931],[517198.52050566726,5276372.610589973],[517200.6318527038,5276369.838331648],[517201.1566535209,5276370.173300824]]]},"properties":{"ID_SOURCE":"w145338338","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1495}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.6063837174,5276415.116707488],[516989.7136053317,5276421.788321043],[516989.8615589015,5276422.566730759],[516986.7049295087,5276423.224361375],[516986.4821881524,5276422.334593889],[516985.0992931345,5276422.6195239285],[516983.2504474971,5276422.992007307],[516983.32361446973,5276423.65905904],[516979.1898887463,5276424.536123944],[516977.93534834695,5276416.86382542],[516981.84277226415,5276416.319518919],[516981.7709012688,5276415.207912088],[516985.67897494126,5276414.441330596],[516985.97618007683,5276415.553594671],[516988.6063837174,5276415.116707488]]]},"properties":{"ID_SOURCE":"w145338348","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1496}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.7574501282,5276437.135354113],[516415.87040380493,5276443.593046903],[516414.74122916575,5276444.478981619],[516412.558931738,5276445.917647006],[516414.6529617249,5276449.146599213],[516411.7930997158,5276451.139053598],[516409.4602700991,5276452.6884356225],[516408.1808759615,5276453.573948355],[516405.8618236102,5276450.233224899],[516405.4856416745,5276450.454444568],[516400.6237598504,5276443.216672274],[516408.0741769689,5276438.125232954],[516408.7473606472,5276439.127386647],[516411.7574501282,5276437.135354113]]]},"properties":{"ID_SOURCE":"w145338351","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1497}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516736.4203941551,5276505.409961984],[516736.35358777555,5276502.520137342],[516734.70115687494,5276502.515388868],[516734.78329323174,5276500.070551118],[516734.25720019685,5276500.18017913],[516734.18624116626,5276498.735158921],[516734.6372237863,5276498.625315074],[516734.64424958057,5276496.180261506],[516736.52233340056,5276496.074518717],[516743.73294894525,5276496.09524501],[516743.72313944314,5276499.507206125],[516743.7153749141,5276502.20787894],[516742.21252592123,5276502.425837824],[516742.203899438,5276505.426585411],[516736.4203941551,5276505.409961984]]]},"properties":{"ID_SOURCE":"w145338353","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1498}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516918.9141399428,5276457.547029952],[516915.50383861514,5276457.626035541],[516915.5163752556,5276458.481847854],[516911.88074132823,5276458.560201091],[516911.85369831015,5276457.526523099],[516908.3607748998,5276457.605292951],[516908.2413854295,5276452.159099749],[516908.1887177204,5276449.602733157],[516911.72671263595,5276449.524094061],[516911.7537557266,5276450.557772038],[516913.2786093266,5276450.528858254],[516915.3518390593,5276450.4793096315],[516915.3393023691,5276449.623497328],[516918.74209725973,5276449.544469814],[516918.9141399428,5276457.547029952]]]},"properties":{"ID_SOURCE":"w145338357","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1499}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517021.1333910655,5276372.834101894],[517018.6243845478,5276372.915681514],[517018.5614183725,5276368.758871893],[517019.49287497066,5276368.7393658385],[517019.4749531301,5276367.161129411],[517019.45003969007,5276365.405049001],[517017.91017314966,5276365.422777265],[517017.8297386527,5276359.532137021],[517025.59674534417,5276359.42146951],[517025.6774319027,5276365.223198862],[517027.1421862553,5276365.205253052],[517027.1912286631,5276368.984147007],[517025.8541660472,5276369.002466086],[517025.9030792792,5276372.8258155575],[517021.1333910655,5276372.834101894]]]},"properties":{"ID_SOURCE":"w145338367","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1500}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.4170223005,5276380.124646725],[517002.0075603635,5276378.701984249],[517003.04095975443,5276384.928825599],[517001.38719757355,5276385.368556639],[517001.6306224202,5276386.8918814575],[517001.9035728187,5276388.59311604],[517002.8052409555,5276388.484608593],[517003.4705410981,5276392.154161829],[516996.706899856,5276393.356956026],[516990.31914514914,5276394.449714898],[516989.7295973714,5276390.558104729],[516994.1644452223,5276389.459646414],[516993.64774149144,5276386.346226482],[516995.3766148072,5276385.906712431],[516994.4170223005,5276380.124646725]]]},"properties":{"ID_SOURCE":"w145338374","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1501}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517020.9977021609,5276383.280839401],[517028.99726463365,5276383.259768029],[517029.0039355657,5276386.116078494],[517029.9203020356,5276386.118757943],[517029.92378771264,5276390.064228433],[517029.00742186105,5276390.061548982],[517029.01194800757,5276393.651375411],[517023.9718739604,5276393.658868749],[517021.0874792336,5276393.683780127],[517021.0831106077,5276390.0383843295],[517021.96192048234,5276390.040952769],[517021.95973643474,5276388.218254878],[517021.95794217254,5276386.26219046],[517021.00401972537,5276386.259402504],[517020.9977021609,5276383.280839401]]]},"properties":{"ID_SOURCE":"w145338378","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1502}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.8544528837,5276238.973575469],[516568.19170625164,5276234.303824679],[516567.8202463818,5276232.857952523],[516566.9318399751,5276228.298699677],[516566.78382478846,5276227.520301094],[516577.1520924534,5276226.6606846955],[516577.81673083466,5276230.663603941],[516578.1831268961,5276233.887696793],[516574.3519989143,5276233.987932896],[516574.4217362683,5276235.877505467],[516572.84402751137,5276235.984155605],[516573.06146317127,5276238.763265674],[516572.9112353868,5276238.762838204],[516568.8544528837,5276238.973575469]]]},"properties":{"ID_SOURCE":"w145338380","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1503}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516667.7756059262,5276581.788361521],[516658.67464339006,5276586.2079100115],[516657.10656431934,5276582.980372732],[516658.68577036227,5276582.318051508],[516657.4089324939,5276579.680387807],[516655.1762855386,5276575.083931698],[516661.6446105789,5276571.990521818],[516660.9718037613,5276570.877199736],[516661.5010686672,5276569.656176991],[516664.283941104,5276568.330462735],[516665.4847412904,5276568.667318063],[516667.27655806224,5276572.45119647],[516666.747610259,5276573.561079886],[516664.26549600327,5276574.776513837],[516667.7756059262,5276581.788361521]]]},"properties":{"ID_SOURCE":"w145338384","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1504}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516497.90198301576,5276307.678748896],[516497.8287589109,5276307.011703524],[516500.8342239156,5276306.6867987225],[516501.202546729,5276309.244054424],[516504.132582859,5276309.030077283],[516503.9154321479,5276306.139830783],[516510.9785766604,5276305.270732511],[516512.7456829545,5276317.834524093],[516508.73330105894,5276318.301050072],[516507.1854405613,5276318.485600257],[516507.3325162958,5276319.597413732],[516503.5756142074,5276320.031325464],[516503.2830358724,5276317.2520048665],[516499.2253662568,5276317.796206828],[516497.90198301576,5276307.678748896]]]},"properties":{"ID_SOURCE":"w145338388","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1505}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.2879426624,5276209.420375863],[516654.794799036,5276209.43326149],[516654.8587901968,5276213.323332504],[516657.5625843595,5276213.4422043385],[516657.6160843406,5276220.999854182],[516657.39074196824,5276220.999209708],[516656.5648044446,5276220.885707958],[516656.26530143584,5276220.551432464],[516650.25585335644,5276220.645389605],[516650.26887971465,5276216.088700837],[516650.20202610263,5276213.19887861],[516648.8499700677,5276213.195013619],[516648.86077147734,5276209.416296142],[516650.2879426624,5276209.420375863]]]},"properties":{"ID_SOURCE":"w145338393","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1506}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.64052636665,5276311.550326414],[516531.5204305014,5276319.110321046],[516527.91375191335,5276319.544643495],[516528.0822220952,5276321.056621021],[516528.27985419374,5276322.879872378],[516519.41370602715,5276323.854975013],[516518.7525060769,5276318.629535449],[516515.5968204683,5276318.954004997],[516514.7175259285,5276311.171735286],[516519.45090310404,5276310.740600263],[516519.3035142159,5276309.739925259],[516522.38409205084,5276309.415244625],[516522.75114405673,5276312.417056792],[516524.5544852845,5276312.199893692],[516530.64052636665,5276311.550326414]]]},"properties":{"ID_SOURCE":"w145338396","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1507}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517285.19044781156,5276451.998679078],[517287.4951410668,5276460.00758287],[517283.6611786746,5276461.107601181],[517282.10033656267,5276455.545981012],[517282.8521073711,5276455.325932367],[517282.034129931,5276452.545010919],[517280.8762309257,5276452.941678206],[517280.07926129433,5276453.206048909],[517280.6748741627,5276454.986052398],[517276.014028198,5276456.305901807],[517273.04056848306,5276445.84994442],[517277.7014221085,5276444.530092634],[517278.29670688824,5276446.4212346375],[517283.11555875547,5276445.012944113],[517285.19044781156,5276451.998679078]]]},"properties":{"ID_SOURCE":"w145338403","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1508}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.25204138266,5276327.520823335],[517254.00099611084,5276331.319564293],[517252.64139503974,5276333.871750657],[517250.99154945917,5276332.977745693],[517249.9949267588,5276334.70857374],[517249.33051195246,5276335.862459201],[517250.08032186865,5276336.309238923],[517248.11718959425,5276339.748756745],[517241.44269552414,5276336.172522429],[517243.33005423844,5276332.955057531],[517242.3552342925,5276332.3964728005],[517244.24292378005,5276329.067869446],[517245.66809146677,5276329.738927716],[517247.10214496334,5276327.409239705],[517247.25204138266,5276327.520823335]]]},"properties":{"ID_SOURCE":"w145338409","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1509}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.4491757341,5276402.257021621],[516965.37386895146,5276394.588161428],[516971.63094886474,5276394.517479869],[516971.60621550377,5276392.694716358],[516975.33189627185,5276392.661118538],[516975.34371167835,5276393.761436227],[516979.06188060687,5276393.727818901],[516979.09127153666,5276396.528625603],[516979.1378174082,5276401.1744017415],[516975.3220078806,5276401.207734398],[516975.30922068516,5276400.440833037],[516973.18345902546,5276400.467979365],[516971.7337685312,5276400.474868623],[516971.75128210086,5276402.197585368],[516965.4491757341,5276402.257021621]]]},"properties":{"ID_SOURCE":"w145338411","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1510}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.91471977375,5276502.59077222],[516760.9610071136,5276499.556791099],[516761.0058231467,5276497.034048458],[516761.0128600093,5276494.588994903],[516761.7665249673,5276493.702046251],[516763.71940082725,5276493.707667203],[516764.61848866416,5276494.488233295],[516764.53601979604,5276497.04420943],[516769.11744436854,5276497.168539069],[516769.1056039107,5276501.280674611],[516769.7815985237,5276501.282621105],[516769.7678374289,5276506.061589475],[516760.00347881654,5276506.033481069],[516760.1636148198,5276502.588610598],[516760.91471977375,5276502.59077222]]]},"properties":{"ID_SOURCE":"w145338416","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1511}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516965.37386895146,5276394.588161428],[516965.4491757341,5276402.257021621],[516962.57271765143,5276402.137503437],[516962.5835628833,5276400.992795884],[516960.6231769592,5276400.975972568],[516959.0909283549,5276400.960396606],[516959.0881127937,5276401.927303986],[516954.8969390763,5276401.892873167],[516954.9651398686,5276393.946581672],[516958.6605807517,5276393.979568989],[516958.6629108061,5276393.179369787],[516962.5311095639,5276393.212862606],[516962.5284229156,5276394.1353144655],[516965.45021108974,5276394.166052872],[516965.37386895146,5276394.588161428]]]},"properties":{"ID_SOURCE":"w145338432","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1512}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517241.3663652917,5276361.956716517],[517244.5368782814,5276356.631395526],[517245.8114852993,5276357.4131478425],[517246.55894846295,5276356.115026218],[517247.472515001,5276354.528433249],[517246.7974905583,5276354.193015046],[517248.8360588725,5276350.642580401],[517251.6863822711,5276351.984699611],[517255.81065220654,5276354.3308522655],[517253.77273939253,5276357.659006957],[517254.82266637956,5276358.217816164],[517252.8595385726,5276361.657332497],[517251.0598054475,5276360.651743671],[517248.19039600325,5276365.755673395],[517241.3663652917,5276361.956716517]]]},"properties":{"ID_SOURCE":"w145338438","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1513}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517025.9030792792,5276372.8258155575],[517028.98274353467,5276372.812591427],[517028.9905518834,5276375.279916135],[517029.8318079135,5276375.282375948],[517029.84966618527,5276379.450167849],[517028.9558322918,5276379.447554301],[517028.99726463365,5276383.259768029],[517020.9977021609,5276383.280839401],[517020.9950873746,5276379.03529428],[517021.9940782633,5276379.03821395],[517021.9916018506,5276377.315540986],[517021.98863819416,5276375.759576188],[517021.1398710217,5276375.757095558],[517021.1333910655,5276372.834101894],[517025.9030792792,5276372.8258155575]]]},"properties":{"ID_SOURCE":"w145338443","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1514}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516669.97290106723,5276362.560468145],[516669.51245342894,5276360.725345431],[516668.93309809035,5276358.4453237],[516667.05401709885,5276358.884504689],[516664.5313615009,5276347.985597024],[516665.13289741636,5276347.765038864],[516665.0581029385,5276347.653685163],[516671.0715559482,5276346.114939538],[516672.92709737364,5276353.90002906],[516674.12953230826,5276353.681192083],[516675.0958111562,5276357.240428505],[516674.1947809373,5276357.126709129],[516675.1607409508,5276360.797084357],[516674.784861146,5276360.907147859],[516669.97290106723,5276362.560468145]]]},"properties":{"ID_SOURCE":"w145338444","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1515}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.8999839509,5276435.8946795],[517020.1064980724,5276431.212800068],[517024.626178753,5276426.780420932],[517025.8994999742,5276428.006680308],[517026.97658324963,5276426.987343627],[517028.4604387929,5276425.569093436],[517027.636486892,5276424.788706248],[517030.49852398265,5276422.12972114],[517035.7400772326,5276427.702037565],[517033.17913628323,5276430.139621248],[517033.92765019555,5276431.030928328],[517031.1480433985,5276433.75683667],[517033.5597390954,5276436.120052142],[517029.363752314,5276440.308863473],[517024.8999839509,5276435.8946795]]]},"properties":{"ID_SOURCE":"w145338457","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1516}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.4663605341,5276345.110586284],[516563.4883828253,5276337.717016715],[516567.4406974566,5276337.239243653],[516568.84577774856,5276337.076531235],[516568.6842607949,5276335.764623622],[516567.27163731307,5276335.938428589],[516566.9634670231,5276333.370225582],[516571.6220654311,5276332.816666665],[516571.9010108464,5276335.095823629],[516578.38551027694,5276334.314072489],[516579.2734295273,5276341.674046351],[516568.14536984626,5276343.009397197],[516568.33610969025,5276344.610351089],[516564.4663605341,5276345.110586284]]]},"properties":{"ID_SOURCE":"w145338463","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1517}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517262.92293880985,5276336.902989404],[517264.584641677,5276333.79600222],[517265.40989284706,5276334.131867808],[517266.1195434028,5276332.922548399],[517267.2218232723,5276331.025326724],[517265.3466408883,5276330.130649621],[517266.78202015394,5276327.356411385],[517274.0564218839,5276331.267873201],[517274.43165585055,5276331.380125876],[517272.9221500523,5276333.820723192],[517274.19675831235,5276334.602481694],[517272.3083942224,5276338.153352939],[517271.0334569188,5276337.482733607],[517269.5219768378,5276340.590164418],[517262.92293880985,5276336.902989404]]]},"properties":{"ID_SOURCE":"w145338467","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1518}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516988.6063837174,5276415.116707488],[516988.4581055915,5276414.449436598],[516991.7646389782,5276413.903383989],[516991.46775910846,5276412.679980834],[516995.0753890971,5276411.912529097],[516995.59468428924,5276414.136839036],[517001.60686016694,5276413.0429896135],[517002.7869076445,5276420.492796415],[516996.3991814813,5276421.585548596],[516995.87891428784,5276419.694654905],[516994.1053082998,5276420.02289852],[516992.9479416098,5276420.241800951],[516992.945023127,5276421.242049992],[516989.7136053317,5276421.788321043],[516988.6063837174,5276415.116707488]]]},"properties":{"ID_SOURCE":"w145338468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1519}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.7767381754,5276247.371737974],[516857.95687206986,5276243.581931158],[516860.1412861351,5276241.476600177],[516860.0671374338,5276241.142966482],[516860.7434840016,5276241.033784708],[516863.30443487264,5276238.596125901],[516865.62588566134,5276241.047920779],[516866.8280294573,5276240.940262303],[516866.52435551514,5276242.050779734],[516868.2468242171,5276243.834003021],[516866.06272991846,5276245.828192225],[516865.98471959226,5276246.828223487],[516865.1587896419,5276246.714692138],[516863.1246032447,5276248.8204562105],[516861.7767381754,5276247.371737974]]]},"properties":{"ID_SOURCE":"w145338471","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1520}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.706899856,5276393.356956026],[517003.4705410981,5276392.154161829],[517004.2970967853,5276392.0454353215],[517004.96369357395,5276395.270433641],[517004.1368138433,5276395.490298829],[517004.45476530376,5276397.213892891],[517004.72829846654,5276398.715077838],[517005.4797414051,5276398.606132192],[517006.1440650769,5276402.609102136],[517000.0570901994,5276403.591588857],[516998.40365791507,5276403.920181968],[516997.81444091117,5276399.917432129],[516996.61232733645,5276400.025063522],[516996.02148702735,5276396.578007787],[516997.1488137828,5276396.359018278],[516996.706899856,5276393.356956026]]]},"properties":{"ID_SOURCE":"w145338480","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1521}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.9469161132,5276297.45482438],[516459.1232106812,5276288.230731392],[516460.70561463776,5276286.456969012],[516461.7540592092,5276287.571328794],[516463.9389412433,5276285.24357192],[516465.5122357507,5276286.692835007],[516467.8476604637,5276284.254365541],[516468.67642084917,5276283.367591677],[516476.0915741239,5276290.834920383],[516473.07855817204,5276293.827168321],[516471.2808708088,5276292.043849592],[516468.87020887336,5276294.526560821],[516467.5142124374,5276295.923086327],[516462.70697072643,5276295.909496191],[516462.7025726972,5276297.465438914],[516458.9469161132,5276297.45482438]]]},"properties":{"ID_SOURCE":"w145338489","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1522}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516793.284818073,5276243.061683366],[516794.11107035045,5276243.064065767],[516794.18137722055,5276244.731363657],[516796.58469901275,5276244.84943373],[516816.78871222876,5276245.4634331195],[516816.87120668974,5276242.907458672],[516820.626898998,5276242.918303923],[516820.31520988204,5276246.807292586],[516790.3457664222,5276246.387400227],[516790.5059262591,5276242.942531937],[516791.81274695083,5276243.001869273],[516793.284818073,5276243.061683366]]]},"properties":{"ID_SOURCE":"w145338491","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1523}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516501.4542319284,5276432.498662402],[516497.4149022752,5276426.59681579],[516500.34991726966,5276424.604616235],[516499.3775610046,5276423.157045616],[516500.6569757586,5276422.271552915],[516499.235524196,5276420.267011559],[516500.9815444085,5276419.060535765],[516503.0737714529,5276417.61053421],[516502.10141468066,5276416.1629631575],[516504.96132489265,5276414.170553113],[516510.7964012383,5276422.52256842],[516512.0679403908,5276424.415547912],[516510.93874732684,5276425.301463993],[516512.95856436546,5276428.196822242],[516503.09975409013,5276434.948398019],[516501.4542319284,5276432.498662402]]]},"properties":{"ID_SOURCE":"w145338495","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1524}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516608.3161640834,5276150.618807052],[516608.30697372387,5276153.841830496],[516608.22995729005,5276154.508448742],[516605.0751281389,5276154.499453729],[516605.30078993086,5276154.388957437],[516603.4980303809,5276154.383818127],[516603.4248162943,5276153.7167715635],[516602.6285974021,5276153.714501889],[516601.997631488,5276153.712703356],[516601.9957307556,5276154.379535795],[516598.9160165242,5276154.370758226],[516598.6377272768,5276146.590190226],[516601.8679925701,5276146.488257108],[516601.94500837434,5276145.821638783],[516608.33010806894,5276145.7287025545],[516608.3161640834,5276150.618807052]]]},"properties":{"ID_SOURCE":"w145338500","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1525}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.32509231474,5276583.306686474],[516379.8734978811,5276583.638835374],[516378.59319917526,5276584.857771163],[516378.1378542419,5276586.523586009],[516378.43391592836,5276588.080374394],[516379.2554303965,5276589.749780326],[516375.1194155773,5276591.51638427],[516373.2529309679,5276587.510107267],[516379.7264049028,5276582.527024698],[516380.32509231474,5276583.306686474]]]},"properties":{"ID_SOURCE":"w145338502","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1526}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.74110702163,5276321.94603129],[517278.8910029832,5276322.057615734],[517277.6822738593,5276324.387964407],[517278.35730001144,5276324.723386169],[517276.46860054863,5276328.385394787],[517275.7935747143,5276328.04997324],[517274.0564218839,5276331.267873201],[517266.78202015394,5276327.356411385],[517268.51917010354,5276324.138509278],[517269.2693096137,5276324.474152698],[517270.0547670186,5276323.031665099],[517271.0819042111,5276321.145335322],[517270.4072067887,5276320.698775642],[517271.6917057998,5276318.146370704],[517272.14172395587,5276318.369984738],[517278.74110702163,5276321.94603129]]]},"properties":{"ID_SOURCE":"w145338507","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1527}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517241.3663652917,5276361.956716517],[517248.19039600325,5276365.755673395],[517250.66482164396,5276367.2078187],[517250.0616193538,5276367.984010293],[517250.2082228702,5276369.206981718],[517250.35219286405,5276371.319063318],[517248.40256701974,5276370.201891576],[517246.81764078845,5276372.753412078],[517245.69293257606,5276372.083243111],[517243.8055850471,5276375.300707414],[517237.05634601007,5276371.613116674],[517238.0455460934,5276369.84892247],[517238.86857873504,5276368.395427877],[517237.6684275782,5276367.836176912],[517241.1413573257,5276361.844910671],[517241.3663652917,5276361.956716517]]]},"properties":{"ID_SOURCE":"w145338508","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1528}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517258.6167686017,5276294.545987371],[517260.35392365855,5276291.328082988],[517259.22887184215,5276290.769050282],[517256.7537570873,5276289.5391791],[517258.56767253566,5276285.76580298],[517261.3429123036,5276287.107704128],[517262.91765608604,5276288.001489299],[517264.1267161508,5276285.559998932],[517271.2509455648,5276289.47101156],[517269.89132730133,5276292.023193769],[517268.1666887077,5276291.017822542],[517267.0941168602,5276293.026271773],[517266.5049719115,5276294.1248085275],[517266.9546626347,5276294.459560907],[517265.0662901659,5276298.010434296],[517258.6167686017,5276294.545987371]]]},"properties":{"ID_SOURCE":"w145338509","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1529}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516904.2342995978,5276111.793264396],[516914.8381780889,5276107.489602072],[516915.6660634856,5276106.93630803],[516915.89237861475,5276106.603546303],[516915.81952241034,5276105.825357049],[516915.8395342536,5276098.934755935],[516923.4355851261,5276095.73377122],[516925.9720804333,5276101.74268355],[516925.8769410035,5276108.633066409],[516907.2369855385,5276112.46881768],[516906.9871209924,5276120.914707061],[516904.05761952454,5276120.906204268],[516904.2342995978,5276111.793264396]]]},"properties":{"ID_SOURCE":"w145338511","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1530}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.0662901659,5276298.010434296],[517265.29130015435,5276298.122241047],[517263.8575616788,5276300.340785745],[517263.0319761985,5276300.116059167],[517261.982369922,5276301.980095763],[517261.21970915585,5276303.33374018],[517261.9695223755,5276303.780521399],[517260.23171135044,5276307.220702881],[517253.2573933523,5276303.421287371],[517254.9945428354,5276300.203381355],[517254.46973874804,5276299.868407371],[517256.2823324004,5276296.539585521],[517256.8071366841,5276296.874559664],[517258.2418612804,5276294.322596972],[517258.6167686017,5276294.545987371],[517265.0662901659,5276298.010434296]]]},"properties":{"ID_SOURCE":"w145338513","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1531}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.32245930226,5276149.963367406],[516409.9386209046,5276149.611959144],[516410.10074977454,5276145.389110272],[516408.59876104625,5276145.273739086],[516408.99030483933,5276139.606721447],[516410.4174929908,5276139.610742352],[516410.8143622468,5276132.0543663325],[516416.9728740716,5276132.405140339],[516416.81427969196,5276135.372121204],[516416.7346849706,5276136.961193445],[516422.4425001044,5276137.310702963],[516422.0537632669,5276141.977471055],[516422.5786291235,5276142.312369796],[516422.42338508443,5276144.090166047],[516416.715263342,5276143.851795269],[516416.32245930226,5276149.963367406]]]},"properties":{"ID_SOURCE":"w145338518","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1532}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517023.8952692743,5276407.01764017],[517017.4582259587,5276406.987713912],[517017.4234207374,5276403.475596793],[517018.1444938431,5276403.4777037725],[517018.12770846015,5276401.510481536],[517018.1098513739,5276399.910017274],[517016.63759460766,5276399.92794339],[517016.5655475339,5276393.737250092],[517021.0874792336,5276393.683780127],[517023.9718739604,5276393.658868749],[517024.02941058396,5276399.671696197],[517026.02745026594,5276399.65530901],[517026.0758431098,5276403.656480719],[517025.00919086253,5276403.675590481],[517025.0446737692,5276406.95431622],[517023.8952692743,5276407.01764017]]]},"properties":{"ID_SOURCE":"w145338521","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1533}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516423.2895993577,5276422.941984669],[516423.27204865025,5276429.165756854],[516419.516477052,5276429.155167548],[516411.7136572987,5276426.021263448],[516410.8129459673,5276425.796446002],[516411.802862143,5276421.020229619],[516415.70866204926,5276421.031237362],[516415.72213224514,5276416.252269489],[516412.3424235187,5276416.1316046165],[516412.4288102131,5276412.130819954],[516413.48043597635,5276412.111555669],[516420.8416285172,5276412.043394281],[516420.90577260253,5276415.933463602],[516423.3841420794,5276416.051591635],[516423.2895993577,5276422.941984669]]]},"properties":{"ID_SOURCE":"w145338526","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1534}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.66666639573,5276514.518379316],[516734.6736922392,5276512.073325687],[516734.07248991716,5276512.182737886],[516734.0775994354,5276510.404517071],[516734.60337219207,5276510.406027843],[516734.60784315947,5276508.850084638],[516734.90860417596,5276508.739809156],[516734.83509055636,5276508.183899324],[516736.4124094263,5276508.188431988],[516736.4203941551,5276505.409961984],[516742.203899438,5276505.426585411],[516742.2700638671,5276508.5386877395],[516743.62173186505,5276508.653713382],[516743.61300878075,5276511.687802638],[516743.6047969349,5276514.544069829],[516734.66666639573,5276514.518379316]]]},"properties":{"ID_SOURCE":"w145338533","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1535}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516556.40766212187,5276231.158404784],[516557.14490062004,5276236.050645225],[516557.51415128954,5276238.274487984],[516553.7584563916,5276238.263812404],[516553.7530864893,5276240.153171241],[516552.2508090172,5276240.148901688],[516552.321185148,5276241.816196485],[516549.8421122271,5276241.920291293],[516546.1669009858,5276240.020475203],[516546.106626439,5276234.796740335],[516550.0226571945,5276231.251397724],[516553.0269008627,5276231.371074812],[516553.9282687043,5276231.3736366145],[516554.90475053375,5276231.376412058],[516556.40766212187,5276231.158404784]]]},"properties":{"ID_SOURCE":"w145338538","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1536}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516961.23922849126,5276449.934816116],[516956.5072241082,5276449.921036841],[516956.5124014432,5276448.142816235],[516952.68173005624,5276448.131664399],[516952.6739658084,5276450.79899531],[516951.2426483118,5276452.239645602],[516947.71242423105,5276452.229371518],[516947.89886939345,5276439.782264474],[516951.8800923794,5276439.682711618],[516951.8014226477,5276440.905019643],[516953.1834705089,5276440.909042548],[516955.1814310044,5276440.914858846],[516955.2617192405,5276439.136856935],[516961.2935142561,5276439.032166732],[516961.22546668304,5276446.922889344],[516961.23922849126,5276449.934816116]]]},"properties":{"ID_SOURCE":"w145338540","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1537}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516956.55012613995,5276564.172814664],[516958.2844456117,5276561.843929879],[516959.8614264339,5276561.959661908],[516962.8777933662,5276557.856276211],[516964.8863973962,5276559.351399708],[516965.7258137017,5276559.976227641],[516967.53621929686,5276557.314148005],[516975.3304685107,5276563.227268733],[516973.44462754915,5276566.000265871],[516972.24578766373,5276564.996514158],[516967.5698818418,5276571.5401342595],[516965.1709068965,5276569.97718872],[516964.86949709913,5276570.309729938],[516959.6228273842,5276566.515696836],[516957.4491773344,5276564.953410699],[516956.55012613995,5276564.172814664]]]},"properties":{"ID_SOURCE":"w145338546","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1538}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.2600855458,5276461.626969252],[516420.39014574944,5276465.6114445515],[516418.0717318442,5276462.048438553],[516419.65219640377,5276460.941497446],[516414.3418669551,5276452.924471395],[516413.4386541291,5276453.58876388],[516411.7930997158,5276451.139053598],[516414.6529617249,5276449.146599213],[516416.9103696637,5276447.708146332],[516417.5876235934,5276447.265496762],[516419.1580655176,5276449.714996908],[516420.96418052126,5276448.497552654],[516424.41946058033,5276453.775316782],[516426.4985843273,5276456.959775425],[516424.1654396621,5276458.6202903725],[516426.2600855458,5276461.626969252]]]},"properties":{"ID_SOURCE":"w145338548","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1539}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.62988728215,5276084.462326389],[516749.3450857553,5276085.56139979],[516747.04014028463,5276077.3304384],[516747.87025082763,5276075.999149488],[516750.5015480074,5276075.228738509],[516751.77564337145,5276076.232659507],[516757.7149229012,5276074.471509791],[516758.2448919217,5276073.0282191895],[516761.101539972,5276072.258461361],[516763.77756920806,5276082.046451388],[516760.244242804,5276083.036540009],[516760.02113366075,5276082.257920496],[516758.3523132374,5276082.686563401],[516757.0142588361,5276083.027246647],[516753.4809341958,5276084.017339367],[516753.62988728215,5276084.462326389]]]},"properties":{"ID_SOURCE":"w145338551","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1540}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517299.89903052815,5276456.48794284],[517294.1856359815,5276458.138070531],[517292.40111958224,5276452.020084556],[517295.10743181023,5276451.250142416],[517294.0670962184,5276447.468301066],[517292.97705947235,5276447.776255658],[517292.11255448195,5276448.018196233],[517292.6327230333,5276449.909116709],[517287.97187025176,5276451.228956553],[517284.99842930335,5276440.7729931],[517289.8849536665,5276439.342681051],[517290.4047937825,5276441.344740081],[517295.1407663358,5276440.025125238],[517297.2077686019,5276447.1330948165],[517299.0663692744,5276453.595835566],[517299.89903052815,5276456.48794284]]]},"properties":{"ID_SOURCE":"w145338552","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1541}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.2459878492,5276080.870250399],[516743.32814840216,5276088.211451923],[516737.5394382774,5276089.861909276],[516736.5715550928,5276086.858357645],[516731.3089756685,5276088.399193367],[516729.5969530373,5276082.948433253],[516729.2210542963,5276083.058493241],[516727.510304808,5276077.163178894],[516731.19449957914,5276075.951224521],[516730.9707477967,5276075.394883592],[516738.9397514653,5276073.083847203],[516740.6501712098,5276079.0903036175],[516739.5979090052,5276079.309558667],[516740.11829059606,5276081.2004281785],[516741.2459878492,5276080.870250399]]]},"properties":{"ID_SOURCE":"w145338554","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1542}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516432.76571607665,5276099.21892934],[516433.3134753618,5276091.44070165],[516442.476032776,5276092.022257921],[516442.0825711721,5276098.35610536],[516441.1814965001,5276098.242422183],[516441.1019888168,5276099.798152392],[516442.0033769783,5276099.800696826],[516442.07912012294,5276099.5786314085],[516445.3084669088,5276099.810027608],[516444.83957329893,5276106.25480159],[516438.38057293266,5276105.903150208],[516438.5402140748,5276102.569412226],[516433.8088691983,5276102.222642119],[516433.8126320877,5276100.888977331],[516432.76571607665,5276099.21892934]]]},"properties":{"ID_SOURCE":"w145338555","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1543}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.6965743838,5276385.600337075],[516775.2223584145,5276385.601851488],[516776.0473099324,5276386.048786488],[516776.57117306476,5276386.717133697],[516776.49253951386,5276387.939443898],[516776.1150588329,5276388.605194762],[516775.4384108951,5276388.825525124],[516774.38652331097,5276388.93363508],[516773.7121161019,5276388.37599419],[516773.1882527928,5276387.707647238],[516773.1908134233,5276386.818537006],[516773.642765707,5276386.37527984],[516773.9444940577,5276385.931590048],[516774.6214623781,5276385.600120734],[516774.6965743838,5276385.600337075]]]},"properties":{"ID_SOURCE":"w145338556","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1544}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517178.6600740396,5276382.999111387],[517178.5849619875,5276382.9988898365],[517172.88988204574,5276378.425365101],[517174.69912746677,5276376.207905351],[517173.87518801325,5276375.4274975015],[517176.2879543058,5276372.322700017],[517177.03743727034,5276372.8806091305],[517179.37443842064,5276369.997868947],[517183.7962219286,5276373.34510583],[517185.66943503276,5276374.906589375],[517183.1815526628,5276378.011161383],[517182.20673458,5276377.452586679],[517181.166318504,5276378.76096626],[517180.0957269223,5276380.113712912],[517183.0936524382,5276382.345351945],[517181.0577581526,5276385.00669946],[517178.6600740396,5276382.999111387]]]},"properties":{"ID_SOURCE":"w145338561","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1545}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.4582259587,5276406.987713912],[517023.8952692743,5276407.01764017],[517023.8868877561,5276409.8850206975],[517025.6144568362,5276409.890070737],[517025.60276050103,5276413.891066846],[517024.62630908453,5276413.888212413],[517024.61591293314,5276417.444653417],[517019.7712146219,5276417.430493458],[517016.7892840334,5276417.42177995],[517016.808323127,5276413.476375159],[517018.01762073307,5276413.479908665],[517018.0223296589,5276411.868396338],[517018.02785046597,5276409.97903707],[517015.88716707844,5276409.972782275],[517015.8959018435,5276406.983149085],[517017.4582259587,5276406.987713912]]]},"properties":{"ID_SOURCE":"w145338562","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1546}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516735.9318879585,5276596.987692128],[516745.3007343536,5276603.905287303],[516746.6498233929,5276604.909424253],[516747.09983923804,5276605.132997824],[516741.6708918263,5276612.452610879],[516739.7976373813,5276610.891269662],[516738.0640589347,5276612.9979418125],[516740.08753126045,5276614.559714278],[516739.3332461967,5276615.6689434955],[516724.1931374651,5276604.511471177],[516726.45503148995,5276601.5171944555],[516727.95402348426,5276602.632897335],[516730.8941384102,5276598.862592368],[516732.46823948633,5276599.9785121875],[516735.1072827768,5276596.42962378],[516735.9318879585,5276596.987692128]]]},"properties":{"ID_SOURCE":"w145338565","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1547}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.06654172274,5276672.441753255],[516619.00020574266,5276670.8941682335],[516618.40251071396,5276669.781065233],[516621.4873450416,5276667.9004936535],[516622.0124691103,5276668.124271954],[516623.9159465544,5276666.99608004],[516627.805649836,5276664.695478448],[516631.9920406701,5276671.598096891],[516633.9359681641,5276674.715561713],[516629.64781457826,5276677.148389079],[516629.26878239965,5276678.369843833],[516625.8077754671,5276680.471616818],[516624.60731340613,5276680.023630733],[516624.3791333803,5276681.023236974],[516621.8216482872,5276682.34961352],[516620.32646304066,5276679.900271839],[516616.06654172274,5276672.441753255]]]},"properties":{"ID_SOURCE":"w145338567","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1548}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517221.0032245264,5276389.903685524],[517215.23307244317,5276385.329897137],[517215.0083933978,5276385.106953524],[517216.8169957848,5276383.111784348],[517217.4916900107,5276383.558337872],[517218.35102305317,5276382.527278732],[517219.60238499567,5276381.008363912],[517218.8532357137,5276380.339310531],[517221.4920177151,5276377.012920362],[517229.2098265588,5276383.370712213],[517229.9593030623,5276383.928628161],[517227.8482758141,5276386.589737164],[517226.1239868924,5276385.473239408],[517223.8617519507,5276388.467321853],[517222.88726815046,5276387.797601541],[517221.15311982506,5276390.015268496],[517221.0032245264,5276389.903685524]]]},"properties":{"ID_SOURCE":"w145338576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1549}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.00239075295,5276155.666328885],[517161.4534081096,5276155.556518066],[517174.82879095204,5276153.9288477115],[517174.97771007544,5276154.373845637],[517175.7839830609,5276161.15574498],[517175.78234437254,5276161.711438659],[517169.3195140428,5276162.69264126],[517166.2388208139,5276163.016979913],[517166.4602347516,5276164.3513089],[517162.7782961497,5276164.78501705],[517162.5585188146,5276162.894994527],[517160.15386004973,5276163.221328465],[517159.9330994931,5276161.664722252],[517148.0842498718,5276155.0725831585],[517150.8782312516,5276150.079523319],[517161.00239075295,5276155.666328885]]]},"properties":{"ID_SOURCE":"w145338578","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1550}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516666.1306539605,5276657.914369378],[516664.51452276343,5276645.239814545],[516669.6992466992,5276644.4766751295],[516669.84532830014,5276645.921909847],[516671.8439500209,5276645.672009813],[516677.5843831466,5276644.943810257],[516678.2466744417,5276649.724715655],[516679.524157196,5276649.506094938],[516680.57440421556,5276649.9536620425],[516681.0972992295,5276650.955417449],[516681.3194414444,5276652.067451138],[516681.01614206407,5276653.066840001],[516680.11292946263,5276653.731091333],[516678.8351293061,5276654.060850746],[516670.4945818399,5276655.259506234],[516670.78928920004,5276657.260865148],[516666.1306539605,5276657.914369378]]]},"properties":{"ID_SOURCE":"w145338580","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1551}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516866.54012591875,5276236.604980882],[516865.56396666844,5276236.491014438],[516863.30443487264,5276238.596125901],[516858.3623583107,5276233.2471142905],[516860.7721183689,5276231.142435817],[516860.6234990265,5276230.586307171],[516860.92492026306,5276230.253760708],[516861.4500748429,5276230.47756037],[516863.86048074666,5276228.1506056795],[516866.1081088388,5276230.157628213],[516866.8595708102,5276230.048664664],[516867.0091551313,5276230.271377219],[516866.7815601573,5276231.048695896],[516868.57850227295,5276233.054414267],[516866.5439880579,5276235.271315866],[516866.54012591875,5276236.604980882]]]},"properties":{"ID_SOURCE":"w145338588","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1552}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516996.1151416713,5276441.7010109825],[516995.00663409085,5276435.473951109],[516994.7838944848,5276434.584183282],[517000.7960491288,5276433.490333038],[517001.241526524,5276435.269869167],[517002.6317682587,5276435.040534278],[517004.5480493437,5276434.723823822],[517004.4752094462,5276433.945633021],[517008.30751309806,5276433.401124977],[517009.56395734823,5276440.406597632],[517010.45036084694,5276445.521614336],[517005.11486678146,5276446.395150831],[517003.5378554812,5276446.279406645],[517002.41410717415,5276445.275868257],[517001.96992872807,5276443.05177686],[517001.52607437846,5276440.716546723],[516996.1151416713,5276441.7010109825]]]},"properties":{"ID_SOURCE":"w145338590","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1553}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.7971642088,5276084.081712082],[517006.5502702177,5276083.4170729155],[517008.87107431085,5276086.091201731],[517001.79104186705,5276092.627771669],[516999.2452140571,5276089.841849236],[516999.7723223266,5276089.398828957],[516997.9005889228,5276087.281712623],[516997.2980404297,5276087.8356525935],[516995.5752402157,5276086.163530321],[516997.08988184715,5276081.944642627],[516998.0660645662,5276082.058631032],[516998.2966018332,5276080.281069102],[517001.2332606229,5276077.844567344],[517003.9290002161,5276080.742067881],[517003.7755238534,5276081.853016536],[517004.75639519945,5276082.933934884],[517005.7971642088,5276084.081712082]]]},"properties":{"ID_SOURCE":"w145338593","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1554}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.3688220896,5276080.252424358],[516838.9454701356,5276090.265332247],[516835.41085074155,5276091.699930205],[516835.1883944382,5276090.699030327],[516833.68447222677,5276091.2503819065],[516833.2369893569,5276090.137692102],[516831.13085609605,5276091.13186258],[516830.6766286683,5276092.353086232],[516829.99994430726,5276092.573410235],[516827.01971462497,5276084.118186012],[516829.35087630677,5276083.235803884],[516829.57461840357,5276083.7921486255],[516829.1971122091,5276084.457895791],[516832.73109206394,5276083.24557152],[516832.06050882343,5276081.354259512],[516835.3688220896,5276080.252424358]]]},"properties":{"ID_SOURCE":"w145338599","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1555}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516645.3159207174,5276345.885677453],[516644.49952925346,5276342.438014179],[516643.7480860769,5276342.54700639],[516642.4857812982,5276337.4309739545],[516641.5841122747,5276337.539537179],[516639.94846375776,5276331.644460848],[516647.1653182954,5276329.553430453],[516647.98329846887,5276332.445400181],[516650.3136981119,5276331.785223893],[516650.83821602265,5276332.231282146],[516651.5066041891,5276334.900545362],[516650.3113280208,5276335.241661132],[516650.6975608167,5276336.765378934],[516651.87771884125,5276336.45756192],[516653.6597655042,5276343.686736506],[516645.3159207174,5276345.885677453]]]},"properties":{"ID_SOURCE":"w145338601","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1556}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.331655877,5276355.1459433865],[516894.9067382274,5276349.382848511],[516900.5985160091,5276355.178627104],[516897.2835746117,5276358.614339563],[516899.1034194762,5276360.475652849],[516900.8783247967,5276362.292380418],[516904.4186033097,5276358.85732402],[516909.9607831546,5276364.430398327],[516901.3731487334,5276372.96322854],[516898.3776909223,5276369.842624634],[516899.9592398149,5276368.402397433],[516898.75325437926,5276367.254159087],[516897.4873076371,5276366.061291146],[516898.1662201344,5276365.063003538],[516894.4966800395,5276361.273607683],[516893.7433001821,5276362.04940029],[516890.9939950871,5276359.518554745],[516887.8252184352,5276356.586391244],[516889.331655877,5276355.1459433865]]]},"properties":{"ID_SOURCE":"w145338607","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1557}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1566535209,5276370.173300824],[517204.8506130209,5276365.627482569],[517203.4270909352,5276364.400740383],[517204.48260269396,5276363.070181413],[517204.70990948414,5276362.404014446],[517205.61421224335,5276361.406428221],[517204.1906892773,5276360.179685862],[517206.45259658806,5276357.296734676],[517214.77003244654,5276364.1008374775],[517212.43268289865,5276367.094702253],[517211.53330646426,5276366.425205863],[517210.2817464826,5276368.010805646],[517209.3468407643,5276369.197238287],[517210.9205848587,5276370.424425863],[517207.22596689034,5276375.192517854],[517206.6267114142,5276374.635048669],[517201.1566535209,5276370.173300824]]]},"properties":{"ID_SOURCE":"w145338611","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1558}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.25250048045,5276337.720780319],[517208.15169821994,5276341.519911849],[517205.3571014069,5276346.735223147],[517203.7072523013,5276345.8412315715],[517202.7482349465,5276347.561064756],[517201.9704728948,5276348.9480142435],[517202.720284716,5276349.3947878685],[517200.8322972843,5276352.834543485],[517200.3078231038,5276352.38843558],[517197.90783480165,5276351.158811085],[517197.8327223399,5276351.158589287],[517191.98379229294,5276347.807128997],[517193.94688863686,5276344.367592294],[517195.14639254473,5276345.149111741],[517197.03405089857,5276341.8204930965],[517198.5340052117,5276342.602900393],[517201.25250048045,5276337.720780319]]]},"properties":{"ID_SOURCE":"w145338612","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1559}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.9692420954,5276108.118328069],[517129.96858837805,5276108.340605524],[517123.8799778233,5276109.767518079],[517123.2114524412,5276107.209339881],[517115.1009594604,5276109.063762739],[517111.1847930066,5276109.952488088],[517111.25827606866,5276110.508402396],[517103.81693994586,5276112.153641406],[517102.11114636966,5276104.70227368],[517109.40226018237,5276103.056591189],[517109.1801778145,5276101.944541989],[517121.80810515943,5276099.092017354],[517121.58406481636,5276098.646800034],[517126.3947385423,5276097.549546352],[517126.4698542714,5276097.54976722],[517127.28632312024,5276100.886358591],[517128.26348070765,5276100.666952657],[517129.9692420954,5276108.118328069]]]},"properties":{"ID_SOURCE":"w145338621","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1560}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.11668712634,5276072.9937920235],[516435.32011153834,5276072.441489542],[516435.32199313893,5276071.774657182],[516435.47630205983,5276070.330277646],[516443.7384411468,5276070.57587621],[516443.569697321,5276077.13263699],[516442.14280757,5276077.01746927],[516442.13841533975,5276078.573411461],[516443.5653047086,5276078.68857918],[516446.79466302786,5276078.919976176],[516446.475998009,5276085.36517403],[516439.56690669863,5276084.78997136],[516439.8774082097,5276081.234380087],[516434.9964414087,5276080.664907583],[516435.00083173387,5276079.1089653885],[516433.8740925302,5276079.105786233],[516434.11668712634,5276072.9937920235]]]},"properties":{"ID_SOURCE":"w145338629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1561}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516566.9318399751,5276228.298699677],[516567.8202463818,5276232.857952523],[516568.19170625164,5276234.303824679],[516568.8544528837,5276238.973575469],[516569.15016588225,5276240.641511528],[516564.4915256738,5276241.1839586375],[516562.0118201676,5276241.510325776],[516562.08314159425,5276242.844204437],[516560.3548912897,5276243.061569522],[516558.1008442799,5276243.27744029],[516557.7334898829,5276240.386764942],[516557.51415128954,5276238.274487984],[516557.14490062004,5276236.050645225],[516556.40766212187,5276231.158404784],[516562.34419562184,5276230.286165967],[516563.24998843105,5276228.732786665],[516566.9318399751,5276228.298699677]]]},"properties":{"ID_SOURCE":"w145338635","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1562}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516701.40232353314,5276241.308210708],[516704.1740888349,5276241.293931568],[516704.1638791378,5276239.615693297],[516711.1346390061,5276239.569005858],[516710.99320178357,5276244.358719779],[516710.3995155914,5276244.457042118],[516710.3196825707,5276246.101680176],[516710.9581498849,5276246.103512019],[516711.02526338695,5276254.127988783],[516704.57280545833,5276254.176162782],[516704.5268990849,5276249.2303158],[516703.0020259893,5276249.248170477],[516701.46967339655,5276249.254890141],[516701.4468622833,5276246.731954242],[516701.40232353314,5276241.308210708]]]},"properties":{"ID_SOURCE":"w145338642","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1563}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.14764776285,5276487.862782901],[517306.2634705225,5276488.515105594],[517307.2813314543,5276499.8543873085],[517294.88578073826,5276500.595541797],[517292.6296242781,5276476.249232261],[517297.3632583928,5276475.707590745],[517298.02143052267,5276481.711093193],[517299.7719739233,5276481.560697233],[517301.7779601247,5276481.388832719],[517301.7763092465,5276481.94452667],[517306.13405544014,5276481.512915377],[517305.48018483486,5276474.064607738],[517309.23638948635,5276473.853490852],[517309.31117005163,5276473.964852879],[517310.06227886956,5276473.967085318],[517310.79191510985,5276481.193339164],[517310.49147195613,5276481.192446139],[517311.14764776285,5276487.862782901]]]},"properties":{"ID_SOURCE":"w145338652","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1564}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5068044968,5276370.134745798],[516531.374371827,5276370.567573293],[516532.0355541894,5276375.793014757],[516531.2090053694,5276375.901808268],[516531.2096362893,5276375.67953071],[516525.91265467776,5276376.22019636],[516521.66755890276,5276376.652711037],[516521.080218463,5276371.87203895],[516517.0229003197,5276372.305089696],[516516.3639103076,5276366.301678554],[516520.4212325791,5276365.868627345],[516521.5476010713,5276365.982962152],[516523.34777259384,5276366.877186471],[516524.0196835536,5276368.323908516],[516530.85710370983,5276367.565333891],[516530.49132136494,5276364.118965824],[516534.69855529093,5276363.797489716],[516535.5068044968,5276370.134745798]]]},"properties":{"ID_SOURCE":"w145338656","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1565}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.79945962655,5276238.340730637],[516578.6208402384,5276238.44566855],[516578.55173698295,5276236.333818409],[516578.1831268961,5276233.887696793],[516577.81673083466,5276230.663603941],[516577.1520924534,5276226.6606846955],[516582.8623422772,5276226.121241671],[516583.61095127114,5276227.012490365],[516587.5171980766,5276226.912474267],[516587.88675429375,5276229.025180196],[516588.47595451534,5276233.139025519],[516588.62206740654,5276234.58425719],[516584.8587748055,5276237.240891656],[516582.98029413534,5276237.457822257],[516582.91055957985,5276235.5682495665],[516580.6568251824,5276235.67297286],[516580.79945962655,5276238.340730637]]]},"properties":{"ID_SOURCE":"w145338665","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1566}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517221.4920177151,5276377.012920362],[517223.3009534924,5276374.906614443],[517223.9756481822,5276375.353168713],[517225.2045123424,5276373.82307459],[517226.4635535152,5276372.248614088],[517225.93941176275,5276371.691365083],[517228.05011472024,5276369.14139421],[517235.6934726117,5276375.276694831],[517233.73233499995,5276378.049385029],[517232.68339613883,5276377.157163283],[517232.0047563222,5276378.044273276],[517232.22943499754,5276378.267217541],[517230.2692864374,5276380.706492588],[517229.29513084446,5276379.9256324405],[517228.7673735687,5276380.590909677],[517230.49166344,5276381.707408204],[517229.2098265588,5276383.370712213],[517221.4920177151,5276377.012920362]]]},"properties":{"ID_SOURCE":"w145338677","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1567}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516591.55087812373,5276234.814878971],[516591.4770305646,5276234.370109981],[516590.2777399599,5276233.477576497],[516590.2038922842,5276233.032807523],[516588.47595451534,5276233.139025519],[516587.88675429375,5276229.025180196],[516587.5171980766,5276226.912474267],[516587.14795809815,5276224.688629619],[516595.78797667404,5276224.046404039],[516595.8592906126,5276225.380283093],[516598.03791522986,5276225.275351614],[516599.68662367883,5276226.613726152],[516600.8678581019,5276233.841170495],[516601.3096718954,5276236.954340191],[516597.1023424724,5276237.275768341],[516596.88523491344,5276234.385518599],[516591.55087812373,5276234.814878971]]]},"properties":{"ID_SOURCE":"w145338681","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1568}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517249.6616656492,5276503.017631195],[517249.5209908671,5276499.794161227],[517244.41248643957,5276500.112451974],[517244.5528349538,5276503.447060609],[517238.99334207247,5276503.87516049],[517238.33379596286,5276498.3162198225],[517239.61659741163,5276496.319501191],[517239.766818594,5276496.319945876],[517239.99313736183,5276495.987196528],[517239.4818386566,5276491.095533248],[517244.3653477901,5276490.665432154],[517244.43650946533,5276491.999320065],[517247.299047962,5276491.729947337],[517251.19844297296,5276491.352507494],[517251.35063956864,5276490.686119721],[517255.0320499706,5276490.36360662],[517256.1982554453,5276502.370157042],[517249.6616656492,5276503.017631195]]]},"properties":{"ID_SOURCE":"w145338682","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1569}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516436.29662345775,5276285.387777441],[516436.29693709867,5276285.276638676],[516439.301782318,5276285.173979644],[516439.3715627288,5276287.063550654],[516442.07595402293,5276286.96004501],[516442.00429199444,5276285.737306554],[516446.3614900309,5276285.527329412],[516446.4347203142,5276286.194374103],[516446.33575579367,5276294.64070814],[516441.227432924,5276294.848564857],[516441.07814779185,5276294.5147244865],[516440.35706136836,5276294.512688989],[516439.72611074796,5276294.510907999],[516439.79369493085,5276297.178450403],[516436.2630639608,5276297.279625326],[516436.3500954807,5276293.056564195],[516436.2906642983,5276287.499413966],[516436.29662345775,5276285.387777441]]]},"properties":{"ID_SOURCE":"w145338706","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1570}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516911.3006987986,5276316.866494519],[516908.9792976236,5276314.414681026],[516910.6369451195,5276312.641258586],[516909.6858502048,5276311.660467764],[516907.4915253468,5276309.42018928],[516906.06860465737,5276307.960128667],[516904.1852957079,5276309.844037123],[516902.79976952815,5276308.439655702],[516900.66530548455,5276306.277351337],[516902.32327526645,5276304.39278779],[516899.4775248625,5276301.43932785],[516894.3851476415,5276296.14541842],[516901.01606892905,5276288.9405763345],[516904.5587647544,5276292.451758237],[516906.8581265884,5276294.7367963055],[516906.0289781616,5276295.734646743],[516907.75174145796,5276297.406743169],[516907.22433629737,5276297.960910619],[516920.7804222074,5276311.559322225],[516915.3561495757,5276317.100550912],[516914.2323610562,5276316.097029836],[516912.349374789,5276317.869796917],[516911.85498517886,5276317.401574565],[516911.3006987986,5276316.866494519]]]},"properties":{"ID_SOURCE":"w145338718","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1571}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.01135526027,5276221.120412855],[516622.68738235015,5276221.122342198],[516622.6608652351,5276230.413541873],[516622.64138972346,5276237.237461336],[516618.8099459087,5276237.44880694],[516618.59633737383,5276233.33603008],[516617.7704008731,5276233.222533826],[516616.49060981086,5276234.219139428],[516615.7413726427,5276233.550163994],[516615.5920958893,5276233.216319163],[516614.3151584861,5276233.212676465],[516613.5678230437,5276231.876868789],[516613.42678849195,5276228.653416439],[516615.83329079224,5276227.660024373],[516615.6247526285,5276221.769027663],[516614.7252855072,5276221.099623805],[516614.5826661117,5276218.431865235],[516622.01928469015,5276218.341944081],[516622.01135526027,5276221.120412855]]]},"properties":{"ID_SOURCE":"w145338720","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1572}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516718.59262317914,5276619.276975154],[516715.67932282126,5276613.7116255425],[516715.00748816045,5276612.264880652],[516720.8001412204,5276609.0584573345],[516724.1931374651,5276604.511471177],[516739.3332461967,5276615.6689434955],[516736.9204941441,5276618.885061201],[516734.2127380314,5276620.210956659],[516734.5860473593,5276620.990007545],[516733.0813133121,5276621.874801674],[516733.4539839935,5276622.876130127],[516730.7455919419,5276624.424304842],[516731.19273316377,5276625.648126578],[516728.6348800283,5276627.085595032],[516728.9327615153,5276627.975568631],[516725.69765344483,5276629.855651873],[516723.59715881856,5276628.960501607],[516718.59262317914,5276619.276975154]]]},"properties":{"ID_SOURCE":"w145338723","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1573}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.83775619394,5276092.097335431],[516484.3148934068,5276092.362796266],[516483.99933279306,5276097.6966049895],[516471.00651517307,5276096.881871431],[516471.087916589,5276094.659309234],[516470.4175317566,5276092.656900374],[516470.57436307054,5276090.323411861],[516471.4066084218,5276088.214112568],[516471.8143398356,5276084.814393301],[516475.6445892514,5276085.058619612],[516475.78668259643,5276082.625063911],[516484.8661821392,5276083.362047332],[516484.5528223856,5276087.917884848],[516481.0981229358,5276087.685829259],[516480.88675655477,5276090.708228831],[516479.64747165464,5276090.660266511],[516479.59847158956,5276092.04937312],[516480.83775619394,5276092.097335431]]]},"properties":{"ID_SOURCE":"w145338738","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1574}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4339716028,5276489.391515131],[516731.4314172638,5276490.280625509],[516731.35598731955,5276490.391548519],[516731.50141921564,5276492.0590620525],[516728.15918770805,5276491.982777189],[516725.868441132,5276491.931741917],[516725.8722713673,5276490.598076346],[516722.56772193796,5276490.477447033],[516722.58686932287,5276483.809119226],[516726.1925038598,5276483.708333815],[516726.1960149691,5276482.485807056],[516727.9235623013,5276482.490768844],[516727.9996307329,5276482.1575682005],[516728.2256014665,5276481.935937839],[516729.05213908135,5276481.827172299],[516729.4270543851,5276482.050528678],[516729.42545811913,5276482.606222657],[516731.52887846984,5276482.501125533],[516731.4339716028,5276489.391515131]]]},"properties":{"ID_SOURCE":"w145338753","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1575}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517190.40777437977,5276143.749954367],[517191.16023786436,5276143.307616439],[517192.5136226498,5276142.867052349],[517195.06655337376,5276143.20800766],[517200.9894903464,5276147.004246234],[517197.8956606219,5276151.774117479],[517199.23014837806,5276152.644947647],[517203.8933737177,5276155.68171961],[517199.51635686215,5276162.559454377],[517186.39584582514,5276154.185246811],[517189.49032083305,5276149.193092],[517187.4664775112,5276147.74230337],[517188.82510874706,5276145.523518704],[517190.40777437977,5276143.749954367]]]},"properties":{"ID_SOURCE":"w145338757","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1576}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517072.1498276077,5276190.958802422],[517072.11273681733,5276201.050178222],[517071.0685815919,5276201.069345686],[517071.0604379927,5276203.847814279],[517071.8115815715,5276203.850015905],[517071.84402134543,5276218.4094116865],[517059.9015193596,5276218.152139675],[517058.62295087654,5276218.704093306],[517056.069069237,5276218.69661394],[517055.9367410138,5276212.5835429765],[517055.8047379124,5276206.35933333],[517054.3775657397,5276206.355154244],[517053.1760619409,5276206.24049654],[517053.19753853127,5276198.905339446],[517054.1740260057,5276198.908198582],[517055.7517542982,5276198.801678791],[517056.1465284586,5276192.245592792],[517056.01257220976,5276186.688215785],[517054.2150290527,5276184.904717094],[517056.2499579439,5276182.576742275],[517060.7568358448,5276182.589941981],[517060.46451580606,5276179.810593393],[517056.1202324226,5276175.574561743],[517053.3406623045,5276175.677562471],[517053.4785263166,5276179.90127443],[517051.06867515447,5276182.005873219],[517049.94553429686,5276180.780048695],[517044.8380630195,5276180.653960036],[517044.8270730751,5276179.275795695],[517040.98887582053,5276179.208994857],[517040.9818515042,5276166.205630563],[517044.6998735809,5276166.272079665],[517044.6062289866,5276157.202807042],[517049.3384713778,5276157.216657316],[517049.46365104994,5276165.774779794],[517064.33639098296,5276165.818334634],[517066.2100287649,5276167.268640272],[517066.2756997666,5276170.491883761],[517067.4216667406,5276171.617752586],[517068.7473224384,5276172.9441996645],[517071.75191269314,5276172.953005518],[517071.8253986718,5276173.50891938],[517073.24866951146,5276174.846767585],[517073.36501723406,5276186.405636897],[517072.08774356294,5276186.5130326],[517072.1498276077,5276190.958802422]]]},"properties":{"ID_SOURCE":"w145338759","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1577}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516616.6666615359,5276356.806696565],[516617.1081399331,5276360.031006879],[516615.1545852453,5276360.247712749],[516615.5225372552,5276362.916114795],[516617.24536346714,5276364.5881253155],[516617.6114115821,5276367.923360177],[516608.14283390145,5276369.452307075],[516607.77266050735,5276367.561876913],[516606.0441285078,5276367.890367176],[516605.2343713139,5276362.108795029],[516607.2630372961,5276361.892300015],[516607.26240347716,5276362.114577568],[516608.2394972642,5276361.895084454],[516608.1669203756,5276361.005760055],[516607.11503103614,5276361.113900226],[516606.8237719108,5276357.890019022],[516613.3607661315,5276357.130684523],[516616.6666615359,5276356.806696565]]]},"properties":{"ID_SOURCE":"w145338765","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1578}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517214.6791482967,5276648.951790297],[517212.8817973125,5276647.168240877],[517212.66599764564,5276643.944549104],[517217.6999225736,5276643.403731047],[517217.77273114264,5276644.181924846],[517221.15327920805,5276643.969641061],[517221.1499926689,5276645.081029258],[517223.77287951513,5276647.089302364],[517223.69382643607,5276648.422746064],[517221.58355424507,5276650.861580563],[517221.5769809876,5276653.0843569795],[517216.54372117424,5276653.40289403],[517215.0362932718,5276655.1766743995],[517215.32522839494,5276659.067421284],[517209.84066631785,5276659.606909584],[517209.1866945341,5276652.1586109195],[517212.1165861346,5276651.944990197],[517213.15666525287,5276650.73664062],[517214.6791482967,5276648.951790297]]]},"properties":{"ID_SOURCE":"w145338781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1579}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.5991968046,5276203.860901217],[516960.3700134714,5276206.758600955],[516962.46674089495,5276208.987500698],[516960.1317254007,5276211.203494604],[516958.5585327243,5276209.754097843],[516958.1823141526,5276209.975281809],[516957.955676979,5276210.419180693],[516958.1042875724,5276210.975311825],[516958.5540023526,5276211.310040289],[516958.09555065574,5276213.976057981],[516957.9453222086,5276213.97562058],[516957.86276552186,5276216.53159306],[516957.33696618566,5276216.530062196],[516953.9571511145,5276216.409083314],[516951.4787062343,5276216.290729712],[516951.3355939814,5276213.845240047],[516951.3462681769,5276210.177661411],[516953.6064899209,5276207.850306603],[516957.5991968046,5276203.860901217]]]},"properties":{"ID_SOURCE":"w145338801","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1580}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517311.68704818055,5276594.458551719],[517310.64276423794,5276594.544359361],[517310.20048706804,5276589.1972207595],[517314.9410795077,5276588.8112103185],[517315.013644526,5276589.6672024615],[517317.48679492256,5276599.088096617],[517317.5881803157,5276600.3553917445],[517312.20900328795,5276600.795071505],[517311.68704818055,5276594.458551719]]]},"properties":{"ID_SOURCE":"w145338811","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1581}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.4904845518,5276346.236513612],[516613.76771420706,5276346.129017196],[516614.2817711917,5276350.242651691],[516614.8722080447,5276353.911945445],[516618.17810536455,5276353.58795834],[516618.5451050614,5276356.589776875],[516616.6666615359,5276356.806696565],[516613.3607661315,5276357.130684523],[516606.8237719108,5276357.890019022],[516606.458667628,5276354.221368584],[516605.55700190156,5276354.32993738],[516605.4131145696,5276352.1067335745],[516604.58656096697,5276352.21551668],[516603.9241734283,5276347.434622123],[516606.02795696224,5276347.218340811],[516605.8092739698,5276344.883784085],[516610.1670682449,5276344.451652014],[516610.38638344395,5276346.563931361],[516612.4904845518,5276346.236513612]]]},"properties":{"ID_SOURCE":"w145338818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1582}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516854.58796949795,5276348.7103305925],[516854.62880876585,5276352.76704792],[516849.42332441197,5276352.818669685],[516846.7417142281,5276352.844254179],[516846.6948691638,5276348.26516297],[516841.69969585916,5276348.317400005],[516841.7467055425,5276352.840921782],[516833.50655083306,5276352.928238993],[516833.44304002775,5276346.3152432665],[516833.390311391,5276341.169322799],[516837.49158674915,5276341.136722225],[516837.5152378752,5276343.348470616],[516838.9874760163,5276343.341613067],[516841.6615792674,5276343.3160032695],[516841.6737093452,5276344.316295648],[516846.78155488987,5276344.264384484],[516846.769586428,5276343.208522711],[516848.2193230122,5276343.190488439],[516850.3225388284,5276343.174345134],[516850.2979922376,5276341.273785238],[516854.5119365473,5276341.241522621],[516854.58796949795,5276348.7103305925]]]},"properties":{"ID_SOURCE":"w145338819","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1583}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516380.32509231474,5276583.306686474],[516379.7264049028,5276582.527024698],[516373.2529309679,5276587.510107267],[516375.1194155773,5276591.51638427],[516373.6907758033,5276592.068065847],[516363.88549297745,5276579.926279019],[516369.60630973865,5276575.496768899],[516369.9806078415,5276575.942379788],[516373.3680362444,5276573.284549932],[516373.0719724229,5276571.727761846],[516375.7821679928,5276569.512588202],[516376.68285837746,5276569.737400323],[516380.7253355825,5276574.527776321],[516380.4239595524,5276574.860347709],[516381.09838243935,5276575.417943184],[516381.70050930144,5276574.975078123],[516385.4434788718,5276579.431195893],[516381.3788128624,5276582.5316725075],[516380.32509231474,5276583.306686474]]]},"properties":{"ID_SOURCE":"w145338822","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1584}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.67914262647,5276308.122993043],[516835.7446176896,5276311.457373111],[516835.7777728324,5276312.980082756],[516835.870048116,5276317.437051238],[516833.33107197407,5276317.485282242],[516826.05966309557,5276317.630980098],[516817.4060813487,5276317.806037716],[516814.7544362432,5276317.853951487],[516814.5773997516,5276311.52959189],[516814.5950181684,5276308.028742481],[516814.51129974297,5276305.805706969],[516819.03342538903,5276305.70762447],[516819.0794572078,5276307.9750071],[516820.84474126715,5276307.935649278],[516822.7151835625,5276307.896595731],[516822.74205070327,5276308.996956283],[516827.8876119082,5276308.900681452],[516827.86116318655,5276307.655840483],[516829.70903961355,5276307.62783795],[516831.3916995523,5276307.588244568],[516831.35215604905,5276305.676527585],[516835.62634486944,5276305.599969395],[516835.67914262647,5276308.122993043]]]},"properties":{"ID_SOURCE":"w145338828","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1585}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516924.13591451995,5276139.080276816],[516921.7322284879,5276139.073292962],[516921.4994565952,5276141.628829166],[516914.73941534624,5276141.498053925],[516914.74716146174,5276138.830724304],[516909.6396510978,5276138.704754301],[516909.5706663656,5276136.592900283],[516912.42536744114,5276136.490049023],[516912.59270166914,5276130.600132387],[516914.09500761906,5276130.604494817],[516914.1004942235,5276128.715136365],[516915.45224725007,5276128.8302016165],[516917.47842406674,5276129.502924375],[516919.3537241283,5276130.397488905],[516921.15358545113,5276131.402974553],[516922.6520163407,5276132.741003984],[516923.5495245175,5276134.077287748],[516924.2210407032,5276135.635194332],[516924.2152278681,5276137.635691537],[516924.13591451995,5276139.080276816]]]},"properties":{"ID_SOURCE":"w145338831","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1586}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517143.53960734274,5276193.402401632],[517143.85740329686,5276187.512932745],[517149.3407669662,5276187.529075339],[517150.5390002494,5276188.755140277],[517150.75910769927,5276190.534023675],[517157.66964464844,5276190.554376812],[517157.6748829742,5276188.776156965],[517158.8806448708,5276187.446032594],[517164.21345197415,5276187.572885353],[517164.4211093716,5276193.575041428],[517165.4730398231,5276193.4670018405],[517165.5265362716,5276200.802380174],[517160.7946565184,5276200.67729667],[517160.80382528534,5276197.565411891],[517147.73489403876,5276197.1935015265],[517147.6499634391,5276200.52744265],[517142.39228232426,5276200.400826104],[517142.316840817,5276200.511743769],[517142.48767730873,5276193.510445178],[517143.53960734274,5276193.402401632]]]},"properties":{"ID_SOURCE":"w145338832","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1587}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9484894918,5276472.395866921],[516536.41449139855,5276473.719507672],[516533.4327738049,5276465.70898433],[516535.83884911105,5276464.826697896],[516534.79486834514,5276462.156381241],[516537.7270380663,5276461.164449566],[516538.70947798167,5276459.055585304],[516542.2431697976,5276457.843084745],[516542.6909950043,5276458.844613979],[516546.375541442,5276457.410265046],[516548.0926749926,5276461.082753665],[516548.9949547071,5276460.751898405],[516550.4864368273,5276464.534886256],[516547.2528753986,5276465.8593742475],[516546.5734033513,5276467.079980336],[516544.2418068218,5276468.184753302],[516543.4203220974,5276466.515324343],[516542.3977713732,5276466.879180746],[516541.2398948111,5276467.287108846],[516538.307411951,5276468.390177551],[516539.9484894918,5276472.395866921]]]},"properties":{"ID_SOURCE":"w145338833","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1588}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.28672197775,5276439.0101173725],[516486.2590790525,5276440.45768567],[516482.4214835685,5276442.891896562],[516483.2442473258,5276444.116761634],[516483.6204326472,5276443.895546985],[516485.5648308931,5276446.901822007],[516480.37177933,5276450.554734077],[516478.277157254,5276447.548035733],[516479.8576372524,5276446.441110953],[516478.6608893044,5276444.659489755],[516476.7042241032,5276445.987629931],[516474.5351159952,5276442.758442882],[516476.64200432703,5276441.430726979],[516474.0244271891,5276437.422293638],[516477.4110401318,5276435.0979409525],[516477.936505183,5276435.21056733],[516478.41803545103,5276434.922966592],[516479.21559954534,5276434.436208701],[516478.54274186195,5276433.322908054],[516480.57452311524,5276431.994981063],[516485.28672197775,5276439.0101173725]]]},"properties":{"ID_SOURCE":"w145338834","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1589}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517026.3884766497,5276260.742833107],[517029.3926966029,5276260.862755974],[517029.4017953378,5276257.750870861],[517053.3624024706,5276258.043257139],[517053.3207496998,5276272.269017753],[517029.66000508075,5276272.199787507],[517029.5006792982,5276275.311233439],[517016.6559572071,5276275.384830648],[517016.62510942016,5276285.943012645],[517013.3197996831,5276286.044496177],[517013.03926982527,5276304.937427216],[516998.8429029283,5276304.8959755255],[516998.95150196913,5276285.702465033],[517001.9934608432,5276285.755800163],[517002.0468019247,5276282.921893378],[517002.2572130463,5276267.451860794],[517004.5922222867,5276265.235883598],[517006.92690877523,5276263.131046093],[517009.4879115299,5276260.693451356],[517026.3884766497,5276260.742833107]]]},"properties":{"ID_SOURCE":"w145338839","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1590}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517044.6062289866,5276157.202807042],[517044.717832516,5276149.8679142855],[517055.8946269752,5276150.011772415],[517056.796333061,5276149.903273276],[517056.7365148534,5276144.679532798],[517055.53857822495,5276143.34234858],[517054.86124027136,5276143.784923953],[517051.7909555883,5276140.552883676],[517057.44054198865,5276135.123581552],[517061.40960443753,5276139.247374948],[517060.50529232546,5276140.244983237],[517062.0778275653,5276141.9166848585],[517064.18202875915,5276141.589430156],[517063.57589795487,5276143.365889383],[517064.6236025008,5276144.70263511],[517061.91229576553,5276147.139765259],[517061.3864901431,5276147.138225017],[517061.5074202139,5276157.141151229],[517049.3384713778,5276157.216657316],[517044.6062289866,5276157.202807042]]]},"properties":{"ID_SOURCE":"w145338841","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1591}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.23779169226,5276074.14962475],[516487.8170949443,5276075.812905753],[516485.02459221054,5276080.47286559],[516474.67682613427,5276073.997490351],[516474.4517924399,5276073.885714239],[516475.8865417126,5276071.222421708],[516476.34384004545,5276068.889783343],[516476.87185335235,5276068.113299672],[516478.60392537777,5276066.562245052],[516479.81144320825,5276064.565148326],[516485.2857990832,5276067.80368852],[516492.9495288851,5276067.158546316],[516490.60991677875,5276071.041808555],[516487.9479845124,5276069.378292434],[516486.8979953117,5276068.797394286],[516484.95028090815,5276072.226095653],[516484.21530751756,5276071.812798982],[516483.46037286695,5276073.144337894],[516485.23779169226,5276074.14962475]]]},"properties":{"ID_SOURCE":"w145338842","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1592}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517079.0812416151,5276299.129172086],[517076.00160331355,5276299.120142069],[517075.99117617006,5276302.676582416],[517075.9553328199,5276314.901846257],[517078.80962399807,5276314.910215484],[517078.7074611919,5276324.134512638],[517079.38315053825,5276324.247633783],[517079.37760997756,5276326.136992791],[517079.37206941546,5276328.026351801],[517078.39527768234,5276328.134627155],[517078.30093708826,5276334.691594101],[517071.220474616,5276341.450359193],[517053.49455580174,5276341.176149894],[517053.60871928465,5276327.839717798],[517064.5000692231,5276327.871618789],[517064.6136066518,5276314.757464654],[517061.6090895603,5276314.748662304],[517061.7304343088,5276298.967178141],[517064.88518580527,5276298.976420693],[517064.61504900164,5276280.937653768],[517079.13306075416,5276281.458109418],[517079.0812416151,5276299.129172086]]]},"properties":{"ID_SOURCE":"w145338853","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1593}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516872.5603365978,5276647.617103499],[516866.84950569813,5276648.489678403],[516866.33372374193,5276645.042852139],[516864.45504166675,5276645.370830628],[516863.71715021733,5276640.811963878],[516865.2952700922,5276640.527570596],[516866.7231083004,5276640.264970433],[516866.42975484795,5276637.819046214],[516865.3021579425,5276638.149199803],[516864.12037195865,5276631.255112727],[516865.1718957063,5276631.258157853],[516864.8791848262,5276628.589956111],[516863.56420024805,5276628.786199677],[516861.94865157024,5276629.026029161],[516861.28522134206,5276624.689657956],[516863.0888009664,5276624.361460949],[516862.57237091486,5276621.136912796],[516868.28322793706,5276620.264333672],[516869.90632816305,5276630.382752707],[516871.4088271532,5276630.275965619],[516872.5161399611,5276636.94755893],[516871.0129987283,5276637.276623376],[516872.5603365978,5276647.617103499]]]},"properties":{"ID_SOURCE":"w145338854","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1594}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516807.1018573999,5276634.86902748],[516810.87205477554,5276629.767481259],[516812.5212410817,5276630.88363964],[516818.8554198298,5276622.233029365],[516823.2772163571,5276625.579993817],[516821.3163591283,5276628.352823294],[516824.7643034595,5276630.807858081],[516821.9737189912,5276634.800827507],[516818.1811097833,5276632.055835624],[516816.8769120599,5276631.118495444],[516815.51949745486,5276633.003951489],[516817.09357315366,5276634.119894304],[516813.02261728776,5276639.331707978],[516811.6735476366,5276638.327555551],[516810.2410276614,5276640.212796014],[516811.6498632488,5276641.3282604],[516815.0370751486,5276644.005393671],[516812.24746617454,5276647.66495134],[516808.649950894,5276644.987212667],[516806.69006934913,5276647.426630647],[516802.5683940692,5276644.191684312],[516808.52539586055,5276636.095673267],[516807.1018573999,5276634.86902748]]]},"properties":{"ID_SOURCE":"w145338857","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1595}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516765.4323156312,5276577.067392436],[516761.4361563201,5276582.3905967325],[516759.86237581586,5276581.1635303],[516758.0527124337,5276583.603396722],[516759.62649265316,5276584.830462674],[516757.0631781359,5276588.157278442],[516757.21051877,5276589.157960011],[516754.11920402327,5276593.261235964],[516753.3681107647,5276593.259075188],[516751.2570576102,5276596.031495917],[516749.68295903574,5276594.915571019],[516747.4971185779,5276597.576638274],[516749.07057756523,5276598.914840215],[516745.3007343536,5276603.905287303],[516735.9318879585,5276596.987692128],[516740.15366146545,5276591.553979178],[516739.25426600856,5276590.884555532],[516751.6201533506,5276574.249152628],[516752.44412071706,5276575.029500913],[516756.2133490174,5276570.261336245],[516765.4323156312,5276577.067392436]]]},"properties":{"ID_SOURCE":"w145338858","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1596}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.98274753377,5276611.230188506],[517056.7589703722,5276611.488683061],[517056.4806594279,5276616.755892983],[517056.4408263601,5276617.533754705],[517058.92657688016,5276617.663289344],[517058.98995221587,5276616.540963313],[517065.6736792762,5276616.893964939],[517065.61017238244,5276618.06074643],[517068.11845520104,5276618.190351026],[517068.17376765533,5276617.256939064],[517068.4285466469,5276612.334193958],[517073.24235504755,5276612.581698222],[517073.00357127155,5276617.171070716],[517076.1501832781,5276617.33589212],[517075.848246941,5276622.96979323],[517065.2594152983,5276622.416397604],[517065.16381320835,5276624.283265622],[517058.4425401331,5276623.930154551],[517058.5459439613,5276621.963283494],[517048.39267597743,5276621.433422382],[517048.71051863127,5276615.488375214],[517051.75197950035,5276615.652875592],[517051.98274753377,5276611.230188506]]]},"properties":{"ID_SOURCE":"w145338859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1597}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.8994838646,5276120.16548458],[516411.98054930946,5276118.054060262],[516410.6287844529,5276117.939111888],[516410.70170795266,5276118.717294673],[516406.4961827375,5276118.372028213],[516406.41668455285,5276119.927758926],[516406.3334297812,5276122.817154475],[516401.67690200143,5276122.581760742],[516401.9952027613,5276116.247698914],[516406.2767843759,5276116.259757495],[516406.37421704514,5276113.670478875],[516406.51966182486,5276110.0366231175],[516409.5239705985,5276110.156226012],[516410.57715389767,5276109.603495165],[516411.8544314526,5276109.495954399],[516413.2061982478,5276109.610903051],[516414.18207403395,5276109.835932319],[516415.98265458853,5276110.618984138],[516417.93503208144,5276110.846766307],[516417.1478520223,5276123.625603566],[516411.8156000637,5276123.277157531],[516411.8994838646,5276120.16548458]]]},"properties":{"ID_SOURCE":"w145338860","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1598}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517003.1943509317,5276623.101745652],[517003.0608573515,5276625.090757693],[516996.5651681031,5276624.649464875],[516996.7062028052,5276622.649360732],[516986.1629154577,5276621.929532244],[516986.5629254795,5276616.118089397],[516989.49159435334,5276616.326684163],[516989.78958901664,5276612.015330743],[516994.4905100146,5276612.340238394],[516994.1609439716,5276617.17385635],[516994.09800275293,5276618.151702597],[516996.92909351765,5276618.33778841],[516996.9681725736,5276617.8155455785],[517003.5464893336,5276618.257080053],[517003.5070202915,5276618.912689422],[517005.84245591477,5276619.075104451],[517005.9053341895,5276618.119486092],[517006.2504185748,5276613.119204409],[517011.04146872374,5276613.444388626],[517010.74300389417,5276617.91133535],[517013.7017146705,5276618.120030051],[517013.31708909,5276623.798148419],[517003.1943509317,5276623.101745652]]]},"properties":{"ID_SOURCE":"w145338865","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1599}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516859.08606764546,5276468.47639035],[516860.2803315648,5276468.479847646],[516860.3220805495,5276474.814932792],[516859.0902624993,5276474.811366769],[516859.13789773395,5276484.302837227],[516856.72677882697,5276484.318085871],[516856.7380372816,5276485.618453255],[516850.4286084108,5276485.644650381],[516850.417637954,5276484.244258095],[516841.0435611499,5276484.306055021],[516841.0349345276,5276482.094349561],[516839.90827309596,5276482.091091672],[516839.8672732901,5276475.489273547],[516841.1742341703,5276475.481938828],[516841.12624808814,5276466.101607515],[516843.42470800795,5276466.086026544],[516843.41328579315,5276464.841228629],[516849.91054674744,5276464.804453256],[516849.92228912475,5276465.938112392],[516852.1005715951,5276465.922187148],[516859.07103057316,5276465.886791269],[516859.08606764546,5276468.47639035]]]},"properties":{"ID_SOURCE":"w145338868","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1600}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.5452482719,5276338.936789073],[516933.84666813735,5276338.604246327],[516940.58773068583,5276345.181092954],[516935.0870650405,5276351.166640135],[516934.1886239223,5276350.163770361],[516932.96876459674,5276351.204936901],[516932.23085313936,5276351.8251739275],[516930.5832255265,5276350.153288413],[516925.0835437889,5276355.805428741],[516924.25989112764,5276354.913917544],[516922.2486419343,5276356.886360241],[516920.418180371,5276358.6815053215],[516921.31662252184,5276359.684372983],[516915.81695874874,5276365.3365221],[516914.15414646023,5276363.720166956],[516912.37147628184,5276361.992324532],[516908.92631251935,5276358.536990254],[516914.5007655962,5276352.996191607],[516917.79635027394,5276356.228815234],[516919.5441881385,5276354.433429303],[516921.56327140046,5276352.349868732],[516918.26736374607,5276349.228381768],[516923.8421575429,5276343.576453327],[516926.3882323311,5276346.251205329],[516928.8818866808,5276343.702239759],[516933.5452482719,5276338.936789073]]]},"properties":{"ID_SOURCE":"w145338869","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1601}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.9068277589,5276613.331078938],[517020.9857801071,5276613.517900751],[517021.2463086239,5276609.184211377],[517025.9098056969,5276609.464579095],[517025.6174105446,5276614.420557803],[517025.56242980855,5276615.242831336],[517028.5136955394,5276615.429283837],[517028.5770325346,5276614.3180713765],[517035.3432537266,5276614.715735293],[517035.2645035112,5276615.960270325],[517037.3897317353,5276616.088741178],[517037.4607764105,5276614.910867489],[517037.7450204112,5276610.177145002],[517042.468603256,5276610.457701775],[517042.20006023056,5276614.95807649],[517045.38416368247,5276615.145218923],[517045.03683381353,5276620.901242337],[517034.8237032544,5276620.293431851],[517034.69741712435,5276622.382490091],[517028.05137914594,5276621.98517828],[517028.1777603898,5276619.862778258],[517017.5515918669,5276619.231562428],[517017.9068277589,5276613.331078938]]]},"properties":{"ID_SOURCE":"w145338870","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1602}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.61973959376,5276373.8766322415],[516814.5399807173,5276373.923309771],[516814.5086815228,5276371.75599521],[516814.47102618695,5276369.188559385],[516811.85699269216,5276369.225468969],[516811.7816154316,5276364.112825142],[516814.49329718814,5276364.076197428],[516814.46270379314,5276361.664377597],[516814.43134029175,5276359.519290837],[516811.8849035668,5276359.5563955875],[516811.81607493805,5276354.777189838],[516821.58116885606,5276354.638676346],[516822.3173025305,5276354.629688579],[516822.3362730027,5276355.863394041],[516825.1155598439,5276355.826966523],[516825.147497362,5276357.772003546],[516825.172084152,5276359.661449487],[516822.37777667143,5276359.697833585],[516822.4662410746,5276365.477353575],[516825.12534370384,5276365.440578942],[516825.15012308984,5276367.263341645],[516825.1745171737,5276369.219470883],[516822.3651918377,5276369.255811574],[516822.42714236025,5276373.812718331],[516817.61973959376,5276373.8766322415]]]},"properties":{"ID_SOURCE":"w145338871","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1603}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5568273174,5276377.455149015],[516830.83722665,5276377.293461186],[516850.8329394467,5276377.05120354],[516863.07672941446,5276376.908818009],[516863.2218582942,5276389.045694441],[516858.9402833788,5276389.099982747],[516858.91667288885,5276386.877120212],[516857.0388087837,5276386.893912581],[516855.2961462762,5276386.911096842],[516855.28453331755,5276385.732982318],[516849.913767698,5276385.8063531],[516849.92579974787,5276386.839987199],[516840.048155175,5276386.955899514],[516830.73385098856,5276387.073456534],[516830.72226518113,5276385.884228195],[516825.3515001305,5276385.957621626],[516825.363664968,5276386.946800151],[516823.5083346368,5276386.96366843],[516821.735627507,5276386.980775943],[516821.7594126901,5276389.148068903],[516817.48534959333,5276389.202409378],[516817.44862642454,5276386.312671],[516814.60926460085,5276386.348928659],[516814.55992407823,5276382.625606113],[516817.6171126473,5276382.589977414],[516817.5563780236,5276377.610743305],[516817.5568273174,5276377.455149015]]]},"properties":{"ID_SOURCE":"w145338874","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1604}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516369.2358057413,5276065.9204368815],[516372.74294899567,5276066.800927519],[516372.765638332,5276066.152637221],[516369.2358057413,5276065.9204368815]]]},"properties":{"ID_SOURCE":"w145338876","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1605}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.4431589674,5276068.949901398],[516381.0954000779,5276069.065687508],[516381.7714447512,5276069.067588847],[516372.74294899567,5276066.800927519],[516372.6839617247,5276068.486339334],[516376.13867655554,5276068.718330577],[516379.4431589674,5276068.949901398]]]},"properties":{"ID_SOURCE":"w145338876","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1606}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.06180487905,5276122.356559032],[516443.81694680755,5276122.589438592],[516443.42693690845,5276127.700760136],[516430.6598405544,5276126.775613852],[516430.6629757204,5276125.664226485],[516430.5913090398,5276124.44148849],[516430.29429619346,5276123.218114822],[516430.1468869944,5276122.217442417],[516430.1493950449,5276121.32833253],[516430.3027609421,5276120.217368958],[516430.7565886174,5276119.107252973],[516431.13467397116,5276118.219202591],[516431.2905483527,5276116.2191291675],[516437.2240430564,5276116.458150096],[516437.46193525294,5276112.01323667],[516444.521539257,5276112.477722358],[516444.13341076847,5276116.9222113695],[516440.37826519454,5276116.689331614],[516440.14162572264,5276120.689690015],[516439.01489456027,5276120.686509845],[516439.0105031043,5276122.242452145],[516440.06180487905,5276122.356559032]]]},"properties":{"ID_SOURCE":"w145338878","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1607}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516424.0117833797,5276379.932969521],[516416.12501634983,5276379.91073393],[516416.20827332383,5276377.021337348],[516417.5606044925,5276376.914009641],[516417.6391628205,5276375.691694795],[516419.6671900976,5276375.697412022],[516419.6039845165,5276371.473926628],[516416.75003510783,5276371.354741615],[516416.8354854192,5276367.687373631],[516419.61432440113,5276367.806346915],[516419.7701888334,5276365.806272421],[516425.32849525736,5276365.821945555],[516425.3234802403,5276367.6001660125],[516428.77864263544,5276367.609911445],[516428.6797041557,5276376.056246802],[516427.32768604794,5276376.052433147],[516426.2783106121,5276375.271495726],[516425.7450145094,5276375.2699916335],[516425.30185296026,5276375.268741791],[516425.3747710034,5276376.0469250865],[516425.4498831204,5276376.047136924],[516425.514024717,5276379.937206081],[516424.0117833797,5276379.932969521]]]},"properties":{"ID_SOURCE":"w145338880","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1608}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.12152029225,5276077.588554969],[516521.3216640528,5276074.907587441],[516522.75738037267,5276071.91089022],[516522.5351848861,5276070.7988637155],[516524.2707366151,5276068.025296662],[516525.1730756688,5276067.694437778],[516526.9840610519,5276064.809945931],[516529.5342248448,5276066.150857842],[516537.87116714544,5276066.507941823],[516536.0585992636,5276069.948123933],[516535.7584505065,5276069.836132199],[516532.51300223306,5276075.272760919],[516536.18737569446,5276077.50598383],[516532.64178308897,5276082.830620794],[516528.44223089673,5276080.373630525],[516527.99216603464,5276080.1500741495],[516528.74647923105,5276079.040818427],[516528.0716971592,5276078.594345117],[516528.6003472773,5276077.595588656],[516526.7256014936,5276076.47887274],[516526.12152029225,5276077.588554969]]]},"properties":{"ID_SOURCE":"w145338883","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1609}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516815.86108190025,5276441.866827903],[516815.83774415485,5276439.543940489],[516811.1506700791,5276439.574864977],[516811.10620434396,5276434.162232595],[516812.24792939296,5276434.154414377],[516812.16384414834,5276421.650954073],[516820.02824715036,5276421.595863881],[516820.03973871947,5276422.818433895],[516825.6732637095,5276422.779136771],[516825.6621907332,5276421.412086321],[516833.59422679653,5276421.346095868],[516833.6570876381,5276430.782039244],[516833.6639241833,5276431.015452403],[516825.51407816826,5276431.080813434],[516825.4828498989,5276426.290601578],[516822.8088169546,5276426.305104832],[516819.9244718855,5276426.319001923],[516819.9551911652,5276431.287035796],[516817.25111597637,5276431.301454833],[516817.261645318,5276432.857441216],[516817.27310533193,5276434.091125129],[516820.63819147577,5276434.067501218],[516820.6908656109,5276441.836319387],[516815.86108190025,5276441.866827903]]]},"properties":{"ID_SOURCE":"w145338888","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1610}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.87856965297,5276661.985135263],[516841.9551259475,5276659.976164184],[516839.4665839829,5276663.414300152],[516835.34429558855,5276660.401608118],[516838.1485491861,5276656.875471443],[516838.9626775959,5276655.855339724],[516837.2390375496,5276654.516678972],[516836.3345219798,5276655.625461416],[516833.63607652904,5276653.7282848125],[516833.7115063372,5276653.617363096],[516830.8631631608,5276651.608614744],[516831.6171398993,5276650.610536111],[516829.59306219325,5276649.271009316],[516828.8238390934,5276650.346841974],[516826.3502262179,5276653.818368543],[516822.37814142625,5276650.806119801],[516825.0926466699,5276647.1463499535],[516822.5440898989,5276645.360751354],[516825.7108555113,5276641.146589521],[516834.2555786151,5276647.283969909],[516835.46213612106,5276645.620361564],[516840.7839230398,5276649.414500458],[516839.8784418745,5276650.856698822],[516848.4231358262,5276656.99410016],[516844.87856965297,5276661.985135263]]]},"properties":{"ID_SOURCE":"w145338893","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1611}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.5549465512,5276092.628576871],[516381.2388549352,5276098.184668406],[516373.35295619525,5276097.717936703],[516373.5209957135,5276091.383451327],[516371.26783449244,5276091.265978276],[516371.50817628816,5276085.931952605],[516373.23584099807,5276085.936808906],[516373.24146450113,5276083.936311773],[516371.13853215997,5276083.81926109],[516371.6092201097,5276076.707649218],[516376.41633009055,5276076.832302466],[516376.6429279369,5276076.388381145],[516381.2991809992,5276076.734893483],[516381.0653938012,5276079.735005385],[516381.2901164729,5276079.9579166155],[516381.0603927504,5276081.513225051],[516382.26224737806,5276081.516605262],[516382.02564659616,5276085.5169657115],[516381.5752639962,5276085.404559391],[516380.3734101729,5276085.40117932],[516380.13493553037,5276090.068372255],[516380.12805945316,5276092.513424331],[516381.5549465512,5276092.628576871]]]},"properties":{"ID_SOURCE":"w145338897","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1612}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517142.9940053299,5276368.5569937145],[517143.02153825003,5276374.5141645735],[517143.04404608737,5276379.6266587],[517146.23637548595,5276379.613828217],[517146.3958572737,5276417.290669763],[517143.1735038825,5276417.303411673],[517143.19206581166,5276421.20447132],[517143.21675167576,5276428.1285500815],[517115.6802996924,5276428.247611403],[517090.39725864795,5276428.351187149],[517080.4447942154,5276428.388674038],[517080.38060932443,5276414.41822076],[517105.3857973532,5276414.313785133],[517105.36779759784,5276410.212675908],[517105.26420463476,5276384.1056476515],[517105.23709020345,5276377.992882689],[517103.5620574436,5276377.999077338],[517102.08231618453,5276378.00584593],[517102.09901312285,5276382.55151003],[517090.3812717642,5276382.6060249],[517087.30912357953,5276382.619238594],[517087.28335978225,5276376.039690925],[517095.65855886874,5276375.997585206],[517095.6435206162,5276370.8851134395],[517102.0356997514,5276370.859424294],[517102.04638170067,5276372.337614086],[517105.5767197211,5276372.325753847],[517105.5664956544,5276370.691969763],[517111.47795697383,5276370.664879107],[517111.4687468048,5276368.686564821],[517142.9940053299,5276368.5569937145]]]},"properties":{"ID_SOURCE":"w145338899","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1613}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516804.7686613666,5276167.964387935],[516804.8347976775,5276171.07648939],[516811.29434730083,5276171.206269921],[516811.358876148,5276174.874065182],[516824.9539989864,5276175.135600706],[516824.6252886239,5276184.91494209],[516824.5851630126,5276185.8039435465],[516824.5453584517,5276186.581806259],[516817.59719628363,5276186.583967687],[516811.3251936286,5276186.543633131],[516811.41185655183,5276182.542855189],[516804.72729628877,5276182.3012855835],[516804.71543187153,5276186.413419077],[516801.8837406591,5276186.360793836],[516797.42963867565,5276186.28126283],[516797.2829352233,5276185.058303396],[516791.5745466677,5276184.930703848],[516791.4320072298,5276182.262940912],[516774.5767649354,5276182.047663175],[516774.81267154607,5276170.556501363],[516785.1553679233,5276170.797463643],[516785.239130436,5276167.796934116],[516804.7686613666,5276167.964387935]]]},"properties":{"ID_SOURCE":"w145338902","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1614}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.14455339086,5276088.232489511],[516400.12105915864,5276088.235238948],[516400.2027465446,5276085.901537119],[516399.15112453053,5276085.898576182],[516399.389614557,5276081.231384021],[516401.3426284356,5276081.236883135],[516402.2446453962,5276081.017143951],[516403.8981346683,5276080.688381628],[516405.17479237745,5276080.803116846],[516406.1506733024,5276081.028144747],[516407.3509627051,5276081.587223782],[516410.2044280738,5276081.928681255],[516410.12211039325,5276084.484660396],[516414.2528572186,5276084.718578986],[516414.0074651031,5276091.830822659],[516409.57626017544,5276091.596057727],[516409.6529415212,5276091.040575696],[516404.24491748854,5276090.914202519],[516404.007675924,5276095.136839635],[516397.5486609935,5276094.78523357],[516397.78714942874,5276090.118041283],[516399.06411809294,5276090.121636436],[516399.14455339086,5276088.232489511]]]},"properties":{"ID_SOURCE":"w145338904","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1615}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.91367436585,5276428.618896917],[516838.90286158706,5276427.162935397],[516845.2875294581,5276427.114715129],[516845.2980191803,5276428.681815453],[516852.07326502644,5276428.634732359],[516852.09623464977,5276431.079872578],[516855.6190889293,5276431.04561142],[516855.6607792567,5276437.402923904],[516854.57917597453,5276437.3997936305],[516854.6342170625,5276444.33507134],[516852.0277923832,5276444.3497568015],[516852.0473530576,5276447.972968239],[516845.7303080382,5276448.021376573],[516845.7185004887,5276446.909945235],[516843.47261084255,5276446.925677377],[516838.21466507,5276446.966043027],[516836.01384221076,5276446.981908342],[516835.9910908518,5276444.45897099],[516835.1723782537,5276444.456604291],[516835.1310833247,5276437.954811515],[516836.317874488,5276437.947128289],[516836.26345403993,5276430.789573305],[516836.25466471526,5276428.633437435],[516838.91367436585,5276428.618896917]]]},"properties":{"ID_SOURCE":"w145338905","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1616}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516477.60912386206,5276126.1302671805],[516482.1088109036,5276128.699209971],[516479.91820312635,5276133.027456872],[516477.7382887149,5276133.57698754],[516473.61292259453,5276131.453665292],[516470.23367812677,5276131.110689788],[516467.9805340359,5276130.993179279],[516468.06004854286,5276129.437449342],[516468.06413353805,5276127.992645768],[516467.84224407206,5276126.769482537],[516467.5458676044,5276125.32382947],[516467.69986898534,5276123.990589388],[516468.30424851726,5276122.769762316],[516468.83414138894,5276121.326445452],[516468.9136562359,5276119.770715552],[516472.3686514056,5276119.89162523],[516472.680428519,5276115.891480529],[516479.8899417132,5276116.467572715],[516479.5769018764,5276120.912271985],[516477.999792704,5276120.796670396],[516477.6880121693,5276124.796814852],[516476.56159617787,5276124.682488683],[516476.4823937355,5276126.127079761],[516477.60912386206,5276126.1302671805]]]},"properties":{"ID_SOURCE":"w145338908","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1617}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516838.6778472708,5276468.617399591],[516835.77843663236,5276468.653473103],[516835.7904708978,5276469.687107299],[516829.5559432066,5276469.780227488],[516829.5441968799,5276468.6465683915],[516820.37270230043,5276468.775667963],[516820.3349542344,5276466.241573337],[516819.0580036204,5276466.260113384],[516818.96315044357,5276460.091585071],[516820.53303548705,5276460.073891038],[516820.39529971033,5276450.548819456],[516823.0017856662,5276450.51189209],[516822.9900700989,5276449.367119166],[516829.41239745857,5276449.274534521],[516829.42452927225,5276450.274827035],[516836.17737706465,5276450.172090999],[516838.2805863266,5276450.144829554],[516838.5960853913,5276450.134627772],[516838.63276527205,5276453.035480475],[516839.42149647896,5276453.015533036],[516839.50897773704,5276459.128470548],[516838.53246971214,5276459.1478750575],[516838.5705633994,5276461.55971712],[516838.63339940924,5276465.805436129],[516838.6778472708,5276468.617399591]]]},"properties":{"ID_SOURCE":"w145338913","HEIGHT_WALL":15.0,"HEIGHT_ROOF":15.0,"NB_LEV":5,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1618}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516904.06889381906,5276324.069581078],[516908.18751463195,5276328.415984886],[516906.60498506034,5276330.189626094],[516907.3538538601,5276330.969777923],[516902.60852865706,5276335.512732162],[516902.00924007886,5276334.955294432],[516900.1564054042,5276336.694811046],[516895.15528857923,5276341.381510719],[516893.58275999926,5276339.709853627],[516892.6794746715,5276340.374071836],[516890.73267131404,5276338.256771146],[516888.33583520213,5276335.915886731],[516888.86387971026,5276335.13944001],[516887.44092848804,5276333.690497763],[516886.7143978483,5276332.977097095],[516882.1978601015,5276328.5628712475],[516883.705269877,5276326.789005684],[516883.0315101596,5276326.009074645],[516887.77779446647,5276321.132688245],[516888.60177977884,5276321.913055443],[516895.3812786334,5276315.264336178],[516897.1788296026,5276317.047786194],[516897.85678033816,5276316.38291491],[516902.3656109978,5276320.863814279],[516901.67237967585,5276321.61755246],[516902.97547239583,5276322.955010599],[516904.06889381906,5276324.069581078]]]},"properties":{"ID_SOURCE":"w145338916","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1619}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.2685430519,5276421.722388241],[516776.8462055179,5276421.615793016],[516776.7904989805,5276440.9539418705],[516772.35893282533,5276440.941177724],[516772.13904004084,5276439.051169395],[516771.4636783067,5276438.826945067],[516769.3644015333,5276437.487223557],[516769.2151388867,5276437.153374647],[516766.43601932225,5276437.145373238],[516766.4644952973,5276427.254021215],[516765.7130606857,5276427.3629976865],[516765.8764012784,5276422.806739934],[516762.7965088912,5276422.909014155],[516762.8006673837,5276421.46420995],[516753.5625871685,5276421.21534846],[516753.7249592568,5276416.992506787],[516756.7297429864,5276416.890011652],[516756.8218023441,5276410.999872225],[516771.39346756856,5276411.041816098],[516771.38034563995,5276415.59850622],[516773.33292761195,5276415.715269118],[516773.32428533223,5276418.716016289],[516773.3156430455,5276421.716763475],[516775.2685430519,5276421.722388241]]]},"properties":{"ID_SOURCE":"w145338918","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1620}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.04564726265,5276276.339287541],[517148.79393807903,5276276.305866844],[517148.8633777085,5276285.886315178],[517148.8953561646,5276290.331998192],[517148.90126402176,5276290.8766002245],[517145.8966690665,5276290.889982175],[517145.8733636879,5276288.600435308],[517145.33254816505,5276288.598843231],[517145.3159686704,5276286.576051502],[517143.27282166865,5276286.592265204],[517141.0118461291,5276286.607838534],[517141.01135549886,5276286.77454667],[517134.28851981217,5276286.821448709],[517134.2898276485,5276286.376893678],[517132.1340106839,5276286.392779822],[517129.5876046019,5276286.407517996],[517129.59736465866,5276288.19689618],[517126.0819328111,5276288.231013907],[517125.99018824653,5276276.005375154],[517129.61078627186,5276275.971566634],[517129.6380792825,5276279.461434038],[517133.85958227376,5276279.429395521],[517133.8603996491,5276279.15154863],[517140.9212544347,5276279.105640843],[517140.9197825526,5276279.605765248],[517145.0661721613,5276279.573513791],[517145.04564726265,5276276.339287541]]]},"properties":{"ID_SOURCE":"w145338919","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1621}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.9512591596,5276139.830577711],[516443.6938251961,5276139.593453319],[516443.3025613832,5276145.149329964],[516441.72514438035,5276145.144876916],[516441.4130762131,5276149.256162146],[516434.27840153227,5276148.791468155],[516434.44023448136,5276144.679758664],[516433.83931367006,5276144.678063129],[516433.5426161451,5276143.343550512],[516433.2456049142,5276142.120176648],[516433.4024201572,5276139.7866869895],[516433.78364037065,5276137.78724937],[516434.2384081278,5276136.343717409],[516434.31697279774,5276135.121403235],[516434.3955374964,5276133.899089063],[516439.0514276823,5276134.356786455],[516439.0495456165,5276135.023618882],[516440.0482957946,5276135.126463499],[516441.1521445056,5276135.251832876],[516441.15465424675,5276134.3627229715],[516442.50641472556,5276134.477678441],[516442.4347506528,5276133.254940282],[516443.33581987914,5276133.36862367],[516443.5617931477,5276133.146982377],[516449.2692966757,5276133.607656916],[516448.9512591596,5276139.830577711]]]},"properties":{"ID_SOURCE":"w145338921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1622}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517187.02803176583,5276576.295840338],[517188.75227131665,5276577.412326977],[517189.48427833733,5276576.247519906],[517190.63886764826,5276574.417121653],[517189.1399563549,5276573.301299538],[517193.13782677683,5276567.533832638],[517189.1652150776,5276564.743611431],[517193.1624351067,5276559.198422222],[517194.73645905155,5276560.314467104],[517195.6490938372,5276559.027940383],[517196.8483933449,5276557.319929149],[517195.3498069564,5276556.092966672],[517203.34493476467,5276544.780322005],[517204.91896069254,5276545.896369607],[517205.8319283199,5276544.498705696],[517206.8052470705,5276543.012308427],[517205.3811123797,5276542.007842922],[517209.4541302414,5276536.240609316],[517216.34947236563,5276541.262279149],[517204.05466630176,5276558.786030029],[517203.15531869826,5276558.116534661],[517197.87531549425,5276565.658444711],[517198.7749907485,5276566.216800466],[517196.2107598976,5276569.765701073],[517200.33325576654,5276572.667509604],[517190.15146788425,5276586.863337964],[517183.3315950717,5276581.730781521],[517187.02803176583,5276576.295840338]]]},"properties":{"ID_SOURCE":"w145338922","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1623}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516878.8984529734,5276344.779704896],[516878.9107699069,5276345.713314106],[516877.77650640823,5276345.732254938],[516877.7968892853,5276349.066505136],[516877.8582423119,5276351.222793202],[516877.9221465869,5276355.090640134],[516875.12783644965,5276355.126998927],[516875.1467313309,5276356.382932346],[516868.8294578893,5276356.475771365],[516868.810336317,5276355.297635111],[516864.0179078566,5276355.372668147],[516859.30810317554,5276355.447944297],[516859.27062828315,5276352.824938814],[516858.55699585873,5276352.8451010175],[516858.4938186032,5276348.721635169],[516858.45563553355,5276346.343135015],[516859.40211754583,5276346.323646835],[516859.248936014,5276336.965240561],[516861.4874212235,5276336.927264906],[516861.47519799345,5276335.960314121],[516868.12305355654,5276335.846196509],[516868.13521130563,5276336.835375059],[516877.8327679743,5276336.685646146],[516877.8698159784,5276339.4531321],[516878.816299194,5276339.433647073],[516878.8984529734,5276344.779704896]]]},"properties":{"ID_SOURCE":"w145338924","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1624}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516821.5108072135,5276352.993605566],[516817.5896497165,5276353.082307302],[516817.5697154581,5276352.182018177],[516817.5039097194,5276348.958776898],[516817.41701427044,5276345.2353460975],[516818.7090460099,5276345.205735133],[516818.5894090734,5276339.815114326],[516817.64292617474,5276339.8346091425],[516817.592303268,5276336.555841918],[516817.4683326608,5276332.66559459],[516817.47090000566,5276331.776484438],[516813.902790073,5276331.85509421],[516813.8504002863,5276329.187590291],[516812.80626912665,5276329.206803998],[516812.71327063587,5276324.994341131],[516812.6473334504,5276321.815555557],[516817.62015569955,5276321.707659101],[516822.26248169906,5276321.598812288],[516822.39537273557,5276327.600739637],[516822.488460471,5276331.779861061],[516826.912919609,5276331.681502681],[516827.0919623258,5276339.906357552],[516822.2018113475,5276340.0033706585],[516822.25509599934,5276342.359686153],[516822.31457570463,5276345.171692311],[516826.9192947383,5276345.073854649],[516827.09204583126,5276352.876360657],[516821.5108072135,5276352.993605566]]]},"properties":{"ID_SOURCE":"w145338925","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1625}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.99804703833,5276404.008195455],[516527.9738691112,5276404.233244021],[516528.8802568849,5276402.457581467],[516527.07978186005,5276401.674494142],[516529.04530522955,5276397.234484991],[516531.97151249455,5276398.354187327],[516532.27353723795,5276397.799346263],[516533.9985854296,5276398.693360734],[516533.7716723876,5276399.24841494],[516535.12179194606,5276399.91908602],[516537.37924886344,5276398.4806798315],[516538.4263960972,5276400.039608827],[516539.3264753614,5276400.486723565],[516537.966257481,5276403.372492587],[516540.0668619323,5276404.267575323],[516536.96897666017,5276410.7048796965],[516534.7184662273,5276409.698232783],[516534.4230678755,5276407.919159243],[516534.8768934637,5276406.809050874],[516533.9020186284,5276406.250584797],[516532.0125526445,5276410.357389225],[516530.36230386165,5276409.574727295],[516527.9432751749,5276415.0137061775],[516523.380700654,5276408.221239312],[516525.78869025514,5276406.67211605],[516526.99804703833,5276404.008195455]]]},"properties":{"ID_SOURCE":"w145338927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1626}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.0264814498,5276091.247111155],[516521.6490109898,5276091.912878175],[516523.67461486306,5276092.807741225],[516523.97665442387,5276092.252899962],[516524.8770978517,5276092.588873409],[516525.7832170841,5276090.924349858],[516531.5576703155,5276094.274925021],[516528.08563086175,5276100.155471716],[516524.1104905551,5276098.0325401295],[516521.46914623416,5276102.359492708],[516522.5939893683,5276103.029521207],[516520.555149248,5276106.80248525],[516511.7811177963,5276101.665182762],[516513.5182307849,5276098.335918748],[516512.8434498007,5276097.889447184],[516514.0522334167,5276095.447802527],[516514.58434588043,5276093.226518743],[516516.3902757837,5276092.12024319],[516518.2763651248,5276089.235961553],[516522.0264814498,5276091.247111155]]]},"properties":{"ID_SOURCE":"w145338935","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1627}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.82513065706,5276151.529340641],[516612.14417777275,5276151.629980571],[516611.9971175303,5276150.518164705],[516608.3161640834,5276150.618807052],[516608.33010806894,5276145.7287025545],[516608.33993223344,5276142.283401679],[516612.0208909455,5276142.182759335],[516612.3181816572,5276143.29500366],[516615.3982188049,5276143.192649565],[516615.1817505167,5276140.080122084],[516618.7131146392,5276139.756777939],[516621.1133114171,5276140.986162852],[516621.2587844014,5276142.653672619],[516620.958006721,5276142.763953943],[516621.3237505264,5276146.210326586],[516623.05139753025,5276146.215257029],[516623.1962354325,5276148.10504434],[516622.970573057,5276148.215539939],[516623.0393443222,5276150.43852909],[516622.0628488982,5276150.435742255],[516621.994394428,5276148.10161438],[516619.0649069764,5276148.093254896],[516619.13272838976,5276150.649660212],[516618.53180815093,5276150.64794562],[516618.45732732693,5276150.425453824],[516615.7525520465,5276150.640016443],[516615.82513065706,5276151.529340641]]]},"properties":{"ID_SOURCE":"w145338937","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1628}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.56807812303,5276108.52896779],[516579.06766476517,5276107.857859007],[516582.08747536154,5276102.531753069],[516584.41289601,5276103.649770153],[516585.7713069146,5276101.430845506],[516586.5963132556,5276101.877753344],[516588.4710394491,5276102.994488623],[516591.5457154851,5276104.781480301],[516590.0348560708,5276107.777946832],[516591.3035898776,5276110.6711911755],[516593.48415702226,5276109.8994255215],[516594.1782354632,5276111.47958572],[516595.0514508079,5276113.460359082],[516592.79513606447,5276114.454187627],[516593.24266286084,5276115.566858899],[516595.79342256807,5276116.685522544],[516593.82838850754,5276120.903230082],[516594.20143247675,5276121.793409968],[516595.0283351961,5276121.573486616],[516597.4890916407,5276127.9154575495],[516592.1505215784,5276129.789621086],[516590.8840084484,5276126.118405315],[516586.4477722217,5276127.661725493],[516583.83708929387,5276121.208192777],[516584.6668397883,5276119.988019352],[516586.025879991,5276117.546817247],[516583.71818561124,5276110.20503045],[516580.56807812303,5276108.52896779]]]},"properties":{"ID_SOURCE":"w145338938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1629}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516959.0391789594,5276645.712188606],[516964.3751310431,5276644.616332439],[516964.9679062775,5276647.396553388],[516966.7714848935,5276647.0683884835],[516966.9942203777,5276647.958155545],[516966.69378586946,5276647.957280235],[516968.32059310406,5276656.742061678],[516969.4478685125,5276656.523066845],[516970.4828702863,5276662.194211052],[516968.9046214474,5276662.523031366],[516969.57023404806,5276666.081443507],[516969.87066762004,5276666.082318968],[516969.77179604524,5276666.5043619815],[516953.2616828409,5276669.479276576],[516953.03862257337,5276668.700648838],[516953.6394894437,5276668.702398071],[516953.0476816798,5276665.588761707],[516951.61997507204,5276665.80688518],[516951.09440480755,5276663.160228869],[516950.5095236622,5276660.246664541],[516945.1735885517,5276661.342533403],[516943.0980364648,5276651.889614356],[516942.72249358863,5276651.88852176],[516942.72346361226,5276651.555105288],[516950.013201086,5276650.131501261],[516949.346927711,5276646.795369118],[516958.8157948785,5276645.044699497],[516959.0391789594,5276645.712188606]]]},"properties":{"ID_SOURCE":"w145338939","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1630}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517257.75377190317,5276433.69039205],[517258.4969816237,5276436.359948605],[517260.05192278075,5276443.92206032],[517257.27214723115,5276444.136102247],[517255.6882248245,5276446.354204241],[517254.9384295767,5276445.907423687],[517253.052417473,5276448.680330184],[517253.200005925,5276449.569885492],[517250.63470342907,5276453.452178047],[517250.7750497298,5276456.7867865935],[517250.02097604686,5276457.784810883],[517250.0871990908,5276460.785780601],[517250.9134206394,5276460.788227882],[517251.043561189,5276467.568138903],[517240.60280840175,5276467.648361309],[517240.5405286411,5276463.31372623],[517239.639196438,5276463.311058078],[517239.3041059325,5276449.639875659],[517242.6972714056,5276445.20433034],[517243.898722347,5276445.319027309],[517246.0851762909,5276442.547007556],[517245.7870348716,5276441.768146385],[517245.6371413819,5276441.656562763],[517247.8996962765,5276438.5513497675],[517248.6498221708,5276438.886990625],[517251.1390306769,5276435.337891131],[517257.75377190317,5276433.69039205]]]},"properties":{"ID_SOURCE":"w145338940","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1631}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.0286505661,5276356.110870862],[516722.9624734583,5276352.998769526],[516723.19929908734,5276348.998420724],[516723.1315263611,5276346.442013285],[516723.0090644684,5276336.772508826],[516723.0911976859,5276334.327671552],[516723.02916877536,5276329.770766324],[516729.8650650603,5276329.568119059],[516729.9318773445,5276332.457942826],[516731.5092438058,5276332.46247405],[516731.55553289206,5276334.652058864],[516731.64095088927,5276338.90895429],[516730.4391492019,5276338.905501861],[516730.5807543637,5276341.906680221],[516730.64788536465,5276344.685365282],[516731.4731653695,5276345.021155147],[516731.4356811818,5276347.610602227],[516731.3515733239,5276353.356282576],[516731.2871814142,5276357.468266155],[516730.3104013976,5276357.576599863],[516730.30178144167,5276360.577346772],[516730.21900696337,5276363.2444616],[516731.19514747756,5276363.358405428],[516731.19418965396,5276363.691821756],[516731.1469914224,5276367.048104882],[516731.1005594885,5276370.137654968],[516729.5228839885,5276370.244262606],[516729.56638701,5276370.788972066],[516722.9791752232,5276370.725598234],[516722.91875439684,5276368.22478166],[516722.9267323346,5276365.4463122655],[516723.0286505661,5276356.110870862]]]},"properties":{"ID_SOURCE":"w145338942","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1632}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517129.1802017203,5276297.231328528],[517141.87497917947,5276297.046398677],[517141.93275569123,5276302.936974032],[517144.9369518144,5276303.056956563],[517144.9764038291,5276315.17130269],[517141.9718868498,5276315.162458883],[517141.9263162392,5276317.885248033],[517141.88041855476,5276320.719175964],[517140.3781614974,5276320.714754661],[517140.50418314215,5276328.939465338],[517138.9973494571,5276330.490987097],[517140.34512650716,5276331.939769888],[517137.91198752617,5276334.3109998945],[517135.9007239256,5276336.261141185],[517134.7034990997,5276334.701662609],[517133.04709702363,5276336.030466422],[517124.85949083074,5276336.117526156],[517124.9300284821,5276337.673689742],[517121.21172441536,5276337.740555661],[517119.2962542784,5276337.768266981],[517119.212321369,5276340.76879291],[517107.11919379985,5276340.733259387],[517107.0532216604,5276337.621153278],[517101.4201004631,5276337.493470274],[517101.08141254453,5276324.933686976],[517107.2406619149,5276324.951775231],[517107.2380503392,5276325.84088535],[517128.7196533148,5276326.126302158],[517130.1526801007,5276324.1300017685],[517130.2902279482,5276302.902719057],[517129.1792080572,5276302.677171954],[517129.1802017203,5276297.231328528]]]},"properties":{"ID_SOURCE":"w145338943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1633}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516994.7677527793,5276700.074782072],[516995.20354109484,5276700.020483974],[516994.4846266261,5276696.717534543],[516992.9214397678,5276697.035278301],[516991.78082857985,5276691.530531162],[516989.54875722737,5276691.990805899],[516987.6356410279,5276683.527487967],[516986.96672446205,5276683.681132403],[516986.77368010377,5276682.91370486],[516994.1241246575,5276681.2680536555],[516993.28727171733,5276677.197895882],[517002.8845010654,5276675.203165086],[517003.7745723785,5276679.051200098],[517011.1397237159,5276677.51675305],[517011.2504706444,5276678.172801232],[517010.95715893933,5276678.305312166],[517012.57696421957,5276686.890034743],[517010.8709384248,5276687.25181232],[517011.15954224253,5276688.730814406],[517012.00320998434,5276693.034388337],[517010.47003191174,5276693.363329035],[517011.05562632374,5276696.021280305],[517011.3712098218,5276695.977746259],[517011.47415336076,5276696.733797471],[517008.8135123903,5276697.348408603],[517009.51804631343,5276700.429038285],[516998.4475080386,5276702.841788466],[516997.7717141675,5276700.20580314],[516994.9458712109,5276700.808824419],[516994.7677527793,5276700.074782072]]]},"properties":{"ID_SOURCE":"w145338944","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1634}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0301025402,5276660.920479226],[516861.2464178667,5276664.03301875],[516860.56979856984,5276664.253339246],[516856.49721599085,5276670.020816959],[516853.4989935947,5276667.900483809],[516854.25361545075,5276666.680130427],[516852.0045449383,5276665.228804828],[516851.34849690413,5276666.127138445],[516848.5357320651,5276669.997777457],[516844.8631388567,5276667.319798942],[516847.3520038901,5276663.770526428],[516844.87856965297,5276661.985135263],[516848.4231358262,5276656.99410016],[516848.7235698536,5276656.994969371],[516856.743451604,5276662.797445433],[516857.04388533067,5276662.798315072],[516858.0241556562,5276661.467475596],[516859.8127020269,5276661.139234097],[516861.0301025402,5276660.920479226]]]},"properties":{"ID_SOURCE":"w145338946","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1635}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516732.73268863297,5276311.860691237],[516732.7361051339,5276310.671506441],[516729.8442238768,5276310.674312818],[516726.8171392883,5276310.676732333],[516726.8158944614,5276311.11017352],[516726.81410701777,5276311.732550609],[516726.23573725903,5276311.730889583],[516723.2237077316,5276311.722240227],[516720.3393383239,5276311.725072892],[516720.3446666694,5276309.8690555],[516717.0096503737,5276309.859482127],[516717.01309779123,5276303.424504498],[516722.05321620224,5276303.427859214],[516724.83243143687,5276303.424725417],[516734.5220804062,5276303.4303304665],[516737.37640874187,5276303.427418473],[516741.8081114179,5276303.429041874],[516744.361955569,5276303.4363835305],[516753.82626548264,5276303.441372857],[516756.3050285546,5276303.437389803],[516761.3301244957,5276303.440735291],[516761.3261483479,5276310.0424211575],[516757.8258835427,5276310.032348849],[516757.82063918747,5276311.855024606],[516755.2893325975,5276311.8477418665],[516751.3233365985,5276311.847447606],[516751.3267568965,5276310.658262813],[516748.3973510506,5276310.649838084],[516745.5054697351,5276310.652636686],[516745.50198671845,5276311.864049237],[516744.9386395603,5276311.862429544],[516741.6862166742,5276311.864193466],[516736.2480068296,5276311.859677759],[516732.73268863297,5276311.860691237]]]},"properties":{"ID_SOURCE":"w145338948","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1636}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516391.1103407889,5276113.771985595],[516391.93629849626,5276113.885449633],[516391.5478974666,5276118.441080802],[516390.6465122068,5276118.43854417],[516390.48971359176,5276120.772034861],[516393.79416592675,5276121.00361391],[516393.5584970369,5276124.670557949],[516393.4830688703,5276124.781485268],[516390.32884938683,5276124.550329139],[516390.2509193193,5276125.550366392],[516391.22741882433,5276125.553114353],[516390.91225779126,5276130.7757894555],[516382.57602479134,5276130.196638117],[516382.8145000029,5276125.529444987],[516381.46273634164,5276125.414503377],[516381.85831850505,5276118.3026805855],[516384.26138731814,5276118.531719092],[516384.65791121067,5276111.086480352],[516383.53117821633,5276111.083310921],[516383.69266355014,5276107.082739078],[516379.8623938275,5276106.849687072],[516380.2589127729,5276099.404448185],[516386.86784220365,5276099.867596479],[516386.396824594,5276107.090346152],[516388.1993484596,5276107.184329217],[516391.1284808979,5276107.3259390155],[516391.3585191134,5276105.659492177],[516394.81321119546,5276105.891494561],[516394.42293049075,5276111.11395789],[516391.19296257704,5276111.104867354],[516391.1103407889,5276113.771985595]]]},"properties":{"ID_SOURCE":"w145338950","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1637}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517226.9805943173,5276502.172517679],[517227.1107613948,5276508.952428536],[517226.5095492299,5276509.061789924],[517226.9805943173,5276502.172517679]]]},"properties":{"ID_SOURCE":"w145338954","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1638}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516794.68273239717,5276669.953359428],[516796.6368314002,5276669.514436247],[516796.1800909575,5276671.624774202],[516794.68273239717,5276669.953359428]]]},"properties":{"ID_SOURCE":"w145338962","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1639}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7301105095,5276705.41738373],[516757.9224042862,5276707.190417573],[516757.5529414436,5276705.077699046],[516759.7301105095,5276705.41738373]]]},"properties":{"ID_SOURCE":"w145338964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1640}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516738.820187011,5276376.050240463],[516738.67667055526,5276373.715894393],[516741.0051474138,5276373.722587027],[516738.820187011,5276376.050240463]]]},"properties":{"ID_SOURCE":"w145338973","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1641}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517120.78024206817,5276193.224316435],[517119.3491466617,5276194.553786337],[517118.82171203423,5276195.107934606],[517117.69793465023,5276194.104374438],[517113.85697255534,5276197.538417996],[517111.8357396063,5276195.1985456105],[517110.7057575482,5276196.306622887],[517107.1116887236,5276192.4061759375],[517110.5767509245,5276189.082163351],[517111.62541596877,5276190.085501453],[517112.6799583104,5276189.088342403],[517111.6316197848,5276187.973865376],[517113.8912613316,5276185.868850156],[517119.28317874676,5276191.441680793],[517120.78024206817,5276193.224316435]]]},"properties":{"ID_SOURCE":"w145338980","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1642}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.8817973125,5276647.168240877],[517214.6791482967,5276648.951790297],[517212.951321494,5276649.057822822],[517212.8817973125,5276647.168240877]]]},"properties":{"ID_SOURCE":"w145338983","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1643}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516333.9822929634,5276502.933669749],[516335.02885198756,5276504.714839953],[516333.7566498249,5276503.044176574],[516333.9822929634,5276502.933669749]]]},"properties":{"ID_SOURCE":"w145338990","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1644}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517256.66891291726,5276166.062696697],[517259.3789755552,5276164.0702118995],[517260.15674505243,5276165.228369685],[517261.24861324474,5276166.854245214],[517256.66891291726,5276166.062696697]]]},"properties":{"ID_SOURCE":"w145338991","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1645}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516781.10702695005,5276102.879467578],[516783.92199508904,5276111.356419976],[516781.94456705544,5276112.006446141],[516781.49778041063,5276110.649255088],[516780.5128061236,5276110.9798362525],[516778.43763210566,5276111.662923895],[516776.6782319034,5276112.246896115],[516776.31339892093,5276111.12333479],[516774.3175862116,5276105.11604544],[516779.302554443,5276103.463309157],[516781.10702695005,5276102.879467578]]]},"properties":{"ID_SOURCE":"w145338995","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1646}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.1255282266,5276243.330112025],[516886.1192127271,5276245.508431576],[516886.11263945117,5276247.775662143],[516881.1554517287,5276247.650152419],[516878.1431706264,5276250.308774884],[516875.5605050536,5276247.278291703],[516872.82812426996,5276244.069552478],[516875.6531044966,5276241.243675059],[516878.02611576783,5276238.861047994],[516873.23363687954,5276233.734736569],[516878.8842545663,5276227.860706073],[516886.15033909376,5276234.772428129],[516886.0765140101,5276234.327655354],[516891.4843967348,5276234.454476274],[516891.54951870674,5276237.899995407],[516890.34511770285,5276238.785620047],[516891.3941337699,5276239.677779752],[516891.3087057025,5276243.234001978],[516886.1255282266,5276243.330112025]]]},"properties":{"ID_SOURCE":"w145338997","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1647}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517051.09797178453,5276238.709432776],[517051.0947181154,5276239.820820278],[517036.4484841748,5276239.444541673],[517036.45108487236,5276238.555431668],[517033.22118677676,5276238.545984924],[517033.3684893389,5276239.546673024],[517013.088386609,5276239.265119181],[517013.0844909088,5276240.59878419],[517007.3758358709,5276240.582111734],[517005.3526284618,5276238.909108709],[517005.51194217656,5276235.797662324],[517007.1689923309,5276234.246544953],[517006.16564540326,5276233.15444621],[517005.22219459637,5276232.129206335],[517003.41524087876,5276233.56874693],[517000.5612343272,5276233.449275999],[516998.23983699933,5276230.997427239],[516998.33019586006,5276225.774125263],[516999.4565825733,5276225.8885524245],[516999.63860021404,5276214.997393645],[516998.43709718244,5276214.882747229],[516998.4396920588,5276213.993637257],[516998.383390587,5276207.547370778],[517012.6551090745,5276207.589040175],[517012.86162319884,5276214.035745645],[517012.85902612173,5276214.924855615],[517012.3329020056,5276215.034458534],[517012.2431797464,5276220.035482742],[517014.04104941187,5276221.707829824],[517012.5335728286,5276223.481661524],[517012.1580023149,5276223.480564518],[517006.6749973252,5276223.353412243],[517006.8177615644,5276225.910042107],[517012.8090323254,5276232.040222791],[517015.0621274216,5276232.1579442015],[517015.22923882306,5276226.379168131],[517017.11196121364,5276224.717573171],[517018.5345824511,5276226.277685613],[517023.79191744654,5276226.515329154],[517023.71810275596,5276226.070554614],[517024.9947170736,5276226.185425816],[517031.00286759174,5276226.536410309],[517031.00741734204,5276224.980467838],[517031.01131712383,5276223.646802864],[517038.59816647583,5276223.557852887],[517038.66937904124,5276224.891737601],[517038.5149242408,5276226.336101845],[517044.749391785,5276226.354343496],[517051.05864802765,5276226.4839504715],[517051.09797178453,5276238.709432776]]]},"properties":{"ID_SOURCE":"w145338999","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1648}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.5745534381,5276548.6361868745],[516773.99844046624,5276549.751685181],[516775.50640072476,5276547.755513597],[516777.1652222329,5276545.537497545],[516784.5103012858,5276551.0045087915],[516783.07776889123,5276552.889755707],[516783.75183573394,5276553.558536683],[516778.85048396396,5276560.212797124],[516778.3256762783,5276559.877865921],[516777.6480875577,5276560.431612462],[516778.1719346586,5276561.099960034],[516778.1687327422,5276562.211348126],[516777.6413637473,5276562.765527458],[516776.73940678034,5276562.985208528],[516775.83809017943,5276562.98261212],[516775.1598617858,5276563.758636572],[516775.75945885835,5276564.204922664],[516770.7075858369,5276570.969896118],[516769.73308104614,5276570.300251493],[516768.60227658146,5276571.741811899],[516761.55732783506,5276566.386824028],[516762.76356116636,5276564.834339647],[516764.49748271063,5276562.616536148],[516762.8485877333,5276561.38925274],[516760.89989277377,5276559.938827502],[516762.5583853715,5276557.831946079],[516761.28471775044,5276556.716882902],[516767.5425100012,5276548.510556871],[516768.8161782405,5276549.625621402],[516770.77575638215,5276547.297329815],[516772.5745534381,5276548.6361868745]]]},"properties":{"ID_SOURCE":"w145339000","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1649}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.8682627871,5276212.216053325],[516888.3189482528,5276212.217360114],[516888.4085641628,5276207.216334315],[516894.79328039987,5276207.234851006],[516894.813751582,5276200.177540664],[516894.82380985457,5276196.710011829],[516894.8353510717,5276192.731244793],[516894.8455060484,5276189.230374376],[516889.58813274803,5276188.99284733],[516889.599090257,5276185.21413008],[516889.46465262596,5276179.767896093],[516893.52116676624,5276179.668520778],[516893.36674687365,5276181.112888685],[516895.92064482084,5276181.120296669],[516896.0744205412,5276179.8982063085],[516902.00847877923,5276179.915423455],[516902.07972323184,5276181.249306332],[516904.2580479067,5276181.255628094],[516904.33735583565,5276179.811042461],[516908.46866227937,5276179.8230343005],[516908.5921123022,5276189.047986015],[516910.92066315445,5276189.054746402],[516910.86838781787,5276207.059223007],[516902.60516849783,5276207.257516246],[516902.4819973702,5276223.816971651],[516900.5290308987,5276223.811304387],[516898.9513124408,5276223.9178662095],[516898.9464755107,5276225.584947446],[516888.7306394284,5276225.666455483],[516889.2806086989,5276217.3325740015],[516888.3047688973,5276217.107465006],[516888.30960277066,5276215.440383791],[516887.1106756437,5276214.436650365],[516887.8682627871,5276212.216053325]]]},"properties":{"ID_SOURCE":"w145339001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1650}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516924.13591451995,5276139.080276816],[516932.5488156339,5276139.104728114],[516932.0280147531,5276163.220523637],[516927.4691553918,5276162.996107157],[516927.3656310178,5276170.186543421],[516894.90240606095,5276169.614386531],[516895.07407404564,5276162.224096162],[516906.1153175598,5276162.47841347],[516906.08955903805,5276145.473968713],[516906.1018174619,5276141.250696784],[516904.3744913377,5276141.134543652],[516904.2977633999,5276141.690019322],[516902.26417144487,5276143.573492026],[516900.0797056432,5276145.678807013],[516894.22104999615,5276145.550671055],[516894.17236858583,5276136.437076942],[516892.3702479204,5276136.209570766],[516892.37891852885,5276133.219938832],[516892.3873312707,5276130.319217902],[516894.2658585101,5276130.102387022],[516894.29293698625,5276120.766733539],[516904.05761952454,5276120.906204268],[516906.9871209924,5276120.914707061],[516913.97285526106,5276120.934988893],[516914.1004942235,5276128.715136365],[516914.09500761906,5276130.604494817],[516912.59270166914,5276130.600132387],[516912.42536744114,5276136.490049023],[516909.5706663656,5276136.592900283],[516909.6396510978,5276138.704754301],[516914.74716146174,5276138.830724304],[516914.73941534624,5276141.498053925],[516921.4994565952,5276141.628829166],[516921.7322284879,5276139.073292962],[516924.13591451995,5276139.080276816]]]},"properties":{"ID_SOURCE":"w145339013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1651}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.73227031383,5276115.717451452],[516491.23457984196,5276115.721704803],[516491.16827512,5276112.609607583],[516489.8161958225,5276112.605779565],[516490.05444294645,5276108.049729485],[516493.1341815343,5276108.058449437],[516494.33760438766,5276107.506159122],[516496.06557754695,5276107.399913139],[516497.56663005915,5276107.848723049],[516498.0160643268,5276108.294554551],[516501.39657995006,5276108.192991202],[516501.31579684117,5276110.193275586],[516505.67218367866,5276110.316758763],[516505.6523420529,5276117.318498978],[516495.51207020617,5276117.17863253],[516495.4237351737,5276121.846246654],[516489.71590888815,5276121.49666565],[516489.73227031383,5276115.717451452]]]},"properties":{"ID_SOURCE":"w145339016","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1652}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516887.94978598016,5276432.784140047],[516887.9477212564,5276430.905872791],[516887.94591434574,5276428.9386945125],[516889.3429872998,5276428.94274582],[516889.3416320744,5276426.819973248],[516884.3992324758,5276426.82787047],[516884.39758167183,5276422.215567368],[516889.0395390401,5276422.206798862],[516889.029476553,5276415.31610717],[516884.5828039164,5276415.325441873],[516884.58077027526,5276413.436060793],[516884.58021878044,5276411.035441323],[516887.68984233064,5276411.044457386],[516887.68009557325,5276398.863516328],[516884.4427109562,5276398.8763578525],[516884.44164382806,5276396.653560485],[516884.4410599959,5276394.264054955],[516888.8952599026,5276394.2547418885],[516888.88455234986,5276387.58632806],[516884.43785854237,5276387.595662924],[516884.436759156,5276385.3839794705],[516884.435885302,5276383.094498885],[516887.9061260174,5276383.082332516],[516887.8992569678,5276380.270477901],[516892.4436020866,5276380.261428886],[516892.45085576904,5276382.939916977],[516893.9906526411,5276382.944383307],[516894.00464120513,5276398.837402914],[516892.87796364084,5276398.834134815],[516892.88524926594,5276401.501509108],[516893.80161326454,5276401.504167145],[516893.81263741327,5276408.061442362],[516893.00143085263,5276408.059089333],[516893.0082328219,5276410.8931718385],[516893.8344613242,5276410.895568443],[516893.8486108114,5276426.733019354],[516892.98482881807,5276426.730513806],[516892.9922754363,5276429.3423188245],[516894.0288133654,5276429.345325498],[516894.0338738219,5276432.779557543],[516887.94978598016,5276432.784140047]]]},"properties":{"ID_SOURCE":"w145339017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1653}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.3805132349,5276292.755204466],[516603.5644066999,5276289.196408526],[516607.17206065153,5276288.4287166],[516607.9881650952,5276291.987513049],[516604.3805132349,5276292.755204466]]]},"properties":{"ID_SOURCE":"w145339024","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1654}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516714.7056279539,5276586.590736155],[516717.1871097732,5276585.597601289],[516718.8261164909,5276590.27017506],[516716.56996442424,5276591.263956021],[516714.7056279539,5276586.590736155]]]},"properties":{"ID_SOURCE":"w145339035","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1655}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517298.2684971814,5276373.239420084],[517299.2327412356,5276377.354454929],[517297.6543963013,5276377.683186233],[517296.76493329706,5276373.6795134945],[517298.2684971814,5276373.239420084]]]},"properties":{"ID_SOURCE":"w145339036","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1656}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.62708829745,5276543.006703014],[516475.07428962825,5276544.230504786],[516470.5623492207,5276546.107117375],[516470.0400371499,5276544.883103524],[516474.62708829745,5276543.006703014]]]},"properties":{"ID_SOURCE":"w145339042","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1657}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.62649265316,5276584.830462674],[516758.0527124337,5276583.603396722],[516759.86237581586,5276581.1635303],[516761.4361563201,5276582.3905967325],[516759.62649265316,5276584.830462674]]]},"properties":{"ID_SOURCE":"w145339045","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1658}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517212.93085935875,5276605.1575463],[517220.81863853266,5276604.736306405],[517221.16734892176,5276611.2723569255],[517221.52996283286,5276618.186323931],[517213.6418733046,5276618.71870164],[517212.93085935875,5276605.1575463]]]},"properties":{"ID_SOURCE":"w145339046","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1659}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.82656602125,5276330.59547624],[517011.1089270179,5276330.627290348],[517011.1127701582,5276331.883180354],[517009.31003278727,5276331.8890291825],[517007.8077786942,5276331.884642067],[517007.82656602125,5276330.59547624]]]},"properties":{"ID_SOURCE":"w145339049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1660}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516601.60455633124,5276107.144074419],[516603.2466446569,5276110.816363014],[516599.03574005025,5276112.360315971],[516597.6189962338,5276108.688670703],[516601.60455633124,5276107.144074419]]]},"properties":{"ID_SOURCE":"w145339050","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1661}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517069.23561292206,5276224.1921451725],[517073.5171163621,5276224.204694433],[517073.57952446816,5276228.53932579],[517069.2225844643,5276228.637695088],[517069.23561292206,5276224.1921451725]]]},"properties":{"ID_SOURCE":"w145339051","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1662}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517292.7263202494,5276570.162631318],[517279.12685876305,5276571.6782223685],[517278.3250534531,5276563.451499444],[517284.5385739918,5276562.81421286],[517291.9993136639,5276562.047268312],[517292.7263202494,5276570.162631318]]]},"properties":{"ID_SOURCE":"w145339055","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1663}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516999.9938785768,5276196.215822712],[517000.05601747974,5276200.661591699],[516995.69970677496,5276200.53773855],[516995.78714484203,5276196.314685478],[516999.9938785768,5276196.215822712]]]},"properties":{"ID_SOURCE":"w145339057","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1664}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516911.82672541926,5276239.1813747985],[516911.8973213659,5276240.7375354245],[516910.01915176277,5276240.843221824],[516909.87376409187,5276239.175704387],[516911.82672541926,5276239.1813747985]]]},"properties":{"ID_SOURCE":"w145339060","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1665}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.89989277377,5276559.938827502],[516759.62590546376,5276558.934903493],[516761.28471775044,5276556.716882902],[516762.5583853715,5276557.831946079],[516760.89989277377,5276559.938827502]]]},"properties":{"ID_SOURCE":"w145339065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1666}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.9484894918,5276472.395866921],[516538.307411951,5276468.390177551],[516541.2398948111,5276467.287108846],[516542.88128635,5276471.181660244],[516539.9484894918,5276472.395866921]]]},"properties":{"ID_SOURCE":"w145339066","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1667}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.9161430538,5276359.024367125],[517300.4923095203,5276357.9087399505],[517302.8297081723,5276354.9149104385],[517304.1784295954,5276356.030315008],[517301.9161430538,5276359.024367125]]]},"properties":{"ID_SOURCE":"w145339067","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1668}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516567.4406974566,5276337.239243653],[516567.3598439908,5276336.616631498],[516567.27163731307,5276335.938428589],[516568.6842607949,5276335.764623622],[516568.84577774856,5276337.076531235],[516567.4406974566,5276337.239243653]]]},"properties":{"ID_SOURCE":"w145339068","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1669}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.97824578144,5276278.252325465],[516971.04364387254,5276281.586707079],[516969.7667168838,5276281.582986424],[516969.6262046677,5276278.248385973],[516970.97824578144,5276278.252325465]]]},"properties":{"ID_SOURCE":"w145339071","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1670}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517236.0138219792,5276267.027539883],[517233.2047999571,5276272.0205153935],[517226.35597976367,5276284.181168794],[517223.7055665777,5276288.885654757],[517214.9317683557,5276283.969566982],[517226.7899767379,5276261.887823262],[517236.0138219792,5276267.027539883]]]},"properties":{"ID_SOURCE":"w145339073","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1671}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.5301723737,5276271.565737842],[516930.1356194126,5276271.576217162],[516929.98119268473,5276273.020584323],[516926.5259734621,5276273.010541685],[516926.5301723737,5276271.565737842]]]},"properties":{"ID_SOURCE":"w145339082","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1672}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516539.7836708937,5276636.215326576],[516537.49133972154,5276631.45203645],[516534.7062522997,5276625.642634844],[516543.806426912,5276621.445170362],[516548.9586257435,5276632.129222247],[516539.7836708937,5276636.215326576]]]},"properties":{"ID_SOURCE":"w145339095","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1673}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.5752639962,5276085.404559391],[516381.4640065946,5276087.57146886],[516381.3367883923,5276090.071752278],[516380.13493553037,5276090.068372255],[516380.3734101729,5276085.40117932],[516381.5752639962,5276085.404559391]]]},"properties":{"ID_SOURCE":"w145339109","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1674}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516489.73227031383,5276115.717451452],[516489.77435891586,5276114.117160013],[516489.8161958225,5276112.605779565],[516491.16827512,5276112.609607583],[516491.23457984196,5276115.721704803],[516489.73227031383,5276115.717451452]]]},"properties":{"ID_SOURCE":"w145339110","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1675}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516561.09299255005,5276432.556807063],[516566.0297959501,5276439.794927286],[516561.66480730247,5276442.783284447],[516557.4503615505,5276445.660933175],[516552.438757112,5276438.311467904],[516561.09299255005,5276432.556807063]]]},"properties":{"ID_SOURCE":"w145339120","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1676}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516444.26673191,5276341.069014235],[516445.7989969304,5276341.0844547115],[516449.8549814634,5276341.129251059],[516449.89656465803,5276342.363018743],[516444.26318599744,5276342.3248823825],[516444.26673191,5276341.069014235]]]},"properties":{"ID_SOURCE":"w145339121","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1677}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516986.32894031657,5276165.823705829],[516986.92791427224,5276166.4922908],[516984.6679873239,5276168.708493858],[516984.06901334,5276168.039909117],[516986.32894031657,5276165.823705829]]]},"properties":{"ID_SOURCE":"w145339127","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1678}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.4600710029,5276678.646159892],[517296.8876132131,5276686.427216163],[517290.04394165677,5276686.8514523925],[517283.14018463594,5276687.2755183345],[517282.5624076757,5276679.494017303],[517296.4600710029,5276678.646159892]]]},"properties":{"ID_SOURCE":"w145339134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1679}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517060.7946488022,5276164.552080686],[517058.4058008169,5276164.611767653],[517058.33719589404,5276162.388772921],[517060.8911022271,5276162.396253222],[517060.7946488022,5276164.552080686]]]},"properties":{"ID_SOURCE":"w145339135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1680}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.16097781085,5276362.926295954],[516773.98930703895,5276370.372161231],[516772.7123996234,5276370.3684837315],[516772.5836195732,5276362.921753161],[516774.16097781085,5276362.926295954]]]},"properties":{"ID_SOURCE":"w145339137","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1681}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.106626439,5276234.796740335],[516546.04193154303,5276231.128948064],[516547.16864138923,5276231.132148988],[516550.0226571945,5276231.251397724],[516546.106626439,5276234.796740335]]]},"properties":{"ID_SOURCE":"w145339138","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1682}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.27544143784,5276074.362645796],[516586.43078190007,5276080.8718918655],[516584.2676092105,5276075.53103018],[516601.0377991353,5276068.799286335],[516603.27544143784,5276074.362645796]]]},"properties":{"ID_SOURCE":"w145339140","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1683}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5186876564,5276165.015168298],[517003.3999323997,5276164.195307193],[517004.1562564213,5276164.997720922],[517004.83021348214,5276165.710982525],[517003.94896876364,5276166.530843414],[517002.5186876564,5276165.015168298]]]},"properties":{"ID_SOURCE":"w145339142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1684}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.44084810856,5276638.354898156],[517008.6863842957,5276638.010512135],[517009.07523690554,5276633.454917364],[517012.6801353627,5276633.576587145],[517012.44084810856,5276638.354898156]]]},"properties":{"ID_SOURCE":"w145339150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1685}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516770.8973907668,5276484.192545373],[516770.9052339006,5276489.29388101],[516758.0237864603,5276489.245686677],[516758.03881704184,5276484.02216325],[516770.8973907668,5276484.192545373]]]},"properties":{"ID_SOURCE":"w145339156","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1686}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516986.23275753425,5276173.047504784],[516987.206656188,5276173.939462597],[516986.076045639,5276175.269841449],[516985.0273564029,5276174.266526034],[516985.6602000361,5276173.62376138],[516986.23275753425,5276173.047504784]]]},"properties":{"ID_SOURCE":"w145339164","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1687}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517102.0470643067,5276075.361209519],[517103.3652123832,5276086.923606735],[517095.85134226544,5276087.679525575],[517095.3989001369,5276083.154812634],[517094.68373765773,5276076.006432273],[517102.0470643067,5276075.361209519]]]},"properties":{"ID_SOURCE":"w145339165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1688}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516640.4543481174,5276654.062193169],[516634.58540593705,5276657.71303719],[516633.9873950573,5276656.711071435],[516640.0062374013,5276653.171794868],[516640.4543481174,5276654.062193169]]]},"properties":{"ID_SOURCE":"w145339187","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1689}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516413.4386541291,5276453.58876388],[516411.1058250483,5276455.138145249],[516409.4602700991,5276452.6884356225],[516411.7930997158,5276451.139053598],[516413.4386541291,5276453.58876388]]]},"properties":{"ID_SOURCE":"w145339195","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1690}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.7446176896,5276311.457373111],[516835.67914262647,5276308.122993043],[516838.9167059667,5276308.065668788],[516838.982179177,5276311.400048896],[516835.7446176896,5276311.457373111]]]},"properties":{"ID_SOURCE":"w145339198","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1691}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517246.50189743465,5276555.466246303],[517243.9471760224,5276555.792100601],[517243.6631904144,5276550.234270851],[517246.14214610454,5276550.130471603],[517246.50189743465,5276555.466246303]]]},"properties":{"ID_SOURCE":"w145339207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1692}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516588.4710394491,5276102.994488623],[516586.5963132556,5276101.877753344],[516587.4276495766,5276100.101886688],[516589.37717530894,5276101.3299749],[516588.4710394491,5276102.994488623]]]},"properties":{"ID_SOURCE":"w145339212","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1693}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.8081114179,5276303.429041874],[516741.81146586855,5276302.2620848445],[516744.36531053286,5276302.2694265],[516744.361955569,5276303.4363835305],[516741.8081114179,5276303.429041874]]]},"properties":{"ID_SOURCE":"w145339215","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1694}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517225.79176289716,5276675.547061226],[517223.470358274,5276675.729132691],[517223.0987117431,5276671.871482588],[517225.5031644131,5276671.54517488],[517225.79176289716,5276675.547061226]]]},"properties":{"ID_SOURCE":"w145339217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1695}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516869.09666915133,5276183.821037245],[516873.37820191047,5276183.833439309],[516873.30450050905,5276191.123988522],[516873.2744320816,5276193.724569846],[516868.91811399756,5276193.600811544],[516868.97100453195,5276190.900270601],[516869.09666915133,5276183.821037245]]]},"properties":{"ID_SOURCE":"w145339222","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1696}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516655.3686021869,5276350.248864282],[516655.53919959336,5276351.005101987],[516655.73939696216,5276351.917019906],[516654.5366445642,5276352.246999452],[516654.01530676085,5276350.689553109],[516655.3686021869,5276350.248864282]]]},"properties":{"ID_SOURCE":"w145339223","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1697}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.6710180425,5276361.152011207],[516689.2584319407,5276361.14865616],[516689.2370941336,5276368.594954136],[516685.90975009627,5276368.540964507],[516682.7251192288,5276368.487385566],[516682.6710180425,5276361.152011207]]]},"properties":{"ID_SOURCE":"w145339224","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1698}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516630.9159937305,5276627.583689729],[516625.006187861,5276619.231336073],[516627.7155059261,5276617.349695796],[516633.39934827544,5276625.923686236],[516630.9159937305,5276627.583689729]]]},"properties":{"ID_SOURCE":"w145339228","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1699}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516693.5826849343,5276356.693233713],[516696.96274180355,5276356.7029229365],[516696.8664494065,5276361.470539501],[516693.749383969,5276361.4282622235],[516693.5826849343,5276356.693233713]]]},"properties":{"ID_SOURCE":"w145339230","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1700}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.93246981147,5276271.554680221],[516964.2377866972,5276271.453166949],[516964.3083681817,5276273.009328327],[516960.8531489035,5276272.999265325],[516960.93246981147,5276271.554680221]]]},"properties":{"ID_SOURCE":"w145339231","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1701}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.4904845518,5276346.236513612],[516610.38638344395,5276346.563931361],[516610.1670682449,5276344.451652014],[516612.2708530987,5276344.235372953],[516612.4904845518,5276346.236513612]]]},"properties":{"ID_SOURCE":"w145339233","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1702}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516679.0084206257,5276179.150310319],[516675.92897395627,5276179.052581005],[516675.9784657722,5276177.50788151],[516679.0578814306,5276177.616724722],[516679.0084206257,5276179.150310319]]]},"properties":{"ID_SOURCE":"w145339234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1703}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.3647746608,5276404.223941571],[517290.7353842108,5276405.892138199],[517286.3759333175,5276406.879454983],[517285.8550990502,5276405.210812761],[517290.3647746608,5276404.223941571]]]},"properties":{"ID_SOURCE":"w145339235","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1704}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.70170036674,5276378.057622066],[516662.4251126563,5276377.9428299675],[516662.27965787705,5276376.27531851],[516663.63199404714,5276376.168047928],[516663.67404043576,5276377.223995266],[516663.70170036674,5276378.057622066]]]},"properties":{"ID_SOURCE":"w145339237","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1705}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.26779284474,5276133.264985712],[517284.5346259386,5276141.472307868],[517274.4151736185,5276134.329345261],[517280.29856389016,5276126.122458956],[517284.8634261265,5276129.39239729],[517290.26779284474,5276133.264985712]]]},"properties":{"ID_SOURCE":"w145339239","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1706}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516650.26887971465,5276216.088700837],[516648.91682434996,5276216.08483583],[516648.883428987,5276214.628810844],[516648.8499700677,5276213.195013619],[516650.20202610263,5276213.19887861],[516650.26887971465,5276216.088700837]]]},"properties":{"ID_SOURCE":"w145339243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1707}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516583.18498464586,5276297.473821843],[516587.31778969854,5276296.9298922615],[516587.9044507871,5276301.932848107],[516583.8467622961,5276302.476991143],[516583.18498464586,5276297.473821843]]]},"properties":{"ID_SOURCE":"w145339247","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1708}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516933.51120224,5276273.141986153],[516937.1914385768,5276273.26382699],[516937.1121235808,5276274.708412402],[516933.5066784682,5276274.697928759],[516933.51120224,5276273.141986153]]]},"properties":{"ID_SOURCE":"w145339249","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1709}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516985.0901306705,5276075.463537107],[516982.6113023103,5276075.45630915],[516982.5410469253,5276073.789009304],[516983.94555469614,5276073.848674362],[516985.16978396644,5276073.907814042],[516985.0901306705,5276075.463537107]]]},"properties":{"ID_SOURCE":"w145339257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1710}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.6733025292,5276318.583697973],[516544.83592716284,5276311.924053209],[516550.09572838445,5276311.2721591955],[516550.82790823875,5276317.942619768],[516545.6733025292,5276318.583697973]]]},"properties":{"ID_SOURCE":"w145339258","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1711}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.51249786915,5276227.956751105],[517287.2769857186,5276229.836522171],[517285.3342458403,5276226.385424752],[517288.41953106987,5276224.505206689],[517290.51249786915,5276227.956751105]]]},"properties":{"ID_SOURCE":"w145339259","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1712}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516739.25426600856,5276590.884555532],[516740.15366146545,5276591.553979178],[516735.9318879585,5276596.987692128],[516735.1072827768,5276596.42962378],[516739.25426600856,5276590.884555532]]]},"properties":{"ID_SOURCE":"w145339265","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1713}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.1196319812,5276074.896031558],[517017.6969735898,5276073.335919437],[517019.3540728688,5276071.784805811],[517020.701615162,5276073.34469883],[517019.1196319812,5276074.896031558]]]},"properties":{"ID_SOURCE":"w145339270","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1714}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.82456568035,5276617.18499649],[516526.4183654347,5276608.2813135395],[516539.5043977974,5276602.316919383],[516543.8354735872,5276611.220398819],[516536.803558648,5276614.445706444],[516530.82456568035,5276617.18499649]]]},"properties":{"ID_SOURCE":"w145339271","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1715}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517054.1740260057,5276198.908198582],[517054.26834036096,5276192.351232707],[517056.1465284586,5276192.245592792],[517055.7517542982,5276198.801678791],[517054.1740260057,5276198.908198582]]]},"properties":{"ID_SOURCE":"w145339272","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1716}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517098.8884261268,5276127.8098667115],[517109.98525461974,5276134.733114739],[517106.43819081207,5276140.39082023],[517100.8366804433,5276137.106864492],[517095.1901598518,5276133.800554143],[517098.8884261268,5276127.8098667115]]]},"properties":{"ID_SOURCE":"w145339274","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1717}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516399.14455339086,5276088.232489511],[516399.14796412573,5276087.021077353],[516399.15112453053,5276085.898576182],[516400.2027465446,5276085.901537119],[516400.12105915864,5276088.235238948],[516399.14455339086,5276088.232489511]]]},"properties":{"ID_SOURCE":"w145339279","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1718}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516927.29889621126,5276239.670880047],[516929.25185738684,5276239.676556299],[516929.3080719836,5276241.010395982],[516927.37013403006,5276241.004763371],[516927.29889621126,5276239.670880047]]]},"properties":{"ID_SOURCE":"w145339282","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1719}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516644.0974332858,5276430.570637369],[516647.5547824309,5276429.802541166],[516648.0713492682,5276433.027068954],[516644.53889058536,5276433.794950184],[516644.0974332858,5276430.570637369]]]},"properties":{"ID_SOURCE":"w145339285","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1720}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517006.5504874257,5276340.594324307],[517001.44283115026,5276340.579412101],[517001.4548350458,5276336.467277681],[517006.56249492767,5276336.48218989],[517006.5504874257,5276340.594324307]]]},"properties":{"ID_SOURCE":"w145339289","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1721}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516814.5950181684,5276308.028742481],[516814.5773997516,5276311.52959189],[516811.7831975983,5276311.521525614],[516811.8083256352,5276308.020697885],[516814.5950181684,5276308.028742481]]]},"properties":{"ID_SOURCE":"w145339301","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1722}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516474.49393148767,5276457.317624724],[516470.6796111519,5276451.527572661],[516473.1626799746,5276449.978640027],[516476.82677669456,5276455.768268703],[516474.49393148767,5276457.317624724]]]},"properties":{"ID_SOURCE":"w145339313","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1723}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516830.6766286683,5276092.353086232],[516831.13085609605,5276091.13186258],[516833.2369893569,5276090.137692102],[516833.68447222677,5276091.2503819065],[516832.66931686824,5276091.625322911],[516830.6766286683,5276092.353086232]]]},"properties":{"ID_SOURCE":"w145339315","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1724}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516954.2088142937,5276258.97631818],[516954.2881337157,5276257.531733022],[516957.51802117564,5276257.541136017],[516957.438700953,5276258.985721133],[516954.2088142937,5276258.97631818]]]},"properties":{"ID_SOURCE":"w145339323","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1725}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.21025683306,5276357.448921624],[516763.9617004057,5276357.339944816],[516763.9517835137,5276360.785246815],[516763.2006602698,5276360.783084844],[516763.21025683306,5276357.448921624]]]},"properties":{"ID_SOURCE":"w145339329","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1726}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516310.9906102125,5276478.863061379],[516313.44280439644,5276488.316801918],[516309.5342486067,5276489.30611186],[516306.7816054168,5276479.851531725],[516310.9906102125,5276478.863061379]]]},"properties":{"ID_SOURCE":"w145339335","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1727}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.3455078276,5276336.555048697],[516764.0212016595,5276336.668133246],[516764.0867172879,5276340.002512559],[516763.26047877286,5276340.000134384],[516763.3455078276,5276336.555048697]]]},"properties":{"ID_SOURCE":"w145339337","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1728}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516600.8678581019,5276233.841170495],[516605.3002152497,5276233.631526266],[516606.26782412664,5276236.746195434],[516601.3096718954,5276236.954340191],[516600.8678581019,5276233.841170495]]]},"properties":{"ID_SOURCE":"w145339343","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1729}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516480.83775619394,5276092.097335431],[516479.59847158956,5276092.04937312],[516479.64747165464,5276090.660266511],[516480.88675655477,5276090.708228831],[516480.8621777544,5276091.430566814],[516480.83775619394,5276092.097335431]]]},"properties":{"ID_SOURCE":"w145339357","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1730}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516440.06180487905,5276122.356559032],[516439.0105031043,5276122.242452145],[516439.01489456027,5276120.686509845],[516440.14162572264,5276120.689690015],[516440.10155844735,5276121.578693891],[516440.06180487905,5276122.356559032]]]},"properties":{"ID_SOURCE":"w145339364","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1731}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516743.1508104361,5276385.065004051],[516744.12726657296,5276385.067811281],[516744.1972661771,5276386.846247691],[516743.22081033804,5276386.843440448],[516743.1508104361,5276385.065004051]]]},"properties":{"ID_SOURCE":"w145339366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1732}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516971.8726272936,5276074.424751688],[516971.8017211463,5276072.979729427],[516972.44771911384,5276072.981611776],[516973.37915803946,5276072.984325984],[516973.45006379456,5276074.429348266],[516971.8726272936,5276074.424751688]]]},"properties":{"ID_SOURCE":"w145339376","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1733}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516663.738653627,5276391.394490513],[516663.7355691186,5276392.472536685],[516663.7332477862,5276393.283849786],[516662.5314573531,5276393.280411342],[516662.5365448377,5276391.502190849],[516663.738653627,5276391.394490513]]]},"properties":{"ID_SOURCE":"w145339399","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1734}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516864.9458449956,5276413.634790798],[516861.00248358905,5276413.623373061],[516861.0217388928,5276409.566829255],[516864.9651030455,5276409.578246998],[516864.9458449956,5276413.634790798]]]},"properties":{"ID_SOURCE":"w145339404","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1735}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516758.62475981284,5276437.011751106],[516748.2590751366,5276437.093072404],[516748.36678662355,5276425.75713215],[516758.9575061281,5276425.787598199],[516758.62475981284,5276437.011751106]]]},"properties":{"ID_SOURCE":"w145339406","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1736}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.557471524,5276315.105698821],[516764.15837483003,5276315.107428415],[516764.2996433993,5276318.219746285],[516763.6990603037,5276318.106877908],[516763.557471524,5276315.105698821]]]},"properties":{"ID_SOURCE":"w145339417","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1737}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.60257824854,5276658.014799131],[517201.1336627775,5276657.691808532],[517201.20516026573,5276658.9145574225],[517197.67407647206,5276659.237547982],[517197.60257824854,5276658.014799131]]]},"properties":{"ID_SOURCE":"w145339425","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1738}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516530.49132136494,5276364.118965824],[516530.3442512383,5276363.007151673],[516534.5521170041,5276362.463397902],[516534.69855529093,5276363.797489716],[516530.49132136494,5276364.118965824]]]},"properties":{"ID_SOURCE":"w145339433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1739}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517294.54228186025,5276717.428257263],[517293.8920560095,5276708.757420999],[517299.00074361806,5276708.316921271],[517302.68198633404,5276708.005552393],[517303.2570914447,5276716.676166492],[517294.54228186025,5276717.428257263]]]},"properties":{"ID_SOURCE":"w145339436","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1740}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.0911976859,5276334.327671552],[516723.0090644684,5276336.772508826],[516721.9574876115,5276336.769489495],[516721.88939505897,5276334.324220889],[516723.0911976859,5276334.327671552]]]},"properties":{"ID_SOURCE":"w145339442","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1741}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516477.60912386206,5276126.1302671805],[516476.4823937355,5276126.127079761],[516476.56159617787,5276124.682488683],[516477.6880121693,5276124.796814852],[516477.6485051287,5276125.485768763],[516477.60912386206,5276126.1302671805]]]},"properties":{"ID_SOURCE":"w145339444","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1742}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.2067489602,5276309.184808479],[516983.293204752,5276305.295170807],[516984.87057873193,5276305.299770631],[516984.85923488665,5276309.189627331],[516983.2067489602,5276309.184808479]]]},"properties":{"ID_SOURCE":"w145339457","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1743}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517177.3112994618,5276346.241221923],[517171.9779825131,5276346.33663432],[517172.29277893173,5276315.996415829],[517177.7009087921,5276316.0123639535],[517177.3112994618,5276346.241221923]]]},"properties":{"ID_SOURCE":"w145339466","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1744}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.6551090745,5276207.589040175],[517014.15739522903,5276207.593428462],[517014.28879346803,5276214.039914561],[517012.86162319884,5276214.035745645],[517012.6551090745,5276207.589040175]]]},"properties":{"ID_SOURCE":"w145339473","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1745}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516786.5493315647,5276521.1137989415],[516781.5172645809,5276520.98815692],[516781.712640882,5276505.318018877],[516786.4445999127,5276505.331656236],[516786.5493315647,5276521.1137989415]]]},"properties":{"ID_SOURCE":"w145339475","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1746}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516981.95586162416,5276153.407765401],[516980.88515163807,5276152.226563099],[516982.21067567077,5276151.0301191835],[516983.2813856127,5276152.211321726],[516982.64873436716,5276152.787403387],[516981.95586162416,5276153.407765401]]]},"properties":{"ID_SOURCE":"w145339481","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1747}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.91641029704,5276392.141043464],[517301.5100422443,5276394.587881566],[517300.0779640309,5276396.250723786],[517298.57935751625,5276395.023735101],[517300.91641029704,5276392.141043464]]]},"properties":{"ID_SOURCE":"w145339485","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1748}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516406.00284796226,5276560.150770581],[516409.2388298845,5276557.937093668],[516413.12856347504,5276563.61617935],[516410.34324121574,5276565.831123986],[516406.00284796226,5276560.150770581]]]},"properties":{"ID_SOURCE":"w145339492","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1749}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516844.8694511488,5276691.103725653],[516835.12628640357,5276683.851466578],[516839.197231338,5276678.639668017],[516848.790183557,5276685.891499217],[516844.8694511488,5276691.103725653]]]},"properties":{"ID_SOURCE":"w145339508","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1750}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517100.5976526736,5276338.758048243],[517100.58721037756,5276342.314488804],[517096.90669429896,5276342.303683364],[517096.7672353575,5276338.635663045],[517100.5976526736,5276338.758048243]]]},"properties":{"ID_SOURCE":"w145339513","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1751}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.237328742,5276576.619165476],[517293.3073959539,5276576.832743955],[517293.0906477962,5276573.942465878],[517296.0205820287,5276573.728887289],[517296.237328742,5276576.619165476]]]},"properties":{"ID_SOURCE":"w145339518","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1752}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.3395547346,5276425.877620272],[516600.82089998334,5276434.781567596],[516595.8190901741,5276437.190157668],[516591.19334760617,5276439.421999839],[516586.6368798862,5276430.517845968],[516596.3395547346,5276425.877620272]]]},"properties":{"ID_SOURCE":"w145339533","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1753}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516962.97734718176,5276239.996961635],[516962.90482276503,5276239.107632861],[516964.47470327053,5276239.112205241],[516965.9844926524,5276239.116603001],[516966.05669285497,5276240.117070567],[516962.97734718176,5276239.996961635]]]},"properties":{"ID_SOURCE":"w145339535","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1754}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516970.10930430086,5276189.782597409],[516968.904233789,5276190.89048327],[516967.7814012244,5276189.553535872],[516968.29363710847,5276189.054899565],[516968.91135724244,5276188.445430936],[516970.10930430086,5276189.782597409]]]},"properties":{"ID_SOURCE":"w145339537","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1755}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516443.5653047086,5276078.68857918],[516442.13841533975,5276078.573411461],[516442.14280757,5276077.01746927],[516443.569697321,5276077.13263699],[516443.5672500078,5276077.999519069],[516443.5653047086,5276078.68857918]]]},"properties":{"ID_SOURCE":"w145339540","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1756}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.07057756523,5276598.914840215],[516747.4971185779,5276597.576638274],[516749.68295903574,5276594.915571019],[516751.2570576102,5276596.031495917],[516749.07057756523,5276598.914840215]]]},"properties":{"ID_SOURCE":"w145339547","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1757}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516937.2331309151,5276258.926927454],[516933.47777187184,5276258.804868231],[516933.4075050703,5276257.137568524],[516937.08775152406,5276257.259409266],[516937.2331309151,5276258.926927454]]]},"properties":{"ID_SOURCE":"w145339548","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1758}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516572.9112353868,5276238.762838204],[516572.98192186886,5276240.318994508],[516569.15016588225,5276240.641511528],[516568.8544528837,5276238.973575469],[516572.9112353868,5276238.762838204]]]},"properties":{"ID_SOURCE":"w145339553","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1759}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.4110365673,5276671.810239225],[516782.5036513788,5276673.919279489],[516781.45565829094,5276672.693722154],[516781.4569393532,5276672.249166842],[516783.4110365673,5276671.810239225]]]},"properties":{"ID_SOURCE":"w145339554","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1760}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.4859140658,5276369.53516734],[516753.48335645965,5276370.424277546],[516750.17841967224,5276370.414771524],[516750.2564086274,5276369.414738566],[516753.4859140658,5276369.53516734]]]},"properties":{"ID_SOURCE":"w145339556","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1761}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.76356116636,5276564.834339647],[516761.1897761652,5276563.607272898],[516762.8485877333,5276561.38925274],[516764.49748271063,5276562.616536148],[516762.76356116636,5276564.834339647]]]},"properties":{"ID_SOURCE":"w145339557","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1762}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516633.9873950573,5276656.711071435],[516628.870813592,5276659.9195113005],[516628.272801963,5276658.91754613],[516633.3887490936,5276655.931383394],[516633.9873950573,5276656.711071435]]]},"properties":{"ID_SOURCE":"w145339560","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1763}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516734.5220804062,5276303.4303304665],[516734.5254972639,5276302.241145684],[516737.30468116427,5276302.249131711],[516737.37640874187,5276303.427418473],[516734.5220804062,5276303.4303304665]]]},"properties":{"ID_SOURCE":"w145339561","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1764}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517056.0582766109,5276517.340139837],[517055.61607724125,5276514.4492112445],[517058.39678792265,5276513.901656746],[517058.83833486843,5276517.014863147],[517056.0582766109,5276517.340139837]]]},"properties":{"ID_SOURCE":"w145339562","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1765}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516526.12152029225,5276077.588554969],[516526.7256014936,5276076.47887274],[516528.6003472773,5276077.595588656],[516528.0716971592,5276078.594345117],[516527.02909904794,5276078.057916516],[516526.12152029225,5276077.588554969]]]},"properties":{"ID_SOURCE":"w145339565","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1766}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.2334780852,5276465.165278706],[516866.2288515798,5276473.776208694],[516864.21469652496,5276468.991367797],[516884.06879210443,5276460.491134204],[516886.2334780852,5276465.165278706]]]},"properties":{"ID_SOURCE":"w145339566","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1767}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.57944157236,5276211.321770827],[516621.4383528619,5276211.338487916],[516621.28368409007,5276212.894001695],[516615.5756369294,5276212.655435825],[516615.57944157236,5276211.321770827]]]},"properties":{"ID_SOURCE":"w145339567","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1768}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516431.7669368122,5276293.488190592],[516431.914968276,5276294.266585785],[516429.4359200896,5276294.370731794],[516426.9571854595,5276294.363740092],[516426.9600066232,5276293.363491201],[516431.7669368122,5276293.488190592]]]},"properties":{"ID_SOURCE":"w145339569","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1769}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.66237964673,5276337.146211291],[516775.65549704415,5276339.53569485],[516775.6502150476,5276341.369484565],[516774.4484138466,5276341.366023054],[516774.53569020407,5276337.142966115],[516775.66237964673,5276337.146211291]]]},"properties":{"ID_SOURCE":"w145339570","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1770}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.62958517805,5276462.721213016],[517265.10743221117,5276461.497127655],[517268.94172032294,5276460.2859583525],[517269.3133209612,5276461.620737397],[517267.4413755298,5276462.181999715],[517265.62958517805,5276462.721213016]]]},"properties":{"ID_SOURCE":"w145339574","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1771}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.9267323346,5276365.4463122655],[516722.91875439684,5276368.22478166],[516721.6421656298,5276368.109976582],[516721.7249361272,5276365.442861621],[516722.9267323346,5276365.4463122655]]]},"properties":{"ID_SOURCE":"w145339578","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1772}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.85580934695,5276349.809089012],[516694.42867253604,5276349.804998043],[516694.36694003403,5276345.136954287],[516695.86919051316,5276345.141260563],[516695.85580934695,5276349.809089012]]]},"properties":{"ID_SOURCE":"w145339581","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1773}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.13807009574,5276330.476475642],[516578.80862700794,5276330.803263279],[516578.6612488463,5276329.802586719],[516581.0654886405,5276329.587151636],[516581.13807009574,5276330.476475642]]]},"properties":{"ID_SOURCE":"w145339585","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1774}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.41557140806,5276234.833414604],[516947.4433247865,5276234.950454241],[516947.511324159,5276237.395725323],[516945.4006229702,5276237.389584017],[516945.41557140806,5276234.833414604]]]},"properties":{"ID_SOURCE":"w145339589","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1775}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.0628488982,5276150.435742255],[516619.13272838976,5276150.649660212],[516619.0649069764,5276148.093254896],[516621.994394428,5276148.10161438],[516622.0628488982,5276150.435742255]]]},"properties":{"ID_SOURCE":"w145339594","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1776}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.791189366,5276273.4232632015],[516957.47207233595,5276273.322839337],[516957.4681893303,5276274.656504424],[516953.93785759766,5276274.646226828],[516953.791189366,5276273.4232632015]]]},"properties":{"ID_SOURCE":"w145339595","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1777}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517038.66937904124,5276224.891737601],[517044.75329471636,5276225.020678521],[517044.749391785,5276226.354343496],[517038.5149242408,5276226.336101845],[517038.66937904124,5276224.891737601]]]},"properties":{"ID_SOURCE":"w145339599","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1778}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516900.52627091476,5276069.438292968],[516899.61623766826,5276069.82464132],[516898.7212277588,5276070.2110334],[516898.0490522239,5276068.875407395],[516899.85409570264,5276068.102666757],[516900.52627091476,5276069.438292968]]]},"properties":{"ID_SOURCE":"w145339602","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1779}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517169.3195140428,5276162.69264126],[517169.5412549084,5276163.915831632],[517167.8729839693,5276164.15542142],[517166.4602347516,5276164.3513089],[517166.2388208139,5276163.016979913],[517169.3195140428,5276162.69264126]]]},"properties":{"ID_SOURCE":"w145339603","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1780}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516455.2107974985,5276450.039029884],[516458.7262602135,5276455.2725287145],[516453.45843596366,5276458.814113713],[516449.9432846117,5276453.469479245],[516455.2107974985,5276450.039029884]]]},"properties":{"ID_SOURCE":"w145339604","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1781}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.51092869946,5276662.07298891],[516639.44745191,5276664.728730676],[516638.8494425941,5276663.726764408],[516642.9877106292,5276661.182375704],[516643.51092869946,5276662.07298891]]]},"properties":{"ID_SOURCE":"w145339607","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1782}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516657.74391012086,5276360.147089336],[516656.6162716282,5276360.477283288],[516656.02045847,5276358.697344377],[516657.37343432906,5276358.367794786],[516657.54387229437,5276359.179601949],[516657.74391012086,5276360.147089336]]]},"properties":{"ID_SOURCE":"w145339613","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1783}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.5745534381,5276548.6361868745],[516774.15730330616,5276546.75137007],[516775.50640072476,5276547.755513597],[516773.99844046624,5276549.751685181],[516772.5745534381,5276548.6361868745]]]},"properties":{"ID_SOURCE":"w145339614","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1784}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516518.01120495045,5276421.098210783],[516523.20399110124,5276417.556471117],[516524.9991008325,5276420.228916649],[516519.88142745546,5276423.770867784],[516518.01120495045,5276421.098210783]]]},"properties":{"ID_SOURCE":"w145339615","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1785}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516715.67932282126,5276613.7116255425],[516718.59262317914,5276619.276975154],[516713.77767365845,5276622.041647647],[516710.7898989137,5276616.253807267],[516715.67932282126,5276613.7116255425]]]},"properties":{"ID_SOURCE":"w145339616","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1786}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517295.1407663358,5276440.025125238],[517290.4047937825,5276441.344740081],[517289.8849536665,5276439.342681051],[517294.54581637814,5276438.022842738],[517295.1407663358,5276440.025125238]]]},"properties":{"ID_SOURCE":"w145339617","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1787}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516764.13878232747,5276478.482733146],[516758.05480701063,5276478.465223476],[516758.07047716546,5276473.019422547],[516764.078707468,5276473.258993603],[516764.13878232747,5276478.482733146]]]},"properties":{"ID_SOURCE":"w145339622","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1788}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.4402878488,5276463.609962823],[516644.30656143103,5276462.523898269],[516645.77447476395,5276474.531181486],[516636.9082191574,5276475.617243785],[516636.14497184986,5276469.346784297],[516635.4402878488,5276463.609962823]]]},"properties":{"ID_SOURCE":"w145339623","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1789}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.1822638936,5276318.570663134],[516654.2450872839,5276317.6150415605],[516656.1979585347,5276317.642854069],[516656.210311259,5276318.576462682],[516655.22633272194,5276318.57364874],[516654.1822638936,5276318.570663134]]]},"properties":{"ID_SOURCE":"w145339625","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1790}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516448.7621772565,5276525.929218821],[516450.32913138374,5276529.601254632],[516448.4488667784,5276530.485061333],[516446.80680153647,5276526.81281391],[516448.7621772565,5276525.929218821]]]},"properties":{"ID_SOURCE":"w145339626","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1791}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5676782188,5276109.634408768],[517004.1493231504,5276108.19421022],[517005.0481144268,5276109.085951612],[517003.3913539503,5276110.5259306375],[517002.5676782188,5276109.634408768]]]},"properties":{"ID_SOURCE":"w145339627","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1792}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516998.95150196913,5276285.702465033],[516998.97815554566,5276284.291068565],[516999.0048415706,5276282.868558227],[517002.0468019247,5276282.921893378],[517001.9934608432,5276285.755800163],[516998.95150196913,5276285.702465033]]]},"properties":{"ID_SOURCE":"w145339629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1793}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.31223967264,5276348.113480887],[516763.9131395751,5276348.115210464],[516763.97801528435,5276351.671867386],[516763.2272107492,5276351.55856664],[516763.31223967264,5276348.113480887]]]},"properties":{"ID_SOURCE":"w145339635","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1794}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517075.99117617006,5276302.676582416],[517076.00160331355,5276299.120142069],[517079.0812416151,5276299.129172086],[517079.0299815219,5276301.240676381],[517078.9956995068,5276302.685392169],[517075.99117617006,5276302.676582416]]]},"properties":{"ID_SOURCE":"w145339638","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1795}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.5039097194,5276348.958776898],[516817.5697154581,5276352.182018177],[516814.75280655245,5276352.2405686295],[516814.686999255,5276349.01732738],[516817.5039097194,5276348.958776898]]]},"properties":{"ID_SOURCE":"w145339649","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1796}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.6409891206,5276191.088694231],[516958.45651978045,5276193.193987487],[516957.85754534334,5276192.525405418],[516960.0416910907,5276190.53125068],[516960.6409891206,5276191.088694231]]]},"properties":{"ID_SOURCE":"w145339652","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1797}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517248.0033555812,5276276.732189821],[517245.73777672776,5276280.837650939],[517242.4383818015,5276278.938506864],[517244.6285165385,5276274.943960834],[517248.0033555812,5276276.732189821]]]},"properties":{"ID_SOURCE":"w145339657","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1798}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516376.13867655554,5276068.718330577],[516379.4431589674,5276068.949901398],[516379.36022958555,5276071.728158342],[516375.9806327038,5276071.496376375],[516376.13867655554,5276068.718330577]]]},"properties":{"ID_SOURCE":"w145339659","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1799}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517296.8876132131,5276686.427216163],[517296.4600710029,5276678.646159892],[517310.43284680997,5276677.798558897],[517310.93580895185,5276685.468700671],[517304.4300557743,5276685.9161524745],[517296.8876132131,5276686.427216163]]]},"properties":{"ID_SOURCE":"w145339663","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1800}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516817.4683326608,5276332.66559459],[516817.592303268,5276336.555841918],[516814.79034516093,5276336.636663497],[516814.7349717848,5276335.002750102],[516814.6663726825,5276332.746416232],[516817.4683326608,5276332.66559459]]]},"properties":{"ID_SOURCE":"w145339666","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1801}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517029.4017953378,5276257.750870861],[517029.3926966029,5276260.862755974],[517026.3884766497,5276260.742833107],[517026.4723625422,5276257.742306332],[517027.8093857164,5276257.746215087],[517029.4017953378,5276257.750870861]]]},"properties":{"ID_SOURCE":"w145339668","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1802}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.35697633075,5276347.033884055],[516775.4836638599,5276347.0371292],[516775.4399293341,5276349.181999323],[516775.39542655327,5276351.593602511],[516774.3441724461,5276351.479434944],[516774.35697633075,5276347.033884055]]]},"properties":{"ID_SOURCE":"w145339670","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1803}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516555.7811183797,5276396.076774314],[516555.08232532116,5276396.1636996595],[516554.89142568427,5276394.618315464],[516555.56768535834,5276394.53132604],[516555.6854949033,5276395.365208532],[516555.7811183797,5276396.076774314]]]},"properties":{"ID_SOURCE":"w145339674","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1804}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517006.92690877523,5276263.131046093],[517004.5922222867,5276265.235883598],[517003.8433579193,5276264.455719334],[517006.1029308451,5276262.350662207],[517006.92690877523,5276263.131046093]]]},"properties":{"ID_SOURCE":"w145339687","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1805}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.98307237215,5276656.081367511],[516646.0855823886,5276654.745125225],[516647.9588666154,5276653.6724247085],[516649.17011591804,5276652.97570714],[516649.91738840076,5276654.311520414],[516646.98307237215,5276656.081367511]]]},"properties":{"ID_SOURCE":"w145339700","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1806}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516651.87771884125,5276336.45756192],[516650.6975608167,5276336.765378934],[516650.3113280208,5276335.241661132],[516651.5066041891,5276334.900545362],[516651.6847456027,5276335.645690531],[516651.87771884125,5276336.45756192]]]},"properties":{"ID_SOURCE":"w145339707","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1807}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517151.7167505023,5276069.394577287],[517153.8895529558,5276071.290350546],[517150.72322423966,5276075.170915296],[517148.62553826487,5276073.275364359],[517151.7167505023,5276069.394577287]]]},"properties":{"ID_SOURCE":"w145339722","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1808}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516706.3238100596,5276316.730594808],[516706.3928658032,5276318.84244685],[516704.7403828061,5276318.837707],[516704.6682025747,5276317.815014903],[516704.59589481127,5276316.836778313],[516706.3238100596,5276316.730594808]]]},"properties":{"ID_SOURCE":"w145339726","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1809}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516740.08753126045,5276614.559714278],[516738.0640589347,5276612.9979418125],[516739.7976373813,5276610.891269662],[516741.6708918263,5276612.452610879],[516740.08753126045,5276614.559714278]]]},"properties":{"ID_SOURCE":"w145339741","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1810}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516425.42762873217,5276383.937990368],[516423.92538842635,5276383.933753828],[516424.0117833797,5276379.932969521],[516425.514024717,5276379.937206081],[516425.42762873217,5276383.937990368]]]},"properties":{"ID_SOURCE":"w145339752","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1811}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.0264814498,5276091.247111155],[516523.1290756915,5276091.817050961],[516523.97665442387,5276092.252899962],[516523.67461486306,5276092.807741225],[516521.6490109898,5276091.912878175],[516522.0264814498,5276091.247111155]]]},"properties":{"ID_SOURCE":"w145339758","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1812}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.9367410138,5276212.5835429765],[517054.4341306908,5276212.690282655],[517054.3775657397,5276206.355154244],[517055.8047379124,5276206.35933333],[517055.9367410138,5276212.5835429765]]]},"properties":{"ID_SOURCE":"w145339765","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1813}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.5862104722,5276407.409071394],[517278.1073766196,5276408.966574099],[517273.8230419209,5276409.954123105],[517273.5272099003,5276408.397289109],[517277.5862104722,5276407.409071394]]]},"properties":{"ID_SOURCE":"w145339773","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1814}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516979.8083662509,5276238.156630529],[516979.7983220517,5276241.601931813],[516976.34340805945,5276241.480720918],[516976.35312627326,5276238.146558382],[516979.8083662509,5276238.156630529]]]},"properties":{"ID_SOURCE":"w145339774","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1815}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517249.6616656492,5276503.017631195],[517247.7458540468,5276503.178666702],[517244.5528349538,5276503.447060609],[517244.41248643957,5276500.112451974],[517249.5209908671,5276499.794161227],[517249.6616656492,5276503.017631195]]]},"properties":{"ID_SOURCE":"w145339797","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1816}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.16097781085,5276362.926295954],[516774.2488939568,5276358.48096132],[516775.22567467723,5276358.372634975],[516775.36309467943,5276362.818618641],[516774.16097781085,5276362.926295954]]]},"properties":{"ID_SOURCE":"w145339802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1817}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517081.4476094306,5276260.615087243],[517074.01136044535,5276260.593282932],[517073.954166075,5276254.480431307],[517081.6157639796,5276254.502896409],[517081.4476094306,5276260.615087243]]]},"properties":{"ID_SOURCE":"w145339808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1818}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516895.6936799623,5276233.466428232],[516892.2387596583,5276233.345267244],[516892.1729933541,5276230.122025626],[516895.5534463564,5276230.020691175],[516895.6936799623,5276233.466428232]]]},"properties":{"ID_SOURCE":"w145339813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1819}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516584.6668397883,5276119.988019352],[516580.56807812303,5276108.52896779],[516583.71818561124,5276110.20503045],[516586.025879991,5276117.546817247],[516584.6668397883,5276119.988019352]]]},"properties":{"ID_SOURCE":"w145339829","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1820}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.20775971754,5276268.77679256],[517316.2281522651,5276269.599408794],[517315.4436451674,5276280.822189774],[517300.6486216247,5276280.000244837],[517301.20775971754,5276268.77679256]]]},"properties":{"ID_SOURCE":"w145339831","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1821}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.8920560095,5276708.757420999],[517294.54228186025,5276717.428257263],[517284.6257508971,5276718.176794087],[517283.9755103804,5276709.505958955],[517288.0097253775,5276709.20674242],[517293.8920560095,5276708.757420999]]]},"properties":{"ID_SOURCE":"w145339838","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1822}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517252.1294314409,5276177.052080336],[517254.44843944017,5276180.282001447],[517252.79229544825,5276181.499632317],[517250.4732870246,5276178.269711856],[517252.1294314409,5276177.052080336]]]},"properties":{"ID_SOURCE":"w145339851","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1823}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516604.58656096697,5276352.21551668],[516605.4131145696,5276352.1067335745],[516605.55700190156,5276354.32993738],[516604.88067341194,5276354.439148764],[516604.7336489059,5276353.316218844],[516604.58656096697,5276352.21551668]]]},"properties":{"ID_SOURCE":"w145339853","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1824}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.82626548264,5276303.441372857],[516753.8292387005,5276302.40778235],[516756.38308331254,5276302.415129277],[516756.3050285546,5276303.437389803],[516753.82626548264,5276303.441372857]]]},"properties":{"ID_SOURCE":"w145339856","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1825}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516379.36022958555,5276071.728158342],[516379.4431589674,5276068.949901398],[516381.0954000779,5276069.065687508],[516380.9373538713,5276071.843733178],[516379.36022958555,5276071.728158342]]]},"properties":{"ID_SOURCE":"w145339859","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1826}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.9947170736,5276226.185425816],[517024.8487121747,5276224.740182963],[517031.00741734204,5276224.980467838],[517031.00286759174,5276226.536410309],[517024.9947170736,5276226.185425816]]]},"properties":{"ID_SOURCE":"w145339863","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1827}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516624.78831008566,5276116.657069926],[516625.90742832026,5276119.327615629],[516623.6514277123,5276120.210293507],[516622.60710689623,5276117.651101341],[516624.78831008566,5276116.657069926]]]},"properties":{"ID_SOURCE":"w145339864","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1828}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516710.9581498849,5276246.103512019],[516710.3196825707,5276246.101680176],[516710.3995155914,5276244.457042118],[516710.99320178357,5276244.358719779],[516710.9581498849,5276246.103512019]]]},"properties":{"ID_SOURCE":"w145339873","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1829}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.5243773496,5276252.372020749],[516590.50791520556,5276258.151236141],[516586.7525495835,5276258.029400496],[516586.84380520973,5276252.361537775],[516590.5243773496,5276252.372020749]]]},"properties":{"ID_SOURCE":"w145339874","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1830}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.98280703305,5276386.196045883],[516749.9121699192,5276384.63988696],[516756.9726994396,5276384.660197274],[516757.0436544386,5276386.105217509],[516749.98280703305,5276386.196045883]]]},"properties":{"ID_SOURCE":"w145339876","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1831}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516598.28452993964,5276086.018082235],[516597.67568554915,5276088.794838018],[516590.4563355466,5276091.663900704],[516587.681798964,5276089.988904057],[516598.28452993964,5276086.018082235]]]},"properties":{"ID_SOURCE":"w145339880","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1832}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.2685430519,5276421.722388241],[516773.3156430455,5276421.716763475],[516773.32428533223,5276418.716016289],[516775.35197779915,5276418.832996192],[516775.31029242935,5276420.266578337],[516775.2685430519,5276421.722388241]]]},"properties":{"ID_SOURCE":"w145339881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1833}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.2459878492,5276080.870250399],[516740.11829059606,5276081.2004281785],[516739.5979090052,5276079.309558667],[516740.6501712098,5276079.0903036175],[516740.94063186744,5276079.958027667],[516741.2459878492,5276080.870250399]]]},"properties":{"ID_SOURCE":"w145339884","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1834}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.2959859256,5276327.663730957],[516764.047433339,5276327.554754161],[516764.1877419052,5276331.0004883995],[516763.43661482143,5276330.998326408],[516763.2959859256,5276327.663730957]]]},"properties":{"ID_SOURCE":"w145339887","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1835}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516761.6320752299,5276443.855497638],[516773.2364437069,5276444.000046967],[516773.1762689579,5276449.245668025],[516761.57191093394,5276449.10111879],[516761.6320752299,5276443.855497638]]]},"properties":{"ID_SOURCE":"w145339891","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1836}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516729.3349891194,5276383.358206829],[516726.4807318983,5276383.350008792],[516726.41551461973,5276379.904490946],[516729.3448856046,5276379.912904702],[516729.3349891194,5276383.358206829]]]},"properties":{"ID_SOURCE":"w145339895","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1837}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.11668712634,5276072.9937920235],[516434.19525251637,5276071.771477966],[516435.32199313893,5276071.774657182],[516435.32011153834,5276072.441489542],[516434.11668712634,5276072.9937920235]]]},"properties":{"ID_SOURCE":"w145339900","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1838}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516889.599090257,5276185.21413008],[516889.58813274803,5276188.99284733],[516886.3585295837,5276188.872343358],[516886.36916278093,5276185.204764847],[516889.599090257,5276185.21413008]]]},"properties":{"ID_SOURCE":"w145339909","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1839}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516459.0488174855,5276527.18081824],[516460.25215079315,5276526.628520728],[516460.7672382854,5276527.7524874965],[516461.2226144267,5276528.742917906],[516460.0192814614,5276529.295215216],[516459.0488174855,5276527.18081824]]]},"properties":{"ID_SOURCE":"w145339912","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1840}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516322.697496363,5276616.597929573],[516321.7980571497,5276615.928570478],[516323.3055333292,5276614.043420827],[516324.2046611298,5276614.823918977],[516322.697496363,5276616.597929573]]]},"properties":{"ID_SOURCE":"w145339914","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1841}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.5425100012,5276548.510556871],[516769.27675820445,5276546.181616027],[516770.77575638215,5276547.297329815],[516768.8161782405,5276549.625621402],[516767.5425100012,5276548.510556871]]]},"properties":{"ID_SOURCE":"w145339919","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1842}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.1315263611,5276346.442013285],[516723.19929908734,5276348.998420724],[516721.77216206136,5276348.994323054],[516721.77950121695,5276346.4381312905],[516723.1315263611,5276346.442013285]]]},"properties":{"ID_SOURCE":"w145339927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1843}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516578.14227872144,5276485.7300872905],[516578.7349385473,5276488.6214065505],[516576.3298154476,5276489.170258893],[516575.73715448804,5276486.278939874],[516578.14227872144,5276485.7300872905]]]},"properties":{"ID_SOURCE":"w145339928","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1844}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516781.18479896506,5276532.101171507],[516781.2149020738,5276521.654124008],[516786.99839132803,5276521.670791958],[516786.89316773164,5276532.117622949],[516781.18479896506,5276532.101171507]]]},"properties":{"ID_SOURCE":"w145339929","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1845}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516802.08541060647,5276264.870442183],[516800.05734441924,5276264.864591884],[516800.0643971578,5276262.419539233],[516802.2426913836,5276262.4258229155],[516802.08541060647,5276264.870442183]]]},"properties":{"ID_SOURCE":"w145339936","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1846}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516930.25240802416,5276257.239535998],[516926.6472751037,5276257.117917872],[516926.5770063238,5276255.45061826],[516930.1818172167,5276255.683375093],[516930.25240802416,5276257.239535998]]]},"properties":{"ID_SOURCE":"w145339937","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1847}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516433.8088691983,5276102.222642119],[516432.5322167181,5276102.107900608],[516432.76571607665,5276099.21892934],[516433.8126320877,5276100.888977331],[516433.8088691983,5276102.222642119]]]},"properties":{"ID_SOURCE":"w145339938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1848}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517308.6949573406,5276453.846723315],[517307.17642421374,5276454.27565552],[517305.9886444854,5276454.616659145],[517305.54326160945,5276452.837099425],[517308.17446406465,5276452.066940161],[517308.6949573406,5276453.846723315]]]},"properties":{"ID_SOURCE":"w145339942","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1849}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.9624734583,5276352.998769526],[516723.0286505661,5276356.110870862],[516721.9022839126,5276355.996497086],[516721.8354680107,5276353.106673313],[516722.9624734583,5276352.998769526]]]},"properties":{"ID_SOURCE":"w145339945","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1850}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516998.4396920588,5276213.993637257],[516996.78750344226,5276213.87767587],[516996.9562187373,5276207.543205762],[516998.383390587,5276207.547370778],[516998.4396920588,5276213.993637257]]]},"properties":{"ID_SOURCE":"w145339948","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1851}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516900.5290308987,5276223.811304387],[516900.59898509784,5276225.589742334],[516898.9464755107,5276225.584947446],[516898.9513124408,5276223.9178662095],[516900.5290308987,5276223.811304387]]]},"properties":{"ID_SOURCE":"w145339949","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1852}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517303.2570914447,5276716.676166492],[517302.68198633404,5276708.005552393],[517311.54669648485,5276707.365059155],[517311.85951730557,5276710.777981322],[517312.3471117539,5276716.036344006],[517303.2570914447,5276716.676166492]]]},"properties":{"ID_SOURCE":"w145339953","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1853}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517293.3017242322,5276401.676447153],[517293.52210952475,5276403.344197893],[517290.3647746608,5276404.223941571],[517290.0696066397,5276402.444829184],[517293.3017242322,5276401.676447153]]]},"properties":{"ID_SOURCE":"w145339954","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1854}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.83895044867,5276113.267792247],[516989.4159698002,5276111.818825661],[516991.75136024825,5276109.49170499],[516993.17401664477,5276111.051810871],[516990.83895044867,5276113.267792247]]]},"properties":{"ID_SOURCE":"w145339960","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1855}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516473.91997456487,5276554.007532949],[516478.7326638324,5276552.020634249],[516479.180492564,5276553.022158738],[516474.3674895732,5276555.120195879],[516473.91997456487,5276554.007532949]]]},"properties":{"ID_SOURCE":"w145339963","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1856}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516591.55087812373,5276234.814878971],[516596.88523491344,5276234.385518599],[516597.1023424724,5276237.275768341],[516591.61807709665,5276237.5935618],[516591.55087812373,5276234.814878971]]]},"properties":{"ID_SOURCE":"w145339968","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1857}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3291203006,5276479.350491839],[516522.58400322945,5276477.236723719],[516526.3436438832,5276475.802575204],[516527.08875978045,5276477.9163438035],[516523.3291203006,5276479.350491839]]]},"properties":{"ID_SOURCE":"w145339969","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1858}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4339716028,5276489.391515131],[516734.5889388699,5276489.289440222],[516734.5867034031,5276490.067411804],[516731.4314172638,5276490.280625509],[516731.4339716028,5276489.391515131]]]},"properties":{"ID_SOURCE":"w145339973","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1859}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517218.3686753498,5276137.719861718],[517221.0826810887,5276134.393694421],[517224.60455288953,5276137.293740729],[517221.81543128873,5276140.6196843],[517227.0308250631,5276144.9028721005],[517224.1218502096,5276148.117320398],[517218.4941124783,5276143.566180893],[517221.3059296345,5276140.1847329885],[517218.3686753498,5276137.719861718]]]},"properties":{"ID_SOURCE":"w145339979","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1860}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.2222799789,5276501.201554797],[516778.6446389925,5276501.308149067],[516778.7290351847,5276498.085340308],[516780.30635681783,5276498.089884855],[516780.2222799789,5276501.201554797]]]},"properties":{"ID_SOURCE":"w145339983","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1861}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516587.5171980766,5276226.912474267],[516583.61095127114,5276227.012490365],[516583.4664191426,5276225.011565078],[516587.14795809815,5276224.688629619],[516587.5171980766,5276226.912474267]]]},"properties":{"ID_SOURCE":"w145339984","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1862}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516775.9072451642,5276330.367395415],[516774.70544169203,5276330.363933855],[516774.67258220195,5276315.69340019],[516775.9495016069,5276315.697078091],[516775.9431951581,5276317.886511791],[516775.9072451642,5276330.367395415]]]},"properties":{"ID_SOURCE":"w145339986","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1863}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516722.05321620224,5276303.427859214],[516722.05672624183,5276302.205332804],[516724.6853648431,5276302.324020259],[516724.83243143687,5276303.424725417],[516722.05321620224,5276303.427859214]]]},"properties":{"ID_SOURCE":"w145339987","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1864}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516991.6556098473,5276168.062036567],[516992.1978955891,5276167.563490024],[516992.8606893995,5276166.95415543],[516993.6843584312,5276167.845676025],[516992.5540694681,5276169.064914876],[516991.6556098473,5276168.062036567]]]},"properties":{"ID_SOURCE":"w145339994","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1865}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516983.56683235563,5276288.736152503],[516983.50144154794,5276285.401770694],[516984.85348100815,5276285.405713412],[516984.76864452,5276288.73965714],[516983.56683235563,5276288.736152503]]]},"properties":{"ID_SOURCE":"w145340007","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1866}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516773.72267903294,5276384.708414491],[516772.5170459854,5276386.038618699],[516770.6462866736,5276383.588158045],[516771.14356226317,5276383.056119439],[516771.7764876937,5276382.36887593],[516773.72267903294,5276384.708414491]]]},"properties":{"ID_SOURCE":"w145340021","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1867}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517273.8230419209,5276409.954123105],[517278.1073766196,5276408.966574099],[517277.5862104722,5276407.409071394],[517280.4427648834,5276406.639568106],[517280.2200676866,5276405.7497892985],[517282.1742926363,5276405.311028921],[517282.32253739156,5276405.978307359],[517285.8550990502,5276405.210812761],[517286.3759333175,5276406.879454983],[517290.7353842108,5276405.892138199],[517290.3647746608,5276404.223941571],[517293.52210952475,5276403.344197893],[517293.3017242322,5276401.676447153],[517295.1113385934,5276399.34788586],[517294.2864284072,5276398.900877229],[517296.9255754309,5276395.463382278],[517297.750155814,5276396.02153006],[517298.57935751625,5276395.023735101],[517300.0779640309,5276396.250723786],[517301.5100422443,5276394.587881566],[517300.91641029704,5276392.141043464],[517298.7668835222,5276382.465499843],[517297.7143243979,5276382.795792853],[517297.26992355456,5276380.682817669],[517298.3969349236,5276380.5750252195],[517297.6543963013,5276377.683186233],[517299.2327412356,5276377.354454929],[517298.2684971814,5276373.239420084],[517301.5006320538,5276372.471042597],[517301.27925733593,5276371.136707944],[517303.6844989838,5276370.588154815],[517304.0564277742,5276371.811797121],[517308.94235402066,5276370.603778608],[517313.46572034905,5276390.288960208],[517309.9324852835,5276391.278715618],[517311.41424251226,5276398.173784745],[517299.19759381923,5276414.47502896],[517294.1756740972,5276410.903642084],[517291.84556167206,5276411.452422145],[517292.8799653545,5276417.234760888],[517276.34453094134,5276420.853298491],[517273.8230419209,5276409.954123105]]]},"properties":{"ID_SOURCE":"w145340023","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1868}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9984406455,5276239.670006835],[516922.8901305849,5276239.513586845],[516921.4445331818,5276238.097912695],[516921.3745855287,5276236.3194744475],[516918.3703509881,5276236.199607338],[516918.29071739805,5276237.7553316625],[516917.0092615154,5276239.30756512],[516912.7280921852,5276239.183992132],[516912.65523736336,5276238.405802752],[516911.0551497923,5276238.456726477],[516909.50013059477,5276238.507781486],[516909.4230807087,5276239.174395924],[516902.43748826644,5276239.154119204],[516902.551950971,5276225.5954096215],[516904.73025906255,5276225.601731601],[516904.886293561,5276223.601670147],[516937.6350705993,5276224.030233138],[516937.7237591556,5276219.362624146],[516952.8213805269,5276219.517688635],[516953.1079268353,5276224.297529346],[516955.58636827715,5276224.415883651],[516957.38910641416,5276224.42113199],[516973.83876799536,5276224.580187612],[516973.71830930945,5276240.139393686],[516966.05669285497,5276240.117070567],[516965.9844926524,5276239.116603001],[516964.47470327053,5276239.112205241],[516962.90482276503,5276239.107632861],[516962.97734718176,5276239.996961635],[516955.99175557034,5276239.976620678],[516955.94058441615,5276231.752134461],[516953.9879440763,5276231.635310514],[516954.0565877824,5276233.858304164],[516952.8515293902,5276234.966193396],[516948.11935036053,5276234.952421361],[516948.1229077757,5276233.729895107],[516946.6807842538,5276233.70347093],[516945.27621770423,5276233.677156378],[516945.11479224736,5276234.943679209],[516940.2327085595,5276234.818337765],[516939.1092315375,5276233.703673296],[516939.04122858046,5276231.258402337],[516937.4641577736,5276231.142676223],[516937.2142530602,5276239.588565974],[516929.77765462594,5276239.678084633],[516929.7885903656,5276238.500035701],[516928.48918438854,5276238.47403087],[516926.9268797258,5276238.447262269],[516926.9984406455,5276239.670006835]]]},"properties":{"ID_SOURCE":"w145340026","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1869}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516954.2088142937,5276258.97631818],[516957.438700953,5276258.985721133],[516957.5057250184,5276261.764408699],[516959.1507130176,5276261.769198354],[516960.8858373497,5276261.774250959],[516960.9020197271,5276256.217313229],[516964.6580273955,5276256.117112622],[516964.7286089882,5276257.67327397],[516977.72294825397,5276257.8222775655],[516984.9888784794,5276264.734123623],[516984.7884149898,5276281.960192844],[516980.3570514915,5276281.836131963],[516980.4337465573,5276283.870212137],[516980.4969094137,5276285.393010226],[516983.50144154794,5276285.401770694],[516983.56683235563,5276288.736152503],[516983.293204752,5276305.295170807],[516983.2067489602,5276309.184808479],[516969.3866052065,5276308.92224619],[516969.53069093387,5276285.249908907],[516972.3098832135,5276285.258007053],[516972.32024698966,5276281.701566773],[516971.04364387254,5276281.586707079],[516970.97824578144,5276278.252325465],[516970.8480970048,5276271.3612847775],[516964.2377866972,5276271.453166949],[516960.93246981147,5276271.554680221],[516960.86091646,5276270.33193516],[516957.4808090943,5276270.322092901],[516957.47207233595,5276273.322839337],[516953.791189366,5276273.4232632015],[516937.1914385768,5276273.26382699],[516933.51120224,5276273.141986153],[516933.44449003175,5276270.2521600835],[516930.13917309424,5276270.353690837],[516930.1356194126,5276271.576217162],[516926.5301723737,5276271.565737842],[516923.52563317324,5276271.55700678],[516914.1847727111,5276280.754467255],[516904.1492584092,5276270.500479856],[516918.6104356445,5276256.983426885],[516926.6472751037,5276257.117917872],[516930.25240802416,5276257.239535998],[516930.3145991196,5276261.685304545],[516931.8243826313,5276261.689693462],[516933.61959785107,5276261.694912635],[516933.47777187184,5276258.804868231],[516937.2331309151,5276258.926927454],[516954.2088142937,5276258.97631818]]]},"properties":{"ID_SOURCE":"w145340028","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1870}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516748.3165812212,5276312.616778243],[516748.3973510506,5276310.649838084],[516751.3267568965,5276310.658262813],[516751.3233365985,5276311.847447606],[516751.62155080226,5276312.62628313],[516748.3165812212,5276312.616778243]]]},"properties":{"ID_SOURCE":"w145340039","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1871}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.1348096863,5276097.514587056],[517266.34193279874,5276095.739930126],[517269.58542074653,5276091.192818321],[517279.03056131356,5276097.778072674],[517274.50449966855,5276104.210750217],[517270.17945476674,5276101.119354857],[517265.1348096863,5276097.514587056]]]},"properties":{"ID_SOURCE":"w145340040","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1872}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517282.5879415028,5276443.099774469],[517283.18322484725,5276444.990916969],[517283.11555875547,5276445.012944113],[517278.29670688824,5276446.4212346375],[517277.7014221085,5276444.530092634],[517282.5879415028,5276443.099774469]]]},"properties":{"ID_SOURCE":"w145340047","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1873}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516413.1665898989,5276496.821332804],[516416.15785463195,5276501.497630539],[516409.00920531724,5276506.14535115],[516405.94313986314,5276501.357706669],[516405.9434529456,5276501.246567866],[516413.1665898989,5276496.821332804]]]},"properties":{"ID_SOURCE":"w145340049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1874}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.26962416584,5276167.904067435],[516685.0874343887,5276167.898160603],[516685.1227927953,5276171.2880213335],[516683.9510342829,5276171.273550777],[516683.2674262466,5276171.293820569],[516683.26962416584,5276167.904067435]]]},"properties":{"ID_SOURCE":"w145340050","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1875}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.74169116555,5276651.754134288],[517281.5887273293,5276653.262134636],[517280.86336554994,5276644.591077878],[517287.99302690936,5276643.989855934],[517297.31645791116,5276643.1951066535],[517297.38331389,5276645.973800211],[517297.74169116555,5276651.754134288]]]},"properties":{"ID_SOURCE":"w145340055","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1876}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.7730003394,5276088.1511097625],[517252.0020650358,5276093.252365389],[517247.58010644733,5276089.905078621],[517248.7862383781,5276088.463834247],[517251.57540017384,5276085.137903768],[517255.7730003394,5276088.1511097625]]]},"properties":{"ID_SOURCE":"w145340069","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1877}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516812.92877093604,5276099.414766988],[516813.7463813582,5276102.417897791],[516809.4622229198,5276103.294649536],[516809.3896731995,5276102.405322924],[516809.17074095143,5276100.181898022],[516809.02467911213,5276098.736661],[516812.4084146224,5276097.523890856],[516812.92877093604,5276099.414766988]]]},"properties":{"ID_SOURCE":"w145340085","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1878}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516729.8442238768,5276310.674312818],[516732.7361051339,5276310.671506441],[516732.73268863297,5276311.860691237],[516732.7682015904,5276312.572087239],[516729.76368378376,5276312.563456083],[516729.8442238768,5276310.674312818]]]},"properties":{"ID_SOURCE":"w145340087","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1879}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517013.7858695171,5276100.775992796],[517011.2247951925,5276103.213585201],[517003.9609640123,5276095.523737503],[517010.8143495687,5276089.431066938],[517014.3265361523,5276093.120048583],[517017.92859738466,5276096.89820672],[517013.7858695171,5276100.775992796]]]},"properties":{"ID_SOURCE":"w145340098","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1880}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.0825711721,5276098.35610536],[516442.0806887805,5276099.022937746],[516442.07912012294,5276099.5786314085],[516442.0033769783,5276099.800696826],[516441.1019888168,5276099.798152392],[516441.1814965001,5276098.242422183],[516442.0825711721,5276098.35610536]]]},"properties":{"ID_SOURCE":"w145340113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1881}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516622.7558953051,5276197.116372383],[516622.7528502893,5276198.1833043555],[516622.74923433375,5276199.450286076],[516622.07320472837,5276199.448356732],[516621.32206072134,5276199.446213108],[516621.4041527149,5276197.001375026],[516622.7558953051,5276197.116372383]]]},"properties":{"ID_SOURCE":"w145340114","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1882}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516989.4338395002,5276182.948273253],[516991.4554499082,5276185.17696425],[516986.4839490272,5276189.941469646],[516979.520652989,5276182.25252747],[516981.72721480264,5276180.302902055],[516984.64173585724,5276177.7107317485],[516989.4338395002,5276182.948273253]]]},"properties":{"ID_SOURCE":"w145340119","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1883}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.0753890971,5276411.912529097],[516995.22496380494,5276412.135245032],[517001.2377905388,5276410.8191176625],[517001.60686016694,5276413.0429896135],[516995.59468428924,5276414.136839036],[516995.0753890971,5276411.912529097]]]},"properties":{"ID_SOURCE":"w145340120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1884}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.3549554954,5276337.869753061],[516524.1063969395,5276337.760745317],[516524.5573879519,5276337.650885211],[516524.62903192913,5276338.873624824],[516523.5771402256,5276338.981780086],[516523.3549554954,5276337.869753061]]]},"properties":{"ID_SOURCE":"w145340129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1885}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.4731653695,5276345.021155147],[516730.64788536465,5276344.685365282],[516730.5807543637,5276341.906680221],[516732.0830056987,5276341.9109958345],[516731.9989530544,5276345.022665649],[516731.4731653695,5276345.021155147]]]},"properties":{"ID_SOURCE":"w145340130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1886}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.6064899209,5276207.850306603],[516951.3462681769,5276210.177661411],[516951.3355939814,5276213.845240047],[516949.98353792785,5276213.841305152],[516949.8514216569,5276207.617098169],[516953.6064899209,5276207.850306603]]]},"properties":{"ID_SOURCE":"w145340134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1887}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517174.97771007544,5276154.373845637],[517178.96044401976,5276153.829892636],[517181.6590108078,5276155.7272274615],[517182.2461604993,5276160.396827017],[517175.7839830609,5276161.15574498],[517174.97771007544,5276154.373845637]]]},"properties":{"ID_SOURCE":"w145340135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1888}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.0653775792,5276503.5730968695],[517283.81971345947,5276503.863540947],[517280.97977823886,5276504.110734822],[517280.8345039249,5276502.443207164],[517280.90895487915,5276502.665707625],[517286.9942258277,5276502.239208389],[517287.0653775792,5276503.5730968695]]]},"properties":{"ID_SOURCE":"w145340136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1889}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.4585400555,5276082.779420615],[516978.4601598776,5276082.223726995],[516979.73713057814,5276082.227449451],[516979.7309747853,5276084.339085201],[516978.37888865307,5276084.335143787],[516978.4585400555,5276082.779420615]]]},"properties":{"ID_SOURCE":"w145340149","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1890}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516423.9007373334,5276286.130786277],[516423.75740559114,5276283.685309836],[516427.5888112573,5276283.473835986],[516427.7315144427,5276286.141590057],[516423.9755372062,5276286.2421368575],[516423.9007373334,5276286.130786277]]]},"properties":{"ID_SOURCE":"w145340153","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1891}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516953.87330216554,5276219.409610847],[516955.6002806121,5276219.636917478],[516955.58636827715,5276224.415883651],[516953.1079268353,5276224.297529346],[516952.8213805269,5276219.517688635],[516953.87330216554,5276219.409610847]]]},"properties":{"ID_SOURCE":"w145340160","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1892}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.8882106922,5276642.68990681],[517276.5242070212,5276638.79893405],[517280.80672521406,5276638.367081174],[517282.3843390052,5276638.26062298],[517282.6732300868,5276642.151373209],[517276.8882106922,5276642.68990681]]]},"properties":{"ID_SOURCE":"w145340165","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1893}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.2871814142,5276357.468266155],[516731.8880803421,5276357.469992431],[516731.9539333214,5276360.693232677],[516730.30178144167,5276360.577346772],[516730.3104013976,5276357.576599863],[516731.2871814142,5276357.468266155]]]},"properties":{"ID_SOURCE":"w145340172","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1894}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516757.0142588361,5276083.027246647],[516757.3115250099,5276084.139498331],[516753.77852066775,5276085.018452144],[516753.62988728215,5276084.462326389],[516753.4809341958,5276084.017339367],[516757.0142588361,5276083.027246647]]]},"properties":{"ID_SOURCE":"w145340179","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1895}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.78722865693,5276151.068237939],[516688.01416588476,5276150.5131898895],[516692.4402196184,5276152.526386621],[516691.0037983431,5276155.74532003],[516686.502631579,5276153.731909179],[516687.78722865693,5276151.068237939]]]},"properties":{"ID_SOURCE":"w145340187","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1896}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.602525208,5276153.284771935],[516685.22726859554,5276153.172557282],[516686.4367501761,5276150.508670565],[516687.78722865693,5276151.068237939],[516686.502631579,5276153.731909179],[516685.602525208,5276153.284771935]]]},"properties":{"ID_SOURCE":"w145340206","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1897}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516891.40163040214,5276470.181553619],[516894.7854905747,5276468.857692302],[516894.7690477847,5276474.525770717],[516868.8996856695,5276485.231335993],[516867.0351146534,5276480.669206731],[516891.40163040214,5276470.181553619]]]},"properties":{"ID_SOURCE":"w145340215","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1898}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516582.1441115197,5276082.637920553],[516567.17296965956,5276090.708511004],[516567.09816997516,5276090.59715862],[516564.40854004986,5276085.4770861585],[516579.5299233754,5276077.406916271],[516582.1441115197,5276082.637920553]]]},"properties":{"ID_SOURCE":"w145340229","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1899}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517116.2351705334,5276129.527912303],[517116.2345173363,5276129.750189761],[517113.0022730373,5276130.518670037],[517111.6678291365,5276124.513206233],[517114.9000765821,5276123.744725217],[517116.2351705334,5276129.527912303]]]},"properties":{"ID_SOURCE":"w145340241","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1900}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516527.07978186005,5276401.674494142],[516528.8802568849,5276402.457581467],[516527.9738691112,5276404.233244021],[516526.99804703833,5276404.008195455],[516526.2478755474,5276403.672647679],[516526.6486801279,5276402.717983781],[516527.07978186005,5276401.674494142]]]},"properties":{"ID_SOURCE":"w145340243","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1901}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517061.40960443753,5276139.247374948],[517062.7314690056,5276139.306817014],[517064.5640191481,5276139.401097467],[517064.18202875915,5276141.589430156],[517062.0778275653,5276141.9166848585],[517060.50529232546,5276140.244983237],[517061.40960443753,5276139.247374948]]]},"properties":{"ID_SOURCE":"w145340250","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1902}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517243.1927025778,5276633.032017121],[517243.62788869074,5276638.256875921],[517228.37752233335,5276639.323137448],[517227.80295472697,5276630.430254459],[517232.17554012645,5276630.020860213],[517242.90411369555,5276629.030130154],[517243.1927025778,5276633.032017121]]]},"properties":{"ID_SOURCE":"w145340268","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1903}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.93384484365,5276174.652147025],[516683.9510342829,5276171.273550777],[516685.1227927953,5276171.2880213335],[516685.77629125695,5276171.289893432],[516690.2831772004,5276171.302806448],[516690.273495558,5276174.681424213],[516683.93384484365,5276174.652147025]]]},"properties":{"ID_SOURCE":"w145340273","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1904}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516708.34793885244,5276367.849543001],[516708.573275547,5276367.850189461],[516710.97718584357,5276367.745946795],[516710.9746347262,5276368.635057004],[516708.3457069767,5276368.627514434],[516708.34793885244,5276367.849543001]]]},"properties":{"ID_SOURCE":"w145340279","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1905}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516696.57362740434,5276204.218174295],[516694.17665807845,5276201.877370596],[516699.07311262505,5276197.001262104],[516699.44741018844,5276197.446893902],[516701.31953451777,5276199.452775766],[516696.57362740434,5276204.218174295]]]},"properties":{"ID_SOURCE":"w145340283","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1906}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517297.5944334747,5276144.956409338],[517297.1189968445,5276145.69963347],[517296.53787112463,5276146.620367324],[517293.4419200097,5276144.488405841],[517289.4164521179,5276141.709076454],[517289.2662217863,5276141.708630512],[517290.47334323166,5276139.933978463],[517297.5944334747,5276144.956409338]]]},"properties":{"ID_SOURCE":"w145340289","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1907}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.3367883923,5276090.071752278],[516381.7123674114,5276090.072808587],[516381.5549465512,5276092.628576871],[516380.12805945316,5276092.513424331],[516380.13493553037,5276090.068372255],[516381.3367883923,5276090.071752278]]]},"properties":{"ID_SOURCE":"w145340294","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1908}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516404.51353591715,5276502.242797072],[516410.2719903253,5276511.150195136],[516405.0793563652,5276514.692035665],[516404.5529579529,5276514.912832251],[516398.49436977325,5276505.893455016],[516404.51353591715,5276502.242797072]]]},"properties":{"ID_SOURCE":"w145340295","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1909}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.92335913266,5276328.514374193],[516747.52198853117,5276327.729490667],[516749.1882124525,5276322.955275623],[516754.0654298941,5276324.747538632],[516752.1741839583,5276329.409965378],[516749.92335913266,5276328.514374193]]]},"properties":{"ID_SOURCE":"w145340297","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1910}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516693.5826849343,5276356.693233713],[516693.749383969,5276361.4282622235],[516690.4895732481,5276361.3966915095],[516690.5027590644,5276356.795546235],[516693.5826849343,5276356.693233713]]]},"properties":{"ID_SOURCE":"w145340302","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1911}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.92335913266,5276328.514374193],[516752.1741839583,5276329.409965378],[516754.72545896407,5276330.306421763],[516751.1689496699,5276339.409646108],[516746.4426080367,5276337.395539865],[516749.92335913266,5276328.514374193]]]},"properties":{"ID_SOURCE":"w145340304","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1912}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516972.5909987635,5276188.789571483],[516975.023741673,5276186.551639461],[516977.41128810385,5276184.358032586],[516984.44969888194,5276192.04719131],[516979.5549440142,5276196.2562279655],[516977.3086374184,5276193.804606725],[516972.5909987635,5276188.789571483]]]},"properties":{"ID_SOURCE":"w145340309","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1913}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516607.2630372961,5276361.892300015],[516607.1816497041,5276361.458623195],[516607.11503103614,5276361.113900226],[516608.1669203756,5276361.005760055],[516608.2394972642,5276361.895084454],[516607.26240347716,5276362.114577568],[516607.2630372961,5276361.892300015]]]},"properties":{"ID_SOURCE":"w145340324","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1914}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516687.8643134391,5276333.893210595],[516687.78442411334,5276335.560076935],[516686.2821711685,5276335.555772751],[516686.287265812,5276333.777552421],[516687.8646318855,5276333.782071824],[516687.8643134391,5276333.893210595]]]},"properties":{"ID_SOURCE":"w145340326","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1915}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516445.7912196681,5276647.063104779],[516443.15771078237,5276648.722764026],[516443.0829159876,5276648.611413126],[516437.8482142841,5276640.483436051],[516440.6322565662,5276638.71305967],[516445.7912196681,5276647.063104779]]]},"properties":{"ID_SOURCE":"w145340333","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1916}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.64095088927,5276338.90895429],[516732.0168332051,5276338.798894454],[516732.0830056987,5276341.9109958345],[516730.5807543637,5276341.906680221],[516730.4391492019,5276338.905501861],[516731.64095088927,5276338.90895429]]]},"properties":{"ID_SOURCE":"w145340339","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1917}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516618.53180815093,5276150.64794562],[516618.60470344505,5276151.426131117],[516617.10224450956,5276151.477414261],[516615.82513065706,5276151.529340641],[516615.7525520465,5276150.640016443],[516618.45732732693,5276150.425453824],[516618.53180815093,5276150.64794562]]]},"properties":{"ID_SOURCE":"w145340355","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1918}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516692.28058505175,5276627.536977323],[516691.30831061304,5276626.089374006],[516690.26124529104,5276624.53041678],[516690.6377454764,5276624.198076627],[516691.1647820996,5276623.755028219],[516693.3343394492,5276626.762019669],[516692.28058505175,5276627.536977323]]]},"properties":{"ID_SOURCE":"w145340369","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1919}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516589.37717530894,5276101.3299749],[516587.4276495766,5276100.101886688],[516587.2026190347,5276099.990106209],[516584.2027383982,5276098.31446945],[516585.25973813154,5276096.428105398],[516583.3102098885,5276095.200018573],[516586.5566442332,5276089.430001715],[516587.681798964,5276089.988904057],[516590.4563355466,5276091.663900704],[516597.67568554915,5276088.794838018],[516598.28452993964,5276086.018082235],[516598.5887939902,5276084.68527374],[516605.2065956495,5276082.036785389],[516606.92253727745,5276086.15384392],[516607.7497624259,5276085.82278365],[516609.8381108678,5276091.052301263],[516607.05565754377,5276092.155763589],[516605.02943242167,5276091.483148973],[516603.88938914327,5276096.147763543],[516603.8884386868,5276096.481179734],[516603.3629453992,5276096.368542121],[516600.43691623467,5276095.137666045],[516597.95492958475,5276096.241989062],[516598.7755016371,5276098.244840841],[516594.8650519137,5276099.789653063],[516594.0438454785,5276098.009079294],[516591.7130424231,5276098.7804167885],[516590.86753621395,5276100.256165466],[516590.0522666272,5276101.665316617],[516589.37717530894,5276101.3299749]]]},"properties":{"ID_SOURCE":"w145340372","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1920}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.6990603037,5276318.106877908],[516764.2996433993,5276318.219746285],[516764.15837483003,5276315.107428415],[516763.557471524,5276315.105698821],[516763.55971073743,5276314.327727456],[516764.2357270479,5276314.329673253],[516764.32203653856,5276310.440032653],[516766.0499548666,5276310.333866862],[516766.066911403,5276304.443512319],[516767.7948315431,5276304.337347046],[516768.2471097364,5276303.782950739],[516768.622995018,5276303.672893265],[516769.37188564526,5276304.453027267],[516775.4557226575,5276304.581687093],[516775.6656961372,5276309.916996853],[516776.942296667,5276310.031813734],[516776.939735526,5276310.920923857],[516777.5409594219,5276310.811516065],[516777.5332757224,5276313.478846442],[516776.93045138684,5276314.143948064],[516776.85117662314,5276315.588535656],[516775.9495016069,5276315.697078091],[516774.67258220195,5276315.69340019],[516774.70544169203,5276330.363933855],[516775.9072451642,5276330.367395415],[516776.5829394791,5276330.480481418],[516776.65453066165,5276331.703224242],[516777.40213596914,5276332.9279144],[516777.4714858602,5276334.928628626],[516776.7181182932,5276335.704436307],[516776.49278034765,5276335.703787214],[516776.5637312007,5276337.148807586],[516775.66237964673,5276337.146211291],[516774.53569020407,5276337.142966115],[516774.4484138466,5276341.366023054],[516765.7356750666,5276341.229795739],[516765.7334355444,5276342.007767135],[516764.1557517447,5276342.114365408],[516764.0096853021,5276340.6691289805],[516763.25855946384,5276340.666967007],[516763.26047877286,5276340.000134384],[516764.0867172879,5276340.002512559],[516764.0212016595,5276336.668133246],[516763.3455078276,5276336.555048697],[516763.3477470282,5276335.777077305],[516763.9483283066,5276335.889945653],[516764.03623689426,5276331.444611073],[516763.4353352731,5276331.442881487],[516763.43661482143,5276330.998326408],[516764.1877419052,5276331.0004883995],[516764.047433339,5276327.554754161],[516763.2959859256,5276327.663730957],[516763.29854499677,5276326.774620808],[516764.12510529003,5276326.665860219],[516764.1462186595,5276319.33070155],[516763.6952216137,5276319.440543113],[516763.6990603037,5276318.106877908]]]},"properties":{"ID_SOURCE":"w145340383","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1921}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.5287825823,5276258.6596976705],[517119.54896461684,5276259.459962929],[517119.5616352829,5276260.260206107],[517116.4291682031,5276260.328797342],[517116.3540545731,5276260.328576597],[517110.59992598876,5276260.456150854],[517110.5800692339,5276259.544746875],[517110.5599512653,5276258.722253901],[517105.84245490126,5276258.83065043],[517105.5269449322,5276258.840837764],[517105.5596709144,5276260.485801613],[517097.36415416386,5276260.672903061],[517097.4106327723,5276262.751352106],[517094.3007014358,5276262.820021387],[517094.44703192986,5276269.266554164],[517093.38032216474,5276269.296765335],[517093.5186854602,5276275.898870366],[517093.72903568053,5276275.888373753],[517093.8144185443,5276280.067477592],[517090.1410809719,5276280.15672345],[517090.2407389143,5276284.591490481],[517102.6578513906,5276284.327862457],[517102.5853110656,5276280.893432232],[517100.72984778613,5276280.943553906],[517100.6765771185,5276278.6205774555],[517100.63078511204,5276276.308736943],[517100.9613168107,5276276.298593455],[517100.80882032344,5276269.396369477],[517099.84726946254,5276269.4268882265],[517099.8413243492,5276268.893400149],[517098.39153553406,5276268.922485707],[517098.37824207183,5276268.333406205],[517099.89563320804,5276268.304519119],[517106.03286539036,5276268.166945534],[517105.9863572737,5276266.099610271],[517107.87183811486,5276266.0606923895],[517110.34327002993,5276266.001268536],[517110.38941744785,5276268.190856464],[517116.9247844338,5276268.043350028],[517116.87818219565,5276266.0093562985],[517119.09419548017,5276265.960299484],[517121.2350952455,5276265.911022707],[517121.28169596446,5276267.94501648],[517127.65932514274,5276267.797058391],[517127.61942093424,5276266.04093354],[517129.72276397963,5276265.991549437],[517131.93877740443,5276265.942497513],[517131.9847205577,5276268.198768888],[517138.87312181346,5276268.052325533],[517138.86652618414,5276267.741114915],[517140.7895635389,5276267.702318208],[517143.31354193174,5276267.6541769635],[517143.3669920102,5276269.910470553],[517146.76238433504,5276269.831553913],[517146.6040010445,5276262.395840545],[517143.68185280694,5276262.465036295],[517143.6418225226,5276260.753366837],[517138.8191679673,5276260.861427125],[517138.8127358465,5276260.494647133],[517132.26984834264,5276260.64210694],[517132.22325138265,5276258.608113093],[517127.23534527945,5276258.715696891],[517127.2750862642,5276260.527391098],[517121.71625300904,5276260.655528674],[517121.6696850367,5276258.610421046],[517119.5287825823,5276258.6596976705]]]},"properties":{"ID_SOURCE":"w145340387","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1922}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516737.28923768434,5276568.984380702],[516728.8021678025,5276568.848855382],[516728.8238767993,5276561.291416276],[516731.03948633175,5276561.342236997],[516734.1563487923,5276561.41787614],[516734.0837938576,5276560.528549838],[516737.3138324016,5276560.42669231],[516737.28923768434,5276568.984380702]]]},"properties":{"ID_SOURCE":"w145340394","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1923}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.4609051296,5276170.539146926],[516656.5151910728,5276167.316252298],[516656.5693817131,5276164.126699312],[516656.64272719366,5276159.49238568],[516662.9746603319,5276159.5994087495],[516662.79285805457,5276170.635055953],[516659.73578214174,5276170.592969052],[516656.4609051296,5276170.539146926]]]},"properties":{"ID_SOURCE":"w145340401","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1924}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.3148455045,5276546.247690347],[516646.42158587504,5276542.450507434],[516651.1289310974,5276553.689076037],[516640.23997561546,5276558.225795059],[516638.5017615793,5276554.075317246],[516640.27651291183,5276553.324637939],[516639.0903319225,5276550.498299969],[516637.3148455045,5276546.247690347]]]},"properties":{"ID_SOURCE":"w145340409","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1925}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516989.3905898614,5276146.2720515635],[516986.9577274637,5276148.543319115],[516984.64537511393,5276150.70379942],[516983.61915087374,5276149.722777767],[516978.16778319434,5276143.872051493],[516977.60594231787,5276143.348057285],[516982.35148166993,5276138.80516501],[516989.3905898614,5276146.2720515635]]]},"properties":{"ID_SOURCE":"w145340410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1926}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.2304757219,5276104.453664931],[517022.7714930366,5276110.471398941],[517021.60418129235,5276111.501586479],[517020.5121803587,5276112.465310521],[517021.33520338085,5276113.579112401],[517019.07621713716,5276115.4618858155],[517012.7866420573,5276108.552851367],[517017.2304757219,5276104.453664931]]]},"properties":{"ID_SOURCE":"w145340420","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1927}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.10789369897,5276229.618760244],[517180.6144075908,5276229.743191536],[517180.68525971565,5276231.188216824],[517185.6424563575,5276231.313981463],[517185.47255250544,5276237.98186308],[517176.1587540177,5276237.843249116],[517176.10789369897,5276229.618760244]]]},"properties":{"ID_SOURCE":"w145340422","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1928}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.22741933283,5276585.004929495],[517241.15734584,5276584.791323317],[517241.08684278186,5276583.235157635],[517250.92815868335,5276582.597462598],[517251.4315376739,5276590.15645906],[517244.0617935659,5276590.645875364],[517238.5852016031,5276591.007536846],[517238.22741933283,5276585.004929495]]]},"properties":{"ID_SOURCE":"w145340425","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1929}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.3783753412,5276156.468280295],[517242.20892421016,5276153.461085539],[517250.0380015535,5276147.705002463],[517252.76106359,5276151.469589962],[517256.3967712376,5276156.503875327],[517249.62259938294,5276161.151676908],[517245.5074034312,5276155.693645137],[517244.3783753412,5276156.468280295]]]},"properties":{"ID_SOURCE":"w145340431","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1930}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.7946397715,5276171.213987815],[516670.9564024517,5276171.15854472],[516671.0134957539,5276166.957629282],[516673.7776575393,5276166.987769591],[516673.75840305723,5276168.465871847],[516674.8324810868,5276168.491174663],[516674.7946397715,5276171.213987815]]]},"properties":{"ID_SOURCE":"w145340432","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1931}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517009.42587351566,5276153.33232682],[517015.26666230743,5276159.573209172],[517010.37055960734,5276164.226774787],[517003.40661502886,5276156.760081832],[517005.4405597949,5276154.765505598],[517006.86385041283,5276156.103337493],[517007.7907178029,5276155.094672805],[517009.42587351566,5276153.33232682]]]},"properties":{"ID_SOURCE":"w145340433","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1932}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516449.02716880164,5276644.849449745],[516449.9243914492,5276646.296800355],[516446.61396191345,5276648.287965118],[516440.6322565662,5276638.71305967],[516452.746741257,5276630.967492996],[516457.98111680715,5276639.2066221945],[516451.75096850976,5276643.13447836],[516449.02716880164,5276644.849449745]]]},"properties":{"ID_SOURCE":"w145340437","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1933}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516902.00847877923,5276179.915423455],[516902.08520602505,5276179.359947726],[516904.26385396696,5276179.255130748],[516904.33735583565,5276179.811042461],[516904.2580479067,5276181.255628094],[516902.07972323184,5276181.249306332],[516902.00847877923,5276179.915423455]]]},"properties":{"ID_SOURCE":"w145340443","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1934}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517036.4484841748,5276239.444541673],[517036.4449082128,5276240.667067926],[517034.74733448087,5276240.662102672],[517033.36523905344,5276240.658060529],[517033.3684893389,5276239.546673024],[517033.22118677676,5276238.545984924],[517036.45108487236,5276238.555431668],[517036.4484841748,5276239.444541673]]]},"properties":{"ID_SOURCE":"w145340448","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1935}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516469.43851244403,5276598.228459754],[516468.390754303,5276596.891820274],[516466.1255344864,5276598.452484897],[516462.44549766544,5276600.987180204],[516457.0596187109,5276593.192178321],[516465.71541564056,5276586.7705422],[516472.5242790568,5276596.014393047],[516469.43851244403,5276598.228459754]]]},"properties":{"ID_SOURCE":"w145340450","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1936}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.11479224736,5276234.943679209],[516945.27621770423,5276233.677156378],[516946.6807842538,5276233.70347093],[516948.1229077757,5276233.729895107],[516948.11935036053,5276234.952421361],[516947.4433247865,5276234.950454241],[516945.41557140806,5276234.833414604],[516945.11479224736,5276234.943679209]]]},"properties":{"ID_SOURCE":"w145340453","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1937}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516621.9299621588,5276591.77104321],[516622.3780804312,5276592.661440021],[516618.6929660211,5276594.318018653],[516614.43995465164,5276584.414448492],[516625.570111478,5276579.556064796],[516629.52584367,5276588.347396985],[516625.59251457104,5276590.125516184],[516621.9299621588,5276591.77104321]]]},"properties":{"ID_SOURCE":"w145340467","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1938}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516370.72102513135,5276633.181406043],[516369.6732507774,5276631.844784289],[516367.4748256748,5276633.705752115],[516361.69266892783,5276638.601878852],[516356.07699429436,5276632.362280622],[516366.7686823321,5276623.056583985],[516373.582346478,5276630.6332370285],[516370.72102513135,5276633.181406043]]]},"properties":{"ID_SOURCE":"w145340468","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1939}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516322.8110251639,5276683.282069103],[516320.5110425571,5276689.232711249],[516318.04464360344,5276695.605218914],[516308.6670381053,5276691.689059537],[516314.5678098391,5276676.590587439],[516325.44697643135,5276680.73324478],[516324.1614141939,5276683.841552836],[516322.8110251639,5276683.282069103]]]},"properties":{"ID_SOURCE":"w145340470","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1940}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516647.0248967697,5276441.748543914],[516648.44207499037,5276453.111072135],[516636.6228082623,5276454.577683124],[516635.46256034327,5276445.294204096],[516638.53572096926,5276444.913994131],[516641.0378460404,5276444.598837925],[516640.77338390547,5276442.51976993],[516647.0248967697,5276441.748543914]]]},"properties":{"ID_SOURCE":"w145340476","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1941}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516416.38060234755,5276529.060900982],[516411.26403018396,5276532.269531371],[516409.0207477234,5276528.706740211],[516408.79635669896,5276528.372688906],[516412.55875493673,5276525.938217702],[516413.83813393896,5276525.052705867],[516416.38060234755,5276529.060900982]]]},"properties":{"ID_SOURCE":"w145340479","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1942}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517085.797206348,5276339.826007755],[517085.7048137286,5276345.716142109],[517079.6958114312,5276345.69851712],[517079.6334098588,5276341.363884887],[517080.9857623297,5276341.256711185],[517081.0651122526,5276339.812127493],[517085.797206348,5276339.826007755]]]},"properties":{"ID_SOURCE":"w145340489","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1943}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517192.86877385166,5276302.464730587],[517187.97884610214,5276302.4725256525],[517176.86952180817,5276302.473093067],[517164.1752787014,5276302.480124605],[517160.8702700485,5276302.4814995015],[517160.89744987444,5276293.256982466],[517166.75628006837,5276293.2742483085],[517166.75922828045,5276292.273999484],[517193.04885542335,5276292.351546981],[517192.86877385166,5276302.464730587]]]},"properties":{"ID_SOURCE":"w145340490","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1944}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516855.6411216746,5276083.422964819],[516847.14434509614,5276086.399153117],[516845.2061180089,5276081.281123165],[516848.81521911523,5276080.069025887],[516848.5179701768,5276078.956769501],[516853.4053313475,5276077.303814135],[516855.6411216746,5276083.422964819]]]},"properties":{"ID_SOURCE":"w145340493","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1945}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517165.4230368867,5276082.993995874],[517157.2563537128,5276075.8569940375],[517162.98514710827,5276069.094351078],[517166.3565277291,5276072.105057747],[517165.2258565024,5276073.435401758],[517167.2338236632,5276075.186212679],[517169.94604533445,5276077.561482526],[517165.4230368867,5276082.993995874]]]},"properties":{"ID_SOURCE":"w145340496","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1946}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516599.9990412304,5276644.055299111],[516595.9727778566,5276646.833430877],[516593.7526714116,5276648.371946675],[516594.6501743543,5276649.7081808485],[516591.9405653751,5276651.70097537],[516585.73219303205,5276642.68097242],[516594.9128709823,5276636.594441548],[516599.9990412304,5276644.055299111]]]},"properties":{"ID_SOURCE":"w145340497","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1947}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516544.49005647266,5276565.877255409],[516544.9372413556,5276567.101062633],[516541.3281897649,5276568.424487083],[516537.90218211926,5276558.189903903],[516548.4279717261,5276554.552193621],[516551.5573147579,5276563.452263346],[516546.96359619836,5276565.028507214],[516544.49005647266,5276565.877255409]]]},"properties":{"ID_SOURCE":"w145340504","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1948}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516893.52116676624,5276179.668520778],[516893.5227785363,5276179.11282707],[516894.7095903427,5276179.116269494],[516896.0015626882,5276179.120017219],[516896.0744205412,5276179.8982063085],[516895.92064482084,5276181.120296669],[516893.36674687365,5276181.112888685],[516893.52116676624,5276179.668520778]]]},"properties":{"ID_SOURCE":"w145340519","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1949}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517005.621782191,5276118.423359291],[517009.8396076474,5276114.545786709],[517016.42899196286,5276121.677973303],[517014.0948950421,5276123.560529213],[517012.9714104429,5276122.445850707],[517011.81919082504,5276123.453856356],[517010.9381010668,5276124.218146787],[517005.621782191,5276118.423359291]]]},"properties":{"ID_SOURCE":"w145340522","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1950}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.784861146,5276360.907147859],[516674.3981628508,5276364.795929754],[516676.0503145649,5276364.911799802],[516676.04745055793,5276365.912048787],[516670.9394990607,5276366.008565147],[516669.97290106723,5276362.560468145],[516674.784861146,5276360.907147859]]]},"properties":{"ID_SOURCE":"w145340523","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1951}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516381.7767123757,5276627.988929125],[516383.1246074021,5276629.437537065],[516380.564654364,5276631.653129974],[516372.7773966973,5276623.073474082],[516383.24348870275,5276613.878313064],[516389.68284872785,5276621.009373074],[516384.954217694,5276625.186033792],[516381.7767123757,5276627.988929125]]]},"properties":{"ID_SOURCE":"w145340524","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1952}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516639.94080895506,5276623.497299625],[516640.98788788903,5276625.056247772],[516637.7518542983,5276627.26979626],[516632.2936640596,5276618.585306245],[516643.8075746186,5276610.838420515],[516648.4443221011,5276617.853476952],[516641.70172446046,5276622.324250274],[516639.94080895506,5276623.497299625]]]},"properties":{"ID_SOURCE":"w145340527","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1953}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.81973907386,5276440.717592876],[516578.417149331,5276441.9418300325],[516574.80611490225,5276443.932066418],[516569.3523999701,5276433.580556692],[516579.808701351,5276428.053330167],[516584.51540411345,5276436.957906413],[516580.27983321535,5276439.335349909],[516577.81973907386,5276440.717592876]]]},"properties":{"ID_SOURCE":"w145340528","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1954}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.9169899081,5276508.031454986],[516605.63048986107,5276507.6918074],[516606.77812675084,5276513.507686415],[516595.90351498465,5276515.63279754],[516593.6527143329,5276504.2012223415],[516602.8138767127,5276502.40464103],[516603.45057488646,5276505.651735554],[516603.9169899081,5276508.031454986]]]},"properties":{"ID_SOURCE":"w145340530","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1955}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.66246391216,5276557.847549606],[516582.25089449476,5276559.583004556],[516578.94290138874,5276560.684983556],[516575.1740434486,5276549.538056626],[516588.6316921884,5276545.019646379],[516591.8120678301,5276554.4422399],[516585.03061028343,5276556.723515508],[516581.66246391216,5276557.847549606]]]},"properties":{"ID_SOURCE":"w145340532","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1956}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516586.808469918,5276467.850157522],[516596.30816161464,5276465.887820409],[516597.18243530806,5276470.113620383],[516597.85672740196,5276473.349707263],[516599.45757087204,5276473.009736765],[516600.1318613543,5276476.245823928],[516589.0238959238,5276478.525878567],[516586.808469918,5276467.850157522]]]},"properties":{"ID_SOURCE":"w145340537","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1957}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517072.11273681733,5276201.050178222],[517073.1343577337,5276201.030944892],[517073.152363656,5276202.575839484],[517073.16364001244,5276203.853979074],[517071.8115815715,5276203.850015905],[517071.0604379927,5276203.847814279],[517071.0685815919,5276201.069345686],[517072.11273681733,5276201.050178222]]]},"properties":{"ID_SOURCE":"w145340538","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1958}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516902.26417144487,5276143.573492026],[516904.2977633999,5276141.690019322],[516904.3744913377,5276141.134543652],[516906.1018174619,5276141.250696784],[516906.08955903805,5276145.473968713],[516904.21297161677,5276145.023963365],[516902.26417144487,5276143.573492026]]]},"properties":{"ID_SOURCE":"w145340543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1959}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516461.18131284905,5276702.787586663],[516462.38429603167,5276702.346428362],[516465.5919392864,5276710.13527778],[516461.6065129049,5276711.791106389],[516459.965136244,5276707.89657639],[516462.89748382807,5276706.793468139],[516461.18131284905,5276702.787586663]]]},"properties":{"ID_SOURCE":"w145340545","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1960}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.35219286405,5276371.319063318],[517250.2082228702,5276369.206981718],[517250.0616193538,5276367.984010293],[517250.66482164396,5276367.2078187],[517254.0392759008,5276369.10719035],[517251.92658622627,5276372.32398446],[517250.35219286405,5276371.319063318]]]},"properties":{"ID_SOURCE":"w145340546","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1961}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.767048109,5276496.827697093],[516643.8213333498,5276495.642143292],[516645.24028268276,5276506.382294427],[516634.59303786984,5276507.7855751775],[516634.1666031033,5276504.561305642],[516635.7595481711,5276504.354690229],[516635.164042102,5276499.840717091],[516634.767048109,5276496.827697093]]]},"properties":{"ID_SOURCE":"w145340550","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1962}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516511.90918057266,5276639.3592777075],[516514.9989104654,5276643.6913741],[516516.9216065666,5276646.375294232],[516518.05075795477,5276645.489379101],[516520.0704942264,5276648.38474101],[516510.58821910666,5276654.915093283],[516503.48031075724,5276645.225790053],[516511.90918057266,5276639.3592777075]]]},"properties":{"ID_SOURCE":"w145340552","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1963}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516495.5454952477,5276582.742790266],[516496.21612850693,5276584.634064899],[516493.1338091251,5276585.625592071],[516489.10936832166,5276574.500225283],[516499.4097687763,5276570.861788465],[516502.83867076685,5276580.096099726],[516498.0341999059,5276581.838494438],[516495.5454952477,5276582.742790266]]]},"properties":{"ID_SOURCE":"w145340556","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1964}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516485.23779169226,5276074.14962475],[516483.46037286695,5276073.144337894],[516484.21530751756,5276071.812798982],[516484.95028090815,5276072.226095653],[516486.8979953117,5276068.797394286],[516487.9479845124,5276069.378292434],[516485.8265905757,5276073.128806765],[516485.23779169226,5276074.14962475]]]},"properties":{"ID_SOURCE":"w145340559","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1965}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516888.3047688973,5276217.107465006],[516888.3756937034,5276218.552486533],[516887.1719336831,5276219.215834311],[516888.2212760396,5276219.996854659],[516888.29381211754,5276220.88618245],[516886.19126084563,5276220.657806898],[516886.20221626206,5276216.879089453],[516886.2157494133,5276212.211262058],[516887.8682627871,5276212.216053325],[516887.1106756437,5276214.436650365],[516888.30960277066,5276215.440383791],[516888.3047688973,5276217.107465006]]]},"properties":{"ID_SOURCE":"w145340565","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1966}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516504.7908608275,5276633.33755434],[516505.76948024565,5276632.562349935],[516507.5645308836,5276635.234791133],[516499.28650669503,5276640.879457674],[516492.47931235534,5276631.079880542],[516499.5537120139,5276626.098632408],[516502.9653553656,5276630.809509339],[516504.7908608275,5276633.33755434]]]},"properties":{"ID_SOURCE":"w145340566","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1967}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.0620686216,5276530.281592197],[516644.6752617223,5276527.99735327],[516647.25102258334,5276538.696355962],[516636.05191398197,5276541.365049068],[516635.29480800836,5276538.206518514],[516636.87319815846,5276537.833152296],[516636.2125923293,5276535.07500028],[516635.0620686216,5276530.281592197]]]},"properties":{"ID_SOURCE":"w145340568","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1968}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516772.1568574699,5276119.858054962],[516770.4361549446,5276114.829588012],[516772.44381893915,5276114.112961226],[516771.92971430375,5276112.655551376],[516773.06511089916,5276112.258718143],[516775.315226616,5276118.644614377],[516772.1568574699,5276119.858054962]]]},"properties":{"ID_SOURCE":"w145340574","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1969}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516546.9445336778,5276653.68460539],[516545.7721501352,5276651.280656264],[516543.58422422805,5276646.784395544],[516552.53447092505,5276642.47537906],[516557.61247429444,5276652.825809069],[516546.7820009719,5276658.018592858],[516545.0639784064,5276654.679519835],[516546.9445336778,5276653.68460539]]]},"properties":{"ID_SOURCE":"w145340577","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1970}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516378.4251916238,5276511.060544665],[516391.6696423066,5276502.206632659],[516395.33409937896,5276507.885071622],[516395.7077741339,5276508.552961716],[516382.3888465947,5276517.184375714],[516382.08934329805,5276516.850114159],[516378.4251916238,5276511.060544665]]]},"properties":{"ID_SOURCE":"w145340578","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1971}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516427.90423365426,5276706.872470948],[516428.75231116137,5276709.76449622],[516417.96540999564,5276712.901556956],[516414.67716130393,5276701.711631405],[516424.0057958772,5276698.992782522],[516425.4490659283,5276703.898114885],[516426.4459500797,5276707.29068827],[516427.90423365426,5276706.872470948]]]},"properties":{"ID_SOURCE":"w145340580","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1972}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516398.63051615073,5276617.589230991],[516399.45358546363,5276618.7029457595],[516396.89424733387,5276620.6962538315],[516389.93319861655,5276612.1189014185],[516401.0756331288,5276602.814536187],[516407.28840398724,5276610.389536268],[516402.41738884454,5276614.443528021],[516398.63051615073,5276617.589230991]]]},"properties":{"ID_SOURCE":"w145340581","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1973}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516712.2172260661,5276137.1458017565],[516710.51089434116,5276132.328559187],[516707.44091584464,5276123.684201528],[516714.17037604237,5276121.391803953],[516715.32490508875,5276124.79599037],[516716.51663956384,5276128.322537435],[516714.6444501427,5276128.9506605035],[516712.9752637923,5276129.512682879],[516715.22476865764,5276136.13194728],[516712.2172260661,5276137.1458017565]]]},"properties":{"ID_SOURCE":"w145340582","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1974}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.41007720213,5276390.0626334],[516578.4108721772,5276391.373254841],[516577.38366357936,5276382.812575481],[516581.629170566,5276382.235620999],[516585.3487041668,5276381.723855557],[516585.8656264011,5276384.837238713],[516589.7130391004,5276384.259156433],[516590.41007720213,5276390.0626334]]]},"properties":{"ID_SOURCE":"w145340585","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1975}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516626.24756656075,5276421.183918006],[516626.99455716833,5276422.6308665555],[516623.98533774086,5276424.289371625],[516618.5323255602,5276413.715538436],[516628.4613410312,5276408.742592888],[516633.16830286797,5276417.536069537],[516629.06853333185,5276419.691586121],[516626.24756656075,5276421.183918006]]]},"properties":{"ID_SOURCE":"w145340586","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1976}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516835.11756001617,5276193.169595673],[516840.6758714676,5276193.241234174],[516848.7654767111,5276193.342427871],[516855.9161828299,5276193.429801572],[516859.5065587247,5276193.473535201],[516863.5175435104,5276193.529602795],[516868.91811399756,5276193.600811544],[516873.2744320816,5276193.724569846],[516880.0420858773,5276193.799749511],[516885.9684573583,5276193.872497952],[516885.8862542609,5276196.317332554],[516870.96900753275,5276196.107394536],[516835.1856071729,5276195.614865164],[516835.11756001617,5276193.169595673]]]},"properties":{"ID_SOURCE":"w145340587","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":1,"ID_BUILD":1977}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516462.15769500594,5276676.227952937],[516458.6767520253,5276672.117058231],[516457.06729425857,5276670.212020538],[516455.7122039351,5276671.319588448],[516452.2688390424,5276667.197689855],[516461.2280966282,5276659.665507059],[516469.6861213402,5276670.0254151365],[516462.15769500594,5276676.227952937]]]},"properties":{"ID_SOURCE":"w145340592","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1978}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516677.5002887559,5276149.705097958],[516680.14586579526,5276143.93341201],[516680.44568969874,5276144.156549947],[516687.797418264,5276147.511798322],[516686.9658987119,5276149.343220211],[516686.4367501761,5276150.508670565],[516685.22726859554,5276153.172557282],[516677.5002887559,5276149.705097958]]]},"properties":{"ID_SOURCE":"w145340596","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1979}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.5128061236,5276110.9798362525],[516781.49778041063,5276110.649255088],[516781.94456705544,5276112.006446141],[516783.92199508904,5276111.356419976],[516785.8371545224,5276116.674414445],[516782.8293332421,5276117.77714347],[516780.5128061236,5276110.9798362525]]]},"properties":{"ID_SOURCE":"w145340597","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1980}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.53803362144,5276140.862150645],[517025.728037038,5276139.776460164],[517026.7071985208,5276138.8679770585],[517025.60644878336,5276137.686678714],[517027.93377960473,5276135.548486336],[517034.6205075575,5276142.76989032],[517030.1240125398,5276146.902251577],[517024.53803362144,5276140.862150645]]]},"properties":{"ID_SOURCE":"w145340600","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1981}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516421.1939280671,5276606.761119545],[516421.71781169414,5276607.429435014],[516419.00824275735,5276609.422309774],[516412.4227589521,5276600.845989404],[516423.26167947304,5276592.65220814],[516429.3232734794,5276600.560224479],[516424.302643282,5276604.391496499],[516421.1939280671,5276606.761119545]]]},"properties":{"ID_SOURCE":"w145340601","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1982}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516580.79945962655,5276238.340730637],[516580.6568251824,5276235.67297286],[516582.91055957985,5276235.5682495665],[516582.98029413534,5276237.457822257],[516582.0038133147,5276237.455042103],[516582.07671230583,5276238.233227239],[516580.79945962655,5276238.340730637]]]},"properties":{"ID_SOURCE":"w145340608","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1983}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517150.707091166,5276514.283912312],[517145.73062654276,5276510.579419049],[517142.3130507869,5276508.035371946],[517142.6908929682,5276507.258505815],[517140.2932463963,5276505.250933063],[517145.1944041167,5276498.819253892],[517155.9857694905,5276507.186515328],[517150.707091166,5276514.283912312]]]},"properties":{"ID_SOURCE":"w145340614","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1984}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516753.98601893726,5276119.950240609],[516755.06880009937,5276119.564366495],[516755.5307431614,5276120.877143253],[516757.41796273424,5276120.24907654],[516759.36996549525,5276125.8227894725],[516756.4372693467,5276126.925748256],[516753.98601893726,5276119.950240609]]]},"properties":{"ID_SOURCE":"w145340618","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1985}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516786.44589287025,5276108.751911492],[516788.8449769497,5276115.571686974],[516785.8371545224,5276116.674414445],[516783.92199508904,5276111.356419976],[516785.77907854127,5276110.761617485],[516785.22783551266,5276109.159617877],[516786.44589287025,5276108.751911492]]]},"properties":{"ID_SOURCE":"w145340622","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1986}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516646.95172140555,5276561.945929143],[516655.6762102364,5276557.858704793],[516660.6057941624,5276567.541960992],[516650.2263630428,5276572.513563939],[516648.58221276436,5276569.619230738],[516650.3119584591,5276568.846197882],[516648.78117067565,5276565.707681375],[516646.95172140555,5276561.945929143]]]},"properties":{"ID_SOURCE":"w145340628","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1987}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.3181013553,5276684.2172127785],[517037.31062291126,5276686.773405833],[517032.1278369931,5276686.8693850655],[517032.15709154936,5276676.866890558],[517039.8935671247,5276676.778382975],[517040.0219951673,5276684.225123962],[517037.3181013553,5276684.2172127785]]]},"properties":{"ID_SOURCE":"w145340629","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1988}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.06602898974,5276125.906039263],[517043.2285759874,5276132.570221365],[517038.25002914394,5276137.145724565],[517032.79883419385,5276131.25049168],[517034.0114732069,5276130.131527175],[517034.99814913067,5276129.223067437],[517034.28679633734,5276128.454123179],[517037.06602898974,5276125.906039263]]]},"properties":{"ID_SOURCE":"w145340631","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1989}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516610.4459319329,5276431.030261574],[516611.2674025821,5276432.699699924],[516607.6573018895,5276434.356499586],[516602.50344844523,5276424.228093191],[516613.710914045,5276418.703068765],[516618.11807832675,5276427.273398719],[516613.7479517816,5276429.417040654],[516610.4459319329,5276431.030261574]]]},"properties":{"ID_SOURCE":"w145340634","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1990}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516643.5511308796,5276096.03868152],[516642.9090684559,5276084.144905878],[516646.1396868999,5276083.931858513],[516646.0690177223,5276082.375701664],[516647.4249159009,5276081.045901218],[516650.9563176823,5276080.722576563],[516652.7559225661,5276081.839117774],[516652.82658996567,5276083.395274705],[516656.4331065415,5276083.072168132],[516656.7259423284,5276085.740356817],[516660.0313584137,5276085.638670695],[516660.0358088613,5276084.082728514],[516661.76728938636,5276082.754005676],[516664.69776368374,5276082.428970381],[516666.49577536643,5276084.101209477],[516666.5680291326,5276085.101672959],[516669.9488797384,5276084.889068674],[516670.244571995,5276086.557009514],[516683.6934939802,5276085.4841200765],[516683.54740062443,5276084.038886311],[516698.7994313817,5276082.860057046],[516713.1194628133,5276092.347998964],[516707.40906920965,5276092.887314506],[516707.19137282483,5276090.21933865],[516698.4005924749,5276090.9721073685],[516698.75641647953,5276097.86378528],[516693.12114538904,5276098.403330171],[516692.82673436945,5276096.290833208],[516685.16301936435,5276096.935712418],[516685.52554452856,5276101.493476219],[516647.28341170575,5276104.273680792],[516646.924986146,5276098.2711159345],[516643.6189423409,5276098.59508694],[516643.5511308796,5276096.03868152]]]},"properties":{"ID_SOURCE":"w145340635","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1991}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516685.77629125695,5276171.289893432],[516685.1227927953,5276171.2880213335],[516685.0874343887,5276167.898160603],[516690.3456621367,5276167.846542259],[516690.38092193793,5276171.269744647],[516690.2831772004,5276171.302806448],[516685.77629125695,5276171.289893432]]]},"properties":{"ID_SOURCE":"w145340637","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1992}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516731.19418965396,5276363.691821756],[516731.19514747756,5276363.358405428],[516730.21900696337,5276363.2444616],[516730.30178144167,5276360.577346772],[516731.9539333214,5276360.693232677],[516731.9453125097,5276363.6939795995],[516731.19418965396,5276363.691821756]]]},"properties":{"ID_SOURCE":"w145340638","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1993}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.95738518384,5276135.399521269],[516990.4914795466,5276129.382031658],[516990.11687554425,5276129.047519895],[516994.7863480456,5276124.837834885],[517001.52434747043,5276132.526136721],[516999.17468524666,5276134.597590615],[516997.0057552777,5276136.51397731],[516995.95738518384,5276135.399521269]]]},"properties":{"ID_SOURCE":"w145340639","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1994}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.1587732574,5276594.188236292],[516604.18672958843,5276597.83311204],[516604.78380104783,5276599.168491069],[516601.70020324615,5276600.6045160955],[516597.14926422323,5276589.810991536],[516607.978641518,5276585.0628568325],[516609.91940955404,5276589.302815153],[516612.1587732574,5276594.188236292]]]},"properties":{"ID_SOURCE":"w145340643","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1995}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517290.4125223566,5276615.834214726],[517291.31449095363,5276615.614613164],[517291.2033911241,5276612.557938975],[517291.0364936441,5276608.056281839],[517300.051242635,5276607.5273556635],[517300.69519868016,5276618.309828695],[517290.4780621569,5276619.057463333],[517290.4125223566,5276615.834214726]]]},"properties":{"ID_SOURCE":"w145340645","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1996}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517074.79789526836,5276555.960548177],[517081.81081693637,5276546.534234166],[517088.5563624077,5276551.444173118],[517086.0151493906,5276554.848707687],[517083.4286778503,5276558.319794461],[517081.5551709339,5276556.8694820795],[517079.6696031221,5276559.531306113],[517074.79789526836,5276555.960548177]]]},"properties":{"ID_SOURCE":"w145340646","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1997}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517180.77885511704,5276097.598569968],[517171.63799912366,5276089.680696335],[517177.3667958312,5276082.918067365],[517182.7390338271,5276087.535096286],[517184.1101784657,5276088.717222082],[517184.863960156,5276087.830328471],[517187.26176451077,5276089.837917871],[517180.77885511704,5276097.598569968]]]},"properties":{"ID_SOURCE":"w145340648","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1998}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516665.35302038875,5276588.449811899],[516674.15386499744,5276583.918274801],[516679.3068139802,5276594.269025407],[516668.7017683238,5276599.351089029],[516666.90932475316,5276595.789487632],[516668.6397013743,5276594.794182568],[516667.3250298434,5276592.256434069],[516665.35302038875,5276588.449811899]]]},"properties":{"ID_SOURCE":"w145340650","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":1999}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516990.4914795466,5276129.382031658],[516995.95738518384,5276135.399521269],[516994.66199815227,5276136.562708091],[516993.6226518662,5276137.504362862],[516994.37088550953,5276138.506803078],[516992.4127025693,5276140.279324806],[516985.97192019207,5276133.7032969715],[516990.4914795466,5276129.382031658]]]},"properties":{"ID_SOURCE":"w145340668","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2000}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516378.9430712898,5276674.103937554],[516371.9361304754,5276681.864014206],[516372.98483263387,5276682.867219994],[516370.8001350197,5276685.195012014],[516362.4089466636,5276677.725068364],[516371.60089482693,5276667.526048989],[516375.4367859004,5276670.971051103],[516378.9430712898,5276674.103937554]]]},"properties":{"ID_SOURCE":"w145340674","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2001}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.44848438265,5276545.287587381],[516611.323737317,5276544.617540836],[516609.5737059533,5276547.235446622],[516607.09951542615,5276550.94045705],[516598.8529516835,5276545.471100946],[516604.9628410731,5276536.375062266],[516614.40895237285,5276542.6258269185],[516612.44848438265,5276545.287587381]]]},"properties":{"ID_SOURCE":"w145340677","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2002}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516744.9386395603,5276311.862429544],[516745.50198671845,5276311.864049237],[516745.5054697351,5276310.652636686],[516748.3973510506,5276310.649838084],[516748.3165812212,5276312.616778243],[516745.01193117234,5276312.496136464],[516744.9386395603,5276311.862429544]]]},"properties":{"ID_SOURCE":"w145340678","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2003}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516587.93970311026,5276606.0111510465],[516588.61188657244,5276607.346742369],[516585.527980596,5276608.893914777],[516580.82648332237,5276598.211113891],[516590.9792144777,5276593.6833006255],[516592.8755280316,5276597.711961165],[516595.23479239433,5276602.697743179],[516587.93970311026,5276606.0111510465]]]},"properties":{"ID_SOURCE":"w145340679","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2004}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516634.8472771201,5276513.44331253],[516643.6467330414,5276512.056979207],[516645.3363294047,5276522.708992377],[516634.8912453084,5276524.3462436665],[516634.374806668,5276521.07726106],[516636.02045140124,5276520.826340377],[516635.5481903408,5276517.868675062],[516634.8472771201,5276513.44331253]]]},"properties":{"ID_SOURCE":"w145340680","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2005}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516635.95500866266,5276488.517840442],[516635.5074685124,5276484.793381957],[516635.0894006649,5276481.269059179],[516644.10580535734,5276480.2056511985],[516645.3603406367,5276490.656368965],[516634.66083882557,5276491.937246675],[516634.271958199,5276488.713084487],[516635.95500866266,5276488.517840442]]]},"properties":{"ID_SOURCE":"w145340682","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2006}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516482.9520393269,5276281.963159623],[516482.9479504375,5276283.407963546],[516479.4924235492,5276283.509324858],[516479.1448436231,5276273.616912339],[516491.0888245886,5276273.317299966],[516491.290563267,5276281.653345188],[516485.8442172016,5276281.860205736],[516482.9520393269,5276281.963159623]]]},"properties":{"ID_SOURCE":"w145340687","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2007}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517010.9381010668,5276124.218146787],[517011.7614488391,5276125.220808598],[517009.39614029496,5276127.50337807],[517007.16643058194,5276129.652976825],[517000.3533198008,5276121.964449243],[517004.94768991554,5276117.754553149],[517005.621782191,5276118.423359291],[517010.9381010668,5276124.218146787]]]},"properties":{"ID_SOURCE":"w145340693","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2008}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516512.08596099174,5276577.010399696],[516512.60700080806,5276578.67897266],[516509.59946987143,5276579.781842904],[516505.6507959553,5276568.434400026],[516517.38019291,5276564.133206938],[516520.8074941019,5276573.923222807],[516515.22872252564,5276575.896800256],[516512.08596099174,5276577.010399696]]]},"properties":{"ID_SOURCE":"w145340701","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2009}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517053.4785263166,5276179.90127443],[517053.3406623045,5276175.677562471],[517056.1202324226,5276175.574561743],[517060.46451580606,5276179.810593393],[517060.7568358448,5276182.589941981],[517056.2499579439,5276182.576742275],[517053.4785263166,5276179.90127443]]]},"properties":{"ID_SOURCE":"w145340704","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2010}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.9600066232,5276293.363491201],[516426.9571854595,5276294.363740092],[516421.4739240063,5276294.348277347],[516421.2658189354,5276288.235009904],[516423.9007373334,5276286.130786277],[516423.9755372062,5276286.2421368575],[516427.7315144427,5276286.141590057],[516431.86274465726,5276286.153244015],[516431.78919915087,5276285.597338278],[516436.29662345775,5276285.387777441],[516436.2906642983,5276287.499413966],[516436.3500954807,5276293.056564195],[516436.2630639608,5276297.279625326],[516432.3571810303,5276297.2686039945],[516432.28144076833,5276297.490669604],[516431.83201620897,5276297.044843024],[516431.914968276,5276294.266585785],[516431.7669368122,5276293.488190592],[516426.9600066232,5276293.363491201]]]},"properties":{"ID_SOURCE":"w145340708","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2011}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1336627775,5276657.691808532],[517200.4081818678,5276649.020762026],[517201.46003083343,5276648.912729059],[517205.51688148873,5276648.591294106],[517206.1633059086,5276658.595785208],[517201.20516026573,5276658.9145574225],[517201.1336627775,5276657.691808532]]]},"properties":{"ID_SOURCE":"w145340709","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2012}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516926.9984406455,5276239.670006835],[516926.9268797258,5276238.447262269],[516928.48918438854,5276238.47403087],[516929.7885903656,5276238.500035701],[516929.77765462594,5276239.678084633],[516929.25185738684,5276239.676556299],[516927.29889621126,5276239.670880047],[516926.9984406455,5276239.670006835]]]},"properties":{"ID_SOURCE":"w145340710","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2013}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.87743278395,5276586.696636637],[517015.7301783533,5276592.241505661],[517012.65718851046,5276590.00973252],[517011.67719546804,5276591.22940712],[517008.64956131426,5276588.8977428125],[517004.85749615886,5276585.985921202],[517010.0595237749,5276579.332727664],[517011.6259037933,5276580.5042704865],[517019.87743278395,5276586.696636637]]]},"properties":{"ID_SOURCE":"w145340713","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2014}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.66606141155,5276135.731348239],[516724.8848492956,5276130.836088613],[516726.65194165247,5276130.185439086],[516726.092981248,5276128.65010673],[516727.43894981075,5276128.164957601],[516729.67386266513,5276134.62859023],[516726.66606141155,5276135.731348239]]]},"properties":{"ID_SOURCE":"w145340718","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2015}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516606.53989781404,5276523.298415293],[516605.8033739656,5276523.451910734],[516606.3738633178,5276526.209802204],[516607.2479618423,5276530.491173529],[516598.1017058145,5276532.343360063],[516595.64231768524,5276520.311034842],[516605.517605199,5276518.305327457],[516606.53989781404,5276523.298415293]]]},"properties":{"ID_SOURCE":"w145340719","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2016}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.9110310835,5276117.911203072],[516762.30234291696,5276124.830970901],[516759.36996549525,5276125.8227894725],[516757.41796273424,5276120.24907654],[516759.3879695881,5276119.565678823],[516758.9260272876,5276118.25290176],[516759.9110310835,5276117.911203072]]]},"properties":{"ID_SOURCE":"w145340720","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2017}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.52273153834,5276607.654278189],[516572.3024503038,5276611.079058287],[516572.9740041878,5276612.63692545],[516569.13838228094,5276614.404246755],[516564.21248032857,5276603.387401706],[516575.41766787303,5276598.529135834],[516577.2537450183,5276602.613189684],[516579.52273153834,5276607.654278189]]]},"properties":{"ID_SOURCE":"w145340725","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2018}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516507.2013660457,5276524.872031629],[516510.55769394356,5276533.217023379],[516497.2477809634,5276538.625149876],[516492.8455607688,5276528.276689207],[516499.4634410816,5276525.405802542],[516500.35846566875,5276527.631132276],[516503.3964121917,5276526.406089745],[516507.2013660457,5276524.872031629]]]},"properties":{"ID_SOURCE":"w145340730","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2019}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516545.25894905085,5276691.800742965],[516547.12938696094,5276694.362271249],[516537.19587691745,5276701.113577762],[516531.13768947317,5276692.0940589635],[516539.3408798961,5276686.33808519],[516542.205650476,5276690.525076018],[516543.7539465021,5276692.796724836],[516545.25894905085,5276691.800742965]]]},"properties":{"ID_SOURCE":"w145340731","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2020}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.33696618566,5276216.530062196],[516957.38910641416,5276224.42113199],[516955.58636827715,5276224.415883651],[516955.6002806121,5276219.636917478],[516953.87330216554,5276219.409610847],[516953.9571511145,5276216.409083314],[516957.33696618566,5276216.530062196]]]},"properties":{"ID_SOURCE":"w145340736","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2021}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516434.17619177676,5276664.145831394],[516433.20417321083,5276662.587132395],[516430.24717574933,5276664.434822155],[516425.0780443309,5276667.676634144],[516419.39519100473,5276658.658291768],[516431.88640317426,5276650.469185152],[516438.61574423517,5276661.268729025],[516434.17619177676,5276664.145831394]]]},"properties":{"ID_SOURCE":"w145340745","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2022}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516593.44312766456,5276488.12982429],[516602.9655119441,5276486.100878971],[516604.1959677301,5276491.850309523],[516605.4116207543,5276497.521900404],[516593.95023090445,5276499.956533404],[516593.0755478738,5276495.875214152],[516595.01457250724,5276495.469522175],[516593.44312766456,5276488.12982429]]]},"properties":{"ID_SOURCE":"w145340761","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2023}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516745.77984305884,5276129.006751267],[516743.92439213005,5276123.811195295],[516745.75154912646,5276123.171838187],[516745.2672930913,5276121.781200305],[516746.5380216279,5276121.3402951285],[516748.77230879257,5276128.015098654],[516745.77984305884,5276129.006751267]]]},"properties":{"ID_SOURCE":"w145340764","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2024}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516358.9090110873,5276693.719354116],[516360.33262889093,5276694.945890267],[516357.99741271965,5276697.38440394],[516349.3821496108,5276689.46929065],[516357.74443225376,5276680.490457033],[516361.3625717074,5276683.912610364],[516364.9357669719,5276687.290183801],[516358.9090110873,5276693.719354116]]]},"properties":{"ID_SOURCE":"w145340768","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2025}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516481.4780101886,5276590.482740645],[516482.45034261665,5276591.930308711],[516479.3655135281,5276593.810953705],[516473.08462493203,5276583.790610337],[516482.5644564276,5276578.149308077],[516487.72309929744,5276586.610528368],[516483.18601232814,5276589.420633496],[516481.4780101886,5276590.482740645]]]},"properties":{"ID_SOURCE":"w145340771","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2026}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516766.9063664702,5276114.597146554],[516768.06432898884,5276114.189263344],[516768.53378111025,5276115.502062747],[516770.4361549446,5276114.829588012],[516772.1568574699,5276119.858054962],[516769.2241558716,5276120.961007308],[516766.9063664702,5276114.597146554]]]},"properties":{"ID_SOURCE":"w145340775","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2027}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517055.8946269752,5276150.011772415],[517055.8344825122,5276144.899170682],[517054.86124027136,5276143.784923953],[517055.53857822495,5276143.34234858],[517056.7365148534,5276144.679532798],[517056.796333061,5276149.903273276],[517055.8946269752,5276150.011772415]]]},"properties":{"ID_SOURCE":"w145340776","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2028}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516678.300130347,5276132.703022092],[516683.01806694554,5276137.717817807],[516680.6824934411,5276140.156200781],[516676.93787267606,5276136.255590159],[516678.36888073257,5276134.926011889],[516677.2456526611,5276133.700259538],[516678.300130347,5276132.703022092]]]},"properties":{"ID_SOURCE":"w145340777","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2029}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517015.26666230743,5276159.573209172],[517009.42587351566,5276153.33232682],[517008.2276033374,5276152.106291072],[517010.374321322,5276150.078703964],[517013.048274708,5276147.56364305],[517020.3113789418,5276155.47578037],[517015.56582329323,5276160.018641876],[517015.26666230743,5276159.573209172]]]},"properties":{"ID_SOURCE":"w145340778","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2030}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516558.9441761684,5276501.45730691],[516562.3020241777,5276509.2466343045],[516551.5479702914,5276513.883928285],[516547.4437429604,5276504.425390849],[516551.7304091634,5276502.548197404],[516552.4764600002,5276504.328552963],[516554.82287623367,5276503.290509247],[516558.9441761684,5276501.45730691]]]},"properties":{"ID_SOURCE":"w145340781","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2031}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516522.9577909081,5276663.1745154485],[516524.0869399849,5276662.288601468],[516526.4061547434,5276665.518234641],[516517.6759289262,5276671.717290536],[516510.79400854855,5276661.8063395005],[516518.09402760776,5276656.714613711],[516521.22180230345,5276660.868997949],[516522.9577909081,5276663.1745154485]]]},"properties":{"ID_SOURCE":"w145340783","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2032}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517043.2285759874,5276132.570221365],[517037.06602898974,5276125.906039263],[517036.7742168642,5276125.51619682],[517039.3425111329,5276123.1786623895],[517041.5191666909,5276121.195630192],[517048.0324135952,5276128.661049143],[517043.43802069605,5276132.870911374],[517043.2285759874,5276132.570221365]]]},"properties":{"ID_SOURCE":"w145340789","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2033}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.3364870518,5276699.455163351],[516580.8186451935,5276698.570265338],[516584.903970909,5276696.136824478],[516589.01528162544,5276703.039198399],[516576.3765905208,5276710.227291784],[516571.74172857526,5276702.545458724],[516578.6633630765,5276698.452989393],[516579.3364870518,5276699.455163351]]]},"properties":{"ID_SOURCE":"w145340790","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2034}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.51576838526,5276076.65703624],[517271.670561467,5276071.971833312],[517275.74232184293,5276066.760342959],[517276.6566618438,5276067.463235031],[517277.6159394238,5276068.210716424],[517278.29462192,5276067.323612073],[517282.3419891116,5276070.3363914825],[517277.51576838526,5276076.65703624]]]},"properties":{"ID_SOURCE":"w145340795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2035}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517024.53803362144,5276140.862150645],[517030.1240125398,5276146.902251577],[517030.55073870963,5276147.392513904],[517025.353828608,5276152.156327095],[517018.6155586762,5276144.579136055],[517020.6268809207,5276142.617840917],[517023.51200921426,5276139.814438729],[517024.53803362144,5276140.862150645]]]},"properties":{"ID_SOURCE":"w145340796","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2036}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516487.04796895076,5276612.83758845],[516490.25033207156,5276617.192218178],[516492.2854600518,5276619.965360097],[516493.2637652643,5276619.301292427],[516495.1339347052,5276621.973942438],[516486.62994802126,5276627.840266286],[516479.52259554947,5276617.928715239],[516487.04796895076,5276612.83758845]]]},"properties":{"ID_SOURCE":"w145340798","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2037}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.73532960116,5276127.239594564],[517238.0121524776,5276122.262862331],[517235.1431382534,5276122.121004389],[517229.24611871305,5276117.180069006],[517232.1784355163,5276113.698957105],[517239.1545859276,5276119.498864973],[517243.9489725602,5276113.756020617],[517250.49807233,5276119.17680285],[517247.61668252526,5276123.213754925],[517244.73532960116,5276127.239594564]]]},"properties":{"ID_SOURCE":"w145340802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2038}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517280.4204377207,5276262.268975632],[517278.97888904467,5276259.51954745],[517276.685856254,5276255.144953765],[517285.036010884,5276250.946419266],[517290.2626302963,5276261.520207296],[517281.30959984456,5276266.3837838555],[517279.44231214473,5276262.821772299],[517280.4204377207,5276262.268975632]]]},"properties":{"ID_SOURCE":"w145340803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2039}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516683.1870534222,5276183.618978079],[516683.1225049812,5276185.174748375],[516683.02568237786,5276187.508403829],[516673.03608265484,5276187.257519566],[516673.2060370855,5276180.367347473],[516683.87199878384,5276180.509029687],[516683.7128556694,5276183.620484187],[516683.1870534222,5276183.618978079]]]},"properties":{"ID_SOURCE":"w145340804","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2040}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516411.8994838646,5276120.16548458],[516410.10444459214,5276120.082629203],[516406.41668455285,5276119.927758926],[516406.4961827375,5276118.372028213],[516410.70170795266,5276118.717294673],[516410.6287844529,5276117.939111888],[516411.98054930946,5276118.054060262],[516411.8994838646,5276120.16548458]]]},"properties":{"ID_SOURCE":"w145340805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2041}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516596.87084797036,5276687.502018275],[516600.7571434927,5276694.292619408],[516591.5784497238,5276699.712308407],[516586.94454895373,5276691.697046845],[516590.10446955904,5276689.816672554],[516590.9268588121,5276691.152692287],[516592.8530134477,5276689.968984987],[516596.87084797036,5276687.502018275]]]},"properties":{"ID_SOURCE":"w145340807","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2042}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516737.3138324016,5276560.42669231],[516740.54387106816,5276560.3248365745],[516740.6908958065,5276561.436656485],[516742.9818705536,5276561.398786612],[516746.0240066223,5276561.340849599],[516746.08665275556,5276565.675479162],[516743.1471504234,5276569.223498702],[516737.28923768434,5276568.984380702],[516737.3138324016,5276560.42669231]]]},"properties":{"ID_SOURCE":"w145340810","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2043}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517063.6984623697,5276575.822033236],[517068.9447306069,5276579.727299153],[517070.44366309844,5276580.843090288],[517069.11632858904,5276582.68411984],[517065.4662444201,5276587.7191679785],[517063.6668750787,5276586.6024978],[517061.3293662733,5276589.707562672],[517056.2336463745,5276585.691604692],[517063.6984623697,5276575.822033236]]]},"properties":{"ID_SOURCE":"w145340812","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2044}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516671.77373182547,5276460.301870441],[516677.75995424646,5276460.36346583],[516677.72045737127,5276463.664201936],[516677.7086496993,5276465.164554137],[516679.2108055493,5276465.191083946],[516679.1492195798,5276470.959058283],[516672.45671105385,5276470.984351197],[516671.65327894,5276470.893139448],[516671.77373182547,5276460.301870441]]]},"properties":{"ID_SOURCE":"w145340818","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2045}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517019.87743278395,5276586.696636637],[517019.9525422027,5276586.696856147],[517025.00469240185,5276579.932098083],[517033.99702825956,5276587.071338014],[517030.1521479841,5276591.950242709],[517027.7535231078,5276590.276132468],[517026.62233341107,5276591.828781774],[517023.4897148157,5276589.4412328955],[517019.87743278395,5276586.696636637]]]},"properties":{"ID_SOURCE":"w145340819","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2046}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.36916278093,5276185.204764847],[516886.3585295837,5276188.872343358],[516886.2689152814,5276193.873369042],[516885.9684573583,5276193.872497952],[516880.0420858773,5276193.799749511],[516873.2744320816,5276193.724569846],[516873.30450050905,5276191.123988522],[516873.37820191047,5276183.833439309],[516886.3727071771,5276183.98223868],[516886.36916278093,5276185.204764847]]]},"properties":{"ID_SOURCE":"w145340823","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2047}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516612.8255744459,5276202.42274308],[516622.06495814346,5276202.3379641725],[516621.96460226394,5276208.550384411],[516621.8136069239,5276211.450698475],[516621.4383528619,5276211.338487916],[516615.57944157236,5276211.321770827],[516612.6503029235,5276211.202275749],[516612.8255744459,5276202.42274308]]]},"properties":{"ID_SOURCE":"w145340828","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2048}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516765.7976703733,5276345.786701586],[516765.7334355444,5276342.007767135],[516765.7356750666,5276341.229795739],[516774.4484138466,5276341.366023054],[516774.35729642684,5276346.922745282],[516774.35697633075,5276347.033884055],[516765.7190386014,5276347.009011852],[516765.7976703733,5276345.786701586]]]},"properties":{"ID_SOURCE":"w145340829","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2049}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516373.9193650266,5276697.762569255],[516373.0155696464,5276698.64914584],[516370.8436875874,5276696.420245568],[516376.86889120936,5276690.54678173],[516378.9021227548,5276688.663124815],[516388.41363867844,5276698.359039599],[516381.10847107467,5276705.340288143],[516376.5029638901,5276700.481643239],[516373.9193650266,5276697.762569255]]]},"properties":{"ID_SOURCE":"w145340830","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2050}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517118.788082462,5276180.993093768],[517120.52094647364,5276179.219951966],[517124.2652438269,5276183.120848801],[517123.21102515334,5276184.006867009],[517125.38248664717,5276186.3471850185],[517121.76620511943,5276190.004163402],[517122.88965587306,5276191.118863092],[517120.78024206817,5276193.224316435],[517119.28317874676,5276191.441680793],[517113.8912613316,5276185.868850156],[517116.0006752742,5276183.763394343],[517117.27435754513,5276184.878534405],[517118.40434305865,5276183.770458411],[517117.2812166462,5276182.544620863],[517118.788082462,5276180.993093768]]]},"properties":{"ID_SOURCE":"w145340832","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2051}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.16778319434,5276143.872051493],[516983.61915087374,5276149.722777767],[516982.21067567077,5276151.0301191835],[516980.88515163807,5276152.226563099],[516981.95586162416,5276153.407765401],[516979.7566391196,5276155.412981934],[516973.2494541728,5276148.425557603],[516978.16778319434,5276143.872051493]]]},"properties":{"ID_SOURCE":"w145340833","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2052}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.4979184417,5276515.980232304],[516678.9300190825,5276516.025582875],[516678.88514644536,5276505.467181637],[516685.1193142669,5276505.485039049],[516685.1626258203,5276508.719328781],[516685.18073302176,5276510.26422267],[516686.6078305081,5276510.268311469],[516686.5161613529,5276516.04731395],[516682.4979184417,5276515.980232304]]]},"properties":{"ID_SOURCE":"w145340837","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2053}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516562.6941762543,5276609.05120901],[516552.76682121475,5276613.579712032],[516553.3639027952,5276614.915085799],[516550.13010807586,5276616.350711133],[516548.8614660468,5276613.457473245],[516545.5775074416,5276606.112920895],[516558.51334604557,5276600.148142631],[516560.5365753596,5276604.455002734],[516562.6941762543,5276609.05120901]]]},"properties":{"ID_SOURCE":"w145340842","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2054}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.7765466697,5276138.338035167],[516694.47558127705,5276139.517767079],[516692.1432681735,5276132.953843282],[516690.3311432628,5276133.593260249],[516688.93256656965,5276134.08938116],[516686.4064734528,5276126.991434225],[516692.95561269985,5276124.7096095625],[516696.00317309814,5276133.320553333],[516697.7765466697,5276138.338035167]]]},"properties":{"ID_SOURCE":"w145340844","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2055}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516971.93300774373,5276595.0033363495],[516971.5658822164,5276592.112632766],[516970.82968680415,5276586.998058582],[516984.05412949633,5276585.258374974],[516985.4549525987,5276594.264780842],[516979.398613931,5276595.114010015],[516975.31098295155,5276595.680020333],[516975.16400389385,5276594.568194334],[516971.93300774373,5276595.0033363495]]]},"properties":{"ID_SOURCE":"w145340846","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2056}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517012.5335728286,5276223.481661524],[517013.94130263606,5276224.997273456],[517015.22923882306,5276226.379168131],[517015.0621274216,5276232.1579442015],[517012.8090323254,5276232.040222791],[517006.8177615644,5276225.910042107],[517006.6749973252,5276223.353412243],[517012.1580023149,5276223.480564518],[517012.5335728286,5276223.481661524]]]},"properties":{"ID_SOURCE":"w145340848","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2057}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516696.51532750734,5276434.166007302],[516696.5275943874,5276429.887163988],[516696.54432194214,5276424.052377692],[516706.75980560255,5276423.970533366],[516706.71723159426,5276428.338201481],[516706.7397202572,5276430.97227692],[516703.5850407293,5276430.963228191],[516703.65090820706,5276434.18646845],[516696.51532750734,5276434.166007302]]]},"properties":{"ID_SOURCE":"w145340849","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2058}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516573.06146317127,5276238.763265674],[516572.84402751137,5276235.984155605],[516574.4217362683,5276235.877505467],[516574.3519989143,5276233.987932896],[516578.1831268961,5276233.887696793],[516578.55173698295,5276236.333818409],[516578.6208402384,5276238.44566855],[516573.06146317127,5276238.763265674]]]},"properties":{"ID_SOURCE":"w145340850","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2059}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.23573725903,5276311.730889583],[516726.81410701777,5276311.732550609],[516726.8158944614,5276311.11017352],[516726.8171392883,5276310.676732333],[516729.8442238768,5276310.674312818],[516729.76368378376,5276312.563456083],[516726.30848830816,5276312.553532167],[516726.23573725903,5276311.730889583]]]},"properties":{"ID_SOURCE":"w145340854","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2060}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516523.1944781963,5276526.806760082],[516519.38844864746,5276518.127066352],[516524.24669084116,5276515.984738782],[516534.8804160415,5276511.391508746],[516536.74618338863,5276515.620114875],[516534.3394977989,5276516.724678566],[516536.12983797805,5276521.064210095],[516523.1944781963,5276526.806760082]]]},"properties":{"ID_SOURCE":"w145340856","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2061}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.4235602682,5276492.118323116],[516683.5201754362,5276492.121464474],[516683.5396495066,5276495.81135865],[516683.5505326919,5276497.256206069],[516684.5570142206,5276497.259089426],[516684.5857784996,5276502.949525065],[516676.864229345,5276502.994092675],[516676.82018012024,5276492.146730802],[516682.4235602682,5276492.118323116]]]},"properties":{"ID_SOURCE":"w145340857","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2062}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517033.99702825956,5276587.071338014],[517039.0482189989,5276580.640008525],[517048.565651787,5276588.003086947],[517044.9464131702,5276592.77150274],[517044.7201093022,5276593.104259682],[517042.02267777367,5276590.873570176],[517040.8163750281,5276592.4259969415],[517037.8638299467,5276590.105651076],[517033.99702825956,5276587.071338014]]]},"properties":{"ID_SOURCE":"w145340858","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2063}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516726.66606141155,5276135.731348239],[516723.26731119596,5276136.955238914],[516720.91227150214,5276130.469035964],[516719.1301887275,5276131.108530231],[516717.76916659105,5276131.604752032],[516715.32490508875,5276124.79599037],[516721.836692042,5276122.447407135],[516724.8848492956,5276130.836088613],[516726.66606141155,5276135.731348239]]]},"properties":{"ID_SOURCE":"w145340860","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2064}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517238.5852016031,5276591.007536846],[517228.63874826353,5276591.644941628],[517223.56036934437,5276591.963339397],[517223.13370724954,5276583.848873494],[517233.95111420663,5276583.32517637],[517234.0987019883,5276584.21473138],[517238.15527063305,5276584.004457892],[517238.22741933283,5276585.004929495],[517238.5852016031,5276591.007536846]]]},"properties":{"ID_SOURCE":"w145340861","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2065}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516966.02005650825,5276082.498668978],[516951.6799746239,5276082.612512055],[516951.62549494975,5276075.5216429],[516957.6349374579,5276075.4835657105],[516960.6096285297,5276075.458885016],[516960.59826226823,5276074.2029737085],[516965.9617407844,5276074.151910202],[516965.96067248995,5276074.518667985],[516966.02005650825,5276082.498668978]]]},"properties":{"ID_SOURCE":"w145340867","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2066}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516774.6965743838,5276385.600337075],[516774.6214623781,5276385.600120734],[516773.9444940577,5276385.931590048],[516773.642765707,5276386.37527984],[516773.1908134233,5276386.818537006],[516772.5170459854,5276386.038618699],[516773.72267903294,5276384.708414491],[516774.6965743838,5276385.600337075]]]},"properties":{"ID_SOURCE":"w145340870","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2067}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.836692042,5276122.447407135],[516728.3786900476,5276120.043348102],[516730.89038254065,5276126.907878781],[516729.1308321686,5276127.547434723],[516727.43894981075,5276128.164957601],[516726.092981248,5276128.65010673],[516726.65194165247,5276130.185439086],[516724.8848492956,5276130.836088613],[516721.836692042,5276122.447407135]]]},"properties":{"ID_SOURCE":"w145340873","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2068}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516915.57037831744,5276639.006289835],[516915.887276741,5276641.096637808],[516910.57470249827,5276641.903642877],[516907.5990749046,5276642.350675981],[516906.4122810718,5276634.611903307],[516906.294300976,5276633.855810451],[516918.10673275654,5276632.056308758],[516919.0945604136,5276638.471942666],[516915.57037831744,5276639.006289835]]]},"properties":{"ID_SOURCE":"w145340874","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2069}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516995.5145778916,5276166.161693045],[517001.14605286194,5276172.057417559],[516996.3631953153,5276176.522388016],[516989.92310617457,5276169.724077852],[516991.6556098473,5276168.062036567],[516992.5540694681,5276169.064914876],[516993.6843584312,5276167.845676025],[516995.5145778916,5276166.161693045]]]},"properties":{"ID_SOURCE":"w145340875","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2070}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516590.50791520556,5276258.151236141],[516590.5243773496,5276252.372020749],[516592.5581468393,5276250.377300453],[516592.5647958208,5276248.043386567],[516598.8743527516,5276248.061364991],[516601.12079674867,5276250.512840151],[516600.8732811024,5276258.291910871],[516590.50791520556,5276258.151236141]]]},"properties":{"ID_SOURCE":"w145340877","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2071}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516894.37288275093,5276093.204328826],[516894.3132402408,5276087.869452113],[516902.5863040721,5276084.336984994],[516904.9729168282,5276090.234313323],[516919.56217322784,5276084.497412228],[516921.35333112377,5276088.503643406],[516936.31948041427,5276082.323320482],[516937.5274384579,5276085.39428774],[516939.0784070181,5276089.333142193],[516937.80014514114,5276089.773983551],[516939.14350317064,5276092.778661134],[516940.27153291006,5276092.337383134],[516942.13617351436,5276096.899532895],[516934.5404368767,5276099.989354521],[516933.79380354506,5276098.431228453],[516925.9720804333,5276101.74268355],[516923.4355851261,5276095.73377122],[516915.8395342536,5276098.934755935],[516915.81952241034,5276105.825357049],[516915.89237861475,5276106.603546303],[516915.6660634856,5276106.93630803],[516914.8381780889,5276107.489602072],[516904.2342995978,5276111.793264396],[516904.237525112,5276110.681877102],[516901.003363917,5276112.117307333],[516898.3901197069,5276106.663881541],[516894.55471068353,5276108.208710683],[516894.43381456414,5276098.094650677],[516895.86262512277,5276097.543096875],[516894.37288275093,5276093.204328826]]]},"properties":{"ID_SOURCE":"w145340878","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2072}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517246.790487916,5276559.46813298],[517252.1249282664,5276558.928234314],[517252.3361002781,5276563.7078704275],[517252.71164888964,5276563.708982975],[517252.99970784533,5276567.888692115],[517253.4321247181,5276574.047117097],[517245.09331479575,5276574.5781172095],[517244.31153618847,5276559.571931944],[517246.790487916,5276559.46813298]]]},"properties":{"ID_SOURCE":"w145340881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2073}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516721.4361534763,5276466.023461445],[516726.91957317555,5276465.928068187],[516726.96292583155,5276469.140130322],[516726.9809583127,5276470.707252034],[516728.4831764227,5276470.711566798],[516728.61647866573,5276476.602354399],[516722.60793142585,5276476.473958718],[516721.25593646866,5276476.470076772],[516721.4361534763,5276466.023461445]]]},"properties":{"ID_SOURCE":"w145340901","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2074}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516897.0251113974,5276654.800981086],[516896.5093478744,5276651.354152069],[516896.06740254816,5276648.35209633],[516908.0896218744,5276646.719892749],[516909.2678028349,5276654.836516116],[516906.630299391,5276655.240075571],[516900.7766677294,5276656.145544558],[516900.3314996623,5276654.254876706],[516897.0251113974,5276654.800981086]]]},"properties":{"ID_SOURCE":"w145340905","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2075}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516390.4344471359,5276540.768627366],[516389.9856638759,5276540.100526188],[516391.1896135092,5276539.325936798],[516395.25337610114,5276536.558883584],[516395.7766432904,5276537.449474243],[516397.87064923457,5276540.678420934],[516392.7534718403,5276544.109345215],[516390.4344471359,5276540.768627366]]]},"properties":{"ID_SOURCE":"w145340906","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2076}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.92199508904,5276111.356419976],[516781.10702695005,5276102.879467578],[516787.3178900074,5276100.707913823],[516788.532088676,5276104.245654405],[516789.6941214169,5276107.638763342],[516787.8895534067,5276108.255943883],[516786.44589287025,5276108.751911492],[516785.22783551266,5276109.159617877],[516785.77907854127,5276110.761617485],[516783.92199508904,5276111.356419976]]]},"properties":{"ID_SOURCE":"w145340909","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2077}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516688.5475384418,5276200.305283572],[516690.6066234345,5276202.600660803],[516691.8420609111,5276203.982333048],[516692.6705483633,5276203.206729813],[516694.99208484765,5276205.6584563395],[516691.5269524236,5276209.0938543985],[516688.81519557734,5276211.75343552],[516682.97315651696,5276205.846296984],[516688.5475384418,5276200.305283572]]]},"properties":{"ID_SOURCE":"w145340915","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2078}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517223.470358274,5276675.729132691],[517225.79176289716,5276675.547061226],[517237.33876741567,5276674.614312157],[517237.96904946025,5276682.4404196525],[517231.74857850996,5276682.933253015],[517227.6391416107,5276683.265628006],[517227.7188673162,5276684.243894093],[517224.18041798216,5276684.522390805],[517223.470358274,5276675.729132691]]]},"properties":{"ID_SOURCE":"w145340929","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2079}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516691.5269524236,5276209.0938543985],[516694.22278403427,5276211.991211969],[516693.69507308234,5276212.656537398],[516694.9305713885,5276214.0159825785],[516696.5404931512,5276215.77660415],[516691.2668932515,5276221.207332314],[516685.42550299875,5276215.077913702],[516688.81519557734,5276211.75343552],[516691.5269524236,5276209.0938543985]]]},"properties":{"ID_SOURCE":"w145340947","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2080}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.3580005194,5276171.215600691],[516683.2674262466,5276171.293820569],[516683.9510342829,5276171.273550777],[516683.93384484365,5276174.652147025],[516683.91452412086,5276176.15247702],[516683.8952989121,5276177.619465391],[516679.0578814306,5276177.616724722],[516675.9784657722,5276177.50788151],[516675.29482668004,5276177.53926611],[516675.3580005194,5276171.215600691]]]},"properties":{"ID_SOURCE":"w145340948","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2081}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.50293789245,5276551.090502597],[517121.6138564258,5276548.429353903],[517119.81513897487,5276547.090388844],[517121.7909264959,5276544.406615028],[517124.71689276857,5276540.436414552],[517131.5368655295,5276545.568901776],[517124.37396903895,5276554.883575571],[517123.0249330065,5276553.87935107],[517119.50293789245,5276551.090502597]]]},"properties":{"ID_SOURCE":"w145340957","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2082}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.86156171677,5276566.396145998],[517073.1847487064,5276568.181192549],[517077.4568739679,5276571.30563195],[517074.553357904,5276575.320377837],[517072.47943891987,5276578.18170358],[517070.9801803454,5276577.177050733],[517068.9447306069,5276579.727299153],[517063.6984623697,5276575.822033236],[517070.86156171677,5276566.396145998]]]},"properties":{"ID_SOURCE":"w145340960","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2083}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516560.63958416146,5276565.589737603],[516558.47973147535,5276559.137492942],[516556.8412193121,5276554.242687237],[516567.21649213997,5276550.715722627],[516570.41965346655,5276560.060571411],[516566.0963853038,5276561.615341803],[516563.0513120615,5276562.70696375],[516563.6471322065,5276564.486893703],[516560.63958416146,5276565.589737603]]]},"properties":{"ID_SOURCE":"w145340961","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2084}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.43732122966,5276548.1922605205],[516697.4649700194,5276548.309213435],[516697.4567807124,5276551.165480799],[516697.4509494133,5276553.1993209915],[516699.25358558825,5276553.204489678],[516699.3875521996,5276558.872999691],[516691.42591683764,5276558.8501753425],[516691.45617771894,5276548.2919885125],[516695.43732122966,5276548.1922605205]]]},"properties":{"ID_SOURCE":"w145340962","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2085}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516676.93787267606,5276136.255590159],[516670.49673149735,5276129.67991209],[516675.69368777523,5276124.804644369],[516680.78593640315,5276130.265068428],[516679.4375534611,5276131.594882713],[516678.300130347,5276132.703022092],[516677.2456526611,5276133.700259538],[516678.36888073257,5276134.926011889],[516676.93787267606,5276136.255590159]]]},"properties":{"ID_SOURCE":"w145340963","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2086}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517161.0027122569,5276349.305057677],[517161.4758642451,5276316.186812168],[517166.884649071,5276315.980472727],[517166.46921705775,5276354.989294],[517162.788381375,5276355.089585676],[517162.71326896537,5276355.089364331],[517162.7299718989,5276349.421287115],[517161.0027122569,5276349.305057677]]]},"properties":{"ID_SOURCE":"w145340964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2087}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.1954257455,5276687.207484216],[517244.64174318523,5276678.881473555],[517251.08734681905,5276678.456004726],[517250.81408383173,5276674.35413662],[517257.31226877397,5276673.928830416],[517257.513547796,5276676.974657421],[517258.1316476113,5276686.367802383],[517251.63347647805,5276686.79310765],[517245.1954257455,5276687.207484216]]]},"properties":{"ID_SOURCE":"w145340965","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2088}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516745.77984305884,5276129.006751267],[516742.62928480556,5276130.120204589],[516740.2820308832,5276123.545104435],[516738.7631351063,5276124.08532346],[516736.5374525672,5276124.868019145],[516734.15295119624,5276118.181674887],[516741.0405861895,5276115.745281187],[516743.92439213005,5276123.811195295],[516745.77984305884,5276129.006751267]]]},"properties":{"ID_SOURCE":"w145340966","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2089}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517203.6539356513,5276287.603854497],[517206.5233438754,5276282.499903461],[517213.7975134657,5276286.522428257],[517213.41964770167,5276287.299289563],[517215.32447006635,5276288.338519025],[517229.0933380521,5276295.792253544],[517226.3757862515,5276300.340944129],[517208.7531009279,5276290.508551618],[517203.6539356513,5276287.603854497]]]},"properties":{"ID_SOURCE":"w145340967","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2090}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516973.9911678581,5276533.104492986],[516970.5972869465,5276537.873611258],[516969.0895808534,5276539.75859366],[516966.61613068025,5276537.973151174],[516966.088741484,5276538.527313466],[516961.3295472146,5276534.979206759],[516954.546709278,5276529.93593971],[516959.8244862561,5276523.060642971],[516973.9911678581,5276533.104492986]]]},"properties":{"ID_SOURCE":"w145340969","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2091}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517091.0850754668,5276585.571501407],[517094.8323913051,5276588.360994287],[517087.8939553439,5276598.009791176],[517085.81071067223,5276596.36992424],[517082.7907174182,5276594.004901684],[517082.49847564904,5276593.770650933],[517084.534578573,5276590.998129568],[517083.03565139254,5276589.882334773],[517086.60234649054,5276585.113788333],[517088.03506752686,5276583.195274129],[517091.0850754668,5276585.571501407]]]},"properties":{"ID_SOURCE":"w145340970","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2092}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.4476048942,5276133.164074187],[516702.1436367559,5276129.481612459],[516700.90672902315,5276125.98828074],[516707.44091584464,5276123.684201528],[516710.51089434116,5276132.328559187],[516712.2172260661,5276137.1458017565],[516709.12683463295,5276138.237217866],[516706.89142225496,5276131.940301237],[516705.3123758386,5276132.50258436],[516703.4476048942,5276133.164074187]]]},"properties":{"ID_SOURCE":"w145340977","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2093}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517042.96208691545,5276526.52639938],[517035.24264163716,5276520.724546939],[517037.1275512254,5276518.2849863],[517039.90077910625,5276520.293615364],[517044.9530095337,5276513.528875118],[517053.49769165326,5276519.666576057],[517047.9183838059,5276526.8743250575],[517045.66247897124,5276525.189511538],[517044.62069139443,5276524.419598129],[517042.96208691545,5276526.52639938]]]},"properties":{"ID_SOURCE":"w145340979","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2094}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517176.10789369897,5276229.618760244],[517176.1587540177,5276237.843249116],[517168.4223475765,5276237.709299538],[517168.3727867442,5276229.040255772],[517171.22712011455,5276229.048670186],[517171.44689196337,5276230.9386932505],[517172.798944172,5276230.942679565],[517172.9531044874,5276229.60945754],[517176.10789369897,5276229.618760244]]]},"properties":{"ID_SOURCE":"w145340980","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2095}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517247.58010644733,5276089.905078621],[517242.52925038815,5276096.002807698],[517229.7135455804,5276111.524441007],[517220.7213660682,5276104.16262798],[517233.4609604982,5276088.974169004],[517236.4006739231,5276085.537537054],[517240.01939480496,5276081.102659067],[517248.7862383781,5276088.463834247],[517247.58010644733,5276089.905078621]]]},"properties":{"ID_SOURCE":"w145340981","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2096}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.87330409273,5276381.089249704],[516494.9884055601,5276381.645057851],[516495.2745434024,5276384.046485186],[516490.87146874383,5276384.567486577],[516486.49095995055,5276385.0774412025],[516485.46386681375,5276376.427867439],[516489.8443820108,5276375.917912031],[516489.8884108678,5276376.2847976005],[516498.1610882979,5276375.307969193],[516498.87330409273,5276381.089249704]]]},"properties":{"ID_SOURCE":"w145340985","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2097}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516760.00347881654,5276506.033481069],[516769.7678374289,5276506.061589475],[516769.7543963527,5276510.729419077],[516768.6280604965,5276510.615036163],[516768.61526032165,5276515.060588199],[516760.87921569793,5276514.927179045],[516760.97072912904,5276511.837758162],[516761.04542934836,5276509.370671343],[516759.84366282116,5276509.367212761],[516760.00347881654,5276506.033481069]]]},"properties":{"ID_SOURCE":"w145340987","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2098}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517263.03295058414,5276249.102925636],[517260.90403226216,5276245.106699823],[517259.2980099922,5276242.09005389],[517266.5204732807,5276238.221570475],[517266.8189520654,5276238.889293689],[517269.0759942171,5276237.673448403],[517270.95252416644,5276238.123571512],[517273.71624737844,5276243.355334609],[517270.2550781715,5276245.345585574],[517264.1538919049,5276248.517207629],[517263.03295058414,5276249.102925636]]]},"properties":{"ID_SOURCE":"w145340989","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2099}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517304.8964585728,5276089.074826678],[517301.8031733583,5276093.62236513],[517299.6162330992,5276096.505501554],[517299.6903585624,5276096.839140827],[517296.317410711,5276094.384050276],[517296.9206472205,5276093.607863725],[517288.90074214526,5276087.693648832],[517293.65350018226,5276080.817096763],[517299.16254057206,5276084.867827235],[517304.8964585728,5276089.074826678]]]},"properties":{"ID_SOURCE":"w145340992","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2100}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516960.3246404779,5276170.749210978],[516960.6989198449,5276171.194859591],[516958.64246174874,5276173.18938584],[516955.5765559197,5276176.181231245],[516950.1854387424,5276170.2751364885],[516955.1569264161,5276165.510600288],[516955.7562275057,5276166.068043307],[516958.9945793294,5276163.1878398005],[516963.33764753497,5276167.868353685],[516960.3246404779,5276170.749210978]]]},"properties":{"ID_SOURCE":"w145340993","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2101}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.97315651696,5276205.846296984],[516678.2536843005,5276201.387194374],[516675.1962680936,5276193.598664158],[516683.5438439164,5276190.177239804],[516684.96083181584,5276193.73776787],[516683.9833885538,5276194.068386875],[516684.900292315,5276196.516085898],[516685.6979674135,5276198.630024535],[516688.5475384418,5276200.305283572],[516682.97315651696,5276205.846296984]]]},"properties":{"ID_SOURCE":"w145340995","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2102}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517068.243085077,5276511.596570852],[517069.4958564388,5276519.824584308],[517066.33992181823,5276520.2598941615],[517066.4124265917,5276521.149224663],[517062.5950993403,5276521.727080077],[517057.0194117812,5276522.56652315],[517056.0582766109,5276517.340139837],[517058.83833486843,5276517.014863147],[517058.39678792265,5276513.901656746],[517058.323305227,5276513.345742751],[517068.243085077,5276511.596570852]]]},"properties":{"ID_SOURCE":"w145340996","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2103}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517037.6019536271,5276561.51973853],[517040.07569733175,5276563.1940725],[517034.87329592597,5276569.958377981],[517028.95263387257,5276565.49547218],[517031.2150252251,5276562.390174796],[517027.01732865116,5276559.48826665],[517030.48537830426,5276555.052817074],[517034.78696224064,5276558.38847662],[517037.9794532451,5276560.85400439],[517037.6019536271,5276561.51973853]]]},"properties":{"ID_SOURCE":"w145340997","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2104}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.46301023726,5276106.496668371],[516770.4361549446,5276114.829588012],[516768.53378111025,5276115.502062747],[516768.06432898884,5276114.189263344],[516766.9063664702,5276114.597146554],[516765.0866839952,5276115.247632528],[516763.40991326416,5276115.831846582],[516761.1893499014,5276109.612749567],[516760.9061814555,5276108.822843187],[516767.46301023726,5276106.496668371]]]},"properties":{"ID_SOURCE":"w145341002","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2105}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.86156171677,5276566.396145998],[517068.31304418645,5276564.610439979],[517074.79789526836,5276555.960548177],[517079.6696031221,5276559.531306113],[517081.39289013913,5276560.98117729],[517079.18360227486,5276563.89767346],[517076.9441423901,5276566.858537904],[517075.14509461087,5276565.630725419],[517073.1847487064,5276568.181192549],[517070.86156171677,5276566.396145998]]]},"properties":{"ID_SOURCE":"w145341004","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2106}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517125.0086314618,5276134.666126894],[517125.2310362819,5276135.667038037],[517119.14180211147,5276137.316232998],[517116.8380527343,5276128.862845856],[517122.8518529822,5276127.324566394],[517122.6291207044,5276126.434794087],[517125.7111051497,5276125.676991301],[517135.1074249234,5276123.359579192],[517137.18711219577,5276131.367755595],[517125.0086314618,5276134.666126894]]]},"properties":{"ID_SOURCE":"w145341005","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2107}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516638.1987808469,5276313.079136292],[516638.2086231996,5276309.6338345185],[516636.8565895596,5276309.629972259],[516636.88611419266,5276299.294067049],[516645.2984652616,5276299.429242759],[516645.3244753006,5276306.09769748],[516645.3405447308,5276310.987889065],[516645.2593967971,5276313.099310968],[516643.90736395563,5276313.095447069],[516638.1987808469,5276313.079136292]]]},"properties":{"ID_SOURCE":"w145341008","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2108}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516676.3134550907,5276223.16501222],[516676.2284764133,5276226.610098447],[516669.91921413527,5276226.480897529],[516670.0035528951,5276223.258088723],[516669.4780723134,5276223.145445092],[516669.48567450006,5276220.489228943],[516669.50224662083,5276214.698900063],[516676.78832454485,5276214.719757617],[516676.8392537653,5276223.166517716],[516676.3134550907,5276223.16501222]]]},"properties":{"ID_SOURCE":"w145341012","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2109}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517157.98071891523,5276212.449815496],[517155.1267047752,5276212.330268847],[517154.95552610647,5276219.442706056],[517152.9277711106,5276219.325594177],[517153.02383305336,5276212.212935702],[517150.1694914565,5276212.204530228],[517150.1721094907,5276211.315420271],[517157.9085512839,5276211.449345516],[517157.98071891523,5276212.449815496]]]},"properties":{"ID_SOURCE":"w145341013","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2110}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516863.5893772487,5276373.665022897],[516858.75950442336,5276373.706609853],[516858.68503834936,5276363.1036663465],[516861.24643203925,5276363.088853307],[516863.9205263762,5276363.063253751],[516866.7973917634,5276363.049356626],[516866.8195832188,5276365.76122972],[516868.1566458829,5276365.742874132],[516868.1776456937,5276368.8659607135],[516868.20890392317,5276373.633944694],[516863.5893772487,5276373.665022897]]]},"properties":{"ID_SOURCE":"w145341016","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2111}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517255.7730003394,5276088.1511097625],[517257.4219269976,5276089.378531733],[517266.34193279874,5276095.739930126],[517265.1348096863,5276097.514587056],[517261.6649935628,5276102.394449694],[517257.7000020165,5276099.470840271],[517254.0947719402,5276096.815034564],[517255.07489829615,5276095.595401384],[517252.0020650358,5276093.252365389],[517255.7730003394,5276088.1511097625]]]},"properties":{"ID_SOURCE":"w145341017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2112}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517069.4958564388,5276519.824584308],[517068.243085077,5276511.596570852],[517078.76375426556,5276509.849177945],[517079.3538817307,5276513.518520433],[517082.2093795291,5276513.082336369],[517083.8104217852,5276522.922901037],[517080.89283334,5276526.604183062],[517077.2651584163,5276523.98176013],[517076.80099102407,5276520.901827838],[517076.602136474,5276519.556453719],[517072.72462117026,5276520.167467944],[517072.65211734676,5276519.278137362],[517069.4958564388,5276519.824584308]]]},"properties":{"ID_SOURCE":"w145341018","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2113}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517101.4242536637,5276517.695458526],[517093.5543074549,5276512.004226442],[517095.66588059074,5276509.120790905],[517098.5138769171,5276511.240807171],[517103.49139937584,5276504.364758302],[517111.8858129837,5276510.502103767],[517106.6068651345,5276517.710679421],[517104.34336462617,5276516.059162738],[517103.23408171645,5276515.255698666],[517101.4242536637,5276517.695458526]]]},"properties":{"ID_SOURCE":"w145341020","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2114}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517111.5951743709,5276558.291346937],[517113.5552138666,5276555.8520315355],[517111.98182639154,5276554.513731032],[517114.2738857707,5276551.553034575],[517116.3623340949,5276548.869590002],[517117.7415143985,5276549.840559615],[517119.50293789245,5276551.090502597],[517123.0249330065,5276553.87935107],[517116.6912071379,5276562.196214416],[517115.2670617406,5276561.191770941],[517111.5951743709,5276558.291346937]]]},"properties":{"ID_SOURCE":"w145341024","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2115}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5350048466,5276111.894195056],[516761.1893499014,5276109.612749567],[516763.40991326416,5276115.831846582],[516763.6404682047,5276116.632715634],[516761.7306161923,5276117.294057101],[516759.9110310835,5276117.911203072],[516758.9260272876,5276118.25290176],[516759.3879695881,5276119.565678823],[516757.41796273424,5276120.24907654],[516754.5350048466,5276111.894195056]]]},"properties":{"ID_SOURCE":"w145341025","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2116}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516809.17074095143,5276100.181898022],[516809.3896731995,5276102.405322924],[516807.21003632084,5276102.84359163],[516807.8067923021,5276104.290129151],[516806.3763884279,5276105.397398185],[516804.11907216377,5276106.724561137],[516802.7650676394,5276107.387492854],[516801.2614734228,5276107.827714075],[516800.3597658013,5276107.936252769],[516799.30782704393,5276108.044358302],[516797.52043769567,5276102.704499972],[516795.9593536531,5276097.031875875],[516806.86043409316,5276093.840270916],[516806.5618951357,5276093.172571569],[516810.7722278355,5276091.851045984],[516812.4084146224,5276097.523890856],[516809.02467911213,5276098.736661],[516809.17074095143,5276100.181898022]]]},"properties":{"ID_SOURCE":"w145341028","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2117}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516886.1221276677,5276658.992667148],[516885.75399710814,5276656.43538525],[516885.2385493169,5276652.877418413],[516896.5093478744,5276651.354152069],[516897.0251113974,5276654.800981086],[516897.7616849959,5276659.804407527],[516895.46252740955,5276660.086700053],[516889.87239443866,5276660.781778909],[516889.57840715337,5276658.55813107],[516886.1221276677,5276658.992667148]]]},"properties":{"ID_SOURCE":"w145341029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2118}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517094.8323913051,5276588.360994287],[517091.0850754668,5276585.571501407],[517093.0457496546,5276582.909901419],[517091.32221111923,5276581.548937771],[517093.83271948365,5276578.366594827],[517096.37340491917,5276575.139885651],[517099.5208276983,5276577.594201127],[517103.1182520786,5276580.27211942],[517096.10631474137,5276589.364991823],[517094.8323913051,5276588.360994287]]]},"properties":{"ID_SOURCE":"w145341031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2119}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516963.4396282992,5276158.6440572115],[516962.9902333824,5276158.198189671],[516968.1122956015,5276153.3229633635],[516973.8038702442,5276159.229950162],[516970.76893435046,5276161.899572764],[516968.3816727025,5276163.993157436],[516967.85716370464,5276163.547070683],[516965.37189838104,5276165.762624728],[516960.95371531224,5276161.081890604],[516963.4396282992,5276158.6440572115]]]},"properties":{"ID_SOURCE":"w145341032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2120}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516694.7574757959,5276339.914508547],[516697.31162252586,5276339.810690836],[516697.22121594404,5276345.145136541],[516695.86919051316,5276345.141260563],[516694.36694003403,5276345.136954287],[516693.91594632773,5276345.24680125],[516693.92550318164,5276341.912638092],[516694.15657506464,5276339.912786106],[516694.7574757959,5276339.914508547]]]},"properties":{"ID_SOURCE":"w145341033","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2121}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516697.7765466697,5276138.338035167],[516696.00317309814,5276133.320553333],[516692.95561269985,5276124.7096095625],[516699.62513293314,5276122.361453603],[516700.90672902315,5276125.98828074],[516702.1436367559,5276129.481612459],[516700.0834061116,5276130.198112702],[516698.5419493968,5276130.749391469],[516700.84436946205,5276137.257662301],[516697.7765466697,5276138.338035167]]]},"properties":{"ID_SOURCE":"w145341034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2122}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516703.65090820706,5276434.18646845],[516703.7151818094,5276437.965402674],[516704.84153293475,5276438.079772985],[516704.82272492413,5276444.63696153],[516697.46150466136,5276444.726991658],[516697.47224281053,5276440.98161446],[516697.4796671049,5276438.392080682],[516696.50353854866,5276438.278142463],[516696.51532750734,5276434.166007302],[516703.65090820706,5276434.18646845]]]},"properties":{"ID_SOURCE":"w145341035","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2123}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517288.10130726104,5276534.139610405],[517281.264308965,5276534.786157182],[517281.048212663,5276531.673602164],[517280.2220011611,5276531.671150582],[517279.8094051281,5276526.435242846],[517279.2083803869,5276518.887068785],[517287.54793319874,5276518.13383977],[517288.4860957446,5276531.028838877],[517287.80977452477,5276531.1379709635],[517288.10130726104,5276534.139610405]]]},"properties":{"ID_SOURCE":"w145341036","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2124}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516615.1870786678,5276691.110719722],[516615.9343539589,5276692.446528708],[516609.76535077754,5276695.985401796],[516603.8606549354,5276685.854847291],[516607.2462256004,5276683.863985914],[516608.5921499593,5276685.979479322],[516611.36066236976,5276684.398077537],[516615.9647963607,5276681.777200762],[516619.92649883893,5276688.456890137],[516615.1870786678,5276691.110719722]]]},"properties":{"ID_SOURCE":"w145341037","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2125}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516898.1218683828,5276561.557911486],[516901.1272255585,5276561.233213381],[516901.5685301667,5276564.457546704],[516910.3602378458,5276563.149391661],[516911.75698477257,5276573.600583734],[516902.9656151015,5276574.797597841],[516902.5529043923,5276572.073476201],[516902.30220887996,5276570.461222275],[516899.521862744,5276570.897712447],[516898.1218683828,5276561.557911486]]]},"properties":{"ID_SOURCE":"w145341039","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2126}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516932.1806521488,5276575.771584197],[516939.75023026107,5276581.461724694],[516937.7893026891,5276584.234514927],[516935.3161851818,5276582.337946779],[516929.8879485395,5276589.323968283],[516921.71878723416,5276583.187539307],[516927.07287924795,5276575.867875521],[516929.4488444137,5276577.597448073],[516930.29580510943,5276578.211178875],[516932.1806521488,5276575.771584197]]]},"properties":{"ID_SOURCE":"w145341040","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2127}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516845.2061180089,5276081.281123165],[516847.14434509614,5276086.399153117],[516848.2620816111,5276089.514296545],[516845.17879712407,5276090.72791483],[516843.68772970815,5276086.83371479],[516843.25167205976,5276086.965821391],[516842.63514354965,5276087.164089958],[516839.50469741353,5276078.708424969],[516843.79048551735,5276077.276001679],[516845.2061180089,5276081.281123165]]]},"properties":{"ID_SOURCE":"w145341043","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2128}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516694.7574757959,5276339.914508547],[516694.15657506464,5276339.912786106],[516693.92550318164,5276341.912638092],[516687.6166845584,5276341.672278911],[516687.69625532243,5276340.116551329],[516687.78442411334,5276335.560076935],[516687.8643134391,5276333.893210595],[516691.25157629,5276334.014056766],[516694.69892914343,5276334.135077154],[516694.7574757959,5276339.914508547]]]},"properties":{"ID_SOURCE":"w145341047","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2129}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.17932001816,5276570.506685514],[517111.25195732794,5276572.849647863],[517104.6168515059,5276581.4990581805],[517103.1182520786,5276580.27211942],[517099.5208276983,5276577.594201127],[517101.5566179849,5276574.932824561],[517099.7575778621,5276573.705004441],[517101.84614216036,5276570.977099078],[517104.4323253856,5276567.60604533],[517108.17932001816,5276570.506685514]]]},"properties":{"ID_SOURCE":"w145341050","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2130}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516942.00622427446,5276528.899186887],[516950.4758813098,5276535.036518111],[516945.499536274,5276541.5792811755],[516942.8758596565,5276539.793411687],[516942.4235829088,5276540.347794635],[516939.44821301807,5276538.10523062],[516934.4042626074,5276534.322924293],[516937.5705227418,5276530.331101293],[516939.8193012068,5276531.893598352],[516942.00622427446,5276528.899186887]]]},"properties":{"ID_SOURCE":"w145341051","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2131}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516754.5350048466,5276111.894195056],[516757.41796273424,5276120.24907654],[516755.5307431614,5276120.877143253],[516755.06880009937,5276119.564366495],[516753.98601893726,5276119.950240609],[516752.0536025325,5276120.6226343],[516750.32418995915,5276121.228928641],[516749.92917846586,5276120.149738047],[516747.8504270943,5276114.242244983],[516754.5350048466,5276111.894195056]]]},"properties":{"ID_SOURCE":"w145341056","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2132}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516874.2575637766,5276658.069158312],[516885.75399710814,5276656.43538525],[516886.1221276677,5276658.992667148],[516887.0814570764,5276664.885856226],[516883.73761858727,5276665.398517593],[516878.5903417639,5276666.194916991],[516878.14613362786,5276663.970834341],[516874.989969838,5276664.517386592],[516874.623122933,5276661.515550083],[516874.2575637766,5276658.069158312]]]},"properties":{"ID_SOURCE":"w145341058","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2133}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516420.8416285172,5276412.043394281],[516413.48043597635,5276412.111555669],[516413.598082654,5276397.0191203095],[516421.78527389385,5276397.042199686],[516421.7741804486,5276400.976512649],[516421.7689784351,5276402.821416477],[516423.6467727267,5276402.826711534],[516423.6320424436,5276408.050234447],[516420.7774843252,5276408.153324984],[516420.8416285172,5276412.043394281]]]},"properties":{"ID_SOURCE":"w145341062","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2134}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517002.5186876564,5276165.015168298],[517003.94896876364,5276166.530843414],[517006.0083639488,5276168.681851933],[517001.7676237892,5276172.703842097],[517001.14605286194,5276172.057417559],[516995.5145778916,5276166.161693045],[516994.7207926963,5276165.325829234],[516998.96153329435,5276161.303833983],[517002.5186876564,5276165.015168298]]]},"properties":{"ID_SOURCE":"w145341063","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2135}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516842.63514354965,5276087.164089958],[516841.3191700104,5276087.660413231],[516840.6047661077,5276087.9361967705],[516841.6464259395,5276091.384537925],[516840.14250328694,5276091.935887838],[516839.6905232521,5276092.379139706],[516838.9454701356,5276090.265332247],[516835.3688220896,5276080.252424358],[516839.50469741353,5276078.708424969],[516842.63514354965,5276087.164089958]]]},"properties":{"ID_SOURCE":"w145341065","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2136}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517278.98480952985,5276594.239177568],[517278.71785260853,5276590.548544538],[517278.33553444024,5276585.2349283835],[517287.57597574947,5276584.595512559],[517288.3754553154,5276593.60020874],[517290.55428606697,5276593.3843977405],[517290.987783062,5276599.164953902],[517277.01449205406,5276600.123740713],[517276.73087022227,5276594.4547700705],[517278.98480952985,5276594.239177568]]]},"properties":{"ID_SOURCE":"w145341067","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2137}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516564.40256154514,5276391.311168368],[516564.1679246222,5276389.298872815],[516563.896774624,5276386.919712491],[516574.81421447155,5276385.661552237],[516575.7085656122,5276393.399419391],[516564.9564494136,5276394.63582019],[516565.32299959706,5276397.804343683],[516561.0101261951,5276398.303320664],[516560.2625040366,5276391.7884095],[516564.40256154514,5276391.311168368]]]},"properties":{"ID_SOURCE":"w145341068","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2138}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517315.53301771346,5276528.664118092],[517308.3957342559,5276529.25417036],[517302.53565521975,5276529.73688604],[517301.8089869534,5276521.510383511],[517302.109428029,5276521.511276093],[517301.81790181994,5276518.509635996],[517308.5794809976,5276517.974028878],[517308.8710037507,5276520.975669321],[517314.9562577866,5276520.549199334],[517315.53301771346,5276528.664118092]]]},"properties":{"ID_SOURCE":"w145341069","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2139}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516767.46301023726,5276106.496668371],[516773.9671353153,5276104.214805],[516774.3175862116,5276105.11604544],[516776.31339892093,5276111.12333479],[516774.28319875523,5276111.839895346],[516773.06511089916,5276112.258718143],[516771.92971430375,5276112.655551376],[516772.44381893915,5276114.112961226],[516770.4361549446,5276114.829588012],[516767.46301023726,5276106.496668371]]]},"properties":{"ID_SOURCE":"w145341070","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2140}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516653.86661644635,5276192.5373797],[516648.60860209365,5276192.52234768],[516648.76931466936,5276188.855198495],[516647.86794021324,5276188.852622031],[516647.8759136626,5276186.063039528],[516647.89271825337,5276180.18379995],[516654.9531775386,5276180.315124739],[516654.9287067888,5276188.872808069],[516653.8019887188,5276188.869586318],[516653.86661644635,5276192.5373797]]]},"properties":{"ID_SOURCE":"w145341071","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2141}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516875.1173554576,5276568.715290208],[516876.4432415473,5276577.721451566],[516873.2125657392,5276578.045509538],[516873.4550173764,5276579.913359713],[516873.72673980414,5276582.048030102],[516865.1603975124,5276583.356892936],[516863.5369534461,5276573.3496148335],[516872.0278784739,5276572.151670806],[516871.660701856,5276569.260973744],[516875.1173554576,5276568.715290208]]]},"properties":{"ID_SOURCE":"w145341072","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2142}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517236.4006739231,5276085.537537054],[517233.4609604982,5276088.974169004],[517228.3655749426,5276084.73578691],[517231.07961084944,5276081.409624483],[517225.2343716352,5276076.724468194],[517227.6847472279,5276073.653145781],[517232.77392119734,5276067.299896105],[517240.6426921013,5276073.547004794],[517233.25336959714,5276082.972011291],[517236.4006739231,5276085.537537054]]]},"properties":{"ID_SOURCE":"w145341074","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2143}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516853.4053313475,5276077.303814135],[516854.45824150136,5276076.862302192],[516853.78895088995,5276074.52643279],[516859.72922864236,5276072.431970859],[516862.1149244426,5276078.6626975695],[516860.4607646308,5276079.213607325],[516860.87020261533,5276080.492898576],[516861.2051679458,5276081.549694964],[516855.6411216746,5276083.422964819],[516853.4053313475,5276077.303814135]]]},"properties":{"ID_SOURCE":"w145341076","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2144}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516967.7814012244,5276189.553535872],[516968.904233789,5276190.89048327],[516970.10930430086,5276189.782597409],[516971.99202548416,5276188.120987961],[516972.5909987635,5276188.789571483],[516977.3086374184,5276193.804606725],[516972.1118122125,5276198.568467568],[516965.7474814753,5276191.548125305],[516967.7814012244,5276189.553535872]]]},"properties":{"ID_SOURCE":"w145341079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2145}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.72428456316,5276312.328846117],[516690.5550448526,5276312.339822805],[516690.55663732294,5276311.784128973],[516695.88933845964,5276311.910553209],[516695.96030964266,5276313.3555724975],[516698.9645083429,5276313.475324986],[516698.8677269587,5276321.0325458],[516694.8642128538,5276321.021068416],[516686.774560523,5276320.997885177],[516686.72428456316,5276312.328846117]]]},"properties":{"ID_SOURCE":"w145341083","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2146}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517108.17932001816,5276570.506685514],[517104.4323253856,5276567.60604533],[517102.9333959316,5276566.490245458],[517104.7432096277,5276564.050485915],[517103.0947126405,5276562.711967195],[517105.83905512444,5276559.196896879],[517108.37230983033,5276555.947943177],[517111.5951743709,5276558.291346937],[517115.2670617406,5276561.191770941],[517108.17932001816,5276570.506685514]]]},"properties":{"ID_SOURCE":"w145341090","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2147}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517271.22240795614,5276451.068121091],[517273.823939021,5276460.300437065],[517269.3133209612,5276461.620737397],[517268.94172032294,5276460.2859583525],[517265.10743221117,5276461.497127655],[517261.46421374625,5276448.927535245],[517266.8771629606,5276447.276484708],[517268.2153246664,5276451.9483222645],[517271.22240795614,5276451.068121091]]]},"properties":{"ID_SOURCE":"w145341095","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2148}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516913.2679867197,5276544.708638124],[516915.1528373226,5276542.269038057],[516917.77619840065,5276544.166033848],[516922.978808983,5276537.290485506],[516931.37336367165,5276543.427570753],[516926.09499265003,5276550.525170985],[516924.0866986438,5276548.918922115],[516923.0225924768,5276548.071167814],[516921.06230761996,5276550.62168593],[516913.2679867197,5276544.708638124]]]},"properties":{"ID_SOURCE":"w145341097","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2149}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516681.736394427,5276611.391502696],[516680.4576299114,5276612.054678212],[516679.4799386039,5276612.496436843],[516678.8901737204,5276611.2388687655],[516678.2855140744,5276609.936802206],[516678.136250721,5276609.602955543],[516678.8886150524,5276609.160551345],[516679.7911977476,5276608.718577493],[516680.2424891474,5276608.497590617],[516681.736394427,5276611.391502696]]]},"properties":{"ID_SOURCE":"w145341098","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2150}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.85087504645,5276196.155146128],[516833.5314830729,5276196.165782581],[516833.4838398453,5276199.655430634],[516833.4239955626,5276204.767682689],[516832.8662802749,5276244.398480049],[516824.1540393985,5276244.039888198],[516824.1569287303,5276243.039639419],[516826.0121443718,5276243.078340619],[516830.6163982117,5276243.169441587],[516830.6493700758,5276239.557497237],[516830.8603297159,5276218.54159361],[516830.87159873074,5276217.241291957],[516830.93295020144,5276211.606687669],[516830.9429062476,5276208.161386503],[516830.94624633976,5276207.005543534],[516830.95318345027,5276204.604946605],[516830.95896437566,5276202.604449174],[516830.977712736,5276201.3152831355],[516831.00483968365,5276199.726064193],[516831.04949460295,5276197.270006453],[516829.84766363876,5276197.266533581],[516829.85087504645,5276196.155146128]]]},"properties":{"ID_SOURCE":"w145341099","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2151}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516741.0405861895,5276115.745281187],[516747.5747686263,5276113.452360846],[516747.8504270943,5276114.242244983],[516749.92917846586,5276120.149738047],[516748.1696878505,5276120.767060496],[516746.5380216279,5276121.3402951285],[516745.2672930913,5276121.781200305],[516745.75154912646,5276123.171838187],[516743.92439213005,5276123.811195295],[516741.0405861895,5276115.745281187]]]},"properties":{"ID_SOURCE":"w145341111","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2152}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516857.97577624145,5276600.340471974],[516867.44372486806,5276598.9230702445],[516867.9604762072,5276602.036479904],[516869.39570610644,5276601.818357669],[516871.5673284676,5276601.491229384],[516872.96896528295,5276610.275330381],[516863.20027551195,5276611.802991963],[516861.6484059552,5276603.01845839],[516858.49221077503,5276603.565019604],[516857.97577624145,5276600.340471974]]]},"properties":{"ID_SOURCE":"w145341113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2153}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516388.72309787094,5276668.463327282],[516382.9628921312,5276660.222781011],[516383.33905971766,5276660.001559854],[516382.0675309204,5276658.10860774],[516386.73332574713,5276654.898683267],[516387.9300580003,5276656.680286197],[516389.52532957675,5276655.628948399],[516397.0350841417,5276650.704371254],[516402.64506262675,5276658.944508236],[516388.72309787094,5276668.463327282]]]},"properties":{"ID_SOURCE":"w145341118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2154}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517136.6950320301,5276528.357414285],[517145.16350462975,5276534.828445533],[517143.27790058166,5276537.490248968],[517139.8306881263,5276534.812748177],[517134.6281453011,5276541.576964582],[517126.38434754807,5276535.328888833],[517131.58754014515,5276528.342387538],[517133.611100752,5276529.8487273045],[517134.8851939287,5276530.797163818],[517136.6950320301,5276528.357414285]]]},"properties":{"ID_SOURCE":"w145341121","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2155}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516341.94998879405,5276634.656554511],[516348.7686634626,5276640.4549573725],[516346.2813413978,5276643.559886826],[516349.8781325813,5276646.570755844],[516345.507794827,5276651.559774285],[516342.0609098222,5276648.660468308],[516340.85505576344,5276650.124128658],[516339.04627580714,5276652.3196196575],[516332.2276055027,5276646.521228061],[516341.94998879405,5276634.656554511]]]},"properties":{"ID_SOURCE":"w145341124","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2156}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516336.2829002875,5276593.185547418],[516341.00231297803,5276597.644375801],[516335.4277054335,5276603.519140105],[516338.94848250353,5276606.863207893],[516333.29846502293,5276612.84890239],[516320.0377982541,5276600.808638814],[516325.83865533344,5276594.601075046],[516330.6328724024,5276599.1712444],[516336.2829002875,5276593.185547418]]]},"properties":{"ID_SOURCE":"w145341126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2157}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516688.0323321238,5276537.390483916],[516690.0603033196,5276537.396295433],[516694.0414542475,5276537.296566472],[516693.9783639869,5276540.963996363],[516693.95168941724,5276542.408736256],[516695.3787790326,5276542.412827223],[516695.43732122966,5276548.1922605205],[516691.45617771894,5276548.2919885125],[516688.0011221452,5276548.28208699],[516688.0323321238,5276537.390483916]]]},"properties":{"ID_SOURCE":"w145341127","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2158}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516499.2253662568,5276317.796206828],[516495.4684636372,5276318.23012379],[516495.611764314,5276320.675602199],[516490.7879469947,5276321.217640139],[516485.0925073205,5276321.868354564],[516484.2147453022,5276313.530395672],[516493.9828877432,5276312.335514466],[516493.4690570205,5276308.1107522715],[516497.90198301576,5276307.678748896],[516499.2253662568,5276317.796206828]]]},"properties":{"ID_SOURCE":"w145341128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2159}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516719.81402363325,5276455.460531965],[516723.4947867622,5276455.3599604815],[516725.7481198606,5276455.366431411],[516725.6415065097,5276458.489151028],[516725.58449219447,5276460.033829238],[516726.93585256225,5276460.2599897655],[516726.91957317555,5276465.928068187],[516721.4361534763,5276466.023461445],[516719.78371222963,5276466.018717228],[516719.81402363325,5276455.460531965]]]},"properties":{"ID_SOURCE":"w145341129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2160}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516670.1818092707,5276449.650130074],[516674.7635909636,5276449.663246592],[516676.1152738855,5276449.77825652],[516676.2106597219,5276453.190518506],[516676.2518121009,5276454.557654684],[516677.7543526086,5276454.450817563],[516677.75995424646,5276460.36346583],[516671.77373182547,5276460.301870441],[516670.22638081916,5276460.319669069],[516670.1818092707,5276449.650130074]]]},"properties":{"ID_SOURCE":"w145341130","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2161}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.6397947854,5276417.173895139],[516673.57280512684,5276424.831228451],[516662.90716354677,5276424.734019502],[516662.9738847996,5276417.1655971315],[516666.70686741313,5276417.198506683],[516666.7056588236,5276417.620834066],[516668.4407047055,5276417.636913539],[516670.38606302533,5276417.653595514],[516670.38752637827,5276417.142357103],[516673.6397947854,5276417.173895139]]]},"properties":{"ID_SOURCE":"w145341132","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2162}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516673.57280512684,5276424.831228451],[516673.6397947854,5276417.173895139],[516676.3891655481,5276417.081741309],[516676.3949582388,5276417.681912254],[516677.9122759651,5276417.664029199],[516679.78261816717,5276417.647157586],[516679.77673033584,5276417.080328269],[516684.0056405228,5276417.04798544],[516684.0887965503,5276424.7279767655],[516673.57280512684,5276424.831228451]]]},"properties":{"ID_SOURCE":"w145341133","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2163}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516829.99994430726,5276092.573410235],[516827.744223117,5276093.344870398],[516827.29673927824,5276092.232181045],[516824.2141026968,5276093.22353297],[516822.6491900899,5276088.884566461],[516826.0332552416,5276087.560665499],[516825.36299138254,5276085.558215529],[516827.01971462497,5276084.118186012],[516829.99994430726,5276092.573410235]]]},"properties":{"ID_SOURCE":"w145341136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2164}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516494.4680380542,5276422.16510978],[516498.63746538915,5276419.265060188],[516499.235524196,5276420.267011559],[516500.6569757586,5276422.271552915],[516499.3775610046,5276423.157045616],[516500.34991726966,5276424.604616235],[516497.4149022752,5276426.59681579],[516495.99408025347,5276424.369997639],[516494.4680380542,5276422.16510978]]]},"properties":{"ID_SOURCE":"w145341142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2165}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516624.4445740503,5276631.78852205],[516625.41686408705,5276633.236114175],[516622.63244533585,5276635.117541164],[516612.6094005774,5276620.529636151],[516618.6301699447,5276616.32350471],[516621.9210095193,5276621.223044529],[516625.006187861,5276619.231336073],[516630.9159937305,5276627.583689729],[516626.83750875713,5276630.228283408],[516624.4445740503,5276631.78852205]]]},"properties":{"ID_SOURCE":"w145341143","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2166}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517208.2384958115,5276187.569423524],[517206.9743457479,5276185.7763394],[517205.7248498034,5276186.650651872],[517200.8472827935,5276190.070462241],[517199.3811093508,5276188.010047844],[517196.7930724672,5276184.3014536975],[517196.6060078346,5276184.056394026],[517204.56971291965,5276178.467357076],[517203.52247324475,5276176.986105649],[517207.50434844097,5276174.186033613],[517214.0644842665,5276183.485584049],[517208.2384958115,5276187.569423524]]]},"properties":{"ID_SOURCE":"w145341147","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2167}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517250.82056079607,5276512.423488431],[517251.0430657663,5276515.913936351],[517248.6540632405,5276516.073569889],[517248.86220563215,5276519.341695653],[517241.90561039286,5276519.78788288],[517241.0582649214,5276506.626425483],[517248.54074780236,5276506.14845275],[517248.7990650314,5276510.228047387],[517248.9499172318,5276512.551315389],[517250.82056079607,5276512.423488431]]]},"properties":{"ID_SOURCE":"w145341148","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2168}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517201.1531162342,5276274.726487868],[517199.37289469823,5276274.732344461],[517197.7654340988,5276274.73871172],[517197.77504199196,5276276.572545541],[517191.88601832866,5276276.599615354],[517165.5505969351,5276276.744217963],[517161.26900096354,5276276.776056455],[517161.21043305966,5276266.062014903],[517174.4007016229,5276265.989755293],[517174.4046080308,5276267.212303732],[517201.10812933685,5276267.068828042],[517201.1531162342,5276274.726487868]]]},"properties":{"ID_SOURCE":"w145341150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2169}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516759.7844929818,5276529.927891156],[516759.79440794094,5276526.482588242],[516760.92106074735,5276526.485830653],[516760.8908943744,5276523.918416218],[516760.8619434207,5276520.928674345],[516768.5983000783,5276520.950944693],[516768.5854998852,5276525.3964968],[516769.1863814968,5276525.398226966],[516769.1732608185,5276529.954917905],[516759.7844929818,5276529.927891156]]]},"properties":{"ID_SOURCE":"w145341152","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2170}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516984.64173585724,5276177.7107317485],[516983.1443029672,5276176.039269993],[516985.0273564029,5276174.266526034],[516986.076045639,5276175.269841449],[516987.206656188,5276173.939462597],[516988.93883366376,5276172.388559236],[516994.5562266637,5276177.961931268],[516989.4338395002,5276182.948273253],[516984.64173585724,5276177.7107317485]]]},"properties":{"ID_SOURCE":"w145341154","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2171}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516763.2006602698,5276360.783084844],[516763.9517835137,5276360.785246815],[516763.9617004057,5276357.339944816],[516763.21025683306,5276357.448921624],[516763.21281591547,5276356.559811433],[516763.88882732484,5276356.561757201],[516763.97609588655,5276352.33870002],[516763.22529143875,5276352.225399279],[516763.2272107492,5276351.55856664],[516763.97801528435,5276351.671867386],[516763.9131395751,5276348.115210464],[516763.31223967264,5276348.113480887],[516763.3141589901,5276347.446648258],[516763.9904913576,5276347.337455262],[516763.9201773253,5276345.670157486],[516765.7976703733,5276345.786701586],[516765.7190386014,5276347.009011852],[516774.35697633075,5276347.033884055],[516774.3441724461,5276351.479434944],[516775.39542655327,5276351.593602511],[516776.0714385419,5276351.595549694],[516776.1423892726,5276353.040570098],[516776.5914631188,5276353.597562133],[516776.9647841739,5276354.37661538],[516777.1853191169,5276356.0443460895],[516776.35684192,5276356.819937465],[516776.43131402,5276357.042431376],[516776.13086452876,5276357.041565931],[516776.05223072064,5276358.263876082],[516775.22567467723,5276358.372634975],[516774.2488939568,5276358.48096132],[516774.16097781085,5276362.926295954],[516772.5836195732,5276362.921753161],[516772.7123996234,5276370.3684837315],[516773.98930703895,5276370.372161231],[516773.74252452503,5276377.817810268],[516773.13490606804,5276380.149993994],[516772.1533281591,5276381.925402348],[516771.7764876937,5276382.36887593],[516771.14356226317,5276383.056119439],[516770.6462866736,5276383.588158045],[516770.57085461554,5276383.699080536],[516768.5396299333,5276384.804628894],[516766.5093658797,5276385.576761627],[516764.1799340148,5276385.903475123],[516760.5739183227,5276386.11537592],[516757.0436544386,5276386.105217509],[516756.9726994396,5276384.660197274],[516749.9121699192,5276384.63988696],[516749.98280703305,5276386.196045883],[516749.98056958226,5276386.974017337],[516748.02765794366,5276386.968401077],[516748.0266991472,5276387.301817413],[516747.72465325514,5276387.8566473285],[516747.04672800255,5276388.5215361025],[516746.3704007418,5276388.630731058],[516745.24499945523,5276388.1829364095],[516744.72145241156,5276387.4034532495],[516744.6479381016,5276386.847543396],[516744.1972661771,5276386.846247691],[516744.12726657296,5276385.067811281],[516743.1508104361,5276385.065004051],[516738.71920181555,5276385.052265606],[516738.66612972965,5276377.383474038],[516737.9917177749,5276376.825837302],[516738.820187011,5276376.050240463],[516741.0051474138,5276373.722587027],[516744.6105309346,5276373.732951651],[516744.6949095624,5276370.5101430835],[516749.50177062646,5276370.635104895],[516749.5052865018,5276369.412578361],[516750.2564086274,5276369.414738566],[516750.17841967224,5276370.414771524],[516753.48335645965,5276370.424277546],[516753.4859140658,5276369.53516734],[516754.3121483884,5276369.537544138],[516754.4598150536,5276370.427086501],[516758.13999304635,5276370.5488143535],[516758.2106281657,5276372.104973349],[516765.27149283333,5276372.01415491],[516765.36612058623,5276365.234905816],[516763.9389875138,5276365.230797804],[516763.87475179776,5276361.451863258],[516763.1987409566,5276361.44991749],[516763.2006602698,5276360.783084844]]]},"properties":{"ID_SOURCE":"w145341162","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2172}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516563.4883828253,5276337.717016715],[516564.4663605341,5276345.110586284],[516559.3191937313,5276345.7850153865],[516559.0250634393,5276343.561385671],[516549.54226067493,5276344.801424318],[516548.2187502499,5276334.761751447],[516553.3809479773,5276334.087355227],[516558.873800669,5276333.358333831],[516559.2634924589,5276336.315757023],[516563.2384678975,5276335.793589667],[516563.4883828253,5276337.717016715]]]},"properties":{"ID_SOURCE":"w145341166","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2173}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516704.7403828061,5276318.837707],[516706.3928658032,5276318.84244685],[516706.3238100596,5276316.730594808],[516706.41326881695,5276311.729565763],[516713.6241125105,5276311.7502542315],[516713.6030628213,5276319.085412848],[516710.8989998414,5276319.077653628],[516710.81463940593,5276322.300462377],[516704.8056138866,5276322.28322424],[516704.7403828061,5276318.837707]]]},"properties":{"ID_SOURCE":"w145341169","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2174}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516656.9109585862,5276147.123309944],[516656.9194870865,5276154.647488472],[516655.4697679829,5276154.6433427185],[516655.4770682107,5276157.34405705],[516649.3326339671,5276157.3376037935],[516649.3333506945,5276154.459088969],[516650.4225179277,5276154.462202473],[516650.42129713675,5276152.261633961],[516650.42098420265,5276147.115867426],[516651.94601089903,5276147.053543425],[516656.9109585862,5276147.123309944]]]},"properties":{"ID_SOURCE":"w145341170","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2175}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516869.09666915133,5276183.821037245],[516868.97100453195,5276190.900270601],[516868.91811399756,5276193.600811544],[516863.5175435104,5276193.529602795],[516859.5065587247,5276193.473535201],[516855.9161828299,5276193.429801572],[516848.7654767111,5276193.342427871],[516840.6758714676,5276193.241234174],[516835.11756001617,5276193.169595673],[516833.5251328657,5276193.164993061],[516831.6622935592,5276193.159609427],[516831.66614765755,5276191.825944496],[516829.11225447344,5276191.818564676],[516827.7601933753,5276191.814658166],[516827.85521617753,5276184.924273083],[516827.9354684188,5276183.146270221],[516869.09666915133,5276183.821037245]]]},"properties":{"ID_SOURCE":"w145341174","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2176}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516568.4258190121,5276310.435157834],[516569.1589265336,5276316.772204441],[516569.3801548171,5276318.217649506],[516565.3975923156,5276318.762019071],[516565.6169247857,5276320.8742966065],[516561.03355666634,5276321.383618412],[516556.90099266055,5276321.84976948],[516555.9469567534,5276313.95614108],[516564.43724562036,5276313.091164646],[516564.2179124069,5276310.978887181],[516568.4258190121,5276310.435157834]]]},"properties":{"ID_SOURCE":"w145341175","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2177}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516727.80475401296,5276419.251934143],[516727.8076269578,5276418.251685077],[516732.0141948473,5276418.15262912],[516732.0870713467,5276418.9308164045],[516733.3941723845,5276418.879001954],[516734.79140733706,5276418.827446788],[516734.7933234326,5276418.160614081],[516738.5485831826,5276418.2825454585],[516738.3756813245,5276426.172967465],[516727.6350588643,5276426.030968582],[516727.80475401296,5276419.251934143]]]},"properties":{"ID_SOURCE":"w145341176","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2178}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516465.67933436437,5276373.715661284],[516465.46606510767,5276372.103533153],[516470.0344564532,5276371.560752098],[516470.40118552034,5276374.684813868],[516478.9217633465,5276373.697545235],[516479.83846291,5276381.546599757],[516475.2400336191,5276382.089288123],[516470.7994347681,5276382.599084566],[516470.5060584304,5276380.097612322],[516466.44843573053,5276380.641837062],[516465.67933436437,5276373.715661284]]]},"properties":{"ID_SOURCE":"w145341178","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2179}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517204.5787715509,5276681.385875555],[517204.1946850875,5276676.6501855515],[517213.6531151637,5276675.9001573725],[517213.81250576087,5276677.878916886],[517217.388512726,5276677.600524897],[517218.0837897503,5276686.315940681],[517213.42596812587,5276686.680046264],[517208.82823360816,5276687.044333128],[517208.66884159506,5276685.065573727],[517204.8899819768,5276685.365599696],[517204.5787715509,5276681.385875555]]]},"properties":{"ID_SOURCE":"w145341185","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2180}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.4433229589,5276251.470691096],[517266.46907475195,5276255.559215397],[517266.39462000964,5276255.336715215],[517267.44785929227,5276254.784139056],[517265.4236441223,5276250.943817561],[517264.1538919049,5276248.517207629],[517270.2550781715,5276245.345585574],[517273.71591776295,5276243.466473356],[517275.73410218535,5276246.80665104],[517272.8000492073,5276248.353905122],[517274.4433229589,5276251.470691096]]]},"properties":{"ID_SOURCE":"w145341187","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2181}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.3166578448,5276526.815835304],[516689.879966363,5276526.937531172],[516690.00557766075,5276530.283196637],[516689.1793661639,5276530.280828907],[516689.2573054855,5276531.914806107],[516689.3209871243,5276533.282007132],[516689.996659493,5276533.395083176],[516690.0603033196,5276537.396295433],[516688.0323321238,5276537.390483916],[516682.39876044233,5276537.485483325],[516682.3166578448,5276526.815835304]]]},"properties":{"ID_SOURCE":"w145341188","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2182}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517017.2304757219,5276104.453664931],[517016.93098727375,5276104.119370913],[517013.7858695171,5276100.775992796],[517017.92859738466,5276096.89820672],[517018.3805907086,5276096.454968648],[517021.5253834079,5276099.909487958],[517028.33881733264,5276107.486901315],[517026.1244409796,5276109.525397975],[517023.89497809985,5276111.586079311],[517022.7714930366,5276110.471398941],[517017.2304757219,5276104.453664931]]]},"properties":{"ID_SOURCE":"w145341189","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2183}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516682.6710180425,5276361.152011207],[516682.7251192288,5276368.487385566],[516679.02978885215,5276368.4101178665],[516676.1155618765,5276368.357316933],[516676.04745055793,5276365.912048787],[516676.0503145649,5276364.911799802],[516674.3981628508,5276364.795929754],[516674.784861146,5276360.907147859],[516675.1607409508,5276360.797084357],[516675.3100109688,5276361.130930796],[516682.6710180425,5276361.152011207]]]},"properties":{"ID_SOURCE":"w145341191","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2184}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516439.65886569035,5276320.995297646],[516435.97091994947,5276320.95154708],[516435.9856608941,5276315.728024892],[516437.33769300935,5276315.731840523],[516437.20628680324,5276309.063090409],[516442.91455961374,5276309.190342942],[516442.9064016315,5276312.079950927],[516446.1961915999,5276312.144809467],[516450.04181727004,5276312.211239766],[516450.07688929955,5276321.069169426],[516439.65886569035,5276320.995297646]]]},"properties":{"ID_SOURCE":"w145341192","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2185}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516830.863430188,5276331.83739931],[516830.77304630174,5276326.724712083],[516833.67259179236,5276326.666408165],[516833.6214958951,5276323.554348997],[516837.8581152321,5276323.47768393],[516840.2242972178,5276323.44006925],[516841.3660761777,5276323.421142813],[516841.5337310353,5276332.979641573],[516837.57506760827,5276333.0459935265],[516833.67649443087,5276333.112521854],[516833.6503040815,5276331.778769788],[516830.863430188,5276331.83739931]]]},"properties":{"ID_SOURCE":"w145341193","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2186}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516957.5991968046,5276203.860901217],[516956.4012498125,5276202.523737293],[516958.7369145326,5276200.085464424],[516958.13826443284,5276199.305743573],[516960.41283634934,5276197.211826533],[516963.5610682983,5276194.320249112],[516968.8773589149,5276200.114998975],[516963.75533687696,5276204.990224873],[516963.0815736042,5276204.21028473],[516960.3700134714,5276206.758600955],[516957.5991968046,5276203.860901217]]]},"properties":{"ID_SOURCE":"w145341194","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2187}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516695.4591439988,5276383.372138076],[516699.0645214799,5276383.382474518],[516699.14409482566,5276381.826746982],[516700.9618064588,5276381.831959142],[516703.7259299311,5276381.83988616],[516706.1067906644,5276381.913398913],[516706.0308125049,5276390.070834495],[516698.97028969065,5276390.050585923],[516698.96487242175,5276391.939945186],[516695.5097240795,5276391.93003943],[516695.4591439988,5276383.372138076]]]},"properties":{"ID_SOURCE":"w145341198","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2188}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517259.09370585,5276640.525486645],[517258.73528944195,5276634.7451551445],[517262.04106522957,5276634.421533673],[517261.9722156196,5276632.309673512],[517266.13410197693,5276632.033047972],[517271.58812457795,5276631.671345638],[517272.0153743635,5276639.5635382375],[517262.77469261194,5276640.314117407],[517262.847165754,5276641.203450601],[517259.16585017013,5276641.525958607],[517259.09370585,5276640.525486645]]]},"properties":{"ID_SOURCE":"w145341199","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2189}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517007.82656602125,5276330.59547624],[517001.4723542305,5276330.465784249],[517001.6631336481,5276316.573877093],[517022.09319330216,5276316.855830894],[517028.60916862584,5276323.320981999],[517028.55652725266,5276341.325462216],[517014.5107988062,5276341.17327258],[517014.4662059015,5276330.726008999],[517011.1089270179,5276330.627290348],[517007.82656602125,5276330.59547624]]]},"properties":{"ID_SOURCE":"w145341202","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2190}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516966.02005650825,5276082.498668978],[516965.96067248995,5276074.518667985],[516971.8726272936,5276074.424751688],[516973.45006379456,5276074.429348266],[516973.37915803946,5276072.984325984],[516978.5624889338,5276072.888293248],[516978.4851051405,5276073.666045341],[516978.4601598776,5276082.223726995],[516978.4585400555,5276082.779420615],[516966.02005650825,5276082.498668978]]]},"properties":{"ID_SOURCE":"w145341206","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2191}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517301.8031733583,5276093.62236513],[517304.8964585728,5276089.074826678],[517305.87692711496,5276087.744063311],[517308.4252520014,5276089.641010336],[517308.95304449915,5276088.975740536],[517312.1085177152,5276091.307938327],[517317.27272981044,5276095.113153863],[517312.2939475941,5276102.211294501],[517303.67380425637,5276096.072995582],[517304.2770415775,5276095.296809788],[517301.8031733583,5276093.62236513]]]},"properties":{"ID_SOURCE":"w145341207","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2192}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516686.774560523,5276320.997885177],[516679.3909688374,5276320.976735165],[516674.30582990125,5276320.962174428],[516674.3876246536,5276318.628475342],[516674.4032157858,5276313.182675746],[516677.8580925626,5276313.303707636],[516677.86254809395,5276311.7477649],[516683.64624555595,5276311.764329715],[516683.5692224356,5276312.430947151],[516686.72428456316,5276312.328846117],[516686.774560523,5276320.997885177]]]},"properties":{"ID_SOURCE":"w145341208","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2193}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517204.5787715509,5276681.385875555],[517201.8141987498,5276681.577760364],[517201.8862210235,5276682.622687191],[517196.98811698385,5276682.963868212],[517192.15010008577,5276683.305230735],[517191.59476644784,5276675.512691715],[517200.97782572894,5276674.8513322845],[517200.88392723387,5276673.584061279],[517203.9865896715,5276673.359832853],[517204.1946850875,5276676.6501855515],[517204.5787715509,5276681.385875555]]]},"properties":{"ID_SOURCE":"w145341211","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2194}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517277.2750568855,5276502.1659109825],[517273.7814289126,5276502.488966968],[517273.7159721239,5276501.766364303],[517270.6731390615,5276502.046303339],[517266.9015365986,5276502.390767074],[517265.838794767,5276490.962447922],[517270.7599273271,5276490.510252542],[517271.0874443333,5276494.045468487],[517273.49918752455,5276493.819227688],[517273.27356354316,5276491.38459753],[517276.24129164487,5276491.104437031],[517276.3578750623,5276492.316206369],[517277.2750568855,5276502.1659109825]]]},"properties":{"ID_SOURCE":"w145341213","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2195}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517300.3651101278,5276147.854270886],[517297.1189968445,5276145.69963347],[517297.5944334747,5276144.956409338],[517290.47334323166,5276139.933978463],[517290.3231128544,5276139.933532494],[517295.45338697237,5276132.391263979],[517302.72504283173,5276137.303008425],[517304.38517209666,5276134.75172703],[517307.75875356013,5276136.984545012],[517300.3651101278,5276147.854270886]]]},"properties":{"ID_SOURCE":"w145341217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2196}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517040.603091387,5276562.639916875],[517042.563750044,5276559.978300024],[517046.33355181845,5276555.0991838435],[517048.6567508107,5276556.884220549],[517049.32763577293,5276556.063750355],[517050.91817982856,5276554.112347244],[517058.263643927,5276559.357426847],[517052.3823019297,5276567.1199859725],[517045.41108995496,5276562.320568118],[517043.4510812798,5276564.7599064065],[517040.603091387,5276562.639916875]]]},"properties":{"ID_SOURCE":"w145341219","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2197}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516654.794799036,5276209.43326149],[516650.2879426624,5276209.420375863],[516650.25191559654,5276203.629896758],[516650.2372923692,5276200.862477523],[516652.7911813988,5276200.869778919],[516661.5044498512,5276200.894697995],[516661.2635283956,5276206.339852016],[516660.287042327,5276206.337058751],[516658.93307741155,5276207.000023909],[516658.7758554968,5276209.444646697],[516654.794799036,5276209.43326149]]]},"properties":{"ID_SOURCE":"w145341221","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2198}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516716.16484131094,5276444.558365523],[516716.26993832923,5276434.111534993],[516717.09616347885,5276434.113906533],[516723.7059646633,5276434.132883078],[516723.76958697126,5276438.1340951305],[516723.0181545904,5276438.243077102],[516723.0514977709,5276439.71021695],[516723.0846494563,5276441.244040069],[516723.68585887883,5276441.134626731],[516723.67596554966,5276444.579929191],[516716.16484131094,5276444.558365523]]]},"properties":{"ID_SOURCE":"w145341222","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2199}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516723.67596554966,5276444.579929191],[516723.59159929317,5276447.802738409],[516723.06582088803,5276447.801228642],[516723.02376558573,5276449.368177743],[516722.9814550024,5276451.024037883],[516723.5823442767,5276451.025763324],[516723.4947867622,5276455.3599604815],[516719.81402363325,5276455.460531965],[516716.0587875316,5276455.338612601],[516716.16484131094,5276444.558365523],[516723.67596554966,5276444.579929191]]]},"properties":{"ID_SOURCE":"w145341225","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2200}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516711.39269472566,5276222.93213811],[516711.23098683794,5276226.932702111],[516707.8508546365,5276226.923004786],[516707.9352143819,5276223.700196476],[516699.89832535904,5276223.566007413],[516699.84551761247,5276215.786079524],[516704.1196745279,5276215.742766313],[516707.8079408111,5276215.697775517],[516707.80539030116,5276216.58688551],[516711.41118993156,5276216.4860906],[516711.39269472566,5276222.93213811]]]},"properties":{"ID_SOURCE":"w145341229","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2201}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516662.69450080284,5276310.03725495],[516666.4501495848,5276310.048000885],[516666.5265347032,5276309.603660764],[516671.8595563773,5276309.618924224],[516671.85605686624,5276310.841450656],[516674.55980543804,5276310.960330505],[516674.4032157858,5276313.182675746],[516674.3876246536,5276318.628475342],[516668.26592613664,5276318.6109523475],[516662.59490480996,5276318.594725128],[516662.69450080284,5276310.03725495]]]},"properties":{"ID_SOURCE":"w145341233","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2202}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516675.3580005194,5276171.215600691],[516674.7946397715,5276171.213987815],[516674.8324810868,5276168.491174663],[516673.75840305723,5276168.465871847],[516673.7776575393,5276166.987769591],[516673.76867960114,5276164.876090503],[516683.27077155025,5276164.881072162],[516683.27344425564,5276166.570402541],[516683.26962416584,5276167.904067435],[516683.2674262466,5276171.293820569],[516675.3580005194,5276171.215600691]]]},"properties":{"ID_SOURCE":"w145341234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2203}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516519.47852828365,5276671.72240366],[516524.8222559083,5276667.847674187],[516528.2649384169,5276672.191893461],[516529.16813073016,5276671.52761861],[516531.55484175246,5276674.790787407],[516533.7320674613,5276677.764399162],[516535.1622794699,5276676.6570626255],[516537.18231193454,5276679.441291824],[516529.35528557486,5276684.976056846],[516522.7706806182,5276676.17733243],[516519.47852828365,5276671.72240366]]]},"properties":{"ID_SOURCE":"w145341237","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2204}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516699.35321085516,5276466.071238974],[516706.41396032204,5276465.98034944],[516706.86430729605,5276466.092781026],[516706.9097677424,5276476.428904357],[516699.2481442923,5276476.518070265],[516699.26057268423,5276472.183657267],[516699.86145976756,5276472.185380268],[516699.895296518,5276470.862914767],[516699.94549395994,5276469.073709409],[516699.2694956266,5276469.07177103],[516699.35321085516,5276466.071238974]]]},"properties":{"ID_SOURCE":"w145341246","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2205}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517220.6805126607,5276499.041971895],[517223.5340564024,5276499.272689859],[517223.4543442899,5276500.828410845],[517227.0593211016,5276500.95021312],[517226.9805943173,5276502.172517679],[517226.5095492299,5276509.061789924],[517225.5331136853,5276509.058901767],[517224.4107304122,5276507.610765139],[517222.03743753996,5276507.53706256],[517220.2799845521,5276507.487409828],[517220.6805126607,5276499.041971895]]]},"properties":{"ID_SOURCE":"w145341247","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2206}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516603.2532031125,5276387.820869112],[516594.79268180573,5276388.819240966],[516594.8732465634,5276389.541878466],[516590.41007720213,5276390.0626334],[516589.7130391004,5276384.259156433],[516593.6502703529,5276383.792472281],[516593.3494356062,5276381.290972317],[516597.44443616876,5276380.813626256],[516602.35096455883,5276380.227456713],[516602.8351083202,5276384.29654925],[516603.2532031125,5276387.820869112]]]},"properties":{"ID_SOURCE":"w145341248","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2207}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516611.2066591496,5276182.73529361],[516607.8490675126,5276182.714604775],[516607.8458034095,5276183.859333848],[516602.94085162843,5276183.834235871],[516602.95786737907,5276180.500094943],[516599.38995344273,5276180.478811456],[516599.4256912755,5276173.210380432],[516602.6105245009,5276173.230571928],[516602.6224395269,5276171.685764813],[516602.0515673639,5276171.684137563],[516602.0839821745,5276165.582663435],[516605.9523962674,5276165.593691301],[516605.91557297914,5276173.239993945],[516606.67423183355,5276173.242156992],[516607.4328906891,5276173.244320136],[516607.43602794217,5276172.1440465795],[516611.2593371377,5276172.166063351],[516611.2233309667,5276179.523405319],[516611.2066591496,5276182.73529361]]]},"properties":{"ID_SOURCE":"w145341257","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2208}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516659.73578214174,5276170.592969052],[516659.60336901067,5276177.494362691],[516652.8959454072,5276177.364041655],[516652.9494031611,5276174.430107699],[516652.9671588703,5276173.474357464],[516647.0558832217,5276173.368547475],[516647.10065126844,5276170.845805367],[516647.1094333487,5276170.4012718685],[516656.4609051296,5276170.539146926],[516659.73578214174,5276170.592969052]]]},"properties":{"ID_SOURCE":"w145341298","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2209}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516653.86661644635,5276192.5373797],[516654.31698559935,5276192.649807127],[516654.2323374253,5276195.983754733],[516652.9557096037,5276195.868964835],[516652.7911813988,5276200.869778919],[516650.2372923692,5276200.862477523],[516644.4534848548,5276200.845946145],[516644.4648232963,5276196.8782928735],[516644.47698749724,5276192.621678886],[516648.60860209365,5276192.52234768],[516653.86661644635,5276192.5373797]]]},"properties":{"ID_SOURCE":"w145341299","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2210}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516363.2680664688,5276585.814947959],[516357.697171169,5276590.356025095],[516360.54227199074,5276593.587068373],[516355.5735087431,5276597.685280383],[516352.80289234035,5276594.676728055],[516352.4267217231,5276594.8979511745],[516347.18654155463,5276588.659416587],[516358.1026869244,5276579.687753485],[516361.02196553315,5276583.252424358],[516363.2680664688,5276585.814947959]]]},"properties":{"ID_SOURCE":"w145341308","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2211}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.1610882979,5276375.307969193],[516497.94807994977,5276373.606928828],[516501.9153870719,5276373.129153897],[516502.2238672,5276375.597328661],[516510.9625265891,5276374.521813071],[516511.9319818519,5276382.29322467],[516507.84443785215,5276382.792879886],[516503.2008451268,5276383.368760073],[516502.8556601056,5276380.6004041005],[516498.87330409273,5276381.089249704],[516498.1610882979,5276375.307969193]]]},"properties":{"ID_SOURCE":"w145341309","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2212}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516535.5068044968,5276370.134745798],[516534.69855529093,5276363.797489716],[516534.5521170041,5276362.463397902],[516538.53433106485,5276362.030146062],[516539.04843965557,5276366.1437739],[516548.06411990995,5276365.391405624],[516549.0923222587,5276373.618663134],[516544.2913297543,5276374.0718097165],[516539.85100254044,5276374.481528638],[516539.2636767835,5276369.700854698],[516535.5068044968,5276370.134745798]]]},"properties":{"ID_SOURCE":"w145341311","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2213}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516698.5579004369,5276455.288407075],[516696.6046931219,5276455.393946795],[516696.5423269278,5276450.948179816],[516697.4436608405,5276450.950763911],[516697.450766508,5276448.472368882],[516697.46150466136,5276444.726991658],[516704.82272492413,5276444.63696153],[516704.8787092717,5276451.305504383],[516703.9022642566,5276451.302703706],[516703.8907887826,5276455.3037001835],[516698.5579004369,5276455.288407075]]]},"properties":{"ID_SOURCE":"w145341319","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2214}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516458.7262602135,5276455.2725287145],[516455.2107974985,5276450.039029884],[516457.39278995077,5276448.711519242],[516456.5703354741,5276447.37551903],[516459.8818244145,5276445.050943908],[516462.62008831836,5276448.881888567],[516463.1732091883,5276449.839253365],[516467.6126243535,5276447.073312449],[516471.80124898156,5276453.308979794],[516461.8674180204,5276460.060412989],[516458.7262602135,5276455.2725287145]]]},"properties":{"ID_SOURCE":"w145341323","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2215}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517139.1620102541,5276506.803560414],[517136.8998668048,5276509.797676986],[517134.034553827,5276513.567998161],[517130.66210638575,5276511.001862716],[517130.20980947267,5276511.556231101],[517127.5044364933,5276509.469960647],[517123.68991051894,5276506.535767976],[517126.85696957144,5276502.321770121],[517130.82932680764,5276505.223087172],[517133.0911419197,5276502.340107061],[517139.1620102541,5276506.803560414]]]},"properties":{"ID_SOURCE":"w145341338","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2216}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516756.51179958193,5276790.218875004],[516758.01972421433,5276788.2115844125],[516757.28524455987,5276787.66488594],[516760.037263055,5276783.982965525],[516763.0576072566,5276786.236682484],[516768.8588430596,5276790.432240269],[516784.59417213954,5276769.472156537],[516770.8862185781,5276759.318943511],[516770.3433344397,5276760.050902521],[516761.00211219443,5276772.338294838],[516747.11415508634,5276762.084594029],[516746.2896703551,5276761.49318224],[516740.1071457761,5276769.733090808],[516738.75020335964,5276771.4740845235],[516736.1943969709,5276774.834273478],[516756.51179958193,5276790.218875004]]]},"properties":{"ID_SOURCE":"w146255123","HEIGHT_WALL":12.0,"HEIGHT_ROOF":12.0,"NB_LEV":4,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2217}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516641.0212486999,5276710.633940361],[516639.12989868957,5276715.407544977],[516638.44980093907,5276716.850418482],[516636.86079074984,5276720.958049224],[516625.4545774944,5276717.369002348],[516626.0595642178,5276715.9259129],[516620.80741489964,5276714.0215446185],[516623.7588258641,5276706.250187084],[516629.0116159792,5276707.932280317],[516629.54054457694,5276706.822393288],[516641.0212486999,5276710.633940361]]]},"properties":{"ID_SOURCE":"w146259605","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2218}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516031.60331127886,5277617.491933038],[516033.77484332904,5277617.042239892],[516034.6389688443,5277616.855682108],[516034.4239756618,5277615.843717388],[516038.1358975285,5277615.064849094],[516043.44828688545,5277613.956973912],[516041.8471878017,5277606.339482613],[516029.78717286524,5277608.873594352],[516031.25491963245,5277615.834990004],[516031.60331127886,5277617.491933038]]]},"properties":{"ID_SOURCE":"w147733318","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2219}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517217.6094331704,5277062.656235037],[517238.6393403624,5277062.385037347],[517238.4446299623,5277052.048453409],[517217.42245869956,5277052.230762986],[517217.6094331704,5277062.656235037]]]},"properties":{"ID_SOURCE":"w156350962","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2220}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517224.57108332566,5277080.592570804],[517224.91956923646,5277094.808390994],[517228.5700949458,5277094.641367381],[517228.60375565256,5277080.72675527],[517224.57108332566,5277080.592570804]]]},"properties":{"ID_SOURCE":"w156350964","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2221}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515330.34358018084,5277047.0122428695],[515327.48935724195,5277047.115868646],[515327.2818923599,5277040.335802238],[515331.4134636849,5277040.013260081],[515331.48534830083,5277041.235985799],[515339.14707697916,5277040.811605393],[515339.3606763779,5277045.257755205],[515338.5339528567,5277045.477856746],[515338.8153367004,5277052.702677115],[515330.627900222,5277053.1256737495],[515330.34358018084,5277047.0122428695]]]},"properties":{"ID_SOURCE":"w167333729","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2222}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.80598102853,5276995.974814463],[515281.3700200273,5276991.98051492],[515277.24599886755,5276989.4134812765],[515281.0926446736,5276983.199753622],[515289.3401052013,5276988.556107031],[515287.75649798964,5276990.997021762],[515291.6554929299,5276993.452332272],[515287.0548843428,5277000.775470276],[515283.1558924037,5276998.320162817],[515282.92999683745,5276998.541849251],[515278.80598102853,5276995.974814463]]]},"properties":{"ID_SOURCE":"w167333943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2223}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515206.99290592025,5277087.2547713155],[515219.8148777121,5277095.179188898],[515215.441489814,5277101.8361397125],[515212.89206248155,5277100.273522857],[515209.87546940916,5277105.044648361],[515203.5772912612,5277101.027171582],[515206.4428048901,5277096.589067328],[515205.392816986,5277096.030626939],[515207.2016698086,5277093.590277974],[515204.05257467995,5277091.581540224],[515206.99290592025,5277087.2547713155]]]},"properties":{"ID_SOURCE":"w167333947","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2224}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515210.17252455314,5276272.387510339],[515206.8637618165,5276273.823684262],[515205.5943780321,5276270.930742294],[515206.4974803048,5276270.2662629485],[515205.1535623589,5276267.150847439],[515218.1644574304,5276260.961015285],[515232.05855570326,5276290.449312006],[515220.85420171847,5276295.199020089],[515217.56751845655,5276288.188640959],[515215.3869124815,5276289.072060135],[515210.68119361944,5276278.946071136],[515212.7866893062,5276278.062454008],[515210.17252455314,5276272.387510339]]]},"properties":{"ID_SOURCE":"w167334306","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2225}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515386.32081853424,5276838.661877653],[515386.24130759935,5276840.328762267],[515378.34929717076,5276842.530708049],[515378.1260334573,5276841.752140917],[515373.4659355704,5276843.0735119805],[515372.2748005218,5276839.069340219],[515372.7260240009,5276838.848252099],[515371.75873917603,5276835.400369646],[515375.89280608995,5276834.188747869],[515375.67012862343,5276833.1879031025],[515390.5526099963,5276828.892771747],[515392.7852328767,5276836.678448132],[515386.32081853424,5276838.661877653]]]},"properties":{"ID_SOURCE":"w167334405","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2226}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515354.76783331804,5276870.2533917865],[515353.5611603613,5276872.139584134],[515345.3141785345,5276866.560863224],[515347.5007401425,5276863.343575931],[515352.5249174299,5276866.357590287],[515356.0680768592,5276861.365648595],[515363.7159691763,5276866.275966151],[515364.99863217276,5276864.056557463],[515367.9230651461,5276865.842508995],[515367.243300401,5276867.285530511],[515366.56558896124,5276867.950579976],[515361.5910187947,5276874.605833844],[515354.76783331804,5276870.2533917865]]]},"properties":{"ID_SOURCE":"w167334423","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2227}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515392.4224124489,5276973.934967667],[515391.44664309977,5276973.710109062],[515387.0908828351,5276973.58745773],[515382.5101028537,5276973.353075549],[515383.2107053798,5276964.019194172],[515384.93810895155,5276964.023757901],[515386.014826819,5276954.468591389],[515393.82423891575,5276955.04492965],[515392.96812110307,5276966.378912647],[515394.39481227024,5276966.493823933],[515394.16274105496,5276969.049422812],[515392.8108611616,5276969.04584901],[515392.4224124489,5276973.934967667]]]},"properties":{"ID_SOURCE":"w167334442","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2228}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515399.85845731327,5276888.488227246],[515399.9332688706,5276888.599564748],[515402.8573848572,5276890.496672826],[515405.55647668557,5276892.282047403],[515409.5303000372,5276894.848774],[515400.7857409368,5276907.0510025425],[515399.58640844346,5276906.158713416],[515397.9273336227,5276908.710538279],[515393.8035980053,5276906.032283554],[515395.46237792977,5276903.591596413],[515394.6376889204,5276903.033717812],[515399.916221499,5276895.045619778],[515396.91700144013,5276893.148314572],[515399.85845731327,5276888.488227246]]]},"properties":{"ID_SOURCE":"w167334686","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2229}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515401.29545554845,5276884.713279404],[515399.8690383801,5276884.487227608],[515398.67175834166,5276882.81696656],[515398.7545052098,5276879.927554347],[515393.43170367775,5276876.245872524],[515399.76320852083,5276867.704859926],[515399.01362056454,5276867.147179372],[515401.6523162404,5276863.375409663],[515410.64912982594,5276869.400753522],[515409.5950027596,5276870.3982208185],[515403.1860288938,5276879.828135142],[515410.38263601775,5276884.959600041],[515407.8935671486,5276888.954041122],[515402.12161634007,5276884.715464533],[515401.29545554845,5276884.713279404]]]},"properties":{"ID_SOURCE":"w167334755","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2230}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515355.0193147325,5276888.814376596],[515357.96015290066,5276884.376545963],[515364.18335530517,5276888.393989917],[515361.0174913005,5276892.720084183],[515355.0193147325,5276888.814376596]]]},"properties":{"ID_SOURCE":"w167336104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2231}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515317.6142273136,5277089.5452405615],[515317.4950121753,5277077.764120534],[515330.8639374958,5277077.577025069],[515330.8323345792,5277089.580027772],[515317.6142273136,5277089.5452405615]]]},"properties":{"ID_SOURCE":"w167336415","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2232}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515364.56155618536,5276915.846482748],[515369.9917130995,5276907.303059467],[515379.6638503379,5276913.552417918],[515373.9329713484,5276922.206177994],[515364.56155618536,5276915.846482748]]]},"properties":{"ID_SOURCE":"w167336511","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2233}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515392.4224124489,5276973.934967667],[515392.8108611616,5276969.04584901],[515394.16274105496,5276969.049422812],[515393.77399739623,5276974.049680276],[515392.4224124489,5276973.934967667]]]},"properties":{"ID_SOURCE":"w167336601","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2234}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515344.80900183745,5277001.260799205],[515344.17448993435,5277014.040189457],[515333.1359789119,5277013.344273772],[515333.9206747092,5277000.565277938],[515344.80900183745,5277001.260799205]]]},"properties":{"ID_SOURCE":"w167336790","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2235}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515285.63311472855,5277056.008154112],[515285.6564550351,5277047.117041415],[515297.7492749688,5277046.704240446],[515297.72474826185,5277056.0399087705],[515285.63311472855,5277056.008154112]]]},"properties":{"ID_SOURCE":"w167336879","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2236}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515284.10906693747,5276978.539804559],[515288.8604815982,5276970.994781051],[515297.7830155439,5276976.686337778],[515292.9567815223,5276984.120017943],[515284.10906693747,5276978.539804559]]]},"properties":{"ID_SOURCE":"w167337006","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2237}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515411.60897698184,5276620.228237965],[515414.3305489142,5276613.567064358],[515426.7848097565,5276618.823604123],[515423.9884114464,5276625.37343423],[515411.60897698184,5276620.228237965]]]},"properties":{"ID_SOURCE":"w167337067","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2238}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515253.26825382706,5277025.471012597],[515259.1487688345,5277016.928665491],[515265.1474593397,5277020.611997454],[515259.040754473,5277029.4871648345],[515253.26825382706,5277025.471012597]]]},"properties":{"ID_SOURCE":"w167337092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2239}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.80598102853,5276995.974814463],[515274.75706570985,5276993.407979631],[515277.24599886755,5276989.4134812765],[515281.3700200273,5276991.98051492],[515278.80598102853,5276995.974814463]]]},"properties":{"ID_SOURCE":"w167337424","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2240}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515349.09260930563,5276857.790789324],[515351.34226959577,5276859.130395317],[515350.13500953995,5276861.238866094],[515347.80936517916,5276860.232479231],[515349.09260930563,5276857.790789324]]]},"properties":{"ID_SOURCE":"w167337560","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2241}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515339.11969533615,5277022.695766066],[515347.75545427116,5277023.163080242],[515347.12328133185,5277035.053359381],[515338.487539992,5277034.586046093],[515339.11969533615,5277022.695766066]]]},"properties":{"ID_SOURCE":"w167337686","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2242}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515211.35845580883,5277083.598565003],[515218.3004604511,5277071.169061032],[515226.84942783916,5277076.081556321],[515219.53189621255,5277088.510068691],[515211.35845580883,5277083.598565003]]]},"properties":{"ID_SOURCE":"w167337732","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2243}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515242.708058359,5277042.892287077],[515249.7936907096,5277033.019409241],[515255.41656144965,5277036.812886749],[515248.1053227642,5277046.796306702],[515242.708058359,5277042.892287077]]]},"properties":{"ID_SOURCE":"w167338116","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2244}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515385.47867458686,5277015.260575378],[515386.18808738695,5277002.592526754],[515393.92233089334,5277003.168666881],[515392.9118983876,5277016.05819825],[515385.47867458686,5277015.260575378]]]},"properties":{"ID_SOURCE":"w167338256","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2245}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515354.1177448014,5277088.307706697],[515354.8150655078,5277080.19634839],[515367.9557445589,5277081.120133085],[515367.18330275314,5277089.231291665],[515354.1177448014,5277088.307706697]]]},"properties":{"ID_SOURCE":"w167338292","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2246}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515337.62988307315,5276961.009325413],[515352.7989490893,5276961.8272778485],[515352.0898976625,5276974.384190685],[515336.9211570027,5276973.455101116],[515337.62988307315,5276961.009325413]]]},"properties":{"ID_SOURCE":"w167338301","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2247}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515369.91250833607,5276937.310558524],[515379.2363699753,5276933.223008837],[515383.7159449862,5276943.34855098],[515374.39268320386,5276947.213815749],[515369.91250833607,5276937.310558524]]]},"properties":{"ID_SOURCE":"w167338342","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2248}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515278.195128983,5277085.662927032],[515288.93630723923,5277085.13542206],[515288.91792258644,5277092.137173722],[515278.4774602272,5277092.554328038],[515278.195128983,5277085.662927032]]]},"properties":{"ID_SOURCE":"w167338410","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2249}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515342.7140231991,5276884.225216003],[515346.3886291676,5276886.346552347],[515348.3390287862,5276887.240810012],[515346.67821374413,5276890.459482643],[515341.12890151056,5276887.221810324],[515342.7140231991,5276884.225216003]]]},"properties":{"ID_SOURCE":"w167338874","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2250}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515346.3886291676,5276886.346552347],[515342.7140231991,5276884.225216003],[515340.6891017456,5276883.108484612],[515344.9149273824,5276875.562122646],[515350.6892725137,5276878.911531333],[515346.3886291676,5276886.346552347]]]},"properties":{"ID_SOURCE":"w167338881","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2251}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515254.8360973313,5277057.705624167],[515247.3729331387,5277068.3554852605],[515239.35114840127,5277062.888641219],[515247.9463848784,5277050.130080614],[515252.07008454006,5277052.80823273],[515250.4873835225,5277054.915741042],[515254.8360973313,5277057.705624167]]]},"properties":{"ID_SOURCE":"w167338918","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2252}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515269.159142738,5277008.730571464],[515274.363178487,5277000.408745228],[515281.63660254714,5277004.873415666],[515274.09617763053,5277016.301017088],[515265.0246393264,5277010.164546832],[515266.6847927021,5277007.168128283],[515269.159142738,5277008.730571464]]]},"properties":{"ID_SOURCE":"w167338946","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2253}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515461.30732624885,5276601.021679048],[515454.2090166633,5276615.339847933],[515446.6333249236,5276611.429862714],[515467.46083291573,5276574.809071392],[515473.611545678,5276577.9373196885],[515471.8769411743,5276580.600061695],[515461.30732624885,5276601.021679048]]]},"properties":{"ID_SOURCE":"w167338962","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2254}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515310.5376069686,5277038.846935077],[515315.26883741585,5277038.970516935],[515314.48711015086,5277050.638126874],[515304.34815330873,5277050.611469431],[515304.0673107966,5277043.164373031],[515310.22638060775,5277042.958284724],[515310.5376069686,5277038.846935077]]]},"properties":{"ID_SOURCE":"w167338996","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2255}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515316.26046075247,5276947.505179084],[515321.9164167533,5276938.740025631],[515329.18958944705,5276943.315893835],[515321.3468190594,5276955.409475835],[515312.64958927187,5276949.718475711],[515314.6107877114,5276946.500583252],[515316.26046075247,5276947.505179084]]]},"properties":{"ID_SOURCE":"w167338998","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2256}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515221.4630635116,5276981.821037437],[515224.2526727522,5276977.71616299],[515225.8269574584,5276978.831675772],[515230.19986722944,5276972.3970116135],[515237.02331567387,5276976.638169571],[515229.9364744163,5276986.955617765],[515221.4630635116,5276981.821037437]]]},"properties":{"ID_SOURCE":"w167339017","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2257}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515202.821539837,5276297.263572999],[515200.6406494529,5276298.258136476],[515197.3278399925,5276272.465119814],[515201.3132021881,5276270.8084273115],[515211.3934312228,5276293.84062878],[515202.821539837,5276297.263572999]]]},"properties":{"ID_SOURCE":"w167339048","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2258}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515260.9956838682,5277085.951242251],[515262.266024785,5277088.39964479],[515269.4037143239,5277087.306961274],[515271.1083457862,5277095.9803267615],[515262.3935080816,5277097.068873962],[515258.06346617686,5277087.166094333],[515260.9956838682,5277085.951242251]]]},"properties":{"ID_SOURCE":"w167339123","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2259}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515302.2385815895,5277081.72503518],[515302.2441309816,5277079.61339582],[515309.9794487792,5277079.744869068],[515310.0340962133,5277087.524790529],[515296.2905559863,5277087.377530542],[515296.2303429746,5277081.7092486145],[515302.2385815895,5277081.72503518]]]},"properties":{"ID_SOURCE":"w167339135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2260}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515276.4584073152,5276888.830028044],[515282.2701125132,5276877.95359227],[515290.67026750755,5276882.421229536],[515282.4440939965,5276897.514626494],[515273.2192525455,5276892.489139588],[515275.48320238665,5276888.382911176],[515276.4584073152,5276888.830028044]]]},"properties":{"ID_SOURCE":"w167339197","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2261}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515243.07958199625,5277101.797287072],[515243.4571322786,5277101.0202977],[515248.18482083763,5277102.477492186],[515245.83713976975,5277109.917703302],[515235.4811210005,5277106.778685898],[515237.75194223376,5277100.005107635],[515243.07958199625,5277101.797287072]]]},"properties":{"ID_SOURCE":"w167339201","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2262}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515414.50482259446,5276859.852948459],[515420.17925783567,5276844.197281082],[515427.3069715855,5276846.994651341],[515420.1221630934,5276865.758222477],[515411.04318862414,5276862.399998216],[515412.10320036876,5276859.1797537105],[515414.50482259446,5276859.852948459]]]},"properties":{"ID_SOURCE":"w167339246","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2263}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515374.35096287605,5277048.350808326],[515374.82065794844,5277041.1279692035],[515386.53416214004,5277042.1591668585],[515385.8986814221,5277055.271970304],[515372.7588269083,5277054.014728542],[515372.9982211419,5277048.680655806],[515374.35096287605,5277048.350808326]]]},"properties":{"ID_SOURCE":"w167339277","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2264}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515345.9643344385,5277075.838567758],[515346.1837853826,5277078.0619398225],[515350.5397611912,5277078.073421828],[515350.36523677147,5277087.297555672],[515337.97237799247,5277087.598316965],[515338.00311733776,5277075.928731039],[515345.9643344385,5277075.838567758]]]},"properties":{"ID_SOURCE":"w167339300","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2265}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515341.7717633265,5276899.782284674],[515343.5824909287,5276896.675145287],[515351.6070456299,5276901.141881268],[515345.7215926794,5276911.46235612],[515339.0468927362,5276907.777161316],[515343.1219022526,5276900.452679883],[515341.7717633265,5276899.782284674]]]},"properties":{"ID_SOURCE":"w167339372","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2266}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515294.2826739215,5276962.562405954],[515301.59789337905,5276951.134239322],[515308.87077417393,5276955.821221126],[515307.13635648874,5276958.484013379],[515302.1362162462,5276966.350673376],[515301.6309427291,5276967.138437193],[515294.2826739215,5276962.562405954]]]},"properties":{"ID_SOURCE":"w167339390","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2267}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.966845591,5276925.9906852655],[515337.11744984327,5276927.443798221],[515334.09656884713,5276933.770802909],[515323.29462516314,5276928.741083056],[515320.65074631333,5276934.513388464],[515315.47786344815,5276930.943311679],[515318.196843755,5276925.171201534],[515320.764742027,5276919.732114145],[515333.966845591,5276925.9906852655]]]},"properties":{"ID_SOURCE":"w167339786","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2268}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515302.1362162462,5276966.350673376],[515307.13635648874,5276958.484013379],[515310.14279000816,5276960.4924311815],[515310.3648892573,5276961.7155514145],[515308.1778004137,5276965.155130813],[515306.975252172,5276965.48538851],[515306.52550171316,5276965.150787276],[515304.71539917926,5276968.035660645],[515302.1362162462,5276966.350673376]]]},"properties":{"ID_SOURCE":"w167339921","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2269}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515333.3672531719,5276982.559194302],[515338.69907029544,5276982.795516173],[515338.69321509294,5276985.018294099],[515346.0522581291,5276985.482242489],[515345.4987039203,5276996.039052252],[515336.8631973045,5276995.460602633],[515337.4038555209,5276989.793903564],[515333.123795828,5276989.449212602],[515333.3672531719,5276982.559194302]]]},"properties":{"ID_SOURCE":"w167340039","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2270}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515394.7416549124,5277090.971183214],[515394.12085164705,5277098.527040974],[515376.7773950528,5277096.480699802],[515376.94315615005,5277090.590733958],[515384.52737148287,5277091.055326356],[515384.8392353101,5277086.721702431],[515388.593500172,5277087.065042203],[515388.3590861694,5277090.509753097],[515394.7416549124,5277090.971183214]]]},"properties":{"ID_SOURCE":"w167340053","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2271}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515245.06322824437,5276946.540366744],[515250.64513713395,5276937.330392123],[515252.219718901,5276938.334773069],[515254.55815889576,5276934.451010792],[515260.25710082054,5276937.911272269],[515257.8432623872,5276941.905974378],[515257.4683208753,5276941.682712639],[515252.0371968283,5276950.670796449],[515245.06322824437,5276946.540366744]]]},"properties":{"ID_SOURCE":"w167340189","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2272}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515385.0498505867,5276978.583349862],[515384.27003166894,5276989.472977368],[515380.8155331887,5276989.352711883],[515380.5805331683,5276993.019700355],[515371.6446087625,5276992.440405652],[515372.5033222484,5276980.106169091],[515380.46290976845,5276980.682886078],[515380.6198702199,5276978.127088242],[515385.0498505867,5276978.583349862]]]},"properties":{"ID_SOURCE":"w167340233","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2273}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515378.5159931608,5277035.3584642615],[515379.3697253766,5277024.913589216],[515384.5510009741,5277025.260695354],[515384.93209881935,5277023.150048359],[515392.14058898774,5277023.724797171],[515391.44262255164,5277032.058428226],[515387.3125105145,5277031.8252332825],[515386.62453699094,5277036.380142219],[515378.5159931608,5277035.3584642615]]]},"properties":{"ID_SOURCE":"w167340268","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2274}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515506.5118116054,5276605.365174154],[515508.61161166785,5276606.593301425],[515505.1412053949,5276612.3633207055],[515501.66991845553,5276618.466758588],[515486.5224382316,5276609.201869594],[515493.53892493056,5276597.439733246],[515495.56421279476,5276598.445378307],[515497.6016259869,5276594.894332148],[515508.6246342482,5276601.703192971],[515506.5118116054,5276605.365174154]]]},"properties":{"ID_SOURCE":"w167340487","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2275}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516328.160293198,5277561.190231442],[516326.86342273565,5277563.042630068],[516325.67212490586,5277564.739729221],[516326.12177060934,5277565.074409719],[516322.95524178696,5277569.511125304],[516322.28061766404,5277569.064674426],[516321.428659649,5277570.262596454],[516320.24490569416,5277571.9486038815],[516323.5426160953,5277574.291786325],[516322.69050277624,5277575.545277671],[516321.5820019268,5277577.175925894],[516322.1067435148,5277577.510816626],[516318.563495567,5277582.391037941],[516317.9639691698,5277581.944798048],[516317.20237896114,5277583.0540621],[516314.6538068204,5277586.725649184],[516313.6660252678,5277588.156585457],[516314.1904548738,5277588.6026144745],[516312.5317928999,5277590.9319039285],[516317.3286203588,5277594.279542425],[516316.3183104982,5277595.710415122],[516315.2175117467,5277597.274402244],[516315.81703676487,5277597.720641869],[516312.3492139709,5277602.48993855],[516311.52471167024,5277601.931929063],[516310.6349011164,5277603.240886505],[516309.48870505963,5277604.927001389],[516301.5440610336,5277599.347756939],[516309.3091840523,5277588.588938021],[516303.9876054099,5277584.906417035],[516315.373587584,5277568.378474706],[516312.150967316,5277566.035507336],[516321.19778641826,5277553.502058017],[516328.160293198,5277561.190231442]]]},"properties":{"ID_SOURCE":"w188736211","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2276}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516756.81474360847,5276794.565311747],[516752.18515822693,5276800.820274783],[516749.9217006159,5276799.157781216],[516742.3001276249,5276793.301025846],[516738.4093175929,5276798.613435779],[516722.9023292213,5276818.607383708],[516725.20337200403,5276820.258860795],[516714.1657835096,5276834.864277684],[516725.0106371621,5276842.908593142],[516729.496692101,5276836.919931521],[516730.98060132214,5276838.03559258],[516733.57431359944,5276834.542142363],[516732.1576802395,5276833.5378137315],[516739.4714498097,5276823.656279419],[516740.96987058985,5276824.949808352],[516745.78092674847,5276818.261913052],[516741.34386044234,5276815.0372157395],[516743.89179019,5276811.799260015],[516746.5457988083,5276808.239305124],[516757.0222575284,5276813.80420345],[516762.8398559032,5276799.261636802],[516756.81474360847,5276794.565311747]]]},"properties":{"ID_SOURCE":"w191378073","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2277}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516762.8398559032,5276799.261636802],[516756.81474360847,5276794.565311747],[516763.0576072566,5276786.236682484],[516768.8588430596,5276790.432240269],[516769.79010329506,5276798.281389898],[516769.84248593723,5276798.348224614],[516765.53724123986,5276798.90264084],[516764.39517186425,5276799.054948558],[516762.8398559032,5276799.261636802]]]},"properties":{"ID_SOURCE":"w191378075","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2278}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516749.9217006159,5276799.157781216],[516752.18515822693,5276800.820274783],[516756.81474360847,5276794.565311747],[516763.0576072566,5276786.236682484],[516760.037263055,5276783.982965525],[516757.28524455987,5276787.66488594],[516758.01972421433,5276788.2115844125],[516756.51179958193,5276790.218875004],[516754.8152137307,5276792.536814526],[516754.046087155,5276793.590429456],[516749.9217006159,5276799.157781216]]]},"properties":{"ID_SOURCE":"w191378076","HEIGHT_WALL":9.0,"HEIGHT_ROOF":9.0,"NB_LEV":3,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2279}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.438001557,5277391.878772268],[515979.19350894564,5277393.067691808],[515978.7560307001,5277388.287479796],[515981.5356106823,5277387.96168949],[515981.1698773814,5277384.404212037],[515988.45662630635,5277383.646239138],[515988.16294415167,5277381.200357094],[515994.09730272536,5277380.6609572405],[515994.6101734063,5277385.33023772],[515990.8539980895,5277385.764479267],[515991.0291382136,5277387.620994949],[515991.438001557,5277391.878772268]]]},"properties":{"ID_SOURCE":"w340436078","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2280}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515989.81834194367,5277161.2592804795],[515989.6043284271,5277157.146521671],[515990.8813681562,5277157.038888951],[515990.6658291111,5277153.481824735],[515994.6468497844,5277153.270479632],[515994.50519383507,5277150.158177269],[516004.9462214674,5277149.520029064],[516005.1599189749,5277153.74392733],[516002.23032720375,5277153.9581547715],[516002.3363827386,5277156.359065057],[516002.512622491,5277160.549518388],[515989.81834194367,5277161.2592804795]]]},"properties":{"ID_SOURCE":"w340436079","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2281}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515908.0248913796,5277301.182480078],[515906.97531082877,5277300.512773819],[515903.9561247212,5277306.061514867],[515897.6571230187,5277302.598979277],[515904.6763501609,5277289.837074992],[515908.1258024974,5277291.735874859],[515909.9376239515,5277288.2954924535],[515915.4117459428,5277291.311227244],[515912.31683936843,5277297.082036509],[515910.7421643633,5277296.18861499],[515909.49675459677,5277298.474691186],[515908.0248913796,5277301.182480078]]]},"properties":{"ID_SOURCE":"w340436080","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2282}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.89196691266,5277104.502782046],[516002.44135065685,5277104.501543611],[516002.5805601217,5277108.502957248],[515994.7735472662,5277107.147829443],[515994.77537902974,5277106.480995973],[515993.498328143,5277106.588627854],[515993.49741233385,5277106.922044595],[515991.4705557302,5277106.583058446],[515991.18967941054,5277099.469343077],[516002.756728339,5277099.0565625895],[516002.83759661496,5277102.424319277],[516002.89196691266,5277104.502782046]]]},"properties":{"ID_SOURCE":"w340436081","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2283}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516036.59115396446,5277139.826799865],[516032.38481568027,5277140.0374959335],[516032.31216153887,5277139.148177807],[516030.9676780353,5277139.200045892],[516029.68327636487,5277139.2520796945],[516029.6823584756,5277139.585496449],[516024.34918061085,5277139.9042360205],[516023.7820060924,5277127.677301747],[516026.7116119262,5277127.463085124],[516026.6392626515,5277126.462628172],[516035.87808544043,5277126.043505859],[516036.59115396446,5277139.826799865]]]},"properties":{"ID_SOURCE":"w340436085","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2284}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.1805322246,5277148.158171221],[515953.94768512424,5277148.168647194],[515936.15327989176,5277149.109061801],[515935.9416613635,5277144.107193778],[515937.9697248772,5277144.001604962],[515937.5467943133,5277133.886729994],[515942.7445753217,5277133.645338017],[515942.5414457876,5277128.2878458975],[515949.0387471465,5277127.961105956],[515949.28684079146,5277133.352063419],[515951.36744950333,5277133.257737157],[515951.68765914085,5277139.738061919],[515951.8657628049,5277143.261680008],[515953.89352241234,5277143.267235656],[515954.1805322246,5277148.158171221]]]},"properties":{"ID_SOURCE":"w340436087","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2285}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515968.3501831486,5277376.255832734],[515957.7575401694,5277377.560467947],[515957.34597059386,5277374.280715985],[515957.0226920693,5277371.668044811],[515953.7925102022,5277371.992612114],[515953.13062500703,5277366.87836802],[515957.11210754915,5277366.444719599],[515957.26047858916,5277367.111965002],[515961.3924646263,5277366.567592208],[515961.32010742463,5277365.56713571],[515969.4335797194,5277364.589125796],[515970.46180164703,5277373.038570492],[515967.90751291317,5277373.364983986],[515968.3501831486,5277376.255832734]]]},"properties":{"ID_SOURCE":"w340436089","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2286}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515875.2901403201,5277369.432983595],[515869.7373369813,5277367.750748839],[515869.35036218213,5277369.20562525],[515869.0544760419,5277370.305102646],[515868.7543818484,5277370.193144934],[515867.01104574924,5277376.078802275],[515859.8072744629,5277373.947518751],[515861.6266115305,5277367.728647006],[515862.0015025091,5277367.951947909],[515865.6389774104,5277355.958762338],[515874.04345081386,5277358.426745784],[515873.28548752406,5277360.98089431],[515877.6376155629,5277362.326438612],[515875.2901403201,5277369.432983595]]]},"properties":{"ID_SOURCE":"w340436092","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2287}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515915.07744518295,5277358.661020923],[515910.95092496293,5277357.204925362],[515909.6648198532,5277360.646744252],[515901.3366780763,5277357.734358613],[515902.62338600296,5277354.0702599995],[515903.3737737271,5277354.294589186],[515903.74446306366,5277353.306457638],[515904.13023314613,5277352.29613935],[515901.2043875683,5277351.176749989],[515903.096143345,5277345.958347008],[515911.2744057585,5277348.759185647],[515910.8964782462,5277349.647271129],[515917.49885745824,5277351.99925312],[515915.07744518295,5277358.661020923]]]},"properties":{"ID_SOURCE":"w340436093","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2288}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515930.2410335626,5277328.139049027],[515920.791250246,5277323.434216629],[515922.5431719053,5277319.9269903265],[515923.53315355483,5277320.418712789],[515924.1523469428,5277319.186754686],[515924.5827571924,5277318.332155567],[515920.3678532804,5277316.23120109],[515922.48974249285,5277312.002577867],[515927.6646518251,5277314.572947054],[515928.1101437374,5277313.696161496],[515932.31753672735,5277315.797101021],[515931.8795847459,5277316.662792915],[515935.1645224755,5277318.294423361],[515930.2410335626,5277328.139049027]]]},"properties":{"ID_SOURCE":"w340436094","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2289}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.25160203734,5277022.227392276],[516004.24699797266,5277021.373977898],[516004.1025942196,5277019.261926013],[516011.1632690234,5277018.947917244],[516011.88221778534,5277030.619566664],[516011.8819121729,5277030.730705561],[516005.1213607511,5277031.156678063],[516005.04900644044,5277030.156221538],[516000.07622744533,5277030.475974406],[515996.78607631923,5277030.689214122],[515996.85843203904,5277031.6896705385],[515992.0508828566,5277032.009884183],[515991.8255719257,5277032.0092653865],[515991.25160203734,5277022.227392276]]]},"properties":{"ID_SOURCE":"w340436095","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2290}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516044.37919796957,5277175.301839482],[516027.1793568095,5277175.810168896],[516026.089537657,5277162.47039743],[516030.3712674348,5277162.148764683],[516030.66371969884,5277165.039203714],[516033.01493032963,5277164.85673988],[516034.79524398997,5277164.717160691],[516034.57789573004,5277161.826928269],[516038.3339126577,5277161.503853669],[516038.6965647304,5277166.172722724],[516038.1705451992,5277166.282413565],[516038.4617688344,5277169.617408703],[516043.82477734156,5277169.365448232],[516044.01456051326,5277171.3553729905],[516044.37919796957,5277175.301839482]]]},"properties":{"ID_SOURCE":"w340436096","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2291}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515923.4590751039,5277342.012970069],[515923.30796395923,5277342.345976149],[515920.9826103236,5277341.339358964],[515919.84851837705,5277344.1147525385],[515911.52187654946,5277340.646657683],[515913.72918530036,5277335.384664639],[515914.3187908135,5277333.9859149335],[515911.01835028885,5277332.53207748],[515912.9076907805,5277328.20278942],[515916.4334327095,5277329.657243825],[515915.828988585,5277330.989268877],[515919.2793244571,5277332.554658678],[515919.80836554646,5277331.333567587],[515926.7847406968,5277334.242281495],[515923.4590751039,5277342.012970069]]]},"properties":{"ID_SOURCE":"w340436097","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2292}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.84584408434,5277121.2847579075],[516000.89256845036,5277121.501669444],[516001.2485340446,5277128.615591942],[516001.9244556266,5277128.6174494745],[516001.92384475993,5277128.839727307],[515988.779094503,5277129.47045618],[515988.2081820834,5277118.577192713],[515992.94055707473,5277118.2567697335],[515992.9390307741,5277118.812464303],[515998.1220210255,5277118.49328324],[515997.691253628,5277111.268015796],[516002.8715018303,5277111.949089164],[516002.5607062981,5277115.726986583],[516002.7105717055,5277118.583690119],[516002.84584408434,5277121.2847579075]]]},"properties":{"ID_SOURCE":"w340436098","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2293}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515947.7653076292,5277313.205380153],[515949.61713163,5277308.876001208],[515947.95185833005,5277308.160145031],[515949.4106364209,5277304.752149654],[515950.4383207078,5277305.188410066],[515952.17682903976,5277301.103229057],[515955.50740871154,5277302.52383039],[515955.6963773636,5277302.079789113],[515959.6720856972,5277303.768896272],[515959.24124273314,5277304.779087322],[515962.60933817655,5277306.210909554],[515960.175455573,5277311.916822147],[515957.9925424407,5277310.999492547],[515955.78715952253,5277310.059874235],[515953.4213015186,5277315.610380366],[515947.7653076292,5277313.205380153]]]},"properties":{"ID_SOURCE":"w340436099","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2294}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515899.36237567844,5277393.182559464],[515899.43929567095,5277392.515930766],[515897.11153040326,5277392.398434703],[515897.18996744265,5277391.176111166],[515893.06012874225,5277390.942556753],[515893.21669780277,5277388.609048543],[515889.91294662264,5277388.377751454],[515890.226992435,5277383.377318021],[515901.56513660174,5277384.075112346],[515901.4172274424,5277385.986312774],[515901.25350936956,5277388.186433497],[515904.78255737456,5277388.418352474],[515904.2356125116,5277396.196643833],[515900.9318660457,5277395.965340474],[515899.284545203,5277394.182605048],[515899.36237567844,5277393.182559464]]]},"properties":{"ID_SOURCE":"w340436100","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2295}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.5294215951,5277061.877587022],[515981.5300316691,5277061.655309213],[515984.5347723037,5277061.441277452],[515984.24717296194,5277056.772618823],[515981.24273496174,5277056.875511831],[515980.88429967477,5277050.6507026395],[515991.70102109294,5277050.013561011],[515991.7700198755,5277052.236545322],[515995.37559285824,5277052.024169288],[515995.627219469,5277056.114803004],[515993.86192481633,5277056.243321585],[515993.93367014325,5277057.466055814],[515997.52403610444,5277057.320323197],[515997.7544734942,5277060.921883965],[515981.5294215951,5277061.877587022]]]},"properties":{"ID_SOURCE":"w340436101","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2296}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515954.734450973,5277165.275211357],[515954.73353736685,5277165.608628123],[515936.78174503986,5277166.44858353],[515936.57043198706,5277161.335576424],[515938.5233875404,5277161.229782261],[515938.24092860625,5277154.67176358],[515936.28797085927,5277154.777557842],[515936.00307562825,5277149.108650704],[515936.15327989176,5277149.109061801],[515953.94768512424,5277148.168647194],[515954.1659151024,5277153.492839383],[515949.20856923907,5277153.701537749],[515949.3151032838,5277155.935738634],[515949.4220025605,5277158.036572825],[515954.37934474216,5277157.827874649],[515954.734450973,5277165.275211357]]]},"properties":{"ID_SOURCE":"w340436102","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2297}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515940.7394441584,5277396.941085121],[515930.1476358483,5277397.956809203],[515929.40272956726,5277390.241669345],[515932.3323821354,5277389.9607220795],[515932.20085341315,5277388.626684625],[515936.01691904006,5277388.259253069],[515935.8853302795,5277386.947443325],[515940.35494171997,5277386.515119579],[515940.0482887819,5277383.313453943],[515943.8868881441,5277382.946089223],[515944.61718255613,5277390.505595207],[515940.7259883893,5277390.883929405],[515940.77706667327,5277391.428654247],[515940.21367198584,5277391.482681639],[515940.359701319,5277393.005696645],[515940.7394441584,5277396.941085121]]]},"properties":{"ID_SOURCE":"w340436103","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2298}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516053.37011408113,5277046.849062126],[516054.2722748032,5277046.518130189],[516055.6882082727,5277050.523065134],[516049.2231887128,5277052.728037179],[516048.2551151489,5277049.724595855],[516048.25634038675,5277049.280040246],[516047.7382799191,5277049.223042575],[516047.1300953336,5277049.165796575],[516042.54449965013,5277050.709117365],[516041.2039668349,5277046.593253635],[516043.30870092363,5277045.932213839],[516041.89245162794,5277042.038420859],[516048.73330424743,5277039.723336766],[516050.07505874254,5277043.394646591],[516051.9541781065,5277042.844127773],[516053.37011408113,5277046.849062126]]]},"properties":{"ID_SOURCE":"w340436104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2299}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.01143970306,5277107.358461034],[515937.0469848299,5277107.956458836],[515936.67190665286,5277099.564381532],[515939.79660786263,5277099.417338957],[515939.6269183536,5277095.560325325],[515944.69702842156,5277095.329699412],[515944.86659284454,5277099.231168764],[515947.37532993074,5277099.126899441],[515947.1418576833,5277093.880464081],[515951.1979288702,5277093.702636564],[515951.5021159183,5277100.549678161],[515947.64885737165,5277100.716946942],[515947.7052563945,5277102.061892327],[515947.75478434947,5277103.173425432],[515949.79782200896,5277103.090109633],[515950.01143970306,5277107.358461034]]]},"properties":{"ID_SOURCE":"w340436105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2300}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515942.2207905686,5277511.441369855],[515942.74677711766,5277511.3316703625],[515943.256937478,5277517.001198069],[515928.14992719545,5277518.760312667],[515925.3788876802,5277491.278970126],[515927.0313415142,5277491.172350625],[515925.3496946768,5277474.496778963],[515925.9507821691,5277474.387283373],[515925.3664149095,5277468.38413526],[515941.9679449718,5277466.651332995],[515942.04060842877,5277467.540650434],[515946.0971193588,5277467.107200206],[515946.24731542036,5277467.107611583],[515947.2709853649,5277477.224138166],[515938.85758647113,5277478.090217412],[515939.2377503071,5277481.870011759],[515941.4165682732,5277503.459328946],[515942.2207905686,5277511.441369855]]]},"properties":{"ID_SOURCE":"w340436106","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2301}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516063.1517378081,5277170.963577326],[516058.3296164245,5277171.161441811],[516058.2315542447,5277168.59384273],[516054.28833760635,5277168.716336744],[516054.3338302266,5277171.283790806],[516044.01456051326,5277171.3553729905],[516043.82477734156,5277169.365448232],[516043.3944766091,5277164.718620369],[516049.8008247221,5277164.680705803],[516051.9712093463,5277164.708916741],[516051.9936137725,5277162.030510142],[516052.0115448886,5277160.974731801],[516061.61745629786,5277160.867853932],[516061.7216467785,5277166.658523206],[516063.01343027607,5277166.650972769],[516063.1517378081,5277170.963577326]]]},"properties":{"ID_SOURCE":"w340436107","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2302}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515963.57663236477,5277282.107343178],[515960.20076940535,5277280.76441104],[515960.5033037378,5277279.987261901],[515959.4681056896,5277279.5509791495],[515958.40292822605,5277279.092386462],[515958.0249890726,5277279.980468812],[515952.47364624776,5277277.742460815],[515955.4986798359,5277270.08210516],[515958.64924841694,5277271.424416999],[515959.48083797144,5277269.4261803925],[515963.9816925279,5277271.32789535],[515964.208609248,5277270.739476699],[515967.5394167995,5277272.082287556],[515963.57663236477,5277282.107343178]]]},"properties":{"ID_SOURCE":"w340436108","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2303}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515953.05730436207,5277127.760949142],[515952.53900640167,5277127.7928710515],[515949.0387471465,5277127.961105956],[515942.5414457876,5277128.2878458975],[515937.2760070094,5277128.551280838],[515936.53479011724,5277113.989945158],[515938.4802512838,5277113.884130397],[515938.45176177047,5277113.317239705],[515944.4232700894,5277113.022397237],[515944.3806431931,5277112.133162537],[515944.82380945486,5277112.112148133],[515945.0942559433,5277117.569850318],[515947.1223288786,5277117.464264673],[515947.1295347473,5277117.575424159],[515947.25780970143,5277120.09864776],[515947.4216876635,5277123.333263281],[515952.8223465555,5277123.059093987],[515953.05730436207,5277127.760949142]]]},"properties":{"ID_SOURCE":"w340436109","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2304}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515980.75235966925,5277290.26766411],[515976.62641696754,5277288.589244341],[515977.45831527805,5277286.479871296],[515975.82286561746,5277285.841886875],[515974.3074542365,5277285.24868816],[515972.719065367,5277289.356502343],[515965.2172611507,5277286.335153209],[515966.7299355572,5277282.449408946],[515972.88176664733,5277284.800217703],[515973.6385637212,5277282.6906381],[515970.03740210977,5277281.3470821455],[515971.7015014453,5277277.017195408],[515975.8277587268,5277278.584472691],[515976.58394773334,5277276.697171374],[515980.78499936813,5277278.37579719],[515981.3140582195,5277277.154711752],[515985.2898067966,5277278.83272242],[515980.75235966925,5277290.26766411]]]},"properties":{"ID_SOURCE":"w340436110","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2305}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515956.62831835996,5277186.730374629],[515949.2665607788,5277187.36592914],[515941.161116144,5277188.066140675],[515937.92344494903,5277188.346240785],[515937.55858415534,5277184.455350501],[515941.54019012203,5277184.021691279],[515941.3954638439,5277182.020779377],[515943.57402200875,5277181.804464849],[515943.27584317606,5277178.247176097],[515943.0650473006,5277175.690384471],[515946.52064274007,5277175.366428123],[515949.90113677713,5277175.042268095],[515951.70936501614,5277172.935566267],[515956.1415909392,5277172.503151539],[515956.65177052165,5277178.172677358],[515955.9007529453,5277178.170619262],[515956.13346447865,5277180.94975097],[515956.62831835996,5277186.730374629]]]},"properties":{"ID_SOURCE":"w340436111","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2306}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515995.69249066676,5277073.3638704745],[515996.368723982,5277073.254588445],[515996.6581446534,5277077.256414377],[515984.71492745343,5277077.890454001],[515984.49999152403,5277074.111112655],[515985.5517400473,5277074.002860233],[515985.04798587103,5277065.999415761],[515984.0713391168,5277066.107874441],[515983.99684608256,5277065.885390468],[515989.78070857836,5277065.567851237],[515989.9251162434,5277067.679902909],[515992.85475091543,5277067.465669211],[515992.7103443054,5277065.353617461],[515997.8933821053,5277065.034436108],[515998.2524089241,5277071.036968718],[515995.62349369255,5277071.140886043],[515995.65826696315,5277072.152353241],[515995.69249066676,5277073.3638704745]]]},"properties":{"ID_SOURCE":"w340436112","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2307}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516035.463870323,5277107.370886055],[516030.22078582784,5277107.689868497],[516030.2909929406,5277109.468297849],[516024.5819683985,5277109.897142369],[516024.43206897867,5277109.785590082],[516024.07582451636,5277102.782805224],[516023.2493886296,5277102.891670695],[516022.8913072812,5277096.555719451],[516027.4731906611,5277096.346050082],[516027.5464579643,5277097.013090271],[516028.29503856314,5277097.904268861],[516031.07445394964,5277097.689640938],[516031.0060828135,5277095.244378152],[516034.7618363952,5277095.032440094],[516035.05414883414,5277100.701372477],[516035.14780358697,5277102.146447185],[516035.463870323,5277107.370886055]]]},"properties":{"ID_SOURCE":"w340436113","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2308}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515926.8041810391,5277272.226338206],[515925.45541112387,5277271.111251168],[515921.3489371699,5277276.034626521],[515920.1810505361,5277277.431794204],[515918.9070772011,5277276.428052962],[515916.94443825533,5277280.090299808],[515911.91939069325,5277277.631489787],[515914.7862713691,5277272.860315105],[515914.18698594865,5277272.302978211],[515922.47509529296,5277262.434197983],[515924.3483565246,5277263.995277848],[515926.98508766905,5277261.0017160745],[515931.1061986137,5277264.458323555],[515928.54426345276,5277267.563227876],[515929.2937491901,5277268.120977174],[515928.9170299972,5277268.5645056255],[515929.51631440374,5277269.12184404],[515926.8041810391,5277272.226338206]]]},"properties":{"ID_SOURCE":"w340436114","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2309}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515928.9182404744,5277350.474526742],[515930.27885059465,5277347.255195515],[515929.0784736336,5277346.807352155],[515930.9678230325,5277342.478069837],[515932.99308014393,5277343.372729996],[515934.5045018173,5277339.931532907],[515937.95513164153,5277341.385794868],[515938.40877195843,5277340.275638818],[515939.0840604477,5277340.499767022],[515942.3093898668,5277341.953414794],[515941.855748931,5277343.063570544],[515945.3063750779,5277344.517836876],[515942.96337502304,5277349.957270253],[515940.4127291338,5277348.950028358],[515940.0424288442,5277349.793676939],[515939.73257340747,5277350.504123277],[515936.882137444,5277349.273782623],[515935.2193010084,5277353.159123876],[515928.9182404744,5277350.474526742]]]},"properties":{"ID_SOURCE":"w340436115","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2310}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515939.3132622729,5277366.507105026],[515939.38623176585,5277367.285283331],[515939.8976262022,5277372.510253584],[515932.9863661818,5277373.269314828],[515932.69448498805,5277370.156601925],[515930.974255311,5277370.3186044125],[515929.31410515384,5277370.4807717865],[515929.60598813614,5277373.593484517],[515923.4463309814,5277374.132333922],[515922.8616463299,5277368.240325995],[515924.88993553363,5277368.023593802],[515924.45210670587,5277363.354525126],[515928.5086887938,5277362.921062551],[515928.3606184037,5277362.142678939],[515933.31869845977,5277361.600546287],[515933.1724535337,5277360.155328811],[515937.1539391124,5277359.721666741],[515937.8109714847,5277366.614132252],[515939.3132622729,5277366.507105026]]]},"properties":{"ID_SOURCE":"w340436116","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2311}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515986.69147790514,5277370.082336845],[515987.2925773468,5277369.972847574],[515987.4433862742,5277369.750982092],[515987.9580944578,5277373.753428142],[515980.67072313005,5277374.733679599],[515980.15539995214,5277370.953512117],[515976.47401078825,5277371.499108033],[515975.8863299003,5277366.71848426],[515976.86292611726,5277366.61002427],[515976.42178417824,5277363.163480126],[515979.9529798429,5277362.6174719315],[515980.1007382898,5277363.506995829],[515986.1108237802,5277362.745516018],[515985.8901028841,5277361.077813071],[515990.6228912282,5277360.535110618],[515991.3580120935,5277366.316399009],[515986.32452591456,5277366.969414996],[515986.47863359377,5277368.281287724],[515986.69147790514,5277370.082336845]]]},"properties":{"ID_SOURCE":"w340436117","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2312}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515941.30368145637,5277306.06362496],[515941.1827909874,5277306.330029441],[515940.1776362498,5277305.893832346],[515938.938236135,5277308.724503703],[515939.4108189333,5277308.9258490475],[515939.1765483032,5277309.458678655],[515932.1104551207,5277306.394108932],[515933.6219465291,5277302.930684009],[515932.50426206493,5277302.449724382],[515933.4111209428,5277300.385006123],[515933.9325970227,5277299.186123603],[515932.9874598462,5277298.772319964],[515934.76344708406,5277294.709464365],[515935.7536145276,5277295.134505511],[515935.98791582923,5277294.590561883],[515940.66115427646,5277296.614984521],[515941.0465997403,5277295.726921591],[515945.05220453115,5277297.471670448],[515941.30368145637,5277306.06362496]]]},"properties":{"ID_SOURCE":"w340436118","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2313}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516001.90437916777,5277299.883780148],[515995.81759986526,5277301.200732139],[515991.3572888055,5277295.487009087],[515990.4293117163,5277294.29526476],[515987.8707147817,5277296.177614765],[515983.89162267186,5277295.722130654],[515984.7363376686,5277288.944922957],[515984.88653832814,5277288.945335317],[515984.88531783613,5277289.389891093],[515987.438118503,5277289.619179727],[515988.0529594924,5277284.5084380675],[515998.5636544339,5277285.759847101],[515998.64119788725,5277284.870941911],[515998.8664990339,5277284.871560994],[515998.0983941973,5277291.0932782665],[515999.97529093106,5277291.320715266],[515999.5891002896,5277295.209546454],[516000.8654990982,5277295.324193859],[516001.90437916777,5277299.883780148]]]},"properties":{"ID_SOURCE":"w340436119","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2314}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.9597745419,5277030.724398038],[516050.9281568224,5277033.616700656],[516052.50686489034,5277033.0653539235],[516052.73033742595,5277033.732808461],[516041.0031500615,5277037.701520912],[516041.0037623991,5277037.4792431155],[516041.9059238574,5277037.148309265],[516040.1926246168,5277032.031161242],[516039.21535882744,5277032.361888479],[516039.051600251,5277031.827966643],[516038.84320803155,5277031.138326232],[516034.9411844808,5277029.90504241],[516037.2129665144,5277023.131774689],[516040.36426285916,5277024.251852167],[516041.10978924105,5277026.254421268],[516044.71813641116,5277025.041825675],[516044.04771487036,5277023.039463056],[516048.5582289084,5277021.49593647],[516051.5384832976,5277030.173051044],[516049.9597745419,5277030.724398038]]]},"properties":{"ID_SOURCE":"w340436120","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2315}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515956.7905100884,5277204.279787623],[515945.575159112,5277205.238206422],[515945.24535956915,5277202.258757597],[515939.1606211896,5277202.797796313],[515938.65194808785,5277196.572577199],[515940.60489186755,5277196.46678375],[515940.2427717684,5277191.575642901],[515941.44500568474,5277191.356654821],[515941.161116144,5277188.066140675],[515949.2665607788,5277187.36592914],[515949.41155819804,5277189.266816225],[515950.0874727263,5277189.2686677575],[515950.59704768466,5277195.160471043],[515949.99593093,5277195.269964106],[515950.1118615312,5277196.815124376],[515950.21331978193,5277198.16019343],[515950.8895377419,5277198.050906129],[515951.0348692542,5277199.829540467],[515956.3682924738,5277199.399594921],[515956.7905100884,5277204.279787623]]]},"properties":{"ID_SOURCE":"w340436121","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2316}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516071.34535073163,5277108.403386315],[516055.976526858,5277109.383472698],[516055.3284592774,5277099.279081883],[516056.03454797657,5277099.23657296],[516056.0489249588,5277099.470006091],[516055.5531547035,5277099.501980962],[516055.6251929298,5277100.6135771535],[516059.63641603553,5277100.357903686],[516059.5860511194,5277099.557558534],[516062.84612472163,5277099.344271492],[516068.18691361905,5277099.003360057],[516068.15831396775,5277098.4809242785],[516068.6991767287,5277098.437960945],[516068.6273863299,5277097.237453458],[516073.795379703,5277096.9182982575],[516073.8170208192,5277097.240663293],[516073.4865071202,5277097.261978861],[516073.96193648933,5277104.598515266],[516071.11502230255,5277104.77959448],[516071.34535073163,5277108.403386315]]]},"properties":{"ID_SOURCE":"w340436122","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2317}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516081.6584310408,5277029.033621653],[516074.1413129159,5277031.45794001],[516074.0665160622,5277031.346593792],[516074.89357671386,5277031.015457723],[516071.8400942773,5277021.671290428],[516062.3681273394,5277024.868206888],[516060.43198325194,5277018.861320296],[516063.13817333034,5277017.979667092],[516062.91500795196,5277017.201073276],[516064.34320730646,5277016.760454293],[516064.6414763441,5277017.539255367],[516068.0245223303,5277016.326052609],[516067.80105085945,5277015.658597501],[516069.6804875745,5277014.996945513],[516067.81822488183,5277009.434819389],[516068.0438433781,5277009.324302229],[516068.342112311,5277010.103103483],[516071.1234422794,5277009.210547355],[516074.50615697296,5277008.119601149],[516074.282992724,5277007.341006905],[516074.6588193564,5277007.230904657],[516081.6584310408,5277029.033621653]]]},"properties":{"ID_SOURCE":"w340436123","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2318}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516049.5997250952,5277106.854133846],[516042.61425721465,5277107.168302728],[516042.4637456587,5277107.2790278],[516042.31997054006,5277104.944696825],[516039.8412751344,5277105.049007993],[516039.98505124234,5277107.383338908],[516035.47827871516,5277107.593205246],[516035.463870323,5277107.370886055],[516035.14780358697,5277102.146447185],[516038.57310081157,5277101.933601573],[516038.5016716062,5277100.59972778],[516038.28768990183,5277096.486967502],[516041.21731198987,5277096.272758156],[516041.07537312474,5277093.271593795],[516045.3568483824,5277093.061110897],[516045.8825683889,5277093.062559613],[516046.16858493723,5277098.286916224],[516045.19224865857,5277098.284225739],[516045.3351040364,5277100.951973496],[516046.31159300514,5277100.899094552],[516049.2410600234,5277100.740458698],[516049.5997250952,5277106.854133846]]]},"properties":{"ID_SOURCE":"w340436124","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2319}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515894.7171689724,5277444.183042372],[515892.36060389754,5277454.623750564],[515886.7315755778,5277453.38585008],[515886.5032483523,5277454.496625062],[515886.2031588412,5277454.384666424],[515871.9429857318,5277451.233859018],[515872.24792348745,5277449.567593347],[515855.9612879314,5277445.966741808],[515858.1663832994,5277435.970165943],[515862.36947295954,5277436.870734123],[515862.90091524704,5277434.760525944],[515869.8057310346,5277436.3353],[515870.1854644259,5277434.78037793],[515870.3356613161,5277434.780787346],[515869.9559278843,5277436.335709405],[515883.69075311034,5277439.373938624],[515884.07049002254,5277437.819017445],[515884.2203836181,5277437.93056619],[515883.9157450575,5277439.485692241],[515890.89564803825,5277441.060696233],[515890.36419614987,5277443.170901898],[515893.2161126461,5277443.845525182],[515894.7171689724,5277444.183042372]]]},"properties":{"ID_SOURCE":"w340436125","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2320}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515892.9991492734,5277413.281488637],[515891.02170827467,5277422.389554281],[515889.2430542315,5277421.951254669],[515887.79459121136,5277421.602768473],[515887.41454900557,5277423.268828342],[515881.260102179,5277421.9183598375],[515881.6401427076,5277420.252299575],[515880.25914633623,5277419.948455213],[515876.94178688707,5277419.205885211],[515875.56079002883,5277418.902041965],[515875.18105419644,5277420.45696365],[515874.80556104705,5277420.45593981],[515868.87640432594,5277419.106098714],[515869.25644148333,5277417.44003766],[515867.9655016413,5277417.158669645],[515864.28033722413,5277416.348420584],[515863.1019843704,5277416.089588386],[515862.79704755486,5277417.7558544455],[515856.7927866732,5277416.405821066],[515857.17342593614,5277414.517481303],[515855.1094221487,5277414.067300998],[515851.4692527386,5277413.279410558],[515853.3703254455,5277404.615683116],[515859.14960556576,5277405.853960251],[515858.9978942748,5277406.409245954],[515861.85013515473,5277406.972714819],[515862.00184670405,5277406.41742919],[515862.30224194867,5277406.418247599],[515892.9991492734,5277413.281488637]]]},"properties":{"ID_SOURCE":"w340436126","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2321}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515922.31439386326,5277128.954907566],[515918.2582570581,5277129.166096829],[515918.11625576724,5277126.164935453],[515922.0975961358,5277125.842401806],[515922.31439386326,5277128.954907566]]]},"properties":{"ID_SOURCE":"w340436127","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2322}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516053.70282393025,5277144.097264428],[516051.149655505,5277143.979085852],[516051.15517023223,5277141.978585333],[516053.70864595653,5277141.9856249895],[516053.70282393025,5277144.097264428]]]},"properties":{"ID_SOURCE":"w340436128","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2323}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516046.31159300514,5277100.899094552],[516045.3351040364,5277100.951973496],[516045.19224865857,5277098.284225739],[516046.16858493723,5277098.286916224],[516046.24736955954,5277099.676380265],[516046.31159300514,5277100.899094552]]]},"properties":{"ID_SOURCE":"w340436129","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2324}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516010.8042518793,5277012.945384312],[516005.7716802394,5277013.153828242],[516005.70176973956,5277011.264260577],[516010.6595446834,5277010.944471184],[516010.8042518793,5277012.945384312]]]},"properties":{"ID_SOURCE":"w340436130","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2325}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.57310081157,5277101.933601573],[516035.14780358697,5277102.146447185],[516035.05414883414,5277100.701372477],[516038.5016716062,5277100.59972778],[516038.57310081157,5277101.933601573]]]},"properties":{"ID_SOURCE":"w340436131","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2326}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516051.9712093463,5277164.708916741],[516049.8008247221,5277164.680705803],[516049.82727658877,5277163.258189711],[516049.8456055649,5277162.057930766],[516051.9936137725,5277162.030510142],[516051.9712093463,5277164.708916741]]]},"properties":{"ID_SOURCE":"w340436132","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2327}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515995.37559285824,5277052.024169288],[515991.7700198755,5277052.236545322],[515991.70102109294,5277050.013561011],[515995.23149203346,5277049.800978625],[515995.37559285824,5277052.024169288]]]},"properties":{"ID_SOURCE":"w340436134","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2328}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515931.98898722423,5277188.852356485],[515928.1202505441,5277189.208533151],[515927.7556872826,5277185.206504568],[515931.6244265985,5277184.850327654],[515931.98898722423,5277188.852356485]]]},"properties":{"ID_SOURCE":"w340436135","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2329}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515908.1258024974,5277291.735874859],[515904.6763501609,5277289.837074992],[515906.4881701527,5277286.396691525],[515909.9376239515,5277288.2954924535],[515908.1258024974,5277291.735874859]]]},"properties":{"ID_SOURCE":"w340436136","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2330}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516068.4718461536,5277180.814126281],[516068.10676534363,5277177.034366595],[516070.43553387676,5277176.818514023],[516070.72520470864,5277180.709205496],[516068.4718461536,5277180.814126281]]]},"properties":{"ID_SOURCE":"w340436137","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2331}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515949.90113677713,5277175.042268095],[515946.52064274007,5277175.366428123],[515946.37591793574,5277173.365516121],[515951.70936501614,5277172.935566267],[515949.90113677713,5277175.042268095]]]},"properties":{"ID_SOURCE":"w340436138","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2332}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515943.57402200875,5277181.804464849],[515941.3954638439,5277182.020779377],[515941.54019012203,5277184.021691279],[515937.55858415534,5277184.455350501],[515943.27584317606,5277178.247176097],[515943.57402200875,5277181.804464849]]]},"properties":{"ID_SOURCE":"w340436139","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2333}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515997.52403610444,5277057.320323197],[515993.93367014325,5277057.466055814],[515993.86192481633,5277056.243321585],[515995.627219469,5277056.114803004],[515997.46749539993,5277056.030946854],[515997.49579628865,5277056.664521135],[515997.52403610444,5277057.320323197]]]},"properties":{"ID_SOURCE":"w340436140","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2334}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515934.828558404,5277188.593391526],[515931.98898722423,5277188.852356485],[515931.6244265985,5277184.850327654],[515934.4639997102,5277184.591362514],[515934.5878098145,5277186.003176278],[515934.828558404,5277188.593391526]]]},"properties":{"ID_SOURCE":"w340436141","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2335}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515907.7303166042,5277491.453001076],[515906.75374265504,5277491.561472632],[515906.7534390045,5277491.672611615],[515907.4852852018,5277498.676419247],[515908.4621616567,5277498.456808833],[515909.11860365025,5277505.571550537],[515908.1420320384,5277505.680021861],[515908.79847354075,5277512.794763608],[515909.85014141165,5277512.686497617],[515910.0654110913,5277516.354699759],[515909.68931670144,5277516.575951619],[515909.2387323541,5277516.574720325],[515909.6026784015,5277520.799027826],[515911.6309139879,5277520.582291086],[515911.63030649355,5277520.804569054],[515901.4891304977,5277521.888259827],[515900.9035290108,5277516.329669705],[515894.593830795,5277516.868139201],[515894.15659662965,5277511.976793771],[515893.10492893413,5277512.085062596],[515892.37488752697,5277504.414422759],[515893.3514590406,5277504.305948793],[515892.47486215224,5277495.301231254],[515894.5782036137,5277495.08469356],[515894.2124244482,5277491.527221078],[515890.30977002217,5277490.6274496],[515890.61319435155,5277489.516879678],[515885.50958050415,5277488.391554039],[515885.2061570929,5277489.502124222],[515881.3782945311,5277488.713702619],[515880.92225119256,5277490.712975161],[515876.1187244509,5277489.699616131],[515876.4221461179,5277488.589045476],[515872.5194870302,5277487.689285937],[515872.7475073301,5277486.689649339],[515866.3678309542,5277485.338582081],[515866.13981169893,5277486.338218925],[515862.23714954517,5277485.438466286],[515862.46516816306,5277484.438829293],[515858.78749489185,5277483.650831781],[515859.39524056576,5277481.096271789],[515856.16784923436,5277480.420642351],[515857.07931535435,5277476.644371486],[515856.17874586536,5277476.419639131],[515857.9271879259,5277468.644615108],[515862.3555479832,5277469.54579703],[515862.5835672232,5277468.546160064],[515868.96295996086,5277470.008362076],[515868.73524260183,5277470.896859818],[515876.2401914544,5277472.695557194],[515876.46821296244,5277471.695920761],[515883.3729812811,5277473.270711108],[515883.2200565821,5277474.270552147],[515898.4558328709,5277477.646331248],[515898.6838580101,5277476.646695671],[515902.58682412724,5277477.435333748],[515902.3587983464,5277478.434969176],[515907.2145947878,5277479.559632435],[515906.7810712283,5277481.558964502],[515907.7303166042,5277491.453001076]]]},"properties":{"ID_SOURCE":"w340436142","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2336}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516031.07445394964,5277097.689640938],[516028.29503856314,5277097.904268861],[516027.5464579643,5277097.013090271],[516027.4731906611,5277096.346050082],[516027.47563799884,5277095.456938806],[516029.23335008835,5277095.350637536],[516031.0060828135,5277095.244378152],[516031.07445394964,5277097.689640938]]]},"properties":{"ID_SOURCE":"w340436143","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2337}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515917.97413928754,5277068.260741543],[515918.1164461229,5277071.150763731],[515917.9659360246,5277071.261492011],[515912.3325934368,5277071.468374129],[515912.1902837402,5277068.578352086],[515912.4155932491,5277068.578967803],[515917.97413928754,5277068.260741543]]]},"properties":{"ID_SOURCE":"w340436145","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2338}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515938.11654308863,5277529.323643373],[515938.2630864694,5277530.657722386],[515930.6004340153,5277531.637008369],[515929.93179821735,5277526.244897623],[515929.6363354237,5277524.443624138],[515943.91698706447,5277522.782276181],[515944.18173700664,5277524.827973892],[515944.65243691317,5277528.452421103],[515938.11654308863,5277529.323643373]]]},"properties":{"ID_SOURCE":"w340436146","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2339}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516048.7962098312,5277071.39833799],[516046.45692983666,5277064.512340471],[516044.1771756846,5277057.826559557],[516052.3714028329,5277054.959510281],[516055.20234688657,5277063.3027964365],[516059.93844913976,5277061.648760979],[516061.7265187703,5277066.877261181],[516048.7962098312,5277071.39833799]]]},"properties":{"ID_SOURCE":"w340436147","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2340}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515997.58652276755,5277195.856198719],[516002.3781531471,5277195.813795907],[516007.222354688,5277195.771541562],[516007.3098913818,5277204.907471169],[516005.507426889,5277204.913630092],[516005.5192698818,5277206.069516247],[516005.52403044084,5277207.069787254],[516007.64949133625,5277207.042288375],[516007.6836134624,5277211.021185945],[516005.6182656374,5277211.037736075],[515998.4458438339,5277211.106935948],[515998.4450803981,5277211.3847832745],[515992.3691690874,5277211.44588962],[515992.37002380955,5277211.134700616],[515992.3046898652,5277204.844010289],[515998.0050704489,5277204.792985999],[515998.00565064367,5277204.581822035],[515998.9744894754,5277204.573370119],[515998.95165594976,5277201.9504088545],[515998.58365883393,5277201.949397699],[515998.56030597433,5277199.515372622],[515997.6215068939,5277199.523907146],[515997.58652276755,5277195.856198719]]]},"properties":{"ID_SOURCE":"w340436148","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2341}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516000.80342514755,5277326.1097442685],[515999.5732901146,5277320.09370117],[515997.7773941025,5277320.455527686],[515995.6959354228,5277320.88325409],[515993.3911620164,5277309.651804141],[515997.2084132611,5277308.8731985055],[515997.46042503125,5277310.085314598],[516002.84064380743,5277308.9887018865],[516006.13102932606,5277325.024104024],[516000.80342514755,5277326.1097442685]]]},"properties":{"ID_SOURCE":"w340436149","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2342}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516000.2276142488,5277144.839190892],[515990.6884153924,5277145.257544692],[515989.9721869544,5277132.585645598],[515998.3851765897,5277132.05305629],[515998.59887959587,5277136.276954187],[515994.09182579437,5277136.597991428],[515994.1988619707,5277138.643256953],[515994.30614229816,5277140.599611353],[516000.01482898026,5277140.281876122],[516000.2276142488,5277144.839190892]]]},"properties":{"ID_SOURCE":"w340436150","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2343}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515974.50428071775,5277325.737451331],[515973.5410937191,5277320.955797921],[515975.9080523877,5277320.484391068],[515974.56697851606,5277313.834552263],[515981.6378246069,5277312.420253379],[515983.4900325458,5277321.638826062],[515981.3710254136,5277322.066454501],[515980.18380638125,5277322.2965894425],[515980.62833538087,5277324.509491299],[515974.50428071775,5277325.737451331]]]},"properties":{"ID_SOURCE":"w340436151","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2344}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515950.6096173099,5277080.908840515],[515950.3840038305,5277081.019362225],[515950.4566712742,5277081.908679219],[515946.77601557004,5277082.120877348],[515946.4947788768,5277075.118303443],[515950.17513455235,5277075.017244036],[515950.31468523364,5277078.90751725],[515950.5396898997,5277079.019273348],[515950.6096173099,5277080.908840515]]]},"properties":{"ID_SOURCE":"w340436152","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2345}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515975.7309372905,5277354.926125795],[515966.4456244798,5277356.000939135],[515966.2474580072,5277354.322184853],[515965.8363181361,5277350.886837869],[515965.5719940774,5277348.685545196],[515964.6855145441,5277348.7942541875],[515964.2155125918,5277344.914186797],[515967.9792526084,5277344.468834736],[515968.06723849196,5277345.247054573],[515974.48287908407,5277344.486674975],[515975.7309372905,5277354.926125795]]]},"properties":{"ID_SOURCE":"w340436153","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2346}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.6540127332,5277347.562698949],[515979.4656309832,5277337.6985930195],[515986.6119763007,5277336.128911764],[515988.85975479346,5277346.237691067],[515987.05596083455,5277346.7439809],[515986.6565903244,5277347.231899392],[515986.15171429736,5277347.852895971],[515987.4131481205,5277353.413349249],[515978.84845017805,5277354.612375387],[515978.0471287233,5277348.31966404],[515981.6540127332,5277347.562698949]]]},"properties":{"ID_SOURCE":"w340436156","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2347}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516015.81991089566,5277373.830003906],[516009.9606424697,5277374.369588141],[516009.30155723664,5277368.25508691],[516006.37207316904,5277368.469312097],[516006.2329592845,5277367.168594019],[516006.0057426528,5277365.134111083],[516005.0294511363,5277365.13142723],[516004.5184199266,5277359.795312226],[516013.9085981137,5277358.820873839],[516014.35919468844,5277358.822113206],[516015.81991089566,5277373.830003906]]]},"properties":{"ID_SOURCE":"w340436157","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2348}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515495.42472828017,5277412.876625356],[515491.95983690437,5277416.757296231],[515480.484516221,5277411.169785446],[515480.7109944794,5277410.72582861],[515476.0610761967,5277408.379531812],[515475.8343027871,5277408.9346277965],[515470.20927799697,5277406.141184845],[515476.8374714125,5277398.82357678],[515480.6568768728,5277402.83476212],[515480.8073700758,5277402.724022516],[515483.27853862086,5277405.397947837],[515483.1280454383,5277405.508687377],[515486.57224398816,5277409.40773913],[515490.8859576199,5277411.097425246],[515495.42472828017,5277412.876625356]]]},"properties":{"ID_SOURCE":"w340439541","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2349}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515436.0741341577,5277738.46966502],[515435.45892863965,5277732.588737952],[515445.4192726509,5277731.559327397],[515447.13941093604,5277731.386067713],[515446.87579394475,5277728.851380597],[515445.15565491794,5277729.024640357],[515444.3355584831,5277721.120424326],[515455.32498740795,5277719.993734998],[515456.1524015212,5277727.964655948],[515455.108290816,5277728.073023761],[515455.35715089145,5277730.50764626],[515457.2425569811,5277730.312600361],[515457.8576817442,5277736.215757566],[515451.0071124141,5277736.93109419],[515436.0741341577,5277738.46966502]]]},"properties":{"ID_SOURCE":"w340439543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2350}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515452.2832572467,5277454.172639432],[515452.80678608944,5277449.3283354],[515454.946496038,5277449.556294463],[515455.3699214341,5277445.645298933],[515461.2935239475,5277446.283409431],[515461.4089752552,5277445.227888305],[515465.8760840485,5277445.706540056],[515465.6912426017,5277447.4398293095],[515472.73351095105,5277448.192062931],[515472.025329051,5277454.691856989],[515465.0506568513,5277453.939803733],[515464.973551208,5277454.6953492975],[515461.08455768245,5277454.273803292],[515458.5619374828,5277454.011483333],[515458.46960648336,5277454.844786388],[515452.2832572467,5277454.172639432]]]},"properties":{"ID_SOURCE":"w340439544","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2351}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515603.34553410043,5277661.073265892],[515602.62559315364,5277655.103128538],[515608.8530442723,5277654.36407119],[515609.21302669245,5277657.343583286],[515612.6234980177,5277656.930397186],[515612.2855095155,5277654.150995513],[515616.0640706874,5277653.694342624],[515616.3504743157,5277656.106844775],[515618.99470353377,5277655.79163289],[515619.36204113933,5277658.82673529],[515622.9978586534,5277658.391931899],[515623.5342749008,5277662.783394039],[515615.43629737344,5277663.761925664],[515615.50984269753,5277664.34004996],[515605.8869243524,5277665.503442389],[515605.3212016432,5277660.834053836],[515603.9314578765,5277661.008152429],[515603.34553410043,5277661.073265892]]]},"properties":{"ID_SOURCE":"w340439545","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2352}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515604.4897019244,5277665.666406818],[515604.19593328214,5277663.198315589],[515603.9314578765,5277661.008152429],[515605.3212016432,5277660.834053836],[515605.8869243524,5277665.503442389],[515604.4897019244,5277665.666406818]]]},"properties":{"ID_SOURCE":"w340439558","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2353}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515447.13941093604,5277731.386067713],[515445.4192726509,5277731.559327397],[515445.27279872657,5277730.1585771935],[515445.15565491794,5277729.024640357],[515446.87579394475,5277728.851380597],[515447.13941093604,5277731.386067713]]]},"properties":{"ID_SOURCE":"w340439560","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2354}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515544.98443172296,5277696.304053844],[515544.54335752846,5277692.746402141],[515549.35092868615,5277692.203541902],[515549.8673919152,5277695.650255539],[515544.98443172296,5277696.304053844]]]},"properties":{"ID_SOURCE":"w340439564","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2355}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515458.5619374828,5277454.011483333],[515461.08455768245,5277454.273803292],[515460.99219681276,5277455.118220207],[515459.76094094483,5277454.9815829275],[515458.46960648336,5277454.844786388],[515458.5619374828,5277454.011483333]]]},"properties":{"ID_SOURCE":"w340439566","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2356}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515593.9569061842,5277720.552367102],[515594.57374068396,5277714.552469135],[515598.1773990985,5277714.89554298],[515597.560263146,5277721.006579598],[515593.9569061842,5277720.552367102]]]},"properties":{"ID_SOURCE":"w340439574","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2357}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515622.9978586534,5277658.391931899],[515619.36204113933,5277658.82673529],[515618.99470353377,5277655.79163289],[515622.6380324735,5277655.356849424],[515622.9978586534,5277658.391931899]]]},"properties":{"ID_SOURCE":"w340439576","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2358}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515455.3699214341,5277445.645298933],[515454.946496038,5277449.556294463],[515452.80678608944,5277449.3283354],[515453.23021006305,5277445.41733972],[515455.3699214341,5277445.645298933]]]},"properties":{"ID_SOURCE":"w340439577","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2359}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515589.5515172767,5277683.086450071],[515589.844457721,5277685.865729874],[515587.0650426868,5277686.191706969],[515586.77210093493,5277683.41242731],[515589.5515172767,5277683.086450071]]]},"properties":{"ID_SOURCE":"w340439580","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2360}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515590.87891432433,5277720.21070362],[515591.49574568606,5277714.210805338],[515594.57374068396,5277714.552469135],[515593.9569061842,5277720.552367102],[515590.87891432433,5277720.21070362]]]},"properties":{"ID_SOURCE":"w340439581","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2361}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515460.495103367,5277704.5145740155],[515457.03955601645,5277699.292941308],[515456.2170516228,5277697.9570798855],[515463.96542057744,5277692.865225684],[515468.2287141727,5277699.32266044],[515460.495103367,5277704.5145740155]]]},"properties":{"ID_SOURCE":"w340439582","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2362}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515457.03955601645,5277699.292941308],[515460.495103367,5277704.5145740155],[515461.52725180774,5277706.084386445],[515457.7660129124,5277708.519473977],[515453.27831464715,5277701.728031721],[515457.03955601645,5277699.292941308]]]},"properties":{"ID_SOURCE":"w340439584","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2363}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516647.3272231901,5276230.861866866],[516647.3433114489,5276227.861142018],[516650.3177954621,5276227.880758534],[516650.30173744453,5276230.870369504],[516647.3272231901,5276230.861866866]]]},"properties":{"ID_SOURCE":"w340441044","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2364}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517070.4355512477,5276094.128881857],[517067.13326901064,5276090.596076785],[517063.2538647537,5276094.319003878],[517063.0516707761,5276094.1072461605],[517063.2022604631,5276093.985433665],[517061.0305765985,5276091.700708685],[517059.6077382097,5276090.207269482],[517057.9175345473,5276090.235661198],[517057.9749327648,5276088.590962074],[517058.14828507963,5276088.391418338],[517055.28767892375,5276085.371156112],[517055.084117552,5276085.626181313],[517052.11850884114,5276082.550043371],[517058.2881116858,5276076.555452343],[517064.3242600074,5276082.785841182],[517067.7664041878,5276079.606217921],[517067.40705252666,5276079.193948125],[517067.6105495312,5276078.961151102],[517071.0256097391,5276082.460944977],[517068.47949394735,5276084.90967012],[517070.6363171496,5276087.138784461],[517074.06616582425,5276090.716421319],[517070.4355512477,5276094.128881857]]]},"properties":{"ID_SOURCE":"w340458103","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2365}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517073.18240030896,5276084.701174128],[517070.6363171496,5276087.138784461],[517068.47949394735,5276084.90967012],[517071.0256097391,5276082.460944977],[517073.18240030896,5276084.701174128]]]},"properties":{"ID_SOURCE":"w340458104","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2366}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516948.2559050773,5276182.861647405],[516941.4866524642,5276175.584532561],[516943.40715367236,5276173.845226042],[516946.23137091997,5276173.886784344],[516950.1854387424,5276170.2751364885],[516955.5765559197,5276176.181231245],[516952.14971464436,5276179.305395358],[516948.2559050773,5276182.861647405]]]},"properties":{"ID_SOURCE":"w340458105","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2367}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517197.26602563716,5276189.481960549],[517199.3811093508,5276188.010047844],[517196.7930724672,5276184.3014536975],[517194.6780208811,5276185.762253459],[517197.26602563716,5276189.481960549]]]},"properties":{"ID_SOURCE":"w342041926","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2368}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517240.706688881,5276168.660550784],[517237.9328229983,5276164.29566403],[517240.36350740166,5276162.791358306],[517243.0179123028,5276166.911385191],[517240.706688881,5276168.660550784]]]},"properties":{"ID_SOURCE":"w342041927","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2369}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517242.49244455755,5276176.945745458],[517239.41012003535,5276172.746654339],[517244.1452364755,5276169.248656606],[517247.1374217638,5276173.447483299],[517242.49244455755,5276176.945745458]]]},"properties":{"ID_SOURCE":"w342041928","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2370}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517274.17518141225,5276169.659947425],[517276.6076202427,5276167.566621497],[517277.96993512043,5276166.648202968],[517276.04647223535,5276164.286335498],[517279.18680745567,5276161.58384198],[517281.83891727746,5276163.936758443],[517285.12816591974,5276161.679268807],[517288.595690637,5276157.566276993],[517282.6813878658,5276153.414327445],[517279.59836899,5276157.0505626965],[517277.64606691594,5276159.345363113],[517276.3800199257,5276158.196868622],[517270.85277413647,5276162.837230372],[517274.17518141225,5276169.659947425]]]},"properties":{"ID_SOURCE":"w342049830","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2371}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516498.37644594756,5276434.512684896],[516501.4542319284,5276432.498662402],[516497.4149022752,5276426.59681579],[516495.99408025347,5276424.369997639],[516492.35942843603,5276426.749206982],[516490.408135242,5276426.176869256],[516488.34611633734,5276427.571391027],[516483.94363449153,5276430.548586111],[516483.3226003329,5276429.702166827],[516480.41012717993,5276431.694438725],[516480.57452311524,5276431.994981063],[516485.28672197775,5276439.0101173725],[516496.4469464646,5276431.550903713],[516498.37644594756,5276434.512684896]]]},"properties":{"ID_SOURCE":"w342465974","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2372}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516493.64502171235,5276421.029154192],[516494.4680380542,5276422.16510978],[516495.99408025347,5276424.369997639],[516492.35942843603,5276426.749206982],[516490.408135242,5276426.176869256],[516490.4016409399,5276423.1649655625],[516493.64502171235,5276421.029154192]]]},"properties":{"ID_SOURCE":"w342465975","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2373}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516344.67308319703,5276729.521939073],[516344.64828067826,5276727.654722194],[516347.8404776213,5276727.61922676],[516347.8577683615,5276729.486422569],[516344.67308319703,5276729.521939073]]]},"properties":{"ID_SOURCE":"w342485234","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2374}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517312.2807567564,5276990.9849905465],[517312.51472675375,5276988.073821805],[517314.49701632257,5276988.235311607],[517314.26304533955,5276991.146480271],[517312.2807567564,5276990.9849905465]]]},"properties":{"ID_SOURCE":"w359386742","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2375}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517276.2702275256,5276914.280452905],[517276.69373355195,5276908.235701899],[517278.6460750914,5276908.3748625005],[517278.2226000225,5276914.408499486],[517276.2702275256,5276914.280452905]]]},"properties":{"ID_SOURCE":"w359398526","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2376}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.7677351302,5277061.408178474],[517287.95507745934,5277059.019227458],[517289.67454783234,5277059.1577006765],[517289.48720479914,5277061.546651635],[517287.7677351302,5277061.408178474]]]},"properties":{"ID_SOURCE":"w360372711","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2377}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517287.8677928511,5277083.358600519],[517288.1630836809,5277080.025281002],[517289.6347077344,5277080.163018378],[517289.3394490695,5277083.485223936],[517287.8677928511,5277083.358600519]]]},"properties":{"ID_SOURCE":"w360372712","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2378}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517279.7635186642,5277496.030374454],[517279.46213830437,5277496.362899804],[517275.86384685786,5277494.196106389],[517278.65090645745,5277491.359194578],[517281.57279122894,5277493.70180579],[517279.7635186642,5277496.030374454]]]},"properties":{"ID_SOURCE":"w387152184","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2379}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517272.3584427139,5277511.345713579],[517271.90917656256,5277510.899820942],[517265.99427194946,5277504.880719199],[517268.37411330594,5277502.609408553],[517269.83512790286,5277501.2244928535],[517272.62857788196,5277496.231482159],[517279.9005194883,5277500.4763789615],[517280.50031098694,5277500.811579042],[517277.10343733215,5277506.691914877],[517272.3584427139,5277511.345713579]]]},"properties":{"ID_SOURCE":"w387152186","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2380}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517245.6149855075,5277615.626851687],[517242.53439735953,5277616.173426837],[517242.39210490935,5277613.505646277],[517245.14197493275,5277613.058117362],[517245.6149855075,5277615.626851687]]]},"properties":{"ID_SOURCE":"w387173657","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2381}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517244.84525912296,5277621.959549602],[517242.89243206225,5277622.064905373],[517242.67866466485,5277618.174373476],[517244.63149302686,5277618.069017633],[517244.84525912296,5277621.959549602]]]},"properties":{"ID_SOURCE":"w387173658","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2382}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.36245371436,5277575.181611436],[517287.17630674475,5277579.296206583],[517290.70782856364,5277578.639854236],[517291.592813446,5277584.088340864],[517287.76090860565,5277584.743800679],[517287.6877921829,5277584.076743783],[517284.59232896543,5277584.567682611],[517284.60731527966,5277584.578841103],[517281.0008991541,5277585.168290848],[517281.5897949337,5277589.171077564],[517279.63629640965,5277589.498699001],[517280.15273525147,5277592.612150829],[517273.69114278903,5277593.704374978],[517272.4369250511,5277586.143136327],[517275.2171457862,5277585.59568563],[517274.55446773674,5277581.148120836],[517280.64059121226,5277580.054783098],[517280.05136393086,5277576.16313552],[517286.36245371436,5277575.181611436]]]},"properties":{"ID_SOURCE":"w387394614","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2383}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517155.98558130657,5277526.894638601],[517155.826544245,5277529.894948325],[517157.6661322723,5277530.000395374],[517159.80604373943,5277530.128956163],[517159.9654104238,5277527.017507566],[517170.92797650956,5277527.605529314],[517170.13603201264,5277541.495686434],[517159.1734920206,5277540.907666101],[517159.5715799957,5277533.240183442],[517155.74194955855,5277533.117757315],[517155.73670959414,5277534.895980928],[517148.07745061495,5277534.651136235],[517148.1600769277,5277532.09516099],[517144.70593168866,5277531.973848108],[517144.94758793106,5277526.417562815],[517155.98558130657,5277526.894638601]]]},"properties":{"ID_SOURCE":"w387399151","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2384}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517084.78955924936,5277374.423586465],[517095.63322274474,5277364.45282477],[517101.99610420235,5277371.473325399],[517111.108269777,5277362.942325403],[517121.06348252535,5277374.1967221685],[517126.6361935937,5277368.989536419],[517139.2119855874,5277382.919031716],[517127.69173604547,5277393.110002169],[517123.8737803335,5277388.986595031],[517115.8162890928,5277396.409276545],[517118.8852170041,5277399.863636559],[517113.23744335887,5277405.0706091495],[517106.3502259127,5277397.603995353],[517109.58862615685,5277394.501593572],[517098.2104591872,5277381.909358108],[517094.59590984037,5277385.232941558],[517084.78955924936,5277374.423586465]]]},"properties":{"ID_SOURCE":"w387511001","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2385}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517105.30896138964,5277419.717778871],[517102.2250186653,5277421.3758178735],[517099.61092794576,5277416.477983467],[517102.694872502,5277414.819943088],[517105.30896138964,5277419.717778871]]]},"properties":{"ID_SOURCE":"w387511002","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2386}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516978.45106820005,5277254.937219527],[516978.462411162,5277251.04735704],[516981.9173743506,5277250.946292971],[516981.98112988047,5277254.836374498],[516978.45106820005,5277254.937219527]]]},"properties":{"ID_SOURCE":"w396429780","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2387}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516945.4664992241,5277309.132957835],[516945.43259852676,5277305.298533329],[516948.9549248711,5277305.264329847],[516948.9963332607,5277309.098776243],[516945.4664992241,5277309.132957835]]]},"properties":{"ID_SOURCE":"w396429781","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2388}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516908.2629666239,5277277.627784703],[516908.27426277724,5277273.737922054],[516911.7292110635,5277273.63681637],[516911.7930131074,5277277.526897153],[516908.2629666239,5277277.627784703]]]},"properties":{"ID_SOURCE":"w396429782","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2389}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.0888400894,5277073.8824572535],[516830.02566442493,5277073.904053678],[516830.0008336633,5277069.50284478],[516834.0565342102,5277069.470112727],[516834.0888400894,5277073.8824572535]]]},"properties":{"ID_SOURCE":"w396523216","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2390}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516833.34398742137,5277170.460821068],[516829.28838934033,5277170.482439565],[516829.256048838,5277166.0812082905],[516833.31168211607,5277166.0484758755],[516833.34398742137,5277170.460821068]]]},"properties":{"ID_SOURCE":"w396523217","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2391}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516020.4281736209,5277410.352107497],[516016.048723295,5277410.7735037645],[516016.20199756575,5277412.385452595],[516012.9868851202,5277412.698914453],[516013.08924172085,5277413.710568208],[516010.30982498865,5277413.980773961],[516010.63866153726,5277417.293644465],[516013.410566837,5277417.023418215],[516013.62233102805,5277419.213454859],[516013.9875530512,5277422.94875694],[516021.58210139547,5277422.21390025],[516020.4281736209,5277410.352107497]]]},"properties":{"ID_SOURCE":"w397413795","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2392}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516022.2421809946,5277474.35140308],[516035.22262504767,5277473.109031757],[516034.4415742503,5277464.938103997],[516029.84431832563,5277465.381117839],[516029.7786272577,5277464.691870111],[516029.71290557226,5277464.013736274],[516030.8396826805,5277463.905698891],[516030.28488023055,5277458.113786869],[516024.17023911,5277458.697109253],[516024.73988365236,5277464.555745412],[516025.88918997743,5277464.447769079],[516025.94764703646,5277465.036971014],[516026.02057302586,5277465.82626445],[516021.460867498,5277466.26938827],[516022.2421809946,5277474.35140308]]]},"properties":{"ID_SOURCE":"w397413796","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2393}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516165.0300554005,5277562.502122716],[516162.6891264104,5277567.152382966],[516160.58796003397,5277566.590850849],[516160.3071404589,5277567.657013883],[516159.92010584974,5277569.111871567],[516154.5846455353,5277567.685588184],[516153.4691596544,5277571.850237295],[516170.8863818383,5277576.477551327],[516171.8652543275,5277572.834883269],[516168.9086060426,5277572.048692157],[516169.720567477,5277569.01682938],[516168.4223510047,5277568.6686903145],[516170.2195311107,5277565.117206551],[516165.0300554005,5277562.502122716]]]},"properties":{"ID_SOURCE":"w397413797","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2394}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515911.3623408433,5277371.54308232],[515911.00468095206,5277367.763352079],[515904.14632269973,5277368.400338359],[515903.95662013063,5277366.365962055],[515899.8175545019,5277366.754760547],[515899.65707064414,5277365.020541608],[515895.0147174127,5277365.452425053],[515895.5912227257,5277371.6000291975],[515895.7224871616,5277373.034090833],[515895.22671079414,5277373.077193212],[515895.5842592001,5277376.90137808],[515902.0970590686,5277376.2967798645],[515901.7396059615,5277372.4392529065],[515911.3623408433,5277371.54308232]]]},"properties":{"ID_SOURCE":"w397413798","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2395}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516006.1744541304,5277475.863164372],[516018.9521267781,5277474.620199342],[516018.17065586976,5277466.593754464],[516013.6710605671,5277467.025935777],[516013.6053064676,5277466.3589160275],[516013.53967462596,5277465.647440685],[516014.69649032364,5277465.539482798],[516014.13397876086,5277459.814235063],[516008.056859629,5277460.408791548],[516008.6119284174,5277466.1117902445],[516009.7537243171,5277466.003790076],[516009.82680529665,5277466.73751382],[516009.8852333925,5277467.337829489],[516005.3781295091,5277467.769996559],[516006.1744541304,5277475.863164372]]]},"properties":{"ID_SOURCE":"w397413799","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2396}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515991.89772915473,5277478.780250866],[516004.765387471,5277477.581957839],[516004.0065795965,5277469.500007317],[515999.4243798502,5277469.931972557],[515999.3734605043,5277469.331677629],[515999.300530951,5277468.542384531],[516000.3521780304,5277468.44524877],[515999.81953919446,5277462.775654463],[515993.75750536635,5277463.348039345],[515994.29002791847,5277469.062088681],[515995.4919013667,5277468.954250765],[515995.5575353716,5277469.665725899],[515995.6159649053,5277470.266041428],[515991.13893412275,5277470.687188147],[515991.89772915473,5277478.780250866]]]},"properties":{"ID_SOURCE":"w397413800","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2397}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515885.72429406596,5277340.887404965],[515882.95763414854,5277339.223874241],[515884.4287484917,5277336.782812389],[515880.85231266246,5277334.639172456],[515879.4112391707,5277337.080317133],[515876.1871037216,5277335.182148442],[515872.006946012,5277342.372609258],[515870.9122787296,5277341.713900507],[515867.36660304817,5277347.572416866],[515877.12732848024,5277351.166612809],[515879.8054258658,5277346.750553169],[515878.8681966283,5277346.19229812],[515879.3283652863,5277345.437802624],[515879.89418882586,5277344.494657701],[515882.5633692172,5277346.102351185],[515885.72429406596,5277340.887404965]]]},"properties":{"ID_SOURCE":"w397413801","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2398}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515993.1849896416,5277176.9170052],[515993.20752017386,5277176.917067087],[516000.604922827,5277176.981846513],[516000.5189848205,5277175.458995596],[516000.42623902287,5277173.680504521],[516006.82589151064,5277173.342446963],[516006.311188703,5277163.8719242485],[516001.3161153569,5277164.147158364],[516001.4664075405,5277166.848267598],[515993.5944762627,5277167.282312605],[515993.6873769024,5277169.005234084],[515988.79748175247,5277169.269653848],[515989.0192496598,5277173.293522187],[515988.5233667298,5277176.103996476],[515989.1764470674,5277176.216929599],[515993.1849896416,5277176.9170052]]]},"properties":{"ID_SOURCE":"w397413802","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2399}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515891.32574758044,5277310.994976256],[515885.83341727837,5277320.160133822],[515884.5362807439,5277319.38973035],[515881.48848028545,5277324.427162014],[515888.48553222377,5277328.024952895],[515890.7262191473,5277324.2856573695],[515892.4507252493,5277325.312850244],[515893.9219077318,5277322.849563035],[515894.8441496767,5277323.396665584],[515895.5985771679,5277322.142845707],[515897.9154010603,5277323.52730462],[515903.99619881227,5277313.38573567],[515899.83488588396,5277310.907067275],[515897.556455938,5277314.712940085],[515891.32574758044,5277310.994976256]]]},"properties":{"ID_SOURCE":"w397413803","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2400}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515957.28633141785,5277401.52091662],[515958.1708101757,5277410.358954916],[515960.98029606475,5277410.07769273],[515963.8348414951,5277409.79655545],[515964.0322143358,5277411.764271109],[515970.2671478267,5277411.147873409],[515970.0843090625,5277409.35802108],[515971.5716916592,5277409.2065054085],[515974.3736384126,5277408.936342981],[515976.32675568026,5277408.741650467],[515976.5095925481,5277410.531502994],[515982.8497280411,5277409.893179483],[515982.6743724723,5277408.114461264],[515983.9589279629,5277407.984619931],[515985.53642984363,5277407.833355234],[515985.71178455005,5277409.612073541],[515988.9719869417,5277409.287606469],[515988.774744519,5277407.2754343655],[515990.69782332686,5277407.0806641765],[515994.51391128276,5277406.702157075],[515993.63687483623,5277397.908589399],[515987.950299263,5277398.470898027],[515988.00879139296,5277399.048985618],[515985.11669001926,5277399.330007962],[515985.05816709145,5277398.763034302],[515965.8199410108,5277400.677421147],[515965.87849626725,5277401.233280716],[515963.046476203,5277401.514478775],[515962.9954305676,5277400.958639822],[515957.28633141785,5277401.52091662]]]},"properties":{"ID_SOURCE":"w397413805","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2401}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515911.7411557791,5277406.053023056],[515912.64093526785,5277414.813298116],[515915.5856551351,5277414.5101557],[515918.18479969696,5277414.250525851],[515918.37507295166,5277416.07373875],[515924.71522612224,5277415.4242380615],[515924.5543255536,5277413.845612841],[515925.8163488052,5277413.715697056],[515929.33948214725,5277413.358573902],[515930.79682312027,5277413.206965629],[515930.9652318852,5277414.785611575],[515937.2678081519,5277414.147135703],[515937.1068501041,5277412.590737921],[515938.50408206705,5277412.450081017],[515940.10414154595,5277412.287751797],[515940.26512923284,5277413.833035766],[515943.48777724145,5277413.508440427],[515943.3122880332,5277411.774178995],[515945.44570112746,5277411.557741896],[515948.9838872325,5277411.189557861],[515948.06938556733,5277402.340324801],[515942.41282805405,5277402.91387407],[515942.478773674,5277403.514209553],[515939.57162663195,5277403.806327281],[515939.5131601751,5277403.2171262875],[515920.3123923868,5277405.17622184],[515920.3561752924,5277405.643128703],[515917.55419920787,5277405.924431025],[515917.5028758133,5277405.468617544],[515911.7411557791,5277406.053023056]]]},"properties":{"ID_SOURCE":"w397413808","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2402}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515963.69375132996,5277480.425515954],[515988.53563316114,5277477.937468259],[515987.29284466937,5277465.597536089],[515985.1519399228,5277465.813937214],[515985.45175541827,5277468.759965447],[515985.9325352639,5277468.70571562],[515986.0056497237,5277469.42832516],[515986.0714679787,5277470.073116802],[515979.8140358822,5277470.700549554],[515979.7483084549,5277470.022416294],[515979.6825810114,5277469.344283033],[515980.12578124495,5277469.30104357],[515979.8259935911,5277466.343901719],[515975.3789392208,5277466.787370804],[515975.678729108,5277469.744512422],[515976.1895174775,5277469.70145812],[515976.2552758218,5277470.36847744],[515976.32851345104,5277471.046631269],[515970.0109746384,5277471.68502359],[515969.9451241391,5277471.051346031],[515969.87197722425,5277470.339850593],[515970.3227175915,5277470.285517084],[515970.0229250151,5277467.328375744],[515964.33638911246,5277467.901821238],[515964.6288271217,5277470.8033722015],[515966.07113509544,5277470.651731589],[515966.13692506374,5277471.307636897],[515966.2099809874,5277472.052473983],[515962.88219640707,5277472.387882336],[515963.69375132996,5277480.425515954]]]},"properties":{"ID_SOURCE":"w397413811","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2403}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515981.96312690707,5277158.336966431],[515979.10167916736,5277158.351340977],[515979.12342395884,5277161.374402082],[515981.9849007167,5277161.348913661],[515981.96312690707,5277158.336966431]]]},"properties":{"ID_SOURCE":"w397413812","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2404}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516072.96501421166,5277084.846228644],[516076.164860778,5277084.688352649],[516075.98707571934,5277081.075819789],[516072.7947374749,5277081.233716614],[516072.96501421166,5277084.846228644]]]},"properties":{"ID_SOURCE":"w397413813","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2405}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515982.2452878643,5277192.346507927],[515982.27447989746,5277195.39181761],[515986.3150951168,5277195.347340172],[515986.2859051947,5277192.302030464],[515982.2452878643,5277192.346507927]]]},"properties":{"ID_SOURCE":"w397413814","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2406}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516249.76525638456,5277346.237613967],[516247.36144895654,5277346.4531851625],[516247.7480013951,5277350.566437112],[516250.14432820666,5277350.339731225],[516249.76525638456,5277346.237613967]]]},"properties":{"ID_SOURCE":"w397413815","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2407}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516078.231751488,5277105.888411121],[516080.7257133919,5277105.695246646],[516080.26144594594,5277099.759101404],[516077.76748151536,5277099.952266084],[516078.231751488,5277105.888411121]]]},"properties":{"ID_SOURCE":"w397413817","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2408}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516226.96903385577,5277336.649353121],[516227.4139155152,5277341.39626309],[516224.0560625917,5277341.709210785],[516224.7415277225,5277349.057462652],[516234.8751856691,5277348.107680217],[516235.414931093,5277353.843999811],[516245.04526077054,5277352.948401501],[516244.848383823,5277350.83619565],[516247.7480013951,5277350.566437112],[516247.36144895654,5277346.4531851625],[516249.76525638456,5277346.237613967],[516250.2986186312,5277346.183532674],[516250.16719267936,5277344.838374073],[516252.1804208157,5277344.643941729],[516252.3043363494,5277345.989079417],[516262.7234449951,5277345.017914252],[516262.5702991071,5277343.383731164],[516266.1835541268,5277343.049291243],[516266.3367300598,5277344.672360536],[516273.7810904305,5277343.981868556],[516273.6570244901,5277342.692299882],[516279.0055486229,5277342.196008631],[516279.129644465,5277343.474463524],[516289.8943139923,5277342.470971194],[516289.6974218289,5277340.36987772],[516291.9359830313,5277340.164975575],[516291.6077993308,5277336.674266911],[516292.98249747383,5277336.544745889],[516292.1220086176,5277327.362188943],[516279.4943377881,5277328.538291636],[516279.58917079365,5277329.538815149],[516274.6462982183,5277329.99178386],[516274.85048870684,5277332.170695034],[516266.94788030174,5277332.904361319],[516266.86039990606,5277331.959428466],[516257.1323712636,5277332.865832044],[516257.2273321646,5277333.82189961],[516241.6925476303,5277335.267817113],[516241.590322253,5277334.222817694],[516234.52154513,5277334.881056157],[516234.6237407744,5277335.937169345],[516226.96903385577,5277336.649353121]]]},"properties":{"ID_SOURCE":"w397413818","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2409}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516038.16724443773,5277358.331947912],[516037.5679393721,5277355.062787],[516037.1832078955,5277352.961185077],[516034.0349164607,5277353.541555027],[516035.01147646765,5277358.901182749],[516038.16724443773,5277358.331947912]]]},"properties":{"ID_SOURCE":"w397413819","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2410}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515966.4456244798,5277356.000939135],[515966.2474580072,5277354.322184853],[515963.76835221617,5277354.615464428],[515963.50417991576,5277352.358602363],[515958.6962576015,5277352.91223491],[515959.1586002777,5277356.847850791],[515966.4456244798,5277356.000939135]]]},"properties":{"ID_SOURCE":"w397413820","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2411}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515944.10481777333,5277319.81928603],[515940.1584339525,5277329.366501819],[515946.137192038,5277331.827948641],[515947.58875767456,5277328.308793174],[515952.77236952336,5277330.434649566],[515954.0424817551,5277327.3595576715],[515955.2672308345,5277324.395481532],[515944.10481777333,5277319.81928603]]]},"properties":{"ID_SOURCE":"w397413821","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2412}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515998.79934177955,5277082.452523345],[515991.02499159914,5277082.8646125095],[515991.33948139206,5277088.678084947],[515983.87627061876,5277090.65810855],[515984.0834824115,5277094.515226594],[515999.3917615594,5277093.7126075765],[515999.1203874664,5277088.61054747],[515998.79934177955,5277082.452523345]]]},"properties":{"ID_SOURCE":"w397413822","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2413}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515960.2707426561,5277394.960734896],[515973.1387926633,5277393.68457445],[515972.7585836388,5277389.927006174],[515970.56505185476,5277390.154382375],[515970.07530177926,5277385.262887896],[515961.4590295108,5277386.117264588],[515961.75861765485,5277389.152202363],[515961.97794273164,5277391.331143679],[515959.9271609589,5277391.536687287],[515960.2707426561,5277394.960734896]]]},"properties":{"ID_SOURCE":"w397413823","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2414}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516010.4701708389,5277429.407420161],[516011.4286235544,5277438.62354614],[516013.26154416346,5277438.4396494785],[516014.60620297655,5277438.298866261],[516014.76707841357,5277439.8774940865],[516021.02460873325,5277439.227871054],[516020.8637655549,5277437.638129153],[516022.3361226367,5277437.48658513],[516024.25171340094,5277437.280691467],[516023.30072941276,5277428.086811815],[516010.4701708389,5277429.407420161]]]},"properties":{"ID_SOURCE":"w397413824","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2415}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516016.1835117035,5277386.345345657],[516012.4573444223,5277386.790769806],[516012.3472327685,5277385.8680066215],[516006.96830530075,5277386.520054681],[516007.5632545642,5277391.378499723],[516007.9525399132,5277394.55816838],[516011.520963458,5277394.123421543],[516012.28478431905,5277400.382693088],[516017.81395856815,5277399.708835378],[516016.1835117035,5277386.345345657]]]},"properties":{"ID_SOURCE":"w397413825","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2416}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516086.93658615055,5277064.979682176],[516083.0268902952,5277066.535952475],[516084.25010964373,5277069.6067884],[516076.4608609833,5277072.686076505],[516079.2802091818,5277079.7734635845],[516083.640973947,5277078.051727078],[516087.06944989885,5277076.694179234],[516088.79235446814,5277081.033389938],[516092.7095524848,5277079.477144252],[516086.93658615055,5277064.979682176]]]},"properties":{"ID_SOURCE":"w397413827","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2417}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516063.69317544124,5277075.429333238],[516061.86020165554,5277070.145138599],[516053.15492219897,5277073.144133238],[516054.97294358345,5277078.406055949],[516055.1250520686,5277080.4403328085],[516055.28451751766,5277082.5301998425],[516057.3277480374,5277082.380238412],[516057.6478111377,5277086.148758668],[516070.08789585775,5277085.082794904],[516069.21460178815,5277074.955553282],[516063.69317544124,5277075.429333238]]]},"properties":{"ID_SOURCE":"w397413828","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2418}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516002.3781531471,5277195.813795907],[515997.58652276755,5277195.856198719],[515990.0986559868,5277195.924542288],[515989.9816598111,5277183.832214582],[516001.9307045004,5277183.731673629],[516001.9190745219,5277182.49799028],[516007.17637706076,5277182.445757186],[516007.24740285584,5277189.392187806],[516002.3205536856,5277189.445328986],[516002.33841083845,5277191.145816487],[516002.3781531471,5277195.813795907]]]},"properties":{"ID_SOURCE":"w397413829","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2419}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516861.0301025402,5276660.920479226],[516860.36764077,5276656.250691424],[516863.5985943086,5276655.815487571],[516863.89355716633,5276657.705717589],[516873.8881398377,5276655.956432478],[516874.2575637766,5276658.069158312],[516874.623122933,5276661.515550083],[516871.69260547037,5276661.951618215],[516872.2789831032,5276666.954606239],[516867.6882515957,5276667.4970063],[516867.10090438265,5276662.827435219],[516866.8866307718,5276661.604277263],[516864.2565477208,5276662.041219302],[516864.4776890107,5276663.486676562],[516861.2464178667,5276664.03301875],[516861.0301025402,5276660.920479226]]]},"properties":{"ID_SOURCE":"w400596000","HEIGHT_WALL":6.0,"HEIGHT_ROOF":6.0,"NB_LEV":2,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2420}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516941.0273708155,5276586.533412434],[516943.08581212536,5276583.805362878],[516939.75023026107,5276581.461724694],[516937.7893026891,5276584.234514927],[516941.0273708155,5276586.533412434]]]},"properties":{"ID_SOURCE":"w400600045","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2421}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517119.81513897487,5276547.090388844],[517118.38377341797,5276545.985897636],[517116.2424195531,5276548.780325757],[517116.3623340949,5276548.869590002],[517117.7415143985,5276549.840559615],[517119.50293789245,5276551.090502597],[517121.6138564258,5276548.429353903],[517119.81513897487,5276547.090388844]]]},"properties":{"ID_SOURCE":"w400603334","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2422}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517048.2857715979,5276583.545563108],[517050.0279259873,5276581.116702555],[517052.3515039206,5276582.768374263],[517050.61685999227,5276585.197256116],[517048.2857715979,5276583.545563108]]]},"properties":{"ID_SOURCE":"w400613445","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2423}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516799.7787776995,5277553.718648327],[516812.12359147577,5277551.542599633],[516809.8255242501,5277538.565936669],[516810.26288468955,5277537.944816016],[516810.8811843963,5277537.07971006],[516811.6832476644,5277537.59326965],[516818.56003978127,5277527.943959624],[516806.6740278165,5277519.4518885575],[516799.8270278971,5277529.190210337],[516801.0036493646,5277530.027154998],[516797.39186938736,5277535.084712843],[516796.63303516974,5277535.204777407],[516799.7787776995,5277553.718648327]]]},"properties":{"ID_SOURCE":"w435781590","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2424}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517145.70774063695,5277566.652460375],[517148.88434745267,5277569.2069212645],[517146.411910791,5277572.344899467],[517143.1751617761,5277569.812490804],[517145.70774063695,5277566.652460375]]]},"properties":{"ID_SOURCE":"w435781591","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2425}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516834.6640488283,5277558.064963021],[516831.8242341644,5277548.06527406],[516836.4039948995,5277548.478620162],[516838.9967211449,5277558.2219749335],[516834.6640488283,5277558.064963021]]]},"properties":{"ID_SOURCE":"w435781592","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2426}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516987.15406893403,5277654.321641245],[516990.4214277051,5277656.665114818],[516992.3290673127,5277654.025551798],[516989.0541982457,5277651.682055253],[516987.15406893403,5277654.321641245]]]},"properties":{"ID_SOURCE":"w435784884","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2427}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516609.33237363776,5277190.0782949645],[516609.16506452323,5277185.543312856],[516614.06226501625,5277185.357232719],[516614.2295703245,5277189.892214979],[516609.33237363776,5277190.0782949645]]]},"properties":{"ID_SOURCE":"w435813578","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"apartments","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2428}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516669.4973297549,5277423.34384193],[516670.1337268749,5277424.023617266],[516672.11260749,5277422.706719115],[516671.2290532606,5277421.792842112],[516669.4973297549,5277423.34384193]]]},"properties":{"ID_SOURCE":"w435819542","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2429}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516571.5869031086,5277406.126620921],[516573.1128014712,5277405.641948887],[516572.5395703788,5277403.873193423],[516571.051347561,5277404.313516895],[516571.5869031086,5277406.126620921]]]},"properties":{"ID_SOURCE":"w435819543","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2430}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516258.24517404864,5276969.286250527],[516256.66769942973,5276966.692290082],[516260.9638319606,5276963.959133807],[516262.6089925861,5276966.519942521],[516258.24517404864,5276969.286250527]]]},"properties":{"ID_SOURCE":"w437557214","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2431}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516093.4597656727,5276968.361700074],[516092.0617168763,5276968.757939384],[516091.34767165856,5276968.9560176525],[516092.9465069243,5276974.717474479],[516095.02843438333,5276974.1675299965],[516093.4597656727,5276968.361700074]]]},"properties":{"ID_SOURCE":"w437562169","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2432}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516089.4591602032,5277059.874223377],[516085.75263820216,5277061.286571587],[516084.30610342504,5277057.492710142],[516088.01259677013,5277056.091474906],[516089.4591602032,5277059.874223377]]]},"properties":{"ID_SOURCE":"w437582717","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2433}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516095.6548060893,5277076.328915905],[516093.65638889105,5277071.133165579],[516095.3405118155,5277070.482096041],[516093.6179468275,5277066.020630671],[516102.8279250986,5277062.489621298],[516106.22083716094,5277071.279045901],[516101.7098236079,5277073.01146403],[516099.454333206,5277073.872117457],[516099.789900285,5277074.739935368],[516095.6548060893,5277076.328915905]]]},"properties":{"ID_SOURCE":"w437582718","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"house","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2434}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515952.8223465555,5277123.059093987],[515952.73688233824,5277121.358421668],[515952.65847158333,5277119.824478306],[515947.25780970143,5277120.09864776],[515947.4216876635,5277123.333263281],[515952.8223465555,5277123.059093987]]]},"properties":{"ID_SOURCE":"w437630186","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2435}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515951.36744950333,5277133.257737157],[515952.75702542847,5277133.1948602535],[515952.53900640167,5277127.7928710515],[515949.0387471465,5277127.961105956],[515949.28684079146,5277133.352063419],[515951.36744950333,5277133.257737157]]]},"properties":{"ID_SOURCE":"w437630188","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2436}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.1315156938,5277554.319955337],[517285.77713590744,5277549.739936899],[517292.8829962324,5277549.194225395],[517298.23870110343,5277548.776690132],[517298.5930711567,5277553.356709344],[517286.1315156938,5277554.319955337]]]},"properties":{"ID_SOURCE":"w438287281","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2437}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517286.41561592894,5277557.277121761],[517286.1315156938,5277554.319955337],[517298.5930711567,5277553.356709344],[517298.832139988,5277556.302628608],[517294.49746291025,5277556.823222227],[517286.41561592894,5277557.277121761]]]},"properties":{"ID_SOURCE":"w438287282","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2438}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517309.8518900829,5277691.703868796],[517308.1336885614,5277688.675752659],[517310.4129069613,5277687.39330555],[517312.1311076846,5277690.421422356],[517309.8518900829,5277691.703868796]]]},"properties":{"ID_SOURCE":"w438289155","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2439}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517265.35906745127,5277744.385466203],[517264.2110827069,5277741.525763957],[517259.3541438978,5277743.478540203],[517260.5464294135,5277746.593994809],[517265.35906745127,5277744.385466203]]]},"properties":{"ID_SOURCE":"w438291366","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2440}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516674.1716129067,5277097.072873033],[516685.96700017335,5277106.108987814],[516695.68400416,5277093.489130312],[516683.8886061441,5277084.452996053],[516674.1716129067,5277097.072873033]]]},"properties":{"ID_SOURCE":"w497190606","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2441}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516359.01516287745,5277751.881747486],[516365.88105948985,5277756.435553215],[516364.1466737017,5277758.99800935],[516357.25030385563,5277754.599715878],[516359.01516287745,5277751.881747486]]]},"properties":{"ID_SOURCE":"w511310931","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2442}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516353.76459907193,5277752.389352845],[516357.34022969037,5277754.66665249],[516355.7336011374,5277757.196128116],[516352.0829707798,5277754.885276806],[516353.76459907193,5277752.389352845]]]},"properties":{"ID_SOURCE":"w511310932","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2443}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516349.0649783172,5277663.675406129],[516348.04564560315,5277662.972362368],[516346.2964395198,5277665.456984015],[516345.284616336,5277664.75396182],[516344.3120154195,5277666.129365723],[516341.7409334434,5277669.800878135],[516340.97941243654,5277670.887911413],[516342.03632350604,5277671.579945444],[516338.54518309137,5277676.638125203],[516337.4958756373,5277675.912771168],[516336.56849154626,5277677.23273332],[516334.7437939247,5277679.861628452],[516329.7970436749,5277676.446870275],[516331.41786020977,5277674.217505246],[516329.98634436936,5277673.213230682],[516332.80654190487,5277669.07562449],[516331.88461402303,5277668.450654749],[516333.77699336346,5277665.788606686],[516334.27913521964,5277666.145663171],[516338.6069265481,5277659.989544105],[516338.0447079735,5277659.632318646],[516344.21248608985,5277650.7584407255],[516345.4942505849,5277651.60670245],[516347.59812665323,5277648.511807173],[516347.1109408058,5277648.177019522],[516350.48139047704,5277643.318557816],[516350.95365103136,5277643.619961863],[516352.97427189385,5277640.7582284575],[516359.79499764834,5277645.400810535],[516358.62617310206,5277647.120194258],[516357.7287554954,5277648.462465205],[516358.7405800338,5277649.165489542],[516355.43029696576,5277653.990773589],[516354.3358676686,5277653.287517768],[516352.9708611406,5277655.339771166],[516352.2845254135,5277656.3936721925],[516353.58127539174,5277657.2530917935],[516352.01304377796,5277659.471484374],[516350.1054788685,5277662.189053833],[516349.0649783172,5277663.675406129]]]},"properties":{"ID_SOURCE":"w511310934","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2444}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516348.05916500377,5277684.900299504],[516347.49698063044,5277684.531959216],[516344.6560508041,5277682.679060342],[516346.5411091409,5277679.950311875],[516349.8766384887,5277682.171362319],[516348.05916500377,5277684.900299504]]]},"properties":{"ID_SOURCE":"w511310935","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2445}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516374.83284527814,5277676.173266287],[516374.2596198944,5277677.06077308],[516376.0733942994,5277678.321755585],[516378.8764560123,5277680.285703168],[516382.75882350584,5277682.986212558],[516383.76312948717,5277683.689220167],[516384.41160733294,5277682.746356138],[516389.2084428481,5277686.049599012],[516388.5069912135,5277687.136795244],[516389.6387698841,5277687.906846664],[516391.32518870104,5277689.056335544],[516386.9293079395,5277695.378934056],[516384.1186528818,5277693.448303094],[516383.78692067135,5277693.91415704],[516381.20874608296,5277692.095321661],[516378.8855182256,5277690.410572581],[516379.2850547741,5277689.867111205],[516376.42182788946,5277687.936336093],[516374.5522147261,5277690.509522572],[516368.1369742376,5277685.90140456],[516370.57946636446,5277682.562961728],[516368.12866338354,5277680.844516291],[516367.83472936344,5277681.221565495],[516362.581202009,5277677.416927239],[516362.89769571414,5277677.028827192],[516359.7946516437,5277674.919562497],[516359.2520599634,5277675.59599106],[516355.22715156886,5277672.839527062],[516352.16576068924,5277677.287636688],[516352.7729090122,5277677.689445695],[516349.8766384887,5277682.171362319],[516346.5411091409,5277679.950311875],[516356.1247522109,5277666.084743854],[516358.4858876198,5277667.64733635],[516359.18705487525,5277666.660161648],[516360.10156428436,5277667.251772911],[516360.99360733747,5277667.821093207],[516361.65707108943,5277666.8893827805],[516366.37871215533,5277670.23685125],[516367.12816658925,5277670.772429674],[516367.8218878926,5277669.763007091],[516372.78360953485,5277673.188953721],[516372.0823469784,5277674.209468503],[516372.89926117845,5277674.789693347],[516374.83284527814,5277676.173266287]]]},"properties":{"ID_SOURCE":"w511310936","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2446}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516402.6334300159,5277673.484145091],[516399.202345455,5277678.531343974],[516397.11119290214,5277677.102863144],[516396.10685607896,5277676.410967139],[516395.3376910094,5277677.542427794],[516390.55593355314,5277674.216994404],[516391.3552614468,5277673.041162099],[516390.31343812187,5277672.326933579],[516385.95123823965,5277669.347218918],[516386.63022544305,5277668.237731191],[516385.52093988925,5277667.478857698],[516382.5753178797,5277665.470049849],[516383.216663305,5277664.393797772],[516379.70027683274,5277659.727141945],[516379.1541429781,5277658.992082154],[516378.288761731,5277659.623144845],[516375.221785476,5277655.3689737115],[516373.6808173546,5277653.230753745],[516372.02764216077,5277650.9366228115],[516373.6378778447,5277649.807524584],[516372.3212571371,5277648.003355634],[516370.5857246121,5277645.620081626],[516368.2143451582,5277642.357015325],[516369.380673514,5277641.526745548],[516368.38571169606,5277640.16804149],[516366.2536356987,5277637.261296479],[516365.1090742757,5277635.691006669],[516364.07807411265,5277636.466087744],[516360.6517391793,5277631.810810904],[516361.8782389995,5277630.9473667685],[516361.003021087,5277629.733482391],[516358.85607450583,5277626.771128444],[516363.7474347761,5277623.183942941],[516365.37086396635,5277625.37796186],[516366.52217609214,5277624.547649305],[516369.536982928,5277628.668300985],[516369.79315294727,5277628.368943614],[516371.70100533694,5277630.897183727],[516371.3022780814,5277631.151684183],[516375.438858275,5277636.931477852],[516375.8452199548,5277636.632543206],[516377.65556747833,5277639.1160551105],[516378.36300030403,5277638.573459878],[516382.7990442256,5277644.676407061],[516381.3465376622,5277645.794832594],[516385.78279187105,5277651.819984838],[516383.89366831764,5277653.315056464],[516386.6985555898,5277657.301758729],[516385.3891396421,5277658.276104178],[516386.62349297025,5277659.957790707],[516391.82539249945,5277663.428885526],[516390.64895861724,5277665.18158344],[516394.76403283124,5277667.9160978915],[516395.4652375275,5277666.917813642],[516400.24699822936,5277670.243251019],[516399.5304609484,5277671.352631396],[516402.6334300159,5277673.484145091]]]},"properties":{"ID_SOURCE":"w511310937","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2447}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516338.6018542644,5277734.042036863],[516336.5556702083,5277732.64704581],[516335.7787963308,5277733.856290625],[516331.656512627,5277731.0217713555],[516331.21139653435,5277731.754045952],[516324.7210106769,5277727.167992595],[516324.11000126763,5277728.144310297],[516320.8800574426,5277725.767974532],[516320.68384532497,5277726.111958113],[516318.1728457695,5277724.43782077],[516315.76725774753,5277722.663954042],[516316.02357663604,5277722.309024769],[516313.16056297475,5277720.300483372],[516312.79848864384,5277720.877396206],[516307.5294133561,5277717.261701638],[516310.1605599844,5277713.579228351],[516307.31283916207,5277711.470706838],[516309.5972126755,5277708.265163472],[516306.9666729189,5277706.36841639],[516308.36159594543,5277704.34957796],[516307.4848214647,5277703.691396555],[516309.2266457427,5277701.15117262],[516310.65790912276,5277702.244353341],[516312.6559926165,5277699.371428748],[516312.27369299316,5277699.125849779],[516315.63713547663,5277694.067296389],[516316.0421195687,5277694.257369207],[516318.0854212895,5277691.329003277],[516317.3207591006,5277690.860072462],[516320.1780505728,5277686.878159936],[516321.59476378775,5277687.804592699],[516323.3518984458,5277685.164390027],[516328.3284960425,5277688.645910437],[516326.43544084847,5277691.552466173],[516325.47755619,5277693.039054387],[516326.37710814417,5277693.608390462],[516323.8810510972,5277697.313463169],[516322.6970726799,5277699.088381589],[516323.8065472854,5277699.780559736],[516320.42057244654,5277704.839045304],[516319.1763636038,5277703.9908942655],[516318.11319410894,5277705.532758513],[516315.92643823137,5277708.738572141],[516314.6147998621,5277707.834663148],[516313.9209365782,5277708.899661609],[516312.78211390215,5277710.641366623],[516314.52843019064,5277711.857685023],[516315.5852123103,5277712.594169916],[516316.3244127393,5277711.429272811],[516318.9254699965,5277713.125889723],[516318.5479706868,5277713.847240815],[516320.30942840636,5277715.019147457],[516321.4787579972,5277715.7892909115],[516322.2254063753,5277714.6466434095],[516327.20989398565,5277717.983703414],[516326.31236976746,5277719.370434922],[516327.63148202683,5277720.285481542],[516329.07049610716,5277721.2897766875],[516331.2196136529,5277718.117204304],[516333.2282567178,5277719.512088093],[516335.9788712524,5277721.43141207],[516337.56779240584,5277722.536155889],[516337.00214908365,5277723.401459664],[516339.18303889764,5277724.96353875],[516338.3687408758,5277726.128222223],[516339.5379098838,5277726.953938838],[516342.49828469154,5277729.051678521],[516338.6018542644,5277734.042036863]]]},"properties":{"ID_SOURCE":"w511310938","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2448}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516352.1932044063,5277696.926131813],[516353.79919221107,5277694.630047338],[516363.01020035567,5277701.124271222],[516362.11285243224,5277702.444313788],[516364.7211288101,5277704.240997372],[516364.4044802438,5277704.684666838],[516367.1625698672,5277706.615140523],[516364.62131037714,5277710.364524819],[516367.50680854503,5277712.384268761],[516365.3879256989,5277715.479114901],[516368.79026279174,5277717.967100002],[516366.65676850465,5277720.9174227575],[516367.22630138596,5277721.341355551],[516358.9719442183,5277732.521055919],[516358.4022869206,5277732.14157953],[516354.19589652633,5277737.864579867],[516354.5703389391,5277738.232393437],[516352.70869795955,5277740.650013547],[516351.8693251346,5277740.047500373],[516348.9819999228,5277744.029313315],[516347.5806357747,5277742.991776918],[516345.77941804164,5277745.287315031],[516340.8628303072,5277741.850403489],[516343.0714296252,5277738.889168147],[516343.99855586805,5277737.658118137],[516343.0916902111,5277737.022074788],[516346.4768861477,5277732.241449691],[516347.458565923,5277732.9777295515],[516348.36316563975,5277731.746616982],[516351.0091009319,5277728.153115418],[516351.76288842293,5277727.143859586],[516350.92363840196,5277726.496890961],[516352.69548162894,5277723.9678781815],[516351.87857236987,5277723.387656117],[516353.0394644577,5277721.8127305],[516355.3762382446,5277718.674036065],[516356.4993662201,5277717.176802972],[516357.42125249456,5277717.812890584],[516359.23049243196,5277715.339554823],[516360.4745681127,5277716.232170063],[516361.0475377024,5277715.433573082],[516362.59304198105,5277713.281802855],[516361.0789680054,5277712.266174476],[516356.9495776104,5277709.287135577],[516356.38405502756,5277710.107981856],[516354.59265871556,5277708.902638203],[516351.4445717696,5277706.793251242],[516349.18094906,5277705.27539124],[516345.0135008672,5277702.4740778385],[516344.14402130595,5277701.8937093],[516343.4201763031,5277702.9363921145],[516338.4356225766,5277699.621546116],[516339.13706334593,5277698.534343854],[516338.00528012234,5277697.764302251],[516337.3381815904,5277697.317870576],[516338.06972284184,5277696.208524683],[516336.0760294902,5277694.835909237],[516344.6560508041,5277682.679060342],[516347.49698063044,5277684.531959216],[516346.1016336183,5277686.695268962],[516345.59946306085,5277686.349325339],[516342.4169359769,5277691.152747632],[516346.2544743416,5277693.775308913],[516346.8804164413,5277692.83237745],[516349.46629813284,5277694.584535285],[516349.17233480443,5277694.972699336],[516352.1932044063,5277696.926131813]]]},"properties":{"ID_SOURCE":"w511310939","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2449}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516293.44947718084,5277647.337520978],[516290.91621797753,5277645.552193635],[516295.06209974474,5277639.98457485],[516297.45261590055,5277641.79173235],[516293.44947718084,5277647.337520978]]]},"properties":{"ID_SOURCE":"w511321011","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"residential","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2450}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516366.39091137395,5277505.616508609],[516370.7968560057,5277506.440216932],[516370.22496823524,5277509.517182924],[516367.09146993235,5277526.223807767],[516362.6780300549,5277525.400081083],[516365.8190883402,5277508.671247225],[516366.39091137395,5277505.616508609]]]},"properties":{"ID_SOURCE":"w511510942","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2451}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516367.09146993235,5277526.223807767],[516370.22496823524,5277509.517182924],[516376.13955604786,5277510.634101137],[516372.9910531338,5277527.329566731],[516367.09146993235,5277526.223807767]]]},"properties":{"ID_SOURCE":"w511510943","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2452}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516356.793400002,5277524.316602577],[516362.6780300549,5277525.400081083],[516365.8190883402,5277508.671247225],[516359.8893834103,5277507.587638997],[516356.793400002,5277524.316602577]]]},"properties":{"ID_SOURCE":"w511510944","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2453}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516108.097040633,5276759.548412974],[516115.1271261343,5276756.833826623],[516117.4315433435,5276762.763950243],[516110.39395318244,5276765.478513041],[516108.097040633,5276759.548412974]]]},"properties":{"ID_SOURCE":"w512044889","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2454}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516122.49334104086,5276771.068983972],[516115.62599546823,5276752.978659571],[516124.0769432823,5276749.7901155595],[516130.93675578386,5276767.880429079],[516122.49334104086,5276771.068983972]]]},"properties":{"ID_SOURCE":"w512044890","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2455}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516447.35248264484,5277195.186592137],[516442.5598645678,5277192.916917967],[516444.8943147721,5277188.033359183],[516449.6793944251,5277190.31412793],[516447.35248264484,5277195.186592137]]]},"properties":{"ID_SOURCE":"w512044891","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2456}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516426.3207391258,5277193.637946984],[516424.7871167557,5277196.845561056],[516415.63695009885,5277192.485304164],[516417.17053720914,5277189.288801605],[516426.3207391258,5277193.637946984]]]},"properties":{"ID_SOURCE":"w512044892","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2457}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516438.7591583956,5277185.126399674],[516436.43225373916,5277189.998868196],[516433.1308340789,5277196.891331703],[516426.3207391258,5277193.637946984],[516417.17053720914,5277189.288801605],[516415.63695009885,5277192.485304164],[516409.90683159156,5277189.757340717],[516429.33802621067,5277149.03494262],[516441.0832688713,5277154.647313241],[516438.7591583956,5277185.126399674]]]},"properties":{"ID_SOURCE":"w512044893","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2458}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516442.5598645678,5277192.916917967],[516438.352282289,5277190.915634955],[516436.43225373916,5277189.998868196],[516438.7591583956,5277185.126399674],[516444.8943147721,5277188.033359183],[516442.5598645678,5277192.916917967]]]},"properties":{"ID_SOURCE":"w512044894","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2459}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516435.05837101274,5277197.808118592],[516433.1308340789,5277196.891331703],[516436.43225373916,5277189.998868196],[516438.352282289,5277190.915634955],[516435.05837101274,5277197.808118592]]]},"properties":{"ID_SOURCE":"w512044895","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2460}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516069.0396945243,5277473.035560016],[516062.05104658596,5277474.661144677],[516062.28850843094,5277475.695400138],[516056.00624563027,5277477.156231176],[516054.48074682814,5277477.518785768],[516054.24322238436,5277476.506758419],[516047.33722113835,5277478.121474623],[516045.2959812991,5277469.42471478],[516052.2095327072,5277467.798902963],[516051.9645589369,5277466.764627223],[516059.79489420407,5277464.930186466],[516060.0399279793,5277465.942234741],[516066.9910367551,5277464.316544045],[516069.0396945243,5277473.035560016]]]},"properties":{"ID_SOURCE":"w512044896","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2461}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515946.5765771688,5277250.919393355],[515947.6404822066,5277251.844767385],[515943.94903867505,5277256.035741095],[515940.1355078872,5277252.702220362],[515938.57608406857,5277254.4650736945],[515934.4251048149,5277259.177152413],[515930.44677472976,5277255.687591343],[515932.4808208467,5277253.381449699],[515932.12121899676,5277253.058160367],[515943.54964595777,5277240.074976377],[515950.64471759397,5277246.296008161],[515946.5765771688,5277250.919393355]]]},"properties":{"ID_SOURCE":"w512044897","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2462}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515915.3440152885,5277283.120040707],[515910.5152634018,5277280.28389322],[515911.91939069325,5277277.631489787],[515916.94443825533,5277280.090299808],[515915.3440152885,5277283.120040707]]]},"properties":{"ID_SOURCE":"w512044898","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2463}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515952.49627888796,5277214.659588771],[515955.2156459335,5277214.411418444],[515955.5647721731,5277218.557888429],[515952.3722083781,5277218.826990067],[515952.46703860327,5277219.84973573],[515946.84061791963,5277220.3233382],[515946.6951334948,5277218.600273377],[515943.2021043634,5277218.890785088],[515943.47130563273,5277222.059005544],[515936.72560642526,5277222.629578808],[515936.24569553626,5277216.8712254455],[515941.2636766899,5277216.440402779],[515940.3468536196,5277205.679563585],[515945.575159112,5277205.238206422],[515956.7905100884,5277204.279787623],[515957.0669711766,5277207.536940377],[515954.6406180179,5277207.741456841],[515954.91738467215,5277210.887470574],[515952.19053631113,5277211.124506574],[515952.49627888796,5277214.659588771]]]},"properties":{"ID_SOURCE":"w512044899","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2464}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516012.0009250653,5277347.946155161],[516006.5085494424,5277348.87574127],[516005.4739898637,5277342.749094539],[516004.82031752024,5277342.858437422],[516004.2943756768,5277342.945903526],[516004.13907986146,5277342.0674722865],[516001.3966599593,5277342.526721778],[515999.8372235946,5277333.364517349],[516005.06664133683,5277332.47865796],[516005.43624365225,5277334.624671956],[516009.6212550616,5277333.924883336],[516012.0009250653,5277347.946155161]]]},"properties":{"ID_SOURCE":"w512044900","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2465}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515868.37853239337,5277395.120774774],[515866.2394841759,5277394.648158081],[515866.7488562241,5277392.37118054],[515868.887905237,5277392.843797418],[515868.62178731844,5277394.043381819],[515868.37853239337,5277395.120774774]]]},"properties":{"ID_SOURCE":"w512044901","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2466}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515868.37853239337,5277395.120774774],[515866.9948304977,5277401.318603922],[515856.1570299767,5277398.9106866205],[515859.00796210876,5277386.17071789],[515861.4472286162,5277386.710833655],[515862.46606152924,5277382.123536163],[515867.19448951236,5277383.1700205775],[515866.8447630107,5277384.736138478],[515869.7718705196,5277385.388727015],[515868.8823970767,5277389.353993044],[515867.4938828109,5277389.0501312725],[515866.7488562241,5277392.37118054],[515866.2394841759,5277394.648158081],[515868.37853239337,5277395.120774774]]]},"properties":{"ID_SOURCE":"w512044902","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2467}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515869.7718705196,5277385.388727015],[515866.8447630107,5277384.736138478],[515867.19448951236,5277383.1700205775],[515870.12159777194,5277383.822609285],[515869.7718705196,5277385.388727015]]]},"properties":{"ID_SOURCE":"w512044903","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2468}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515861.4472286162,5277386.710833655],[515859.00796210876,5277386.17071789],[515860.026793188,5277381.5834199805],[515862.46606152924,5277382.123536163],[515861.4472286162,5277386.710833655]]]},"properties":{"ID_SOURCE":"w512044904","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2469}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515920.00316201797,5277391.927512752],[515921.1600209149,5277391.808422368],[515922.48212806124,5277391.678670148],[515922.5842576223,5277392.779233413],[515926.5355588827,5277392.389937541],[515927.1202676066,5277398.270832181],[515911.7808466375,5277399.7737331325],[515911.38627725496,5277395.760508249],[515915.9235298425,5277395.306122683],[515915.65304632514,5277392.604686297],[515911.5439773602,5277393.01578634],[515911.00318800507,5277387.546230648],[515919.48421128513,5277386.713637481],[515920.00316201797,5277391.927512752]]]},"properties":{"ID_SOURCE":"w512044905","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2470}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515993.2664731603,5277434.328085933],[515992.8307800081,5277434.371345029],[515993.14500245545,5277437.539692713],[515993.54696123156,5277441.57517196],[515993.9826233202,5277441.543026809],[515994.2236393625,5277444.022106668],[515978.7265531757,5277445.546625667],[515976.6808012521,5277424.768981631],[515992.17794214055,5277423.244457114],[515993.2664731603,5277434.328085933]]]},"properties":{"ID_SOURCE":"w512044908","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2471}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515936.57651439,5277447.209334497],[515937.0046963138,5277447.166050634],[515937.2532766035,5277449.634034758],[515921.75622102217,5277451.158705345],[515920.56521557126,5277439.052323868],[515920.39710864733,5277437.362539195],[515919.7101464626,5277430.425537187],[515935.20725662383,5277428.900861081],[515936.2958949013,5277439.984479105],[515935.8677428754,5277440.016649122],[515936.57651439,5277447.209334497]]]},"properties":{"ID_SOURCE":"w512044911","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2472}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515920.56521557126,5277439.052323868],[515918.980183691,5277439.214699515],[515918.8121067006,5277437.513800996],[515920.39710864733,5277437.362539195],[515920.56521557126,5277439.052323868]]]},"properties":{"ID_SOURCE":"w512044913","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2473}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515965.039209424,5277444.386564843],[515965.4673613009,5277444.354396968],[515965.7158991834,5277446.833496224],[515950.2038086657,5277448.358049927],[515948.15786474105,5277427.61375774],[515963.6700099221,5277426.089198509],[515964.75859461183,5277437.172821928],[515964.33795205137,5277437.205010445],[515964.5862164695,5277439.784134694],[515965.039209424,5277444.386564843]]]},"properties":{"ID_SOURCE":"w512044914","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2474}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515301.6149735216,5277730.468276622],[515309.02240219136,5277726.453376684],[515307.0792920615,5277722.891793777],[515308.0644355672,5277722.36091315],[515307.27225973475,5277720.90289885],[515302.25625422556,5277723.62375087],[515298.8796537226,5277725.45979691],[515301.6149735216,5277730.468276622]]]},"properties":{"ID_SOURCE":"w512883031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2475}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515308.2719368924,5277694.854360282],[515311.3707061995,5277693.0175889535],[515312.94039489893,5277695.8002123125],[515313.9867557431,5277697.6923411405],[515310.9782774751,5277699.462664669],[515308.2719368924,5277694.854360282]]]},"properties":{"ID_SOURCE":"w512883032","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2476}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515315.5236459315,5277707.232178292],[515318.9534136178,5277705.174002204],[515321.0318395538,5277708.680375194],[515317.53466325544,5277710.671688829],[515315.5236459315,5277707.232178292]]]},"properties":{"ID_SOURCE":"w512883033","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2477}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515319.47093431733,5277713.9776356425],[515322.90806267667,5277711.975051136],[515321.0318395538,5277708.680375194],[515317.53466325544,5277710.671688829],[515319.47093431733,5277713.9776356425]]]},"properties":{"ID_SOURCE":"w512883034","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2478}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515337.92158823524,5277745.434324529],[515335.5785691897,5277742.605200957],[515339.94356556894,5277739.004657681],[515342.29406412167,5277741.844916694],[515337.92158823524,5277745.434324529]]]},"properties":{"ID_SOURCE":"w512883035","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2479}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515334.39700999716,5277743.580118764],[515332.57026705856,5277741.463651074],[515333.25164984714,5277739.364903496],[515330.5641570314,5277736.168113364],[515338.74500136805,5277729.332337031],[515338.5428900844,5277729.087296952],[515341.4478984663,5277726.683218093],[515345.8864516351,5277732.218564592],[515343.1848731769,5277734.367555864],[515344.1129406984,5277735.548083809],[515341.78739353747,5277737.486901243],[515339.94356556894,5277739.004657681],[515335.5785691897,5277742.605200957],[515334.39700999716,5277743.580118764]]]},"properties":{"ID_SOURCE":"w512883036","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2480}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515356.6071998447,5277750.3737364905],[515353.4636129403,5277746.43109586],[515355.4201717048,5277744.880299085],[515353.54899565584,5277742.530313982],[515360.30670047563,5277737.157860018],[515359.07171647233,5277735.60975838],[515364.0835434755,5277731.6330643995],[515370.34082373406,5277739.462709854],[515367.26297505776,5277741.91077404],[515356.6071998447,5277750.3737364905]]]},"properties":{"ID_SOURCE":"w512883037","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2481}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515774.97949981806,5277652.055582676],[515767.284048397,5277648.5782870315],[515758.60608483513,5277669.604673392],[515759.3800489547,5277669.428944749],[515760.3439535424,5277673.988287059],[515760.56562907744,5277675.322565114],[515761.61213653267,5277679.882131309],[515763.3479208627,5277679.486727655],[515774.97949981806,5277652.055582676]]]},"properties":{"ID_SOURCE":"w512921407","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2482}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515988.0529594924,5277284.5084380675],[515988.1680515541,5277283.619635859],[515998.64119788725,5277284.870941911],[515998.5636544339,5277285.759847101],[515988.0529594924,5277284.5084380675]]]},"properties":{"ID_SOURCE":"w513947049","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2483}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515894.8441496767,5277323.396665584],[515895.8188399916,5277323.988367387],[515896.8309890087,5277324.613513559],[515897.379218036,5277324.615010429],[515897.9154010603,5277323.52730462],[515895.5985771679,5277322.142845707],[515894.8441496767,5277323.396665584]]]},"properties":{"ID_SOURCE":"w513950435","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2484}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515880.85231266246,5277334.639172456],[515877.635686297,5277332.741023457],[515876.1871037216,5277335.182148442],[515879.4112391707,5277337.080317133],[515880.85231266246,5277334.639172456]]]},"properties":{"ID_SOURCE":"w513950436","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2485}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515380.9321037927,5277303.45603995],[515380.9422561693,5277302.455809222],[515386.6647691887,5277302.5153851],[515386.6546452,5277303.504501927],[515380.9321037927,5277303.45603995]]]},"properties":{"ID_SOURCE":"w520983188","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2486}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515370.77783009777,5277312.2426046245],[515381.1264648516,5277312.325503717],[515381.11710516707,5277313.025659285],[515388.5669078163,5277313.089800396],[515388.55625477247,5277314.278967351],[515395.2025153306,5277314.3298792625],[515395.25713916746,5277307.872805373],[515388.6334306327,5277307.810839064],[515388.61350510776,5277309.666819878],[515387.7123045676,5277309.664438051],[515386.59334326774,5277309.650366916],[515386.6546452,5277303.504501927],[515380.9321037927,5277303.45603995],[515370.8463037137,5277303.373835145],[515370.77783009777,5277312.2426046245]]]},"properties":{"ID_SOURCE":"w520983189","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2487}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515577.8127584226,5277077.287769549],[515569.0140312181,5277078.820192613],[515566.4322735265,5277064.098393227],[515567.18363254244,5277063.978148256],[515566.59177972574,5277060.62014696],[515574.57152151223,5277059.230011121],[515575.1263236347,5277062.398976642],[515575.82511078834,5277062.278592163],[515577.3564080055,5277071.007155319],[515576.73275472556,5277071.116626633],[515577.8127584226,5277077.287769549]]]},"properties":{"ID_SOURCE":"w520994557","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2488}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515475.8938899397,5276911.806857918],[515491.95903640206,5276920.262849165],[515494.4449569818,5276914.645796043],[515478.70015138056,5276907.168678651],[515478.39819424367,5276907.745802275],[515477.5105641185,5276908.26579936],[515475.8938899397,5276911.806857918]]]},"properties":{"ID_SOURCE":"w521011697","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2489}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515741.11388215265,5277151.04582165],[515745.4299152796,5277146.3673945675],[515741.7664937252,5277143.001069259],[515747.5061140755,5277136.7927643275],[515744.38207208546,5277133.928025023],[515745.27089413255,5277132.963512781],[515742.04945627437,5277130.009599607],[515741.14561384195,5277130.97407173],[515737.4222483402,5277127.552017378],[515734.33397995005,5277130.900091129],[515733.01542164024,5277129.696219117],[515730.16820497846,5277132.778211055],[515736.22148569993,5277138.340439957],[515736.8316162878,5277137.675250524],[515738.77195859555,5277139.458730697],[515740.99699713755,5277141.498602554],[515736.2817511215,5277146.609398916],[515741.11388215265,5277151.04582165]]]},"properties":{"ID_SOURCE":"w521011700","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2490}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515677.5081499401,5276735.87860551],[515676.2740840083,5276736.731058689],[515681.01602431067,5276744.12349887],[515686.35044575983,5276740.681422318],[515683.0672688473,5276735.460129528],[515678.9966540227,5276738.160975935],[515677.5081499401,5276735.87860551]]]},"properties":{"ID_SOURCE":"w521018027","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2491}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515654.09705454734,5276760.9998721555],[515653.45603267744,5276759.175458638],[515657.15480076004,5276757.885068282],[515657.7883109031,5276759.709462009],[515654.09705454734,5276760.9998721555]]]},"properties":{"ID_SOURCE":"w521018028","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2492}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515630.6380239616,5276823.64185457],[515633.67927986337,5276818.259744834],[515638.90637523215,5276821.185639637],[515635.8651159924,5276826.567746671],[515630.6380239616,5276823.64185457]]]},"properties":{"ID_SOURCE":"w521018029","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2493}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515628.07220987324,5276828.180580388],[515622.1552108155,5276824.852741615],[515624.7210217245,5276820.31401322],[515630.6380239616,5276823.64185457],[515628.07220987324,5276828.180580388]]]},"properties":{"ID_SOURCE":"w521018030","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2494}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[515637.7945506449,5276832.463330103],[515642.8960621762,5276823.419149056],[515638.90637523215,5276821.185639637],[515635.8651159924,5276826.567746671],[515630.6380239616,5276823.64185457],[515628.07220987324,5276828.180580388],[515628.4021107051,5276828.392631135],[515628.91527920257,5276827.482663132],[515637.7945506449,5276832.463330103]]]},"properties":{"ID_SOURCE":"w521018031","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2495}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516637.77791097027,5277009.835162292],[516639.45655539853,5277011.129180572],[516641.67280591326,5277008.268107373],[516639.99416114687,5277006.974088465],[516637.77791097027,5277009.835162292]]]},"properties":{"ID_SOURCE":"w526288354","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2496}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517080.8456276374,5276596.477613228],[517084.5441794957,5276597.966621223],[517085.81071067223,5276596.36992424],[517082.7907174182,5276594.004901684],[517080.8456276374,5276596.477613228]]]},"properties":{"ID_SOURCE":"w526288355","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2497}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[517087.85522874363,5276583.050264745],[517088.03506752686,5276583.195274129],[517091.0850754668,5276585.571501407],[517093.0457496546,5276582.909901419],[517091.32221111923,5276581.548937771],[517089.91338157025,5276580.444519623],[517087.85522874363,5276583.050264745]]]},"properties":{"ID_SOURCE":"w526288356","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2498}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516577.9905610838,5277021.83444589],[516592.7402675978,5277032.657017763],[516599.48713737744,5277023.873975643],[516618.92740616074,5277038.522082729],[516637.31464883074,5277014.257202541],[516634.67667504493,5277012.2602634905],[516617.9420650202,5276999.564772055],[516611.69185961806,5276994.823496893],[516593.3116354114,5277019.27741466],[516584.6548382924,5277013.040037663],[516577.9905610838,5277021.83444589]]]},"properties":{"ID_SOURCE":"w571284277","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2499}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516579.42904832575,5276970.314135709],[516611.69185961806,5276994.823496893],[516617.9420650202,5276999.564772055],[516625.15652906685,5276990.127369442],[516618.2168825491,5276984.850647985],[516625.7253828442,5276975.025096101],[516613.1050395915,5276965.442168458],[516611.22038813686,5276967.90409506],[516608.96462485706,5276966.186107768],[516606.23563571356,5276969.757025579],[516608.6338115467,5276971.57544383],[516605.5278769049,5276975.645415893],[516586.43994342256,5276961.142841574],[516579.42904832575,5276970.314135709]]]},"properties":{"ID_SOURCE":"w571284280","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"education","MAIN_USE":"education","ZINDEX":0,"ID_BUILD":2500}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516780.0238292529,5277021.001673058],[516794.4059905115,5277031.534735008],[516803.401202164,5277019.313078435],[516789.02653708885,5277008.780016158],[516780.0238292529,5277021.001673058]]]},"properties":{"ID_SOURCE":"w573113425","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"religious","MAIN_USE":"building","ZINDEX":0,"ID_BUILD":2501}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516789.02653708885,5277008.780016158],[516803.401202164,5277019.313078435],[516807.14813780447,5277014.378170627],[516792.473051075,5277003.844232829],[516789.02653708885,5277008.780016158]]]},"properties":{"ID_SOURCE":"w573113426","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2502}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516581.8873568716,5276940.4689903855],[516589.337105189,5276945.991628469],[516593.9662424732,5276939.792104659],[516586.51652219146,5276934.258346829],[516581.8873568716,5276940.4689903855]]]},"properties":{"ID_SOURCE":"w690012549","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"building","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2503}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516783.5400215393,5276210.025111197],[516783.6316145111,5276206.913464361],[516766.87457190565,5276206.531782006],[516765.1961443997,5276215.529263673],[516761.33845409175,5276224.853893025],[516761.17639210145,5276228.965594482],[516766.2838258176,5276229.091434495],[516765.8695448806,5276242.538142413],[516778.71305260464,5276242.908546975],[516778.7146534504,5276242.352853207],[516783.3713920251,5276242.477409922],[516783.4596365262,5276237.920937494],[516785.33716396603,5276238.037487797],[516785.42060559377,5276235.1480967095],[516785.3326798286,5276239.5934303375],[516788.0274897234,5276242.824247868],[516790.5059262591,5276242.942531937],[516791.81274695083,5276243.001869273],[516793.284818073,5276243.061683366],[516794.11107035045,5276243.064065767],[516794.18137722055,5276244.731363657],[516796.58469901275,5276244.84943373],[516816.78871222876,5276245.4634331195],[516816.87120668974,5276242.907458672],[516820.626898998,5276242.918303923],[516824.1569287303,5276243.039639419],[516826.0121443718,5276243.078340619],[516830.6163982117,5276243.169441587],[516830.6493700758,5276239.557497237],[516830.8603297159,5276218.54159361],[516830.87159873074,5276217.241291957],[516830.93295020144,5276211.606687669],[516830.9429062476,5276208.161386503],[516820.5252917838,5276207.875670312],[516817.2730673067,5276207.788481165],[516817.2705000914,5276208.677591141],[516812.34335571085,5276208.541112956],[516799.1842938976,5276208.169724482],[516790.60685031035,5276207.933825562],[516790.60044244904,5276210.156600517],[516783.5400215393,5276210.025111197]],[[516783.61909498565,5276216.471439986],[516790.356196698,5276216.713137046],[516790.4210583809,5276220.269793559],[516783.66078602173,5276220.250308974],[516783.61909498565,5276216.471439986]]]},"properties":{"ID_SOURCE":"r1966426","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"commercial","MAIN_USE":"null","ZINDEX":0,"ID_BUILD":2504}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516241.09212343633,5277248.977196142],[516214.27492902457,5277251.125250302],[516215.95860408695,5277266.800650824],[516242.3232628981,5277265.318181126],[516245.87760147697,5277310.339719119],[516280.2064092977,5277307.545971567],[516279.11781810987,5277293.98387072],[516290.4604470321,5277293.126476782],[516289.58567341015,5277283.67714538],[516278.54342781013,5277284.53538092],[516276.88468024,5277262.691771448],[516276.7327166033,5277260.635260236],[516242.2546729516,5277262.984053942],[516241.09212343633,5277248.977196142]],[[516251.5597403211,5277292.573207023],[516263.87898203137,5277291.607347532],[516264.0226631545,5277293.941684874],[516261.84413440555,5277294.1578794755],[516262.42444873793,5277301.4947277745],[516252.3582330856,5277302.466878845],[516251.5597403211,5277292.573207023]],[[516255.0006883697,5277270.577130827],[516264.6911461792,5277269.71507422],[516265.78288078465,5277282.165782362],[516262.9281333299,5277282.491227296],[516262.7844514483,5277280.156890021],[516255.6486674197,5277280.581522374],[516255.0006883697,5277270.577130827]]]},"properties":{"ID_SOURCE":"r1957481","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":2505}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[516241.09212343633,5277248.977196142],[516214.27492902457,5277251.125250302],[516215.95860408695,5277266.800650824],[516242.3232628981,5277265.318181126],[516245.87760147697,5277310.339719119],[516280.2064092977,5277307.545971567],[516279.11781810987,5277293.98387072],[516290.4604470321,5277293.126476782],[516289.58567341015,5277283.67714538],[516278.54342781013,5277284.53538092],[516276.88468024,5277262.691771448],[516276.7327166033,5277260.635260236],[516242.2546729516,5277262.984053942],[516241.09212343633,5277248.977196142]],[[516251.5597403211,5277292.573207023],[516263.87898203137,5277291.607347532],[516264.0226631545,5277293.941684874],[516261.84413440555,5277294.1578794755],[516262.42444873793,5277301.4947277745],[516252.3582330856,5277302.466878845],[516251.5597403211,5277292.573207023]],[[516255.0006883697,5277270.577130827],[516264.6911461792,5277269.71507422],[516265.78288078465,5277282.165782362],[516262.9281333299,5277282.491227296],[516262.7844514483,5277280.156890021],[516255.6486674197,5277280.581522374],[516255.0006883697,5277270.577130827]]]},"properties":{"ID_SOURCE":"r4269919","HEIGHT_WALL":3.0,"HEIGHT_ROOF":3.0,"NB_LEV":1,"TYPE":"government","MAIN_USE":"office","ZINDEX":0,"ID_BUILD":2506}}]} \ No newline at end of file