@humanforest/nuxt-layer 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +67 -0
- package/README.md +208 -0
- package/app.config.ts +10 -0
- package/assets/icons/forest/bike-asterisk.svg +21 -0
- package/assets/icons/forest/bike-down.svg +19 -0
- package/assets/icons/forest/bike-off.svg +20 -0
- package/assets/icons/forest/bike-up.svg +19 -0
- package/assets/icons/forest/bike-x.svg +19 -0
- package/assets/icons/forest/bike.svg +18 -0
- package/assets/icons/forest/mark-fill.svg +6 -0
- package/assets/icons/forest/mark.svg +6 -0
- package/assets/icons/forest/parking.svg +3 -0
- package/assets/icons/forest/star-fill.svg +4 -0
- package/assets/icons/forest/star.svg +4 -0
- package/assets/icons/forest/traffic-light-caution.svg +8 -0
- package/assets/icons/forest/traffic-light-go.svg +8 -0
- package/assets/icons/forest/traffic-light-lit.svg +8 -0
- package/assets/icons/forest/traffic-light-stop.svg +8 -0
- package/assets/icons/forest/traffic-light.svg +8 -0
- package/nuxt.config.ts +81 -0
- package/package.json +35 -0
- package/packages/charts/src/FBoroughShape.vue +52 -0
- package/packages/charts/src/FCalendarGrid.vue +332 -0
- package/packages/charts/src/FCellLegend.vue +54 -0
- package/packages/charts/src/FChartFrame.vue +201 -0
- package/packages/charts/src/FChartFrameSingle.vue +91 -0
- package/packages/charts/src/FChartLegend.vue +26 -0
- package/packages/charts/src/FDistributionBar.vue +224 -0
- package/packages/charts/src/FDottedMap.vue +335 -0
- package/packages/charts/src/FLondonMap.vue +399 -0
- package/packages/charts/src/FSparkline.vue +198 -0
- package/packages/charts/src/FStatusTrack.vue +151 -0
- package/packages/charts/src/cellSize.ts +46 -0
- package/packages/charts/src/distribution.ts +99 -0
- package/packages/charts/src/engine.ts +15 -0
- package/packages/charts/src/forestTooltip.ts +110 -0
- package/packages/charts/src/fromCategories.ts +43 -0
- package/packages/charts/src/index.ts +87 -0
- package/packages/charts/src/londonAreas.ts +75 -0
- package/packages/charts/src/londonGrid.ts +67 -0
- package/packages/charts/src/motionDuration.ts +49 -0
- package/packages/charts/src/presets.ts +143 -0
- package/packages/charts/src/resolveVar.ts +21 -0
- package/packages/charts/src/snapTooltip.ts +154 -0
- package/packages/charts/src/tooltipStandIn.ts +58 -0
- package/packages/charts/src/useCellScale.ts +155 -0
- package/packages/charts/src/useChartPalette.ts +61 -0
- package/packages/charts/src/useChartRepaintKey.ts +22 -0
- package/packages/charts/src/useThemeVersion.ts +17 -0
- package/packages/frames/src/FBrowserFrame.vue +53 -0
- package/packages/frames/src/FDeviceFrame.vue +242 -0
- package/packages/frames/src/FFitFrame.vue +83 -0
- package/packages/frames/src/art/iphone-11.svg +124 -0
- package/packages/frames/src/art/iphone-12.svg +601 -0
- package/packages/frames/src/art/iphone-13-pro.svg +820 -0
- package/packages/frames/src/art/iphone-13.svg +849 -0
- package/packages/frames/src/art/iphone-14.svg +681 -0
- package/packages/frames/src/art/iphone-15-pro.svg +633 -0
- package/packages/frames/src/art/iphone-15.svg +713 -0
- package/packages/frames/src/art/iphone-16-plus.svg +685 -0
- package/packages/frames/src/art/iphone-16-pro-max.svg +611 -0
- package/packages/frames/src/art/iphone-16-pro.svg +631 -0
- package/packages/frames/src/art/iphone-16.svg +713 -0
- package/packages/frames/src/art/iphone-17-pro-max.svg +355 -0
- package/packages/frames/src/art/iphone-17.svg +305 -0
- package/packages/frames/src/art/iphone-air.svg +389 -0
- package/packages/frames/src/art/iphone-se-3.svg +473 -0
- package/packages/frames/src/art/iphone-x.svg +652 -0
- package/packages/frames/src/art/pixel-10-pro-xl.svg +32 -0
- package/packages/frames/src/art/pixel-10-pro.svg +32 -0
- package/packages/frames/src/art/pixel-10.svg +32 -0
- package/packages/frames/src/art/pixel-8-pro.svg +208 -0
- package/packages/frames/src/art/pixel-8.svg +208 -0
- package/packages/frames/src/art/pixel-8a.svg +8 -0
- package/packages/frames/src/art/pixel-9-pro-xl.svg +32 -0
- package/packages/frames/src/art/pixel-9-pro.svg +34 -0
- package/packages/frames/src/art/pixel-9a.svg +25 -0
- package/packages/frames/src/art.ts +29 -0
- package/packages/frames/src/devices.ts +337 -0
- package/packages/frames/src/index.ts +15 -0
- package/packages/tokens/geo/london-boroughs.json +1 -0
- package/packages/tokens/geo/london-dots-coarse.json +1 -0
- package/packages/tokens/geo/london-dots-fine.json +1 -0
- package/packages/tokens/geo/london-dots-medium.json +1 -0
- package/packages/tokens/geo/london-dots-ultra.json +1 -0
- package/packages/tokens/geo/london-wards.json +1 -0
- package/packages/tokens/glyphs/glyphs.json +1 -0
- package/packages/tokens/logos/f-rot.svg +4 -0
- package/packages/tokens/logos/f.svg +4 -0
- package/packages/tokens/logos/favicon-c2w.svg +9 -0
- package/packages/tokens/logos/favicon-console.svg +9 -0
- package/packages/tokens/logos/favicon-ds.svg +9 -0
- package/packages/tokens/logos/favicon-fleet.svg +9 -0
- package/packages/tokens/logos/favicon-flex.svg +9 -0
- package/packages/tokens/logos/favicon-plus.svg +9 -0
- package/packages/tokens/logos/favicon-radar.svg +9 -0
- package/packages/tokens/logos/favicon-tower.svg +9 -0
- package/packages/tokens/logos/lockup-horizontal.svg +17 -0
- package/packages/tokens/logos/lockup-vertical.svg +17 -0
- package/packages/tokens/logos/mark-mono.svg +4 -0
- package/packages/tokens/logos/mark.svg +7 -0
- package/packages/tokens/logos/wordmark.svg +9 -0
- package/packages/tokens/src/colourEngine.ts +604 -0
- package/packages/tokens/src/glyphs.ts +127 -0
- package/packages/tokens/src/logo.ts +50 -0
- package/packages/tokens/src/subbrands.ts +44 -0
- package/packages/tokens/src/sublogo.ts +80 -0
- package/packages/ui/icons/forest/map/forest-place-count.svg +21 -0
- package/packages/ui/icons/forest/map/forest-place-marker.svg +17 -0
- package/packages/ui/icons/forest/map/forest-vehicle-marker.svg +73 -0
- package/packages/ui/icons/forest/map/manifest.json +373 -0
- package/packages/ui/icons/forest/map/place-count-manifest.json +83 -0
- package/packages/ui/icons/forest/map/place-manifest.json +74 -0
- package/packages/ui/src/address/address.ts +125 -0
- package/packages/ui/src/address/autofill.ts +78 -0
- package/packages/ui/src/address/geocode.ts +55 -0
- package/packages/ui/src/address/index.ts +31 -0
- package/packages/ui/src/address/validate.ts +91 -0
- package/packages/ui/src/canvas/FCanvasCard.vue +97 -0
- package/packages/ui/src/canvas/FCanvasControl.vue +121 -0
- package/packages/ui/src/canvas/FCanvasControlGroup.vue +100 -0
- package/packages/ui/src/canvas/FCanvasFlyout.vue +216 -0
- package/packages/ui/src/canvas/FCanvasHud.vue +402 -0
- package/packages/ui/src/canvas/canvasSurface.ts +39 -0
- package/packages/ui/src/canvas/index.ts +17 -0
- package/packages/ui/src/contexts/ForestContext.vue +53 -0
- package/packages/ui/src/contexts/contexts.ts +153 -0
- package/packages/ui/src/contexts/index.ts +23 -0
- package/packages/ui/src/contexts/marketing-theme.ts +214 -0
- package/packages/ui/src/contexts/mobile-theme.ts +402 -0
- package/packages/ui/src/filter/FFilterBar.vue +72 -0
- package/packages/ui/src/filter/FFilterChip.vue +362 -0
- package/packages/ui/src/filter/FFilterClauses.vue +104 -0
- package/packages/ui/src/filter/FFilterTrigger.vue +183 -0
- package/packages/ui/src/filter/filter.theme.ts +27 -0
- package/packages/ui/src/filter/filterClause.ts +265 -0
- package/packages/ui/src/filter/filterPredicate.ts +134 -0
- package/packages/ui/src/filter/filterSchema.ts +82 -0
- package/packages/ui/src/filter/index.ts +36 -0
- package/packages/ui/src/forest-preset.ts +68 -0
- package/packages/ui/src/icons.ts +79 -0
- package/packages/ui/src/index.ts +17 -0
- package/packages/ui/src/kpi/FKpi.vue +253 -0
- package/packages/ui/src/kpi/FKpiGroup.vue +161 -0
- package/packages/ui/src/kpi/index.ts +20 -0
- package/packages/ui/src/kpi/kpi.theme.ts +168 -0
- package/packages/ui/src/kpi/kpiDelta.ts +82 -0
- package/packages/ui/src/kpi/kpiFormat.ts +72 -0
- package/packages/ui/src/kpi/kpiGroupState.ts +63 -0
- package/packages/ui/src/logo/FLogo.vue +52 -0
- package/packages/ui/src/logo/FSubLogo.vue +214 -0
- package/packages/ui/src/logo/index.ts +8 -0
- package/packages/ui/src/map/FMap.vue +355 -0
- package/packages/ui/src/map/FMapCompass.vue +154 -0
- package/packages/ui/src/map/FMapCoordinates.vue +134 -0
- package/packages/ui/src/map/FMapDrawTools.vue +116 -0
- package/packages/ui/src/map/FMapFullscreen.vue +92 -0
- package/packages/ui/src/map/FMapGeolocate.vue +208 -0
- package/packages/ui/src/map/FMapLayers.vue +75 -0
- package/packages/ui/src/map/FMapLegend.vue +45 -0
- package/packages/ui/src/map/FMapPopup.vue +129 -0
- package/packages/ui/src/map/FMapRamp.vue +69 -0
- package/packages/ui/src/map/FMapRegion.vue +77 -0
- package/packages/ui/src/map/FMapScale.vue +107 -0
- package/packages/ui/src/map/FMapSearch.vue +362 -0
- package/packages/ui/src/map/FMapTilt.vue +87 -0
- package/packages/ui/src/map/FMapTools.vue +61 -0
- package/packages/ui/src/map/FMapZoom.vue +81 -0
- package/packages/ui/src/map/FMarker.vue +218 -0
- package/packages/ui/src/map/FTrackScrubber.vue +94 -0
- package/packages/ui/src/map/FVehicleLegend.vue +72 -0
- package/packages/ui/src/map/FVehicleMark.vue +166 -0
- package/packages/ui/src/map/bin.ts +196 -0
- package/packages/ui/src/map/coordinates.ts +83 -0
- package/packages/ui/src/map/density.ts +401 -0
- package/packages/ui/src/map/draw.ts +356 -0
- package/packages/ui/src/map/ease.ts +67 -0
- package/packages/ui/src/map/fullscreen.ts +59 -0
- package/packages/ui/src/map/heat.ts +160 -0
- package/packages/ui/src/map/index.ts +351 -0
- package/packages/ui/src/map/liveMarkers.ts +60 -0
- package/packages/ui/src/map/map.css +116 -0
- package/packages/ui/src/map/mapColor.ts +31 -0
- package/packages/ui/src/map/mapContext.ts +12 -0
- package/packages/ui/src/map/mapLayers.ts +55 -0
- package/packages/ui/src/map/mapLegend.ts +70 -0
- package/packages/ui/src/map/mapSearch.theme.ts +79 -0
- package/packages/ui/src/map/mapSearch.ts +279 -0
- package/packages/ui/src/map/mapUrl.ts +117 -0
- package/packages/ui/src/map/markerAsset.ts +3 -0
- package/packages/ui/src/map/padding.ts +39 -0
- package/packages/ui/src/map/place.ts +192 -0
- package/packages/ui/src/map/ramp.ts +95 -0
- package/packages/ui/src/map/regionSelect.ts +163 -0
- package/packages/ui/src/map/route.ts +167 -0
- package/packages/ui/src/map/scale.ts +329 -0
- package/packages/ui/src/map/scaleBar.ts +67 -0
- package/packages/ui/src/map/selectionModel.ts +50 -0
- package/packages/ui/src/map/sources/coordinates.ts +58 -0
- package/packages/ui/src/map/sources/mapboxPlaces.ts +71 -0
- package/packages/ui/src/map/style.ts +14 -0
- package/packages/ui/src/map/track.ts +279 -0
- package/packages/ui/src/map/useFeatureSelect.ts +230 -0
- package/packages/ui/src/map/useLiveMarkers.ts +84 -0
- package/packages/ui/src/map/useMap.ts +150 -0
- package/packages/ui/src/map/useMapDraw.ts +776 -0
- package/packages/ui/src/map/useMapOverlay.ts +421 -0
- package/packages/ui/src/map/useMapTableSelection.ts +101 -0
- package/packages/ui/src/map/useMapUrlState.ts +155 -0
- package/packages/ui/src/map/useMarkerSource.ts +163 -0
- package/packages/ui/src/map/useRegionSelect.ts +309 -0
- package/packages/ui/src/map/useTokenMode.ts +61 -0
- package/packages/ui/src/map/useTrackPlayback.ts +131 -0
- package/packages/ui/src/map/useVehicleFilter.ts +51 -0
- package/packages/ui/src/map/useVisibleFeatures.ts +124 -0
- package/packages/ui/src/map/vehicle.ts +807 -0
- package/packages/ui/src/map/vehicleFilter.ts +284 -0
- package/packages/ui/src/map/vehicleLegend.ts +155 -0
- package/packages/ui/src/map/visibleFeatures.ts +192 -0
- package/packages/ui/src/map/zone.ts +291 -0
- package/packages/ui/src/shell/FAppNavbar.vue +68 -0
- package/packages/ui/src/shell/FAppShell.vue +163 -0
- package/packages/ui/src/shell/FAppSidebar.vue +215 -0
- package/packages/ui/src/shell/FPageToolbar.vue +126 -0
- package/packages/ui/src/shell/FScrollShadow.vue +43 -0
- package/packages/ui/src/shell/FSidePanel.vue +258 -0
- package/packages/ui/src/shell/FToolbarActions.vue +32 -0
- package/packages/ui/src/shell/index.ts +33 -0
- package/packages/ui/src/shell/nav.ts +37 -0
- package/packages/ui/src/shell/pageToolbar.ts +69 -0
- package/packages/ui/src/shell/shell.ts +74 -0
- package/packages/ui/src/shell/sidePanel.ts +115 -0
- package/packages/ui/src/themes/accordion.ts +36 -0
- package/packages/ui/src/themes/alert.ts +16 -0
- package/packages/ui/src/themes/auth-form.ts +19 -0
- package/packages/ui/src/themes/avatar-group.ts +9 -0
- package/packages/ui/src/themes/avatar.ts +18 -0
- package/packages/ui/src/themes/badge.ts +51 -0
- package/packages/ui/src/themes/banner.ts +21 -0
- package/packages/ui/src/themes/breadcrumb.ts +10 -0
- package/packages/ui/src/themes/button.mechanics.ts +191 -0
- package/packages/ui/src/themes/button.ts +136 -0
- package/packages/ui/src/themes/calendar.ts +29 -0
- package/packages/ui/src/themes/card.ts +67 -0
- package/packages/ui/src/themes/carousel.ts +41 -0
- package/packages/ui/src/themes/checkbox-group.ts +20 -0
- package/packages/ui/src/themes/checkbox.ts +47 -0
- package/packages/ui/src/themes/chip.ts +50 -0
- package/packages/ui/src/themes/collapsible.ts +26 -0
- package/packages/ui/src/themes/color-picker.ts +13 -0
- package/packages/ui/src/themes/command-palette.ts +37 -0
- package/packages/ui/src/themes/container.ts +14 -0
- package/packages/ui/src/themes/context-menu.ts +38 -0
- package/packages/ui/src/themes/dashboard-group.ts +11 -0
- package/packages/ui/src/themes/dashboard-navbar.ts +10 -0
- package/packages/ui/src/themes/dashboard-panel.ts +18 -0
- package/packages/ui/src/themes/dashboard-resize-handle.ts +35 -0
- package/packages/ui/src/themes/dashboard-sidebar-collapse.ts +7 -0
- package/packages/ui/src/themes/dashboard-sidebar-toggle.ts +7 -0
- package/packages/ui/src/themes/dashboard-sidebar.ts +58 -0
- package/packages/ui/src/themes/dashboard-toolbar.ts +15 -0
- package/packages/ui/src/themes/drawer.ts +45 -0
- package/packages/ui/src/themes/dropdown-menu.ts +38 -0
- package/packages/ui/src/themes/empty.ts +43 -0
- package/packages/ui/src/themes/field-group.ts +52 -0
- package/packages/ui/src/themes/file-upload.ts +38 -0
- package/packages/ui/src/themes/footer-columns.ts +13 -0
- package/packages/ui/src/themes/footer.ts +9 -0
- package/packages/ui/src/themes/form-field.ts +25 -0
- package/packages/ui/src/themes/form.ts +22 -0
- package/packages/ui/src/themes/header.ts +12 -0
- package/packages/ui/src/themes/icon.ts +61 -0
- package/packages/ui/src/themes/index.ts +99 -0
- package/packages/ui/src/themes/input-date.ts +73 -0
- package/packages/ui/src/themes/input-menu.ts +66 -0
- package/packages/ui/src/themes/input-number.ts +58 -0
- package/packages/ui/src/themes/input-rating.ts +25 -0
- package/packages/ui/src/themes/input-tags.ts +63 -0
- package/packages/ui/src/themes/input-time.ts +70 -0
- package/packages/ui/src/themes/input.ts +148 -0
- package/packages/ui/src/themes/kbd.ts +27 -0
- package/packages/ui/src/themes/link.ts +27 -0
- package/packages/ui/src/themes/listbox.ts +48 -0
- package/packages/ui/src/themes/main.ts +6 -0
- package/packages/ui/src/themes/marquee.ts +45 -0
- package/packages/ui/src/themes/modal.ts +46 -0
- package/packages/ui/src/themes/navigation-menu.ts +80 -0
- package/packages/ui/src/themes/page-anchors.ts +7 -0
- package/packages/ui/src/themes/page-aside.ts +7 -0
- package/packages/ui/src/themes/page-card.ts +22 -0
- package/packages/ui/src/themes/page-cta.ts +18 -0
- package/packages/ui/src/themes/page-feature.ts +13 -0
- package/packages/ui/src/themes/page-header.ts +16 -0
- package/packages/ui/src/themes/page-hero.ts +15 -0
- package/packages/ui/src/themes/page-links.ts +12 -0
- package/packages/ui/src/themes/page-section.ts +14 -0
- package/packages/ui/src/themes/page.ts +7 -0
- package/packages/ui/src/themes/pagination.ts +17 -0
- package/packages/ui/src/themes/pin-input.ts +73 -0
- package/packages/ui/src/themes/popover.ts +30 -0
- package/packages/ui/src/themes/progress.ts +29 -0
- package/packages/ui/src/themes/prose.ts +45 -0
- package/packages/ui/src/themes/radio-group.ts +39 -0
- package/packages/ui/src/themes/scroll-area.ts +23 -0
- package/packages/ui/src/themes/select-menu.ts +71 -0
- package/packages/ui/src/themes/select.ts +72 -0
- package/packages/ui/src/themes/separator.ts +28 -0
- package/packages/ui/src/themes/sidebar.ts +127 -0
- package/packages/ui/src/themes/skeleton.ts +15 -0
- package/packages/ui/src/themes/slideover.ts +87 -0
- package/packages/ui/src/themes/slider.ts +48 -0
- package/packages/ui/src/themes/stepper.ts +41 -0
- package/packages/ui/src/themes/switch.ts +63 -0
- package/packages/ui/src/themes/table.ts +34 -0
- package/packages/ui/src/themes/tabs.ts +74 -0
- package/packages/ui/src/themes/textarea.ts +77 -0
- package/packages/ui/src/themes/timeline.ts +25 -0
- package/packages/ui/src/themes/toast.ts +29 -0
- package/packages/ui/src/themes/toaster.ts +66 -0
- package/packages/ui/src/themes/tooltip.ts +31 -0
- package/packages/ui/src/themes/tree.ts +41 -0
- package/packages/ui/src/themes/user.ts +28 -0
- package/styles.cdn.gen.css +2047 -0
- package/theme.gen.json +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"$description":"The 704 wards of the 33 London boroughs as SVG paths. Same viewBox as london-boroughs.json. Each ward carries the code of the borough containing it.","$licence":"Contains OS data © Crown copyright and database right 2025. Source: Office for National Statistics licensed under the Open Government Licence v.3.0.","viewBox":[0,0,1000,771],"bbox":[-0.51024,51.28679,0.33402,51.6919],"areas":[{"code":"E05013810","name":"Abbey","d":"M388.4,524.7L386.9,527.8L386.2,539L383,544.3L368.9,533.1L365,528.1L367.7,526.6L365.2,518.4L368.9,519.2L373.4,518.4L373.5,516.9L381.7,515L382.3,517.7L382.9,517.5L382.6,525.3L388.4,524.7Z","cx":377.2,"cy":528.6,"x":365,"y":515,"w":23.5,"h":29.3,"borough":"E09000024"},{"code":"E05014053","name":"Abbey","d":"M688.5,294.6L690.7,299.6L690.7,301.1L689.4,302.6L686.7,296.1L685.9,296.3L688.5,294.6ZM703.5,293.1L710.3,298.4L704.2,300.1L702,297.7L700.3,297.7L694.6,301.3L691.4,300.1L688.8,294.4L690.4,293.5L698.6,292.9L701,290.8L703.5,293.1Z","cx":698.6,"cy":296.3,"x":688.8,"y":290.8,"w":21.4,"h":10.5,"borough":"E09000002"},{"code":"E05013792","name":"Abbey Road","d":"M396.1,289.9L398.4,290L398.1,292.3L398.9,293.7L395.8,296.7L404.2,307.9L398.1,312.5L400.8,315L398.3,315.7L394.9,318.4L380.9,299.6L386.2,292.5L391,289.9L396.1,289.9Z","cx":392.7,"cy":302.8,"x":380.9,"y":289.5,"w":23.3,"h":28.9,"borough":"E09000033"},{"code":"E05014072","name":"Abbey Wood","d":"M748,382.2L748.9,397.6L751.5,409.4L747.6,406.1L744.7,405.4L741.2,410.5L736,406.9L734.5,407.1L733.8,405L729.2,401.4L730.4,394.3L728,393.6L729.2,388.1L724.4,388.6L727.1,374.2L747.7,363.7L748,382.2Z","cx":738.7,"cy":387.5,"x":724.4,"y":363.7,"w":27.1,"h":46.8,"borough":"E09000011"},{"code":"E05009388","name":"Abingdon","d":"M379.9,375.3L372.7,375.7L367.1,378.9L365.3,380.8L363.8,377.8L365.2,376.6L361.9,372.3L360.6,371.7L375.6,363.3L379.1,367.7L379.1,368.8L380,368.8L380.6,372.3L381.1,372.1L379.9,375.3Z","cx":371.5,"cy":371.7,"x":360.6,"y":363.3,"w":20.5,"h":17.5,"borough":"E09000020"},{"code":"E05011462","name":"Addiscombe East","d":"M533.3,600.6L522.9,604.5L517.5,604.5L515.8,603.3L508.5,602.9L508.7,601.6L509.4,601.6L509.6,595.5L507.2,594.7L512.3,588.5L519.9,584.1L520.5,585L528,579.3L529.9,582.6L530.7,581.6L536.4,584.8L536.5,586.6L535.7,587.1L536.4,589.4L534.2,590.9L532.8,589.2L531.5,590.6L529.3,589.8L530.2,594L533.3,600.6Z","cx":522,"cy":593.2,"x":507.2,"y":579.3,"w":29.3,"h":25.3,"borough":"E09000008"},{"code":"E05011463","name":"Addiscombe West","d":"M519.9,584.1L512.3,588.5L507.8,593.4L507.2,594.7L509.6,595.5L509.4,601.6L508.7,601.6L507.2,606.2L505.7,607.1L494.4,608.6L495,598.2L497.2,591.5L501,584.3L504,580.5L504.7,581L510.2,575.7L510.8,576.3L508.7,578.6L510,579.9L512.1,581.6L517.2,580.3L519.9,584.1Z","cx":504.6,"cy":593.4,"x":494.4,"y":575.7,"w":25.5,"h":32.9,"borough":"E09000008"},{"code":"E05013733","name":"Addison","d":"M349.7,361L348.3,362.2L349,362.9L344.6,366.7L341.3,365.8L340.5,370.6L338.1,370.4L337.7,368.1L336.7,367.5L335.8,360.7L347.3,356.7L349.7,361Z","cx":342.2,"cy":362.8,"x":335.8,"y":356.7,"w":13.9,"h":13.9,"borough":"E09000013"},{"code":"E05011234","name":"Aldborough","d":"M772.4,181.4L767.3,186.5L757.9,193.9L759.5,198.7L754.1,200.2L756.1,207.6L755.7,209.9L743.5,208.4L733.9,209L729.7,210.9L715.9,221.2L704,225.1L692.6,222.3L693.4,219.4L692.8,219.2L696,214.9L695.4,214.5L696.8,213.7L697,212.6L697.8,213.2L698.6,212.2L700.1,212.4L701.7,208.2L698.4,206.3L699.1,205L697,203.6L699.7,199.5L700.1,197.6L703.6,197.7L705.8,199.8L709.5,200.2L712.2,183.7L739.9,170.9L757.3,158.7L761.3,163.9L766,167.7L772.4,181.4Z","cx":734,"cy":193.3,"x":692.6,"y":158.7,"w":79.8,"h":66.4,"borough":"E09000026"},{"code":"E05009288","name":"Aldersgate","d":"M491.4,331.9L490.7,334.6L489.5,334.2L489.6,333.2L487.7,333.6L487.7,332.3L489.5,331L489,324.1L491.2,323.9L491.6,326.2L492.7,325.8L491.4,331.9Z","cx":490.3,"cy":329,"x":487.7,"y":323.9,"w":5,"h":10.7,"borough":"E09000001"},{"code":"E05009289","name":"Aldgate","d":"M512.1,335.2L514.6,337.4L511.9,339.3L514.2,339L511.6,340.9L513,342.6L512.6,343.3L510.6,342.8L510.2,341.8L509.4,342.2L509.3,341.2L507,341.1L509.6,335.9L511.4,334.6L512.1,335.2Z","cx":510.8,"cy":338.9,"x":507,"y":334.6,"w":7.6,"h":8.8,"borough":"E09000001"},{"code":"E05013928","name":"Alexandra","d":"M284.7,577.4L280.6,581.6L272,595.3L267.5,589.6L254.9,583.9L256.1,582.6L259.4,581.2L260.9,582.2L270.8,575.7L272.5,573.6L273.9,564.7L275.3,563L277.8,561.8L279.3,566.2L283.6,572.5L284.7,577.4Z","cx":272.9,"cy":579.6,"x":254.9,"y":561.8,"w":29.7,"h":33.5,"borough":"E09000021"},{"code":"E05013585","name":"Alexandra Park","d":"M462.1,179.5L467.7,190.3L464.2,192L462.2,190.3L457.6,190.5L453.2,192.2L453.6,194.1L448.4,194.9L446.6,197.9L446.1,193.2L446.9,190.3L444.3,187.3L441.3,188.8L439.1,186.1L438.2,186.1L437.8,184.2L438.5,183.7L437.5,180.8L436.8,181.2L435.9,178.7L436.6,178.3L435,174.5L433.4,175.5L433.2,174.7L436.2,167.9L434.5,158.2L440.1,155.5L457.1,172.6L462.1,179.5Z","cx":448,"cy":177.2,"x":433.2,"y":155.5,"w":34.5,"h":42.4,"borough":"E09000014"},{"code":"E05014054","name":"Alibon","d":"M816.6,276.9L788.9,284.5L779.5,286L779,267.8L786.2,267.4L789.6,268.2L794.8,267.2L796.4,270.4L798,269.9L798,270.6L800.5,270.4L803.6,275.4L804.7,274.2L816.6,273.5L816.6,276.9Z","cx":792.8,"cy":276.2,"x":779,"y":267.2,"w":37.7,"h":18.8,"borough":"E09000002"},{"code":"E05013496","name":"Alperton","d":"M265,278.4L277.5,285.9L275.7,289.1L270.6,292.7L269.8,291.8L264.9,295.2L256.8,298.8L253.3,298L249.1,302.2L245.8,304.3L240.1,302.2L241.6,300.1L242,290.2L243.5,289.3L239,283L239.5,280.7L238.5,279.2L240.6,279L238.8,276.7L235.4,274.6L234.3,271.4L240.7,276.7L245,284.9L250,288.1L251.5,286.6L252.8,281.3L255.9,283.2L259,280L259.4,280.3L260.6,279.2L262.4,280.9L265,278.4Z","cx":255.7,"cy":289.8,"x":234.2,"y":271.4,"w":43.2,"h":32.9,"borough":"E09000005"},{"code":"E05013672","name":"Arnos Grove","d":"M470.4,128.3L462.5,130.2L462,135.7L460.1,135.3L458.7,140.5L464.5,143.5L465.7,143.5L466.5,142.5L471.3,143.9L467.4,150.9L463.9,151.3L460.1,150.2L449.8,144.8L437.7,143.3L436.2,143.9L437,141.6L444,133.4L446.4,124.7L447.5,123.1L449,123.3L449,124.3L449.6,123.5L453.6,122.8L454.5,124.1L457.4,123.5L458.1,126.4L461.9,124.7L462.1,123.5L463.3,124.3L465.8,123.5L467.4,124.7L468.5,127.5L470.4,128.3Z","cx":454.6,"cy":136.7,"x":436.2,"y":122.8,"w":35.2,"h":28.5,"borough":"E09000010"},{"code":"E05013697","name":"Arsenal","d":"M486.4,248L487.6,249.5L488.2,259L479.3,259.6L479.9,264.9L478.8,266.3L476.3,267L474.7,269.1L465.9,258.5L472.7,253.9L474.8,257.3L477.9,247.4L479.8,247L481.7,247.8L483.1,249.7L486.4,248Z","cx":478.1,"cy":257.3,"x":465.9,"y":247,"w":22.3,"h":22.1,"borough":"E09000019"},{"code":"E05013734","name":"Avonmore","d":"M363.8,377.8L365.3,380.8L356.1,383.3L344.6,382L344.5,378.2L347.8,377.8L358.8,372.5L363.8,377.8Z","cx":355.1,"cy":378.8,"x":344.5,"y":372.5,"w":20.8,"h":10.8,"borough":"E09000013"},{"code":"E05014009","name":"Balham","d":"M435.8,458.5L432.9,463.4L431.9,468L434.5,476.9L414,470.5L409.2,465.9L410.8,463.4L409,460L421.6,454.3L424.3,452.6L423.4,450.9L428.9,448.2L429.4,456L435.8,458.5Z","cx":423.3,"cy":463.5,"x":409,"y":448.2,"w":26.8,"h":28.7,"borough":"E09000032"},{"code":"E05014055","name":"Barking Riverside","d":"M755.4,304.9L765.3,305.5L769.4,307.6L771.5,306L779.4,305.1L775.8,333.2L774,335.9L769.4,331.7L765.8,329.8L754.4,327.9L749.6,328.9L745.3,330.8L739.7,334.8L740,335.3L733.2,338.2L730.6,338.6L724.1,337.6L721.7,336.9L720,335L719.6,335.3L720.7,333.2L725.4,331.9L725.3,329.8L727,330L728.4,328.3L727.7,324.9L730.2,324.1L731.2,311.7L732.4,311.9L734.2,307.9L742.8,309.6L743.7,303.6L750.5,305.1L755.4,304.9Z","cx":752.4,"cy":320,"x":719.6,"y":303.6,"w":59.8,"h":35,"borough":"E09000002"},{"code":"E05011235","name":"Barkingside","d":"M698.5,201.2L697,203.6L699.1,205L698.4,206.3L701.7,208.2L700.1,212.4L698.6,212.2L697.8,213.2L697,212.6L696.8,213.7L695.4,214.5L696,214.9L692.8,219.2L693.4,219.4L692.6,222.3L684.3,220L671.9,219.8L671.8,217.2L669.7,212L691.1,196L694.1,197.9L694.3,199.1L698.5,201.2Z","cx":686.4,"cy":210.3,"x":669.7,"y":196,"w":32,"h":26.3,"borough":"E09000026"},{"code":"E05011217","name":"Barnehurst","d":"M818.6,420.8L817.8,426.3L815.2,426.1L815.1,431.3L819.2,431.5L820.3,434.3L818.2,435.8L817.1,437.9L816.7,437.5L816.3,438.3L817,438.7L813.8,443.1L812.5,441.7L810.2,442.7L809.8,443.6L808.3,442.9L806.7,444.8L801.1,443.3L796.1,440L794.8,440.4L794.4,439.1L792.6,439.1L791.9,437L792.7,436.2L792.2,435.3L791.5,435.4L789.5,433.5L790.9,432L789.3,432L791.2,429.5L792,425.6L790.8,422.1L791.3,421.2L795.9,420L797.2,418.9L799.3,418.7L799.3,419.7L802.6,419.5L803,416.4L805.6,417.7L807.6,417.7L810.3,415.5L813.7,414.5L813.3,417L815.1,417L815.2,418.5L817.1,418.5L817.1,421L818.6,420.8Z","cx":805,"cy":430,"x":789.3,"y":414.5,"w":31,"h":30.3,"borough":"E09000004"},{"code":"E05013774","name":"Barnes","d":"M339.8,419.5L339.5,421L330.5,417L328.7,417.6L328.4,419.1L321.5,418.9L319,419.8L317,419.1L313.5,420.6L312.3,419.3L312.5,418.3L311.2,415.8L309.1,415.1L306.5,415.5L308.6,410.7L309,399.3L310.1,396.1L318.8,387.5L321.3,386.3L325.3,386.2L328.3,386.9L330.4,388.3L334.3,393.6L335.7,401.4L336,410.5L340.3,418.9L339.8,419.5Z","cx":323,"cy":404.5,"x":306.5,"y":386.2,"w":33.9,"h":34.8,"borough":"E09000027"},{"code":"E05013628","name":"Barnet Vale","d":"M396.4,59.6L397.9,76.5L406.2,100.9L404.3,102.6L403.5,102.2L400.8,105.8L399.1,105.2L396.1,107.7L395.7,106.6L394.9,106.8L395.7,108.9L391.4,109.6L386.3,98.8L382.7,99.9L380.1,98.6L379.4,97.1L380.7,95.9L378.2,86L379,84.1L370.2,76.1L376.6,72.9L377.2,73.8L378,73.5L379.6,71.4L379,70.4L379.1,64.9L380.3,65.1L381.1,62.2L375.6,58.8L378.7,56.1L381,56L384.8,54.1L384.2,55.4L396.4,59.6Z","cx":389.4,"cy":82.1,"x":370.2,"y":54.1,"w":36,"h":55.6,"borough":"E09000003"},{"code":"E05013497","name":"Barnhill","d":"M290,253.1L281.2,247.6L273.9,244.7L268.6,241.1L263.1,234.1L260.5,228L260.7,224.8L271.1,215.3L272.9,215.1L275.3,213.5L282.4,231.2L287.5,235.6L290.1,239.2L289.9,240L294.7,243.6L293.9,244.9L294.4,247L293.7,247.8L290.7,248.2L291.2,250.3L290,253.1Z","cx":276.3,"cy":233.9,"x":260.5,"y":213.5,"w":34.2,"h":39.6,"borough":"E09000005"},{"code":"E05013698","name":"Barnsbury","d":"M478.7,287.4L477.4,298L478.8,302.2L478.5,304.5L469.1,305.5L468.3,299L465.8,298.6L467.2,293.3L465.9,284.9L465.9,284.1L466.8,284L466.5,283L476.6,279.2L478.7,287.4Z","cx":472.5,"cy":292.6,"x":465.8,"y":279.2,"w":13,"h":26.3,"borough":"E09000019"},{"code":"E05009290","name":"Bassishaw","d":"M496.3,330.8L498.4,331.9L497.9,335.2L495.5,335.9L495.6,335L495,335L494.4,336.3L490.7,334.6L491.4,331.9L492.8,331.5L494.1,330L496.3,330.8Z","cx":494.7,"cy":333.2,"x":490.7,"y":330,"w":7.7,"h":6.3,"borough":"E09000001"},{"code":"E05014010","name":"Battersea Park","d":"M429.8,396.4L429.5,409.8L428.6,414.3L418.2,421.6L415.4,422.1L409.6,421.6L407,413.2L401.7,412.2L399.2,413L398.9,411.7L401.1,410.5L403.1,406.5L401.1,402.7L407.4,400.8L429.8,396.4Z","cx":416.6,"cy":408.8,"x":398.9,"y":396.4,"w":30.9,"h":25.7,"borough":"E09000032"},{"code":"E05013793","name":"Bayswater","d":"M385.4,328.1L388.7,331.7L379.8,336.3L381,341.2L379.6,341.6L380.4,346L376.8,346.4L375.9,342.8L374.6,343L373.3,336.7L368.4,337.6L367.6,333.2L371,332.3L370,329.6L373.3,328.5L373.2,326.2L378,327.7L385.4,328.1Z","cx":377.3,"cy":334.5,"x":367.6,"y":326.2,"w":21.1,"h":20.2,"borough":"E09000033"},{"code":"E05014056","name":"Beam","d":"M801,310.4L799.1,313.8L796.6,322.8L792.3,342L784,341.1L777.9,337.8L777.1,338L776.2,337.4L777.1,337.6L776.7,336.5L775.3,335.7L774.6,336.5L774,335.9L775.8,333.2L779.3,309.5L780,303.7L779.9,290.8L783,292.7L783.9,294.6L785.7,295.2L785.6,295.9L787.1,295.9L788.7,297.3L790.9,300.7L792.1,299.6L792.6,299.9L801,310.4Z","cx":787,"cy":318.9,"x":774,"y":290.8,"w":27,"h":51.6,"borough":"E09000002"},{"code":"E05013967","name":"Beam Park","d":"M837.7,320.9L833.3,324.7L828.3,326L828,329.6L826.5,330L825.1,331.7L822,332.9L820.8,335L819.2,335.3L818.5,336.7L816,337.4L811.9,331.9L809,329.4L804.7,327L796.6,324.5L799.1,313.8L804.2,305.8L806.1,307L805.4,308.3L815.3,310.8L816.6,311.7L814.3,318.4L818.9,320.1L819.6,319.2L823,318.8L824.6,315.5L831.8,318L832.5,316.5L837.7,320.9Z","cx":814.5,"cy":321.9,"x":796.6,"y":305.8,"w":41.1,"h":31.6,"borough":"E09000016"},{"code":"E05013987","name":"Beckenham Town & Copers Cope","d":"M595.2,527.9L598.2,535.6L602.3,540.1L595.5,538L595,541.1L596.5,541.5L597.1,543.4L595.7,543.2L595.2,546.6L594.3,546.8L594.1,547.7L596.3,550.2L595.8,551.7L594.7,551L593.6,554L591,553.4L588.5,551.2L587.9,548.9L587,548.3L586.2,548.9L584.5,547.2L584.6,546.4L582.8,546.2L581.4,547.5L577.9,548.5L576.2,546.8L576.1,544.5L575.2,543.6L574.8,544.1L570.7,544.1L570.7,544.9L570,544.7L570,543.6L568.8,543.6L568.6,545.1L566.9,544.3L567.2,543.2L565.5,543.2L566.5,542.2L568.5,535.9L570.3,534L565.3,531.6L562.7,526.6L564.9,508.7L566.7,508.5L566.5,507L568.7,506.8L575.6,511.6L577.6,514.4L578.1,514.1L579.5,515.6L578.8,516.7L579.7,517.7L579,520.7L577.6,522L578.7,522.6L578.1,523.8L579.5,525.1L583.3,525.7L583,526.8L587.4,526.6L587.5,529.7L592.2,529.7L595.2,527.9Z","cx":579,"cy":531.9,"x":562.7,"y":506.8,"w":39.7,"h":47.2,"borough":"E09000006"},{"code":"E05013904","name":"Beckton","d":"M698.3,351.7L688.2,351.1L688.8,349.4L687.8,348.7L686.8,349.8L660.5,348.1L659.9,343.7L655.9,341.2L654.8,339.5L654,333.8L654.9,333.6L654.9,332.7L654.1,329.8L652.7,328.9L653.3,327.7L658.1,326.8L668,327.9L672.9,327L699.2,312.9L705.3,316.5L709.7,315.4L710.6,316.5L713.5,316.5L713.7,319.4L711.8,319.7L713.1,320.3L713.1,322.4L716.3,326.6L715.6,329.1L716.7,333.8L719.1,336.1L717.6,335.7L715.7,336.7L711.3,337.1L711.6,338L704.8,341.6L703,343.3L703.5,344.3L698.3,351.7Z","cx":687.1,"cy":333.8,"x":652.7,"y":312.9,"w":66.4,"h":38.8,"borough":"E09000025"},{"code":"E05014057","name":"Becontree","d":"M750.8,267.8L746.6,268L732.6,265.9L732.8,264.9L736.9,264.9L740.2,260L737.9,257.7L738.6,256.2L743.1,256.9L743.1,256L745.2,256L747.1,253.7L743.5,252.6L746.1,246.3L745.2,245.9L745.4,245.1L752.4,242.8L751.1,247.4L751.9,247.6L755.6,257.5L750.8,267.8Z","cx":746.9,"cy":258,"x":732.6,"y":242.8,"w":23,"h":25.1,"borough":"E09000002"},{"code":"E05013754","name":"Beddington","d":"M445.3,573L447.3,574.4L446.6,575.3L450.9,579.9L449.7,581.6L451.8,582.9L451,583.5L452,588.8L450,589.4L452.8,592.7L455.4,602L454.2,602.2L454.3,603.3L453,603.7L456.5,605.6L458.3,610.4L459.7,620.6L457.4,621.4L459.5,623.1L460.7,622.7L461.2,625.4L460.6,627.3L455.6,630L441.1,632.4L441.6,628.1L439,629L438.7,627.5L437.1,626.7L436.1,617L435.2,617.2L435,615.9L435.1,613.8L436.1,613.6L436.1,612.8L438.2,613L437.8,610.9L432.1,610L430.1,607.9L426.1,605.6L422.1,598.7L423.6,575L433.4,573.2L436.4,575.9L444.7,572.7L445.3,573Z","cx":441.3,"cy":601.2,"x":422.1,"y":572.7,"w":39.1,"h":59.8,"borough":"E09000029"},{"code":"E05013606","name":"Bedfont","d":"M120.3,426.3L117.3,431.1L112.6,435.6L118.5,446.3L98.1,453L104.5,458.3L102.6,460.4L102,460.4L101.8,457.9L101.3,458.5L99.9,470.8L75.7,479.4L63.7,482.8L65,475.4L62.6,473.7L62.5,462.1L57.7,462.3L58,455.8L59.7,456.2L60.3,455.2L61,448.4L64.6,450.5L65,449.7L66.7,449.9L66.9,451.1L72.4,453.1L78.6,454.1L81.5,447.4L89.1,447.2L87.2,445.3L90.8,438.1L104.6,428.8L117.4,422.5L117.4,424.8L118.3,424.6L120.3,426.3Z","cx":88.2,"cy":455.4,"x":57.7,"y":422.5,"w":62.5,"h":60.3,"borough":"E09000018"},{"code":"E05013714","name":"Bellingham","d":"M575.7,482.1L581,491.6L583.8,504.9L586.7,510.2L593,518L595.2,527.9L592.2,529.7L587.5,529.7L587.4,526.6L583,526.8L583.3,525.7L579.5,525.1L578.1,523.8L578.7,522.6L577.6,522L579,520.7L579.7,517.7L578.8,516.7L579.5,515.6L578.1,514.1L577.6,514.4L575.6,511.6L568.7,506.8L566.5,507L566.7,508.5L564.9,508.7L563.9,507.8L559.9,508L558.8,509.9L557.1,509.3L556.4,503.8L560.2,500.7L559.8,494.6L562.7,494.4L562.8,493.3L569.9,493.7L572.9,486.5L574,478.5L575.7,482.1Z","cx":576.9,"cy":506.4,"x":556.4,"y":478.5,"w":38.9,"h":51.2,"borough":"E09000023"},{"code":"E05013542","name":"Belmont","d":"M247.7,161L239.7,164.1L240.6,173L239.8,172.6L236.9,174L237.4,174.9L235.4,175.9L235,175.1L233,176.2L233,178.1L230,179.3L231,176.4L227.9,173.8L225.5,173.6L223.9,178.3L222.4,174.7L220.5,174.5L218.3,169.2L215.9,166.5L217.8,165.8L215.9,165L214.4,156.3L216.7,156.1L216.9,157.4L221.8,156.1L229.2,156.4L231.5,154.7L233.6,157.2L234.1,155.7L233.5,154.2L234.6,154.7L235,151.9L236.7,151.7L236.9,150.9L239.8,151.7L239.7,150.9L243.2,150.5L246.2,155.9L247.7,161Z","cx":230.7,"cy":163.8,"x":214.4,"y":150.5,"w":33.3,"h":28.7,"borough":"E09000015"},{"code":"E05013755","name":"Belmont","d":"M392.7,648.2L392.3,649L393.4,649.4L389,659.3L382.3,668.2L375.5,664.8L372.2,663.5L371.9,664L370.7,662.9L367.9,666.1L366,669.9L365,669.5L358.9,651.1L353.6,639.1L365.6,635.7L367.5,646.7L369.1,646.5L370,648.2L371.9,647.5L373,647.8L373.3,646.9L375.6,647.7L375.4,646.1L386.2,642.9L386.5,645.6L391.4,646.3L392.7,648.2Z","cx":373.3,"cy":653,"x":353.6,"y":635.7,"w":39.8,"h":34.3,"borough":"E09000029"},{"code":"E05013564","name":"Belmore","d":"M150.2,331.9L148.5,334L143.5,337.2L141.9,340.1L129.2,334.6L126,332.1L117.8,329.4L104.5,321.6L107.7,315.4L105.1,314.2L106.8,308.5L110.9,305.3L111.4,304.3L110.7,303L116.6,300.5L116.2,306.6L117.8,307.9L117.5,310.6L119.1,312.3L121.3,313.5L122.3,315L124.4,314.4L128.7,315.5L134.5,321.3L137.1,327L142.1,331.5L148.8,331L150.2,331.9Z","cx":123.4,"cy":322.4,"x":104.5,"y":300.5,"w":45.7,"h":39.6,"borough":"E09000017"},{"code":"E05013652","name":"Belsize","d":"M405.7,265.3L416,275.8L415.6,277.1L413.3,278.6L398.4,281.3L397,282.2L396.3,280.5L393.2,278.2L390.9,274.4L391.6,274.1L390.9,272.9L391.4,266.6L394.5,264.9L396,265.7L396,266.8L397,266.8L401.1,264.5L404,264L405.7,265.3Z","cx":401.9,"cy":273.1,"x":390.9,"y":264,"w":25.1,"h":18.3,"borough":"E09000007"},{"code":"E05011218","name":"Belvedere","d":"M808.1,375.3L802.2,378L801.5,376.6L797.6,380.4L804.1,389.4L803.1,390L801.3,388.6L800.2,389.8L790.9,392.4L789,391.7L785.4,393L785.6,394.7L784.8,394.9L786.4,401L782,402.7L776.7,403.7L773.9,405.2L773.5,404L769.7,403.3L769.5,402L768.1,402.1L767.6,398.3L765.5,399.1L765,398.1L763.9,399.1L763.6,398L760.6,399.5L758.8,398.9L758.6,396.8L755.7,396.1L754.6,396.1L754,398.7L748.9,397.6L748,382.2L781.1,380.3L781.7,376.1L784.8,375.1L785.8,372.3L785.8,369.8L780.6,368.3L783.8,362L781.2,361.2L780.8,360.1L783.7,353.2L794.2,354.8L799.2,356.7L801.7,358.6L807.6,369.6L808.1,375.3Z","cx":781,"cy":381.5,"x":748,"y":353,"w":60.1,"h":52.1,"borough":"E09000004"},{"code":"E05011464","name":"Bensham Manor","d":"M494.1,565.1L493.4,567L491.1,567.9L481.3,576.7L477.5,574L477.4,571.9L473.2,565.6L476,563.5L471.5,563.7L470.3,561.2L467.8,562.8L463.9,551.9L469.6,550L474.2,545.5L488,560.9L494.1,565.1Z","cx":478.4,"cy":561,"x":463.9,"y":545.5,"w":30.2,"h":31.2,"borough":"E09000008"},{"code":"E05013929","name":"Berrylands","d":"M277.8,561.8L275.3,563L273.9,564.7L272.5,573.6L270.8,575.7L260.9,582.2L259.4,581.2L253.1,564.3L259.4,561.2L276.3,555.9L277.8,561.8Z","cx":265.2,"cy":568.2,"x":253.1,"y":555.9,"w":24.8,"h":26.3,"borough":"E09000021"},{"code":"E05009317","name":"Bethnal Green East","d":"M560.5,319.2L555.9,322L537.6,327.5L539.3,319.4L538.3,309.5L542.5,307.6L546.3,301.1L553.5,306L560.5,319.2Z","cx":547.7,"cy":315.1,"x":537.6,"y":301.1,"w":23,"h":26.5,"borough":"E09000030"},{"code":"E05009331","name":"Bethnal Green West","d":"M536.5,299.8L539.6,298.2L546.3,301.1L542.5,307.6L538.3,309.5L539.3,319.4L537.8,325.3L536,325.3L535.7,323.7L531.8,324.9L530.9,320.1L528.6,320.3L526.9,308.7L525.8,305.8L527.1,302L527.4,302.6L530.7,301.8L529.9,298.8L530.5,297.7L533.2,300.1L536.5,299.8Z","cx":534.7,"cy":310.1,"x":525.8,"y":297.7,"w":20.5,"h":27.6,"borough":"E09000030"},{"code":"E05011219","name":"Bexleyheath","d":"M790.8,422.1L792,425.6L791.2,429.5L789.3,432L790.9,432L789.5,433.5L791.5,435.4L792.2,435.3L792.7,436.2L791.9,437L792.6,439.1L794.4,439.1L794.2,441.5L795.2,441.2L796.6,445.7L798.6,446.5L800.3,449L800.9,451.2L800,453L798.7,453.9L798.3,453L791.5,451.6L791,449.3L789.9,449.2L789.6,450.7L789,451.6L787.8,451.2L787,453.7L784.6,453.1L784.5,456.8L788.2,459.4L790,462.5L789.4,466.7L782.9,463.6L761.3,463.8L765.9,457L767,457L766.3,451.2L766.8,450.1L766,449.9L766,447.2L765.5,447.2L765.8,444.2L766.9,444.4L767.3,441L765.9,441L765.9,439.6L768.3,439.1L767.9,434.5L768.8,431.8L769.7,432.2L770,431.6L770.5,428.4L769.7,427.8L770.4,428L771.5,426.3L772.2,426.9L773.5,425.2L772.8,424.8L775.8,419.3L775.6,415.8L778.8,415.7L778.6,417.9L777.8,417.9L777.5,419.3L782,420.4L782.6,421.4L783.8,420L785.9,421L787,420.4L787.1,421.9L788.1,422.3L790.8,422.1Z","cx":780.1,"cy":443.2,"x":761.3,"y":415.3,"w":39.6,"h":51.4,"borough":"E09000004"},{"code":"E05013988","name":"Bickley & Sundridge","d":"M658.6,525.5L666.8,538L675.1,548.7L683.5,562.4L679.9,567.5L681.9,572.1L680.4,572.3L680.8,576.1L674.8,574.8L669.3,572.5L668.9,573.2L661.9,575.7L658.4,574.6L655.3,575.5L652.1,566.4L652.6,565.6L648.7,559.9L647.8,556.1L638.8,556.1L639.2,550.2L638,549.8L638.1,548.9L638.7,549.1L639.8,547.5L640.5,544.5L636.3,542.4L631.7,542L629.2,542.6L629,540.5L628.3,540.7L628.3,537.1L632.3,533.7L634.1,531L633.5,529.7L629.9,528.7L630.2,523.6L631.6,523L633.4,515.2L635.5,512.7L640.6,512.3L643.5,512.9L645.1,511.4L658.6,525.5Z","cx":654.9,"cy":545.4,"x":628.3,"y":511.4,"w":55.2,"h":64.7,"borough":"E09000006"},{"code":"E05013989","name":"Biggin Hill","d":"M654.8,743.4L653.5,740.1L652.8,740.7L647.4,734.6L643.3,731.6L640.3,735.2L637.5,736.9L633.7,741.7L632.3,746.4L629.2,751.9L627,761.7L622.1,761.5L614.3,725.7L616.7,715.2L612.2,716L607.1,690.5L608.3,684.6L614.1,686.1L617.3,686.1L620.7,691.8L622.7,691.6L624.9,689.3L627.5,689.7L628.2,689.1L628.8,693.1L631,693.3L632.4,690.9L635.6,689.5L636.9,682.9L638.1,683.2L639.2,680.2L640.6,678.9L642.3,680.4L650.4,682.3L649.5,685L654.2,687.1L650.9,696.6L656.7,707.2L655.4,708.9L657.1,710.3L655.9,716.2L656.7,722.1L655.7,721.9L656.7,730.4L659,732.9L660.2,733.5L660.7,732.5L660.6,733.7L661.9,734.4L664.2,738.2L657.7,742.4L654.8,743.4Z","cx":633.5,"cy":715.6,"x":607,"y":678.9,"w":57.2,"h":82.8,"borough":"E09000006"},{"code":"E05009291","name":"Billingsgate","d":"M509.3,349.8L503.1,348.9L503.4,347.3L504.4,347.5L504.9,345L505.8,345L506.1,343.1L509.5,343.5L508.9,346.8L507.5,346L506.9,347.1L509.6,349L509.3,349.8Z","cx":506.7,"cy":346.6,"x":503.1,"y":343,"w":6.5,"h":6.9,"borough":"E09000001"},{"code":"E05009292","name":"Bishopsgate","d":"M511.4,324.3L510.3,329.3L511.9,329.1L513.3,333.6L512.1,335.2L511.4,334.6L509.6,335.9L508.4,335L508.2,336.7L506.6,335.9L507.7,334.6L505.5,334L505.9,331.7L502.3,329.4L503.4,326.6L505.9,327.3L507.5,325.8L508.4,323.4L511.4,324.3Z","cx":508.3,"cy":330.2,"x":502.3,"y":323.4,"w":11,"h":13.3,"borough":"E09000001"},{"code":"E05011220","name":"Blackfen & Lamorbey","d":"M729,457.1L728.4,458.9L730.2,459.4L730,460L725.1,460.6L726.4,461.9L725.7,462.7L726.6,465.1L726.6,466.1L725.3,465.9L727.5,467.8L727.7,468.8L725.8,468.9L724.7,471.6L727.2,476.9L731.8,475.4L731.3,478.5L729.8,478.5L729.9,479.8L728.6,479.8L728.7,481.7L732.3,480L734.5,480.6L735.2,481.9L733.4,485.5L729.2,486.3L729.1,485.5L726.5,485.7L726.7,490.3L731.9,490.5L732,491L722.6,490.3L697.3,484.9L700.2,478.7L701.3,479.4L704.5,475.6L702.7,474.3L702.7,472.9L704.7,474.5L707.9,473.1L706.7,469.3L707.9,468.6L708.7,465.5L705.9,448L729,457.1Z","cx":716.4,"cy":472.3,"x":697.3,"y":448,"w":37.9,"h":43,"borough":"E09000004"},{"code":"E05013715","name":"Blackheath","d":"M616.7,444.2L618,447.6L615.7,447.6L613.7,444.8L611.9,444L603.4,444L600.7,443.1L599.9,443.6L595.5,437.9L592.2,436L591.1,432.4L591.1,429L586.5,419.1L587.8,417.2L589.4,417.9L594.7,417L603.3,418.9L625.7,415.1L622.1,416.4L624.1,423.3L623.8,424.2L621.4,422.9L619.3,422.7L619.9,425.9L619.4,427.3L620.1,428.4L615.1,430.1L616.7,444.2Z","cx":605.3,"cy":429.1,"x":586.5,"y":415.1,"w":39.2,"h":32.5,"borough":"E09000023"},{"code":"E05014073","name":"Blackheath Westcombe","d":"M633.5,413.2L639.1,427.6L636.7,429L635.6,427.8L629.9,432.8L629,436.6L630.9,442.1L616.7,444.2L615.1,430.1L620.1,428.4L619.4,427.3L619.9,425.9L619.3,422.7L621.4,422.9L623.8,424.2L624.1,423.3L622.1,416.4L625.7,415.1L618.7,416.2L610.5,404L606,399.3L606.3,398L610.6,398.1L628.3,394.9L629.1,400.2L633.5,413.2Z","cx":623.9,"cy":418.2,"x":606,"y":394.9,"w":33,"h":49.3,"borough":"E09000011"},{"code":"E05009318","name":"Blackwall & Cubitt Town","d":"M600.7,382.7L597.4,382.4L597.7,381.2L596.1,378.5L595.1,379.5L592.9,378.5L591.9,377.2L590.6,378L583.9,377.6L586.1,357.4L589.3,356.8L591.8,353.8L591.8,351.3L597.8,350.2L602.2,345.2L606.5,344.5L607.7,345.4L609.5,345L610.9,339.5L612.3,338.8L613.1,341.1L611,346.2L611.9,347.3L615,348.5L614.8,351.1L611.2,349.4L608.7,349.2L608.5,350L602.3,350.9L597.5,355.5L595.4,362.4L594.1,362.7L595.2,363.7L595.7,368.5L597.7,373.2L597,373.6L600.5,379.9L600.7,382.7Z","cx":595.1,"cy":362.6,"x":583.9,"y":338.8,"w":31.2,"h":44.2,"borough":"E09000030"},{"code":"E05011221","name":"Blendon & Penhill","d":"M741.3,459.8L746.5,461.7L761.3,463.8L773.3,463.6L773.5,465.3L765.7,469.3L764.6,470.8L759.9,472.8L759.2,482.1L760.2,482.1L760,482.8L761.1,483.6L759.5,486.5L760.1,486.8L732,491L731.9,490.5L726.7,490.3L726.5,485.7L729.1,485.5L729.2,486.3L733.4,485.5L735.2,481.9L734.5,480.6L732.3,480L728.7,481.7L728.6,479.8L729.9,479.8L729.8,478.5L731.3,478.5L731.8,475.4L727.2,476.9L726,475.2L724.7,471.6L725.8,468.9L727.7,468.8L727.5,467.8L725.3,465.9L726.6,466.1L726.6,465.1L725.7,462.7L726.4,461.9L725.1,460.6L730,460L730.2,459.4L728.4,458.9L729,457.1L741.3,459.8Z","cx":744.6,"cy":473.9,"x":724.7,"y":457.1,"w":48.8,"h":33.9,"borough":"E09000004"},{"code":"E05013653","name":"Bloomsbury","d":"M460.1,321.4L456.3,323L461,329.1L461.8,331.7L450,334L449.4,332.7L447.4,333.4L447.5,332.7L446.2,331.5L445.6,331.9L444.2,329.3L443.5,329.6L442.9,328.7L442.1,329.3L435.2,319.7L434.4,319.5L443.7,316.3L454.9,309.8L457.3,313.8L460.1,321.4Z","cx":449.9,"cy":323,"x":434.4,"y":309.8,"w":27.4,"h":24.2,"borough":"E09000007"},{"code":"E05013905","name":"Boleyn","d":"M662,314L656.1,315.7L655.4,315.4L655.3,317.6L651,316.9L646.3,297.8L656.7,294L658.8,296.3L659.4,298.6L656.5,299.6L657.7,301.3L656.7,301.7L658,304.1L657.2,304.7L657.4,305.5L659.7,304.9L662,314Z","cx":654,"cy":305.9,"x":646.3,"y":294,"w":15.8,"h":23.6,"borough":"E09000025"},{"code":"E05011095","name":"Borough & Bankside","d":"M480.3,348.9L490.5,349.2L495.3,351.5L500,352.1L494,362.9L487.3,370L485.2,363.9L478,362.9L478.9,361.4L478.7,360.5L477.9,361L477.2,359.5L478.3,358.8L478.2,355.5L477.3,351.7L476.2,352.1L475.4,349.2L480.3,348.9Z","cx":487.2,"cy":356.9,"x":475.4,"y":348.9,"w":24.6,"h":21.1,"borough":"E09000028"},{"code":"E05013586","name":"Bounds Green","d":"M467.4,158.9L466,172.6L467.2,173L465.5,177.2L466.5,177.8L463.5,179.7L462.1,179.5L457.1,172.6L440.1,155.5L444.2,153.6L453.1,157L454.8,157.2L455.8,155.9L458.1,158.3L463.2,158.9L463.8,158.3L465.2,159.3L467.4,158.9Z","cx":457,"cy":164.8,"x":440.1,"y":153.6,"w":27.4,"h":26.1,"borough":"E09000014"},{"code":"E05009319","name":"Bow East","d":"M584.8,282.8L585.3,284.3L584.7,286.4L583.4,287.2L581.4,292.3L579.1,294.8L581,297.5L584.1,305.7L588.1,308.5L583.2,311.4L579.5,312.1L577.4,307.4L568.9,309.3L563,295.6L560.3,292.9L556.2,292.7L560.4,286.4L559.7,285.7L565,280.1L569.3,283.2L570,284.7L574,282.8L580.8,282.2L584.8,282.8Z","cx":572.8,"cy":295.1,"x":556.2,"y":280.1,"w":32,"h":32,"borough":"E09000030"},{"code":"E05009320","name":"Bow West","d":"M579.5,312.1L568.6,315.5L560.5,319.2L553.5,306L549.5,303L541.7,298.8L542.3,296.9L544.1,295.8L548.5,297.8L551.1,297.1L556.2,292.7L560.3,292.9L563,295.6L564.6,298.4L564.1,298.8L565.9,303.4L568.9,309.3L577.4,307.4L579.5,312.1Z","cx":560.6,"cy":305.6,"x":541.7,"y":292.7,"w":37.8,"h":26.5,"borough":"E09000030"},{"code":"E05013673","name":"Bowes","d":"M501.6,144.6L503,158.7L494.8,157.6L491.6,158.3L490.9,157.2L488.6,158L488.9,158.7L483.8,158.7L483,159.7L481.3,158.9L468.7,158.9L469.6,150.9L476.3,151.3L491.1,144.3L501,143.7L501.6,144.6Z","cx":487.7,"cy":152.6,"x":468.7,"y":143.7,"w":34.2,"h":16,"borough":"E09000010"},{"code":"E05009293","name":"Bread Street","d":"M487.5,335.9L492.4,338.2L491.7,341.1L490.1,340.7L489.8,342.6L487.7,342.4L487.8,340.7L487,340.5L487,339.9L489.5,339.5L489.2,337.6L486.2,338.6L485.7,339.9L484.6,340.3L485.3,335.2L487.5,335.9Z","cx":488.4,"cy":338.9,"x":484.6,"y":335.2,"w":7.8,"h":7.4,"borough":"E09000001"},{"code":"E05013607","name":"Brentford East","d":"M247.4,374.4L247.7,375.9L252,374.9L252.5,375.9L253.6,375.5L257.2,381L263.5,376.8L265.6,379.1L263.8,382.2L265,385L263.7,386.3L259.9,387.3L250.2,393.2L247.5,386.5L244.3,382.2L242,372.5L247.4,374.4Z","cx":253.1,"cy":382.6,"x":242,"y":372.5,"w":23.6,"h":20.7,"borough":"E09000018"},{"code":"E05013608","name":"Brentford West","d":"M242.6,375.7L244.3,382.2L247.5,386.5L249.7,392.4L243.7,396.1L241.4,396.6L239.9,391.7L236.8,389.2L232,391.9L230.5,390.5L224.6,389.4L223.6,387.5L223,382.4L220.5,380.8L217,381L213.4,379.1L212.1,373.8L213.6,374.7L216.7,372.8L218.1,374.7L219.8,372.8L221.3,373L226.3,376.3L230.3,373L231.8,375.9L231.1,376.6L234.9,380.4L242.6,375.7Z","cx":232.5,"cy":383.5,"x":212.1,"y":372.8,"w":37.7,"h":23.8,"borough":"E09000018"},{"code":"E05009294","name":"Bridge","d":"M506.1,343.1L505.8,345L504.9,345L504.4,347.5L503.4,347.3L503.1,348.9L499.5,348.1L500.1,345.8L502.5,345.6L503.6,342.6L506.1,343.1Z","cx":503,"cy":345.8,"x":499.5,"y":342.6,"w":6.5,"h":6.3,"borough":"E09000001"},{"code":"E05011236","name":"Bridge","d":"M668,140.1L668.9,141.4L668.6,143.1L667.5,143.9L665.8,142.7L663.8,143.7L661.8,146.4L661.5,150L662.3,149L678.5,161.6L680.2,161.2L682.5,162.9L690.6,166L689.8,169.2L692,170L693,173.6L694.7,175.5L695,177.9L696.3,178.7L696,180.8L683.4,177.6L671.4,172.8L668.2,177.9L659.7,175.3L654.9,176.4L654.3,175.7L656.2,174L656,173L655.3,173.6L642.5,168.1L645.9,158.7L652.7,145L656.6,142.4L668,140.1Z","cx":666.1,"cy":163.5,"x":642.5,"y":139.9,"w":53.8,"h":40.9,"borough":"E09000026"},{"code":"E05013674","name":"Brimsdown","d":"M592.8,57.3L593.8,60.3L590.4,74L590.4,82L579.1,78.8L578.7,79.9L571.2,79.6L570.5,82.8L566.2,81.5L565.5,84.7L564.8,84.9L563.9,83.9L559.8,83.2L551.9,79.9L550.5,79.9L550.4,80.9L549.5,80.9L547,71.6L550.8,54.4L555.3,44.5L561.7,46.6L561.5,43.6L570.1,45.3L569.8,48.7L574.8,49.5L576.8,48L578.2,52L580.2,54.1L583.9,54.4L583.9,55.2L591,56.3L592.8,57.3Z","cx":568.9,"cy":65.2,"x":546.9,"y":43.6,"w":46.9,"h":41.3,"borough":"E09000010"},{"code":"E05014095","name":"Brixton Acre Lane","d":"M460.1,434.5L464.7,434.1L468.3,435.6L459.4,459.4L454.4,457.9L453.6,455.4L450.3,455.2L451.2,450.1L451.1,433.5L455.2,434.9L460.1,434.5Z","cx":458.1,"cy":444.9,"x":450.3,"y":433.5,"w":18,"h":25.9,"borough":"E09000022"},{"code":"E05014096","name":"Brixton North","d":"M484.1,421.7L483,428.2L480.6,432.6L475.7,434.7L473.1,431.8L470.5,431.8L469.2,432.2L468.3,435.6L464.7,434.1L460.1,434.5L459.6,433.4L460.7,432L459,428.8L461.2,427.3L460,424.6L460.9,423.3L462.1,422.7L462.9,424.2L464.7,422.7L471.1,420.8L471.1,421.6L474.9,420.8L484.1,421.7Z","cx":471.6,"cy":427.6,"x":459,"y":420.8,"w":25.1,"h":14.8,"borough":"E09000022"},{"code":"E05014097","name":"Brixton Rush Common","d":"M472.4,448.4L469.3,449.3L469.8,450.5L471.8,450.1L472.8,453.5L473,455.2L471.2,455.8L471.2,457.1L472.8,460.2L472.3,463.6L474.4,469.3L471.9,469.5L470.9,467L467.9,468.4L466.3,466.9L463.9,467.4L463.1,465.7L461.4,466.9L462.1,468.6L460.6,471.2L457,469.7L457.4,463.8L467.3,439.1L468.1,444.2L469.6,443.4L472.4,448.4Z","cx":466,"cy":458,"x":457,"y":439.1,"w":17.4,"h":32.2,"borough":"E09000022"},{"code":"E05014098","name":"Brixton Windrush","d":"M472.4,448.4L469.6,443.4L468.1,444.2L467.3,439.1L469.2,432.2L473.1,431.8L475.7,434.7L482.1,432L482.7,433.2L482.4,436.8L481.3,438.7L481.9,439.4L481.4,441.3L479.6,440.8L479.3,441.5L480.5,442.1L480.6,443.3L479.2,445.9L479.8,446.7L478.7,447.8L476.1,445.2L473.4,449.9L472.4,448.4Z","cx":474.7,"cy":439.5,"x":467.3,"y":431.8,"w":15.4,"h":18.1,"borough":"E09000022"},{"code":"E05011465","name":"Broad Green","d":"M479.5,578.6L479.5,583.7L480.9,586.2L487.7,588.3L485.6,590.7L482.7,597.2L481.5,595.1L479.8,596.5L480.9,597.2L476.7,598L476,598.4L476.4,599.1L473.4,599.1L469.7,601L467.2,597.4L463.4,597L464.4,598.6L461.4,600.3L454.3,599.1L452.8,592.7L450,589.4L452,588.8L451,583.5L451.8,582.9L449.7,581.6L450.9,579.9L446.6,575.3L447.3,574.4L460.9,583.3L467.3,582.8L472.8,579.9L473.2,581.2L479.5,578.6Z","cx":467,"cy":589.6,"x":446.6,"y":574.4,"w":41.1,"h":26.6,"borough":"E09000008"},{"code":"E05009295","name":"Broad Street","d":"M505.5,334L503.1,337.1L498.9,337.2L498.6,335.3L500.4,335.3L500.6,332.7L503,333.2L504.4,331.3L505.9,331.7L505.5,334Z","cx":502.5,"cy":334.7,"x":498.6,"y":331.3,"w":7.3,"h":5.9,"borough":"E09000001"},{"code":"E05013716","name":"Brockley","d":"M577.4,413.8L580.7,416.6L580.3,417.9L581.5,418.5L582.2,421L581.7,422.3L584,423.6L580.6,425.6L581.3,425.9L577,426.9L575.8,436.8L575,437L573.8,435.1L571.1,435.8L569.1,435.1L566.8,438.3L563.9,439.4L564.1,444.2L558.1,441.9L560.1,428.8L559.4,421.9L556.7,413L560.3,411.7L566.1,411.1L571.2,418.7L573.1,417L572.3,415.5L573.2,414.5L573.9,415.1L575.8,413.4L577.4,413.8Z","cx":568.3,"cy":425.3,"x":556.7,"y":411.1,"w":27.2,"h":33.1,"borough":"E09000023"},{"code":"E05013990","name":"Bromley Common & Holwood","d":"M681.9,572.1L682.3,575.7L680.3,580.1L679.6,579.9L679,581L679.6,581.4L678,583.7L677.9,587.5L676.9,588.8L674.4,589.8L671.8,596.3L671.9,598.9L671,600.3L672.1,601.4L668.1,601.4L668.6,605.4L661.7,612.6L664.4,617.8L670.1,622.5L668.9,624.8L669.5,625.4L667.6,627.3L667.7,631.5L664.9,632.6L661.5,631.9L659.3,638.9L659.6,641L656.6,642.9L658.6,645.9L654.7,650.1L651.6,652L649.7,650.1L647.6,655.1L646.1,649.6L642.7,648.4L641.4,646.9L643.3,642.5L648.4,637.4L649.5,633.2L647.7,631.9L647,628.6L646.2,628.4L646.8,627.9L643.9,616.4L646.3,603.7L646.2,598.2L644.9,595.5L644.4,589.4L642.1,586L640.7,580.3L639.7,578.8L634.4,576.3L638.4,573.8L642.7,575.3L643.6,574L635,566.4L634.9,564.3L640,560.3L643,556.3L647.8,556.1L648.7,559.9L652.6,565.6L652.1,566.4L655.3,575.5L658.4,574.6L661.9,575.7L668.9,573.2L669.3,572.5L674.8,574.8L680.8,576.1L680.4,572.3L681.9,572.1Z","cx":655.9,"cy":600.7,"x":634.4,"y":556.1,"w":48,"h":99,"borough":"E09000006"},{"code":"E05009321","name":"Bromley North","d":"M595.1,316.9L588.5,318.6L579.5,318.6L576.1,321.1L574.4,317.6L569.9,319.4L568.6,315.5L583.2,311.4L588.1,308.5L591.7,309.5L595.4,315.2L595.1,316.9Z","cx":583.3,"cy":315,"x":568.6,"y":308.5,"w":26.8,"h":12.6,"borough":"E09000030"},{"code":"E05009322","name":"Bromley South","d":"M594.8,319.9L593.6,322.6L590.6,325.8L578.8,333.6L576.3,328.7L572,325.8L577.6,319.4L579.5,318.6L588.5,318.6L595.1,317.1L594.8,319.9Z","cx":583.4,"cy":324.1,"x":572,"y":317.1,"w":23.1,"h":16.6,"borough":"E09000030"},{"code":"E05013991","name":"Bromley Town","d":"M608.5,522.4L611.4,525.3L616.2,535.2L621.4,534.2L622,532.5L623.3,532.9L622.7,535.9L624.9,535.9L624.5,536.7L625.1,536.7L626.5,535.2L628.4,536.3L628.3,540.7L629,540.5L629.2,542.6L631.7,542L636.3,542.4L640.5,544.5L639.8,547.5L638.7,549.1L638.1,548.9L638,549.8L639.2,550.2L638.8,556.1L643,556.3L640,560.3L634.6,565.2L643.6,574L642.7,575.3L638.4,573.8L629.1,578.6L622.8,576.7L617.7,577L611.8,576.3L611.7,575L613.8,571.9L612.1,568.7L618.2,565.6L616.6,562.8L622.7,558.2L621.4,555.3L617.5,551.4L618.3,549.8L617.2,547.7L615.5,548.3L613.4,546.2L616,543L614.9,542.2L613.6,542.8L613,539L610.9,536.9L609.6,532.7L608.9,532.5L609.2,531.4L606.7,527.8L607.2,526.6L606.6,525.7L603.7,525.9L604.2,522L606.4,520.1L608.5,522.4Z","cx":625.3,"cy":555,"x":603.5,"y":520.1,"w":40,"h":58.4,"borough":"E09000006"},{"code":"E05009389","name":"Brompton & Hans Town","d":"M419.8,375.3L413.8,375.9L414,377.2L407.4,382.7L403.4,378.5L401,380.6L398.4,377.4L397.1,377.2L396,378.2L394.4,376.6L393.9,374L392.3,374.2L391.8,369.4L405.3,367.1L405.8,368.5L408.1,366.7L408.5,367.7L413.8,362L416.6,361L417.3,367.1L419.5,369.4L420.5,374.5L419.8,375.3Z","cx":407,"cy":372.5,"x":391.8,"y":361,"w":28.8,"h":21.7,"borough":"E09000020"},{"code":"E05013498","name":"Brondesbury Park","d":"M363.3,276.2L365.2,279L358.3,284.1L349.7,294.6L345.4,290.2L342,292.7L340.8,294.4L341.3,295L336.4,296.1L335.7,295L335.3,296.5L333.1,296.3L331.3,294.4L335,287.4L334.4,286.4L330.9,286.4L328.3,285.5L329.7,280.5L329.2,278.4L332.8,278.4L332.8,276.7L334.5,275.8L337.4,277.1L338.3,276.7L338.3,277.3L342.2,276.7L345.7,272.5L356.9,275.4L363.3,276.2Z","cx":345.1,"cy":283.6,"x":328.3,"y":272.5,"w":37,"h":24,"borough":"E09000005"},{"code":"E05013735","name":"Brook Green","d":"M358,372.8L347.8,377.8L338,378.2L336.7,367.5L337.7,368.1L338.1,370.4L340.5,370.6L341.3,365.8L344.6,366.7L349,362.9L348.3,362.2L349.7,361L351.6,364.8L358,372.8Z","cx":346.6,"cy":371.4,"x":336.7,"y":361,"w":21.3,"h":17.1,"borough":"E09000013"},{"code":"E05009367","name":"Brownswood","d":"M494.9,243.6L495.7,250.6L490.7,248.7L487.6,249.5L480.7,241.9L488.2,233.7L488.8,234.1L488.2,234.9L489.7,235.6L489.5,236.6L490.2,237.1L490.5,236.6L492.9,237.3L494.9,243.6Z","cx":489,"cy":242.8,"x":480.7,"y":233.7,"w":15,"h":16.9,"borough":"E09000012"},{"code":"E05013587","name":"Bruce Castle","d":"M524.4,158.5L523.7,162.9L523.7,179.9L522,186.1L519,182.5L518.4,183.1L518,182.5L512.7,186.5L510.9,186.9L511,180.6L510.3,180.6L510.2,178.3L513.4,177.9L512.6,173.6L510.8,173.8L509.7,169.2L501.3,168.6L502.7,164.1L503,158.7L524.4,158.5Z","cx":515.1,"cy":169.9,"x":501.3,"y":158.2,"w":23.1,"h":28.7,"borough":"E09000014"},{"code":"E05013629","name":"Brunswick Park","d":"M440.4,105.4L445.1,108.9L445.2,110.2L446.5,111.5L451.4,113.4L449.1,118.4L449.9,119.1L446.4,124.7L444,133.4L437,141.6L436.2,143.9L433.2,145.4L412.2,111L414.8,111L415.6,113.4L416.7,112.9L416.5,111.1L423.1,109.8L427,107.3L426.7,106.4L427.9,104.9L431.8,103.2L435.8,100.1L440.4,105.4Z","cx":433.5,"cy":121,"x":412.2,"y":100.1,"w":39.2,"h":45.3,"borough":"E09000003"},{"code":"E05013675","name":"Bullsmoor","d":"M564.8,17.9L563.5,26.8L556.9,38.3L555.2,44.9L551.7,44.9L551.3,46.1L544.4,46.1L539.1,43.6L544.8,18.5L546.4,15L547.2,14.8L548.6,16.2L564.8,17.9Z","cx":551.3,"cy":30.4,"x":539.1,"y":14.8,"w":25.7,"h":31.2,"borough":"E09000010"},{"code":"E05013699","name":"Bunhill","d":"M503.7,315.4L504,316.9L503.1,318.6L503.4,319.7L504.6,319.7L502.3,329.4L497.8,327.2L498.1,325.8L494.9,325.3L494.8,324.3L492.7,324.3L491.7,321.3L490.2,321.8L489.7,320.9L488.4,321.6L488.6,325.8L483.9,327.7L484.1,324.9L481.8,315.9L496,312.3L496,311.6L499.3,312.9L501.3,316.1L503.7,315.4Z","cx":493.9,"cy":319.9,"x":481.8,"y":311.6,"w":22.9,"h":17.9,"borough":"E09000019"},{"code":"E05013630","name":"Burnt Oak","d":"M311,152.8L314.6,159.1L308.4,163.5L308.5,169L307.5,169.8L307.4,172.2L303.9,172L302.1,174.9L302.9,175.7L302.1,176.6L304.8,179.3L296.6,185.9L274.7,156.3L277.1,154.5L278.9,155.1L283.4,153.4L300.5,151.3L305.4,151.5L311,152.8Z","cx":295.7,"cy":164.4,"x":274.7,"y":151.3,"w":39.9,"h":34.6,"borough":"E09000003"},{"code":"E05013676","name":"Bush Hill Park","d":"M526.2,103.3L520.1,111.5L512.2,117.4L509.1,124.5L502.4,121.2L502.7,120.3L498.8,120.7L498,118.4L495.3,117.4L492.5,115.1L493.7,112.1L495.3,111.7L495.5,110.8L496.6,111.1L498,109.6L498.7,104.1L501.4,100.9L503.2,101.4L504.9,100.3L508.9,91.4L514.5,91.5L514.5,90L513.4,90.2L513.5,89.4L510.3,87.2L510.7,86.4L509.7,85.8L510.1,84.9L511.3,84.7L513.5,79.4L526.2,103.3Z","cx":510.5,"cy":105.3,"x":492.5,"y":79.4,"w":33.6,"h":45.1,"borough":"E09000010"},{"code":"E05013700","name":"Caledonian","d":"M466.5,283L466.8,284L465.9,284.1L465.9,284.9L467.2,293.3L465.8,298.6L468.3,299L469.1,305.5L459.1,306.6L459.4,294.8L456.2,287L454.6,279.4L462.7,276.2L464.2,280L464.8,279.8L465.3,283.6L466.5,283Z","cx":462.1,"cy":291.6,"x":454.6,"y":276.2,"w":14.5,"h":30.5,"borough":"E09000019"},{"code":"E05011096","name":"Camberwell Green","d":"M497.4,402.3L501.9,405.6L501.3,406.1L502.7,408.6L497.1,410.1L497.3,411.3L495,411.8L495.7,414.3L497.8,416L493.5,419.1L492.9,421L490.7,422.5L487.3,418.7L485.1,413.9L485.9,409.2L481.7,406.3L486,404.6L485.4,402.7L483.5,401.4L491,396.1L492.8,396.4L493,401.2L496,400.6L495.9,402L497.4,402.3Z","cx":491.6,"cy":408.7,"x":481.7,"y":396.1,"w":21.1,"h":26.5,"borough":"E09000028"},{"code":"E05013654","name":"Camden Square","d":"M454.6,279.4L456.2,287L443.5,286.2L441.4,287.4L440.4,285.7L451.4,272.3L453.8,274.8L454.6,279.4Z","cx":449.4,"cy":281.6,"x":440.4,"y":272.3,"w":15.8,"h":15,"borough":"E09000007"},{"code":"E05013655","name":"Camden Town","d":"M440.4,285.7L441.5,287.6L439.6,287.2L438.7,288.1L439.4,289.3L436.9,290.8L438.5,293.7L434.2,295.9L432.1,295.9L424.9,286.2L420.7,283.6L423.5,281.7L429.9,284.3L431.5,281.7L431,278.6L436.6,279.2L440.4,285.7Z","cx":432.5,"cy":287,"x":420.7,"y":278.6,"w":20.8,"h":17.3,"borough":"E09000007"},{"code":"E05009390","name":"Campden","d":"M386.2,361.8L380.7,360.7L378.2,361.4L369.2,366.9L363,350.6L366.8,348.9L381.8,345.8L386.2,361.8Z","cx":374.5,"cy":355.4,"x":363,"y":345.8,"w":23.2,"h":21.1,"borough":"E09000020"},{"code":"E05009323","name":"Canary Wharf","d":"M591.8,351.3L591.8,353.8L590.4,355.9L589.3,356.8L586.1,357.4L583.9,377.6L572.9,376.8L571.7,376.1L571.9,361.8L572.7,358.9L570.6,354.4L570.5,355.7L570.6,354.4L568.7,351.1L568.2,351.3L569.4,350.2L572,350.2L572.7,348.1L574.2,346.8L575.7,348.1L582.2,350.4L587.5,351.1L591.7,350.8L591.8,351.3Z","cx":579,"cy":361.8,"x":568.2,"y":346.8,"w":23.6,"h":30.8,"borough":"E09000030"},{"code":"E05013930","name":"Canbury Gardens","d":"M251.9,513.9L253.5,516.1L254.2,519.6L256.5,518.6L257.3,519L252.9,524.7L245,530.6L239,529.8L242,515L239.1,508L241,505.9L241.2,502.8L245.2,511.4L246.4,516.7L251.9,513.9Z","cx":246,"cy":520.1,"x":239,"y":502.8,"w":18.4,"h":27.8,"borough":"E09000021"},{"code":"E05009296","name":"Candlewick","d":"M503.6,342.6L502.5,345.6L500.1,345.8L500.1,343.9L498.5,343.5L499.7,340.9L503.6,342.6Z","cx":501.1,"cy":343.4,"x":498.5,"y":340.9,"w":5.1,"h":4.9,"borough":"E09000001"},{"code":"E05013882","name":"Cann Hall","d":"M621.3,244.4L621.9,252.2L624.6,253.3L629.8,260.7L624.5,264L623.7,264L621.7,260.5L618.1,262.6L617.5,261.7L615.7,263.6L617.2,265.9L615.7,267.8L611.2,268.7L611.1,266.4L610.5,266.3L604.1,266.8L603.3,262.4L605.4,259.4L605.8,259.8L607.8,257.9L608.5,258.8L608.2,259.8L609.6,259.8L609.6,260.7L610.6,261.1L615.9,244.6L616.7,244L621.3,244.4Z","cx":616.6,"cy":257.7,"x":603.3,"y":244,"w":26.5,"h":24.7,"borough":"E09000031"},{"code":"E05013906","name":"Canning Town North","d":"M595,321.4L595.1,316.9L596,316.7L595,321.4ZM620.9,309.8L619.9,312.3L618,311.6L618,316.9L622,316.7L622.1,317.3L620.2,318.2L618.9,320.1L619.5,324.5L619.1,327.9L623.8,327.3L625.3,329.6L624.3,331L624.9,332.7L609.6,337.2L608.2,335.2L601.4,330L598.3,333.1L596.5,329.1L594.2,327.2L596.7,316.3L618.6,308.1L620.9,309.8Z","cx":609.6,"cy":323.5,"x":594.1,"y":308.1,"w":31.3,"h":29.1,"borough":"E09000025"},{"code":"E05013907","name":"Canning Town South","d":"M626.5,347L620.7,348.9L614.9,346.4L612.2,346L614.1,341.4L612.9,337.8L611.8,337.4L609.5,339.7L608.7,344.3L607.4,344.3L609.6,337.2L624.5,332.7L624.7,336.1L630.1,339.1L627.9,342.8L626.4,343.5L626.5,347Z","cx":620.1,"cy":341,"x":607.4,"y":332.7,"w":22.6,"h":16.2,"borough":"E09000025"},{"code":"E05013811","name":"Cannon Hill","d":"M350.8,538L363.6,552.1L367.4,560.7L366.6,563.7L363.6,566L354.6,567.5L350.7,566L348.2,569.8L346.7,570.6L345.8,569.1L346.6,568.5L343.2,563.2L342.2,563.3L342.7,561.8L338.1,558L338.6,557.6L336.6,555.3L337.9,554.4L338,551.9L336.2,550.4L333.7,550L333.4,542L343.5,541.3L350.8,538Z","cx":350.2,"cy":553.9,"x":333.4,"y":538,"w":34,"h":32.5,"borough":"E09000024"},{"code":"E05013701","name":"Canonbury","d":"M505.1,276.5L505.3,279.2L501.8,294L494.8,291.8L488.3,285.7L485.3,277.1L489.9,275.2L505.1,276.5Z","cx":496.2,"cy":283.1,"x":485.3,"y":275.2,"w":20,"h":18.8,"borough":"E09000019"},{"code":"E05013543","name":"Canons","d":"M271.5,151.5L266.8,154.2L268.2,156.3L266.7,157.2L266.8,158L268.3,158.7L266.6,159.9L265.3,159.3L261.6,161L249.7,162L248.4,162.7L239.5,140.6L244,137.4L257.8,133.6L263.9,142.5L271.5,151.5Z","cx":254.8,"cy":148.5,"x":239.5,"y":133.6,"w":32,"h":29.1,"borough":"E09000015"},{"code":"E05013756","name":"Carshalton Central","d":"M420.2,633.2L406.1,637L402.1,636.8L390.4,630.7L386.3,630.1L381.8,630.9L385.4,629.6L392.8,628.6L392.8,626.3L390.1,627.1L390,624.2L390.7,624.2L389.9,623.5L389.5,619.9L390.1,619.3L389.9,613L391.9,612.6L392.5,613.2L394.2,612.3L394,611.7L394.8,612.3L396.8,610.2L397.3,610.7L400.8,610L400.8,610.5L401.7,609.8L404,610.7L403.4,611.5L404.4,612.3L404.9,614.3L405.7,614.3L406.1,616.1L411.3,613.6L415.3,609.8L414.4,613.6L417.1,617.6L416.6,619.9L418.6,622.5L420.2,633.2Z","cx":404.2,"cy":623.9,"x":381.8,"y":609.8,"w":38.4,"h":27.2,"borough":"E09000029"},{"code":"E05013757","name":"Carshalton South & Clockhouse","d":"M427.9,657.9L430.4,658.1L430.6,660.6L429.7,660.8L429.8,661.7L431,661.9L429.5,662.5L431.2,662.7L431.7,665L430.6,665L430.7,665.9L431.9,665.7L433.1,668.4L432.4,668.4L432.5,669.4L433.4,669.4L433.2,670.7L429.7,672L431.9,684L433.7,687.4L427.6,691L433.3,695.4L433.6,696.6L431.9,701.1L425.9,703.6L424.2,703.4L423.5,702.1L419,704.9L416.5,700.2L414.1,701.7L409.9,696.4L410.6,696L409.6,692.4L410.1,691.4L412.1,690.9L411.2,688.2L402.9,689.7L403.1,688.4L399.6,688.8L398.1,682.7L382.3,668.2L389,659.3L393.4,649.4L392.3,649L393.5,646.7L393.1,645.6L398.7,635.5L402.1,636.8L406.1,637L415.8,634.3L416.6,641L415.7,641.2L416.3,653.6L414.6,654.3L414.7,655.6L421.8,654.5L422.4,658.5L427.9,657.9Z","cx":410.8,"cy":669.5,"x":382.3,"y":634.3,"w":51.4,"h":70.6,"borough":"E09000029"},{"code":"E05013677","name":"Carterhatch","d":"M555.2,44.9L550.8,54.4L547,71.6L549.5,80.9L549.4,82.8L533.2,80.9L534.2,64.1L539.1,43.6L544.4,46.1L551.3,46.1L551.7,44.9L555.2,44.9Z","cx":542.5,"cy":63.5,"x":533.2,"y":43.6,"w":22,"h":39.2,"borough":"E09000010"},{"code":"E05009297","name":"Castle Baynard","d":"M480.6,337.4L481.3,342.8L483.8,342.2L486.2,338.6L489.2,337.6L489.5,339.5L487,339.9L487.8,340.7L487.7,342.4L486.3,343L486.2,344.7L475.8,344.5L475.8,338.2L474.8,338.4L474.5,337.1L475.3,331.3L476.7,331.7L480.6,337.4Z","cx":480.2,"cy":339.8,"x":474.5,"y":331.3,"w":14.9,"h":13.3,"borough":"E09000001"},{"code":"E05013717","name":"Catford South","d":"M601.2,496.7L601.4,500L602.7,501.3L603.8,505.5L597,506.1L591.5,503.6L586.7,510.2L583.8,504.9L581,491.6L575.7,482.1L576.2,480.9L577.4,481.1L577.8,480.2L580.4,481.9L581.3,481.5L580.1,478.7L580.3,473.3L581.7,473.5L582.1,472.6L587.3,474.1L587.5,473.5L588.6,473.9L588.5,474.7L592.2,476.2L593.7,470.5L601.9,470.7L602.1,477.7L601.4,477.9L602.5,486.1L598.4,487.2L598.1,488.2L599.2,491.4L600.1,491.6L601.2,496.7Z","cx":591,"cy":488.8,"x":575.7,"y":470.5,"w":28.1,"h":39.8,"borough":"E09000023"},{"code":"E05013883","name":"Cathall","d":"M615.6,245.3L610.6,261.1L609.6,260.7L609.6,259.8L608.2,259.8L608.5,258.8L607.8,257.9L605.8,259.8L605.4,259.4L603.3,262.4L604.1,266.8L594.1,270.3L593.2,265.9L591.6,265.1L594.1,262.6L597.4,257.3L605.8,248.7L611.1,241.9L615.6,245.3Z","cx":604.3,"cy":256.8,"x":591.6,"y":241.9,"w":24,"h":28.4,"borough":"E09000031"},{"code":"E05009368","name":"Cazenove","d":"M535.4,245.3L532.9,246.3L527.8,245.3L525.2,246.7L519.6,245.7L517.7,244.6L518.1,231.4L523.2,231.8L523.2,230.7L526.1,230.7L527,229.9L530.8,233.7L532.8,238.1L533.3,241.9L535.4,245.3Z","cx":525.4,"cy":239,"x":517.7,"y":229.9,"w":17.8,"h":16.7,"borough":"E09000012"},{"code":"E05013544","name":"Centenary","d":"M258.7,161.4L267.5,179.3L260.7,181.9L258.5,182.3L258.3,181.6L256.8,184.2L254.8,182.5L253.2,182.3L251.9,183.3L249.4,182.9L244.6,183.8L243.3,185.2L241.9,185.8L241.4,185L235.3,188.6L232.1,178.5L233,178.1L233,176.2L235,175.1L235.4,175.9L237.4,174.9L236.9,174L239.8,172.6L240.6,173L239.7,164.1L247.7,161L248.4,162.7L249.7,162L258.7,161.4Z","cx":249.5,"cy":174.2,"x":232.1,"y":161,"w":35.4,"h":27.6,"borough":"E09000015"},{"code":"E05013518","name":"Central Greenford","d":"M211.6,284.9L211.4,286.6L212.4,289.7L213.5,289.5L214,292.1L208.9,290L205.2,290.8L203.7,294.2L205.2,299.8L195.1,296.7L194.5,298.2L195.7,298.6L197.6,302.8L198.3,303L196.9,303.9L197.5,304.9L195.6,305.8L196.4,308.7L196.1,311.7L195.1,312.9L192.8,312.5L191.1,313.5L187.1,312.9L189.4,306.2L186.7,304.5L188.7,302.2L187.3,301.3L188.1,298.8L189.1,299.2L190.3,298.2L188.5,297.8L189.7,295.2L171.1,289.5L171.8,287L176.3,281.1L183,279L181,277.3L181.2,276.2L183.2,275.4L183.8,276.5L185.7,274.4L183.3,272.5L180.8,273.9L180.7,273.1L184.6,268L182.9,264.5L184.9,264.2L184.9,264.7L188.5,265.9L188.6,264.9L190.3,265.3L190.2,266.1L194.1,266.1L204.4,262.4L202.7,266.1L200.1,277.7L203.3,277.3L206.7,283.8L211.6,284.9Z","cx":192.5,"cy":285.6,"x":171.1,"y":262.4,"w":42.9,"h":51,"borough":"E09000009"},{"code":"E05011237","name":"Chadwell","d":"M755.7,209.9L761.4,210.5L762.6,213L759.3,214.1L760.2,218.5L757.4,220L757.6,224.6L758.5,226.1L759.4,225.7L760.2,228.6L758.2,229.1L758.9,231.4L758,235.6L745.6,238.3L745.3,233.3L746.7,230.9L745.7,228.6L742.6,225.7L738.6,224.2L739.6,219.1L742.5,213.2L741.1,212.6L742.4,211.6L743.5,208.4L755.7,209.9Z","cx":750.5,"cy":222,"x":738.6,"y":208.4,"w":24,"h":29.9,"borough":"E09000026"},{"code":"E05014058","name":"Chadwell Heath","d":"M779.9,176.8L779.2,181L779.9,181L779.8,181.8L781.9,180.6L783.3,183.5L782.7,191.3L783.6,194.1L783.2,205.7L780.4,211.4L779.1,211.4L778.5,221.2L779.7,221L779.5,226.1L780.8,226.1L767,228.2L758.3,230.7L758.2,229.1L760.2,228.6L759.4,225.7L758.5,226.1L757.6,224.6L757.4,220L760.2,218.5L759.3,214.1L762.6,213L761.4,210.5L755.7,209.9L756.1,207.6L754.1,200.2L759.5,198.7L757.9,193.9L767.3,186.5L778,176L779.9,176.8Z","cx":770.4,"cy":204.8,"x":754.1,"y":176,"w":29.5,"h":54.6,"borough":"E09000002"},{"code":"E05011097","name":"Champion Hill","d":"M516.7,424.2L513.6,425.6L512,427.6L511,433.9L506.3,443.8L500.5,451.6L498,448.2L496.9,448.4L497.4,446.9L498.5,446.9L500.4,445.2L497.1,441.2L496,441.7L495.2,439.3L496.9,435.1L497.6,430.3L496.3,426.9L501.9,424.2L506.4,423.1L516.7,424.2Z","cx":503.7,"cy":434.7,"x":495.2,"y":423.1,"w":21.6,"h":28.5,"borough":"E09000028"},{"code":"E05013884","name":"Chapel End","d":"M584.1,172.6L587.3,174L600.5,174.3L600.5,181.8L602.9,189.4L594.1,192.6L586.1,194.3L582.9,192.6L582.2,187.8L580.7,188.4L580.3,187.5L578.1,188.6L576.5,181.9L572.3,182.7L573.6,178.5L572.6,175.7L577.4,174.9L577,169.8L580.2,169.4L584.1,172.6Z","cx":588,"cy":182.2,"x":572.3,"y":169.4,"w":30.7,"h":24.9,"borough":"E09000031"},{"code":"E05014074","name":"Charlton Hornfair","d":"M662.2,404.2L660.7,410.7L662.4,412L660.5,414.9L661.5,417.6L640.1,412L633.5,413.2L629.1,400.2L628.3,394.9L633.3,394.1L634.9,393.2L636.5,396.4L638.8,396.8L642,401.4L642.6,403.9L643.9,404.6L647.1,403.3L647.6,404.4L656.6,405.4L662.2,404.2Z","cx":644.2,"cy":406.7,"x":628.3,"y":393.2,"w":34.1,"h":24.4,"borough":"E09000011"},{"code":"E05014075","name":"Charlton Village & Riverside","d":"M657.4,374.4L657.4,377L658.4,379.1L657,381L658,382L657.9,384.3L659.7,386L658.8,386.7L659.2,387.7L663.2,394.1L662.5,395.1L666.1,402.9L656.6,405.4L647.6,404.4L647.1,403.3L643.9,404.6L642.6,403.9L642,401.4L638.8,396.8L636.5,396.4L634.9,393.2L642.1,390.2L639.8,384.1L640,382L638.7,377L652.1,374L657.4,374.4Z","cx":650.6,"cy":390.8,"x":634.9,"y":374,"w":31.2,"h":31.4,"borough":"E09000011"},{"code":"E05013565","name":"Charville","d":"M109.1,285.9L109.8,286.6L109.3,288L110.7,288.7L107.6,288.3L107.6,289.3L109,290.6L107.5,291.6L107.6,292.3L109.8,293.3L110,295.6L112.5,295.6L114.2,297.3L114.6,299.2L116.1,299.6L116.6,300.5L110.7,303L111.4,304.3L110.9,305.3L106.8,308.5L105.1,314.2L107.7,315.4L104.5,321.6L88.4,316.7L85.2,315L81.4,307.7L81.4,305.5L82.4,305.8L82.7,303.6L80.9,298.6L81.5,295.8L86.4,294.2L92,289.5L93.4,291L101.7,287.4L101.9,286.4L108,284.5L109.1,285.9Z","cx":97.4,"cy":303.1,"x":80.9,"y":284.5,"w":35.7,"h":37.1,"borough":"E09000017"},{"code":"E05011098","name":"Chaucer","d":"M503.3,376.6L492.7,376.5L486.2,374.5L485.8,373L487.3,370L494,362.9L495.7,359.1L499.7,361L498.7,363.9L504.9,368.1L507.9,369.2L506.9,371.1L507.4,371.7L503.3,376.6Z","cx":496.6,"cy":370,"x":485.8,"y":359.1,"w":22.1,"h":17.5,"borough":"E09000028"},{"code":"E05013758","name":"Cheam","d":"M356.7,610.7L352.2,616.4L350.4,622L350.3,625.4L354.6,642.1L358.9,651.1L365,669.5L352,678.1L353.3,682.5L350.7,688.2L348.4,689.1L342.8,689.1L332.2,676.4L335.7,673.7L338.9,669.7L339.9,669.9L341.6,667.3L347,663.3L343.3,648L341.3,648.2L340.6,637.2L335.6,626.7L340.7,621.4L340.1,620.8L346.1,617.4L346.1,615.5L349.2,613.8L348.6,611.9L349.1,610.7L350.2,612.1L355.9,609.4L356.7,610.7Z","cx":348.5,"cy":654.7,"x":332.2,"y":609.4,"w":32.8,"h":79.7,"borough":"E09000029"},{"code":"E05009298","name":"Cheap","d":"M490.7,334.6L494.4,336.3L495.6,335L495.5,335.9L496.6,335.9L495.6,337.8L496.8,338L496.3,339.3L490.3,337.6L487.5,335.9L487.7,333.6L489.6,333.2L489.5,334.2L490.7,334.6Z","cx":492,"cy":336.4,"x":487.5,"y":333.2,"w":9.4,"h":6.1,"borough":"E09000001"},{"code":"E05009391","name":"Chelsea Riverside","d":"M410.3,396.4L396.1,400.2L393.9,402.5L392,407.1L388.6,408.2L386.5,408.2L383.5,403.5L394.2,397.4L395.2,395.5L402.9,390L405,394.1L408.6,391.5L410.3,396.4Z","cx":396.5,"cy":399,"x":383.5,"y":390,"w":26.9,"h":18.3,"borough":"E09000020"},{"code":"E05013992","name":"Chelsfield","d":"M778.8,618.3L780,619.5L776.1,626.1L776.6,626.9L775.5,629.6L776.6,631.1L775.9,634.7L777.2,635.1L776.2,639.7L774.9,641.4L774.5,645L773.6,645.6L773.3,649.4L771.4,650.5L771.7,651.1L768.6,655.5L769.5,656.4L768.2,656.2L766.9,658.5L765.7,658.5L766.6,661.7L760.5,659.3L760.4,659.8L752.7,658.5L749.1,660.8L745.6,661.5L730.4,660L724.5,661.4L714.9,658.7L710.8,653.7L709.1,649.4L707.6,640.2L705.8,635.5L709.4,632.2L710.3,627.9L709,626.9L710.8,624.1L708.7,621.6L709.8,620.8L709.8,619.9L708.4,619.5L711.9,616.8L712.9,612.8L716.5,619.7L725.5,630.9L726.8,630L726.4,624.4L727.2,623.7L728.4,624.2L735.7,624.1L737.1,626.3L738.4,626.1L739.3,623.7L740,623.7L739.7,622.7L743.4,621.4L746.3,622.5L747.2,621.2L749,621.8L749.3,620.8L753,621.6L752.9,620.8L756.9,619.1L755.5,616.6L756.9,614.3L754.9,613.4L756.6,608.8L761,613L770.1,614.5L772.3,616.8L774.7,616.6L778.8,618.3Z","cx":743.3,"cy":639,"x":705.8,"y":608.8,"w":74.3,"h":52.9,"borough":"E09000006"},{"code":"E05013931","name":"Chessington South & Malden Rushett","d":"M262.8,627.5L266.6,629.4L264.4,632.8L262.1,634.1L259.4,638.1L259.3,641L257.7,643.7L257.4,646.1L250,653.7L247.4,659.6L244.2,663.6L242.6,670.5L243,676.6L241.7,679.1L236.1,684.2L232.8,686.1L226.5,692.6L220.7,695L215.6,695.4L213.4,693.5L212.7,690.7L214.6,688.2L213.8,683.4L214.7,669.4L216.4,662.1L215.6,662.1L212.9,653.7L215.9,646.5L221,642.3L223.6,637L227.3,625L227.1,620.6L229,621.2L230.8,620.4L230.8,623.5L231.8,624.2L239.4,624.4L239.7,625.8L251.6,624.6L255.3,625.4L255.9,624.2L259.3,625.4L258.9,626.5L262.8,627.5Z","cx":234.2,"cy":655,"x":212.7,"y":620.4,"w":53.9,"h":75.4,"borough":"E09000021"},{"code":"E05013631","name":"Childs Hill","d":"M372.7,219.6L379.7,222.7L376.7,224.6L384.1,229.3L383.3,231.4L384.5,232.2L385.5,230.9L388.7,234.5L386.8,235.8L386.7,236.8L383.9,237.9L379.8,241.1L378,247.8L373.6,250.1L371.4,249.7L371.3,252.6L369.5,253.1L368.1,256.5L368.2,258.3L360.6,260L359.3,254.8L357.3,252L357.6,251L356.1,250.8L353.7,253.5L349.8,245.5L359.5,237.5L354.8,228.4L357.8,227.1L359.4,225.1L358.7,224.6L362.6,221.2L362.1,220.6L364.7,217.5L365.3,217.5L365.9,219.8L367.1,220L370.8,217.9L371.4,220.4L372.7,219.6Z","cx":368.1,"cy":237.9,"x":349.8,"y":217.5,"w":38.9,"h":42.4,"borough":"E09000003"},{"code":"E05013885","name":"Chingford Green","d":"M634.2,103.9L633.6,106.2L634.8,109.1L632.7,116.3L630.2,120.1L629.2,119.9L628.2,124.7L624.9,122.6L613.1,123.5L608.5,120.9L604.5,122.8L603.9,121.2L601.4,121.6L600.9,118.4L604.8,115.9L603.4,114.8L598.9,114L594.7,111.9L588.5,111.5L588.3,112.9L586.8,112.3L586.4,111.1L584.5,111.1L588.6,99.3L589.8,87L593.5,86.4L595.7,87L594.4,90.2L594.7,91.9L598.9,92.1L599.6,93.6L603.8,91.7L605.7,95.3L616.1,96.1L625,98.2L628.2,98L631.3,96.7L631.7,103.2L634.2,103.9Z","cx":610.5,"cy":107.1,"x":584.5,"y":86.4,"w":50.3,"h":38.3,"borough":"E09000031"},{"code":"E05013993","name":"Chislehurst","d":"M717,517.3L728.1,526.6L725.9,534L722.2,535.2L723.3,537.5L709.2,543.4L711.4,547L710.5,548.5L712.3,550.2L715.7,550.4L715.8,552.1L719.7,554.8L719.8,555.7L722.6,555.3L721.5,560.1L717.5,559.2L716.7,562.6L717.4,565.1L705.8,565.6L700.2,564.9L684.2,560.3L681.1,558.8L675.1,548.7L666.8,538L658.6,525.5L660.4,523.8L660.7,521.3L659.3,520.9L659.8,519.6L661.2,519.8L661.6,517.5L665.6,517.9L666.7,513.3L670.6,516L673.3,510.2L672.7,509.1L673.3,508.2L673.8,508.7L676.6,507.8L677.4,510.4L679.1,509.7L680.8,508L680.4,507.4L683.2,506.1L683.2,505.1L689.3,499.6L691.4,496.2L691.3,495L693.1,496.9L693.7,494.6L702.9,498.6L710,509.9L717,517.3Z","cx":694.3,"cy":531.8,"x":658.6,"y":494.6,"w":69.5,"h":71,"borough":"E09000006"},{"code":"E05013609","name":"Chiswick Gunnersbury","d":"M279.6,370.4L281.7,372.5L283,375.1L285.6,376.6L301.9,374.7L301.9,379.1L300.9,379.1L301,379.9L305,389.4L304.6,390L296.5,388.8L287.5,388.8L281,387.5L275,384.8L268.3,380.1L264.7,378.7L263.5,376.8L257.2,381L253.6,375.5L252.5,375.9L248.2,366.6L256.2,362.2L262.4,363.7L266,363.7L271.8,359.9L275.8,366.9L279.6,370.4Z","cx":275.7,"cy":376,"x":248.2,"y":359.9,"w":56.9,"h":30.1,"borough":"E09000018"},{"code":"E05013610","name":"Chiswick Homefields","d":"M314.4,388.1L311.1,390.9L312.7,388.8L314.4,388.1ZM306.7,365.4L309.2,371.1L313.8,368.5L314.9,369.2L313.5,384.1L314.8,386.7L311.1,389.4L308.6,392.4L306.6,399.1L306.5,408.4L302.7,416.8L298.7,419.1L293.9,419.7L289.7,418.7L285.6,415.5L280.9,409L278.3,401.8L285.6,399.7L286.7,400.4L287.8,400L288.8,396.4L289.7,396.4L291.7,394.1L291,393.6L292,392.2L292.7,393L296.5,388.8L304.6,390L305,389.4L300.9,379.1L301.9,379.1L301.6,372.8L304.9,365.4L304.7,362.6L306.7,365.4Z","cx":299,"cy":396.9,"x":278.3,"y":362.6,"w":36.6,"h":57.1,"borough":"E09000018"},{"code":"E05013611","name":"Chiswick Riverside","d":"M281,387.5L287.5,388.8L296.5,388.8L292.7,393L292,392.2L291,393.6L291.7,394.1L289.7,396.4L288.8,396.4L287.8,400L286.7,400.4L285.6,399.7L278.3,401.8L276.6,397L270.8,391.3L264.2,388.3L263.9,388.8L257.7,389.2L257.6,388.6L263.7,386.3L265,385L263.8,382.2L265.6,379.1L268.3,380.1L275,384.8L281,387.5Z","cx":277.9,"cy":390.8,"x":257.6,"y":379.1,"w":39,"h":22.6,"borough":"E09000018"},{"code":"E05013794","name":"Church Street","d":"M409.8,325.4L402.8,327.3L394.9,318.4L398.3,315.7L404,314L406.2,311.4L410.1,317.3L406.1,319.5L408.5,322.4L409.8,325.4Z","cx":403.3,"cy":319.8,"x":394.9,"y":311.4,"w":15.2,"h":16,"borough":"E09000033"},{"code":"E05011238","name":"Churchfields","d":"M642.5,168.1L655.3,173.6L656,173L656.2,174L654.3,175.7L654.9,176.4L658.4,175.3L654,179.7L648.9,186.5L645.9,186.3L641.6,183.7L635.4,181.8L624.9,183.8L619.2,183.7L619.8,176.6L627,160.1L628.2,160.8L629.2,158.5L632.7,160.4L636,165.2L642.5,168.1Z","cx":636.3,"cy":174.6,"x":619.2,"y":158.5,"w":39.2,"h":28,"borough":"E09000026"},{"code":"E05014099","name":"Clapham Common & Abbeville","d":"M451.4,441.7L451.2,450.1L449.8,449.9L449.7,450.9L445.3,452.8L442.1,457.7L443.3,459L442.1,461.1L429.4,456L428.9,448.2L427,438.9L434.5,439.1L436.8,442.3L436.1,443.8L437.1,444.6L438.3,443.4L441.7,446.7L446.7,442.7L451.4,441.7Z","cx":438.2,"cy":449.2,"x":427,"y":438.9,"w":24.4,"h":22.3,"borough":"E09000022"},{"code":"E05014100","name":"Clapham East","d":"M459,428.8L460.7,432L459.6,433.4L460.1,434.5L455.2,434.9L451.1,433.5L451.4,441.7L446.7,442.7L441.7,446.7L438.3,443.4L437.1,444.6L436.1,443.8L436.8,442.3L434.5,439.1L439.7,439.3L441.6,437.2L449,433L450.7,431.3L453.9,425L455.4,427.3L456.5,426.5L458,429L459,428.8Z","cx":448.2,"cy":436.8,"x":434.5,"y":425,"w":26.2,"h":21.7,"borough":"E09000022"},{"code":"E05014101","name":"Clapham Park","d":"M451.2,450.1L450.3,455.2L453.6,455.4L454.4,457.9L459.4,459.4L457.4,463.8L457,469.7L454.9,468.2L454.4,469.5L452.9,469.1L453,467.8L452.2,467.6L452.3,469.5L450.4,472L449.3,471.2L449.9,470.5L448.6,469.7L449,469.1L447.1,468.6L446.9,466.3L444.5,466.1L444.3,464.2L441.3,464.2L439,466.9L436.1,468.6L431.9,468L432.9,463.4L435.8,458.5L442.1,461.1L443.3,459L442.1,457.7L445.3,452.8L449.7,450.9L449.8,449.9L451.2,450.1Z","cx":446.9,"cy":461.9,"x":431.9,"y":449.9,"w":27.5,"h":22.1,"borough":"E09000022"},{"code":"E05014102","name":"Clapham Town","d":"M438.8,419.8L442.6,425.4L444.2,424.8L447.1,422.1L449.2,423.6L452,423.6L454.2,424.6L450.7,431.3L441.6,437.2L439.7,439.3L427,438.9L425.3,430.1L426,430.1L426.1,426.9L434.9,421.4L435.3,422.1L438.1,419.5L438.8,419.8Z","cx":438,"cy":430.2,"x":425.3,"y":419.5,"w":28.9,"h":19.8,"borough":"E09000022"},{"code":"E05011239","name":"Clayhall","d":"M687.4,198.7L669.7,212L671.8,217.2L671.9,219.8L656.8,220.8L652.3,210.3L651.5,198.1L648.4,190.3L649.1,186.9L658.4,191.1L662.3,193.7L667,191.3L679.3,191.8L687.4,198.7Z","cx":665.1,"cy":203.4,"x":648.4,"y":186.9,"w":39,"h":33.9,"borough":"E09000026"},{"code":"E05011240","name":"Clementswood","d":"M705.6,252.9L706.2,258.8L709.4,267.8L701.6,270.4L701,268.7L701.8,268.5L701.6,268L693.4,270.8L688.9,257.7L701.4,251L701.7,252.6L705.6,252.9Z","cx":699.2,"cy":261.4,"x":688.9,"y":251,"w":20.5,"h":19.8,"borough":"E09000026"},{"code":"E05013702","name":"Clerkenwell","d":"M485.8,314.8L481.8,315.9L484.1,324.9L483.9,327.7L479.6,329.8L477.6,323L476.2,323.2L475.3,321.4L471.2,320.1L469.8,318.4L469.1,316.7L470.6,315L467.6,312.3L467.1,308.5L462.5,306.4L478.5,304.5L480.2,311.2L483,308.5L484.5,310.4L485.8,314.8Z","cx":476.3,"cy":314.8,"x":462.5,"y":304.5,"w":23.3,"h":25.3,"borough":"E09000019"},{"code":"E05009369","name":"Clissold","d":"M510.6,260.4L510.3,266.8L503.2,266.1L500.6,264.7L499.4,262.6L498.6,263L497.3,262.1L497.3,255.6L495.7,250.6L494.9,243.6L504,240L505.1,242.8L509.4,247L509.4,251L508.2,251.8L508.4,255.2L510.9,255.6L510.6,260.4Z","cx":503.1,"cy":253.8,"x":494.9,"y":240,"w":16,"h":26.8,"borough":"E09000012"},{"code":"E05013994","name":"Clock House","d":"M565.5,543.2L564,546.6L555.7,557.1L553.1,557.1L548.7,559L545.9,557.4L544.2,559.9L542.7,558.8L544.4,556.5L541.7,552.9L532.7,557.3L533.2,556.3L530.7,552.7L527.8,552.3L528,551.7L523.1,548.3L533.8,539.2L535.9,540.5L536.5,542L535.5,542.6L535.9,543.2L536.4,542.8L537,543.6L538.3,542.8L538.9,543.4L541,540.3L543,539L543.6,539.7L544.4,539L544.1,538L545.7,537.1L546.9,535.2L548.3,535.7L548.8,535.2L547.3,534L548.9,530.8L555.2,534.2L562.2,534L562.7,526.6L565.3,531.6L570.3,534L568.5,535.9L566.5,542.2L565.5,543.2Z","cx":548.2,"cy":545.3,"x":523.1,"y":526.6,"w":47.1,"h":33.3,"borough":"E09000006"},{"code":"E05013678","name":"Cockfosters","d":"M456.2,76.9L450,82.4L444.1,85.6L446.9,95.5L445.9,95.7L444.9,98L443.2,97.6L443.4,96.9L439.8,96.5L443.4,100.5L443.3,102.8L441.4,102.8L440.8,104.1L441.3,104.9L440.4,105.4L435.8,100.1L432.6,93.8L429.3,94.8L427.6,88.7L424.8,88.7L424.2,87.7L425.4,85.1L424,84.3L424.1,83.5L426.8,82L425.6,79.6L424,80.1L423.6,76.9L421.7,74L422.7,73.5L422.4,71.2L421.1,69.3L414.4,66.8L410.7,64.1L384.2,55.4L388.8,44.2L395.1,37.7L394.7,36.5L396.6,36.7L396.7,35.2L400,35.8L410.6,18.1L410.7,11.4L421.5,19.6L428,20.7L428.5,37.3L425.4,37.7L423.9,47.6L436.2,46.2L440.4,44.5L447.9,47.6L453.7,47.8L454.2,54.4L460.8,54.8L461,60L454.9,62L456.2,76.9Z","cx":425.1,"cy":56.8,"x":384.2,"y":11.4,"w":76.9,"h":94,"borough":"E09000010"},{"code":"E05009299","name":"Coleman Street","d":"M502.3,329.4L504.6,330.6L503,333.2L500.6,332.7L500.4,335.3L498.6,335.3L498.9,337.2L496.5,336.7L496.6,335.2L497.9,335.2L498.4,331.9L496.3,330.8L497.8,327.3L496.8,326.8L496.5,327.7L494.8,327L494.9,325.3L498.1,325.8L497.8,327.2L502.3,329.4Z","cx":499.4,"cy":331,"x":494.8,"y":325.3,"w":9.8,"h":12,"borough":"E09000001"},{"code":"E05013566","name":"Colham & Cowley","d":"M67.9,302.8L78.3,310.8L85.2,315L83.1,316.5L80.5,321.4L74.2,321.6L78.7,329.1L77.7,330.4L74.9,331.3L72.4,335.3L70.2,335.3L69.2,332.7L67.1,331L60.1,330.2L59.3,327.2L57.1,328.1L56.1,322L55.4,321.8L54.7,323L52.9,322.6L45.4,323.7L41.5,330.4L40.6,330.4L39.5,331.9L36.9,326.8L35.3,325.4L28,329.3L22.6,330L22.1,329.3L23.5,326.8L22.6,324.7L23.6,318.4L23,315L24.6,312.7L25.2,309.8L28.8,308.5L29.2,310.8L34.4,311L33,314.4L40.1,314.8L40,311L41.6,310.2L40.1,307.6L40.4,299.2L46.5,299L47,297.3L48.4,296.7L57.1,298.4L60.9,298L67.9,302.8Z","cx":53.8,"cy":315.7,"x":22.1,"y":296.7,"w":63.1,"h":38.6,"borough":"E09000017"},{"code":"E05013632","name":"Colindale North","d":"M321.9,171.7L323.4,175.9L324.4,182.5L321.6,182.3L321.7,181.2L320.1,181.2L320.3,180.6L318.3,179.7L316.9,181L313.7,180.2L313.6,181L308.6,183.8L302.1,176.6L302.9,175.7L302.1,174.9L303.9,172L307.4,172.2L307.5,169.8L308.5,169L308.4,163.5L314.6,159.1L321.9,171.7Z","cx":313.5,"cy":173.1,"x":302.1,"y":159.1,"w":22.3,"h":24.7,"borough":"E09000003"},{"code":"E05013633","name":"Colindale South","d":"M324.4,182.5L323.9,189.4L320.7,204.8L316.3,205.9L316.2,200L314.1,199.5L313,201.5L308.8,202.3L304.8,196L296.6,185.9L304.8,179.3L308.6,183.8L313.6,181L313.7,180.2L316.9,181L318.3,179.7L320.3,180.6L320.1,181.2L321.7,181.2L321.6,182.3L324.4,182.5Z","cx":312.4,"cy":190.7,"x":296.6,"y":179.3,"w":27.7,"h":26.6,"borough":"E09000003"},{"code":"E05013736","name":"College Park & Old Oak","d":"M327.4,303.7L333.8,307.6L333.5,308.3L335,311.9L335.3,318L336,318.4L335.8,323.5L333.9,325.1L340.8,335.9L343.5,343L338.5,347.1L338,342.6L335.7,344.9L333.9,343L335,341.8L331.8,338.6L331.8,336.9L322.1,338.2L319.1,337.8L309.4,338.8L307.4,328.7L307.9,326.8L306.1,323.2L305.3,317.6L307.9,313.6L307.5,312.3L308.4,310.2L311.8,306.8L313.7,306.2L311.8,304.7L312.6,303L316.3,304.7L323.1,304.3L326.7,303.2L327.4,303.7Z","cx":322.9,"cy":323.3,"x":305.3,"y":303,"w":38.3,"h":44.2,"borough":"E09000013"},{"code":"E05013812","name":"Colliers Wood","d":"M413,517.7L412.6,524.7L408.9,524.9L402.3,527L401.8,524.5L398.3,526.4L399,528.9L392.8,530.8L392.3,528.9L386.3,532.5L386.9,527.8L388.4,524.7L390.2,524.1L389.5,518.6L390.6,518.4L390.4,517.5L389.7,517.3L388.3,514.1L390.1,512.9L390.4,514.1L393.8,512.5L392.6,509.3L398.7,511.4L405.4,516L409.2,516.7L408.9,517.3L413,517.7Z","cx":398.5,"cy":520.9,"x":386.3,"y":509.3,"w":26.7,"h":23.2,"borough":"E09000024"},{"code":"E05009392","name":"Colville","d":"M363.1,326L365.8,331.3L366.5,331L367.6,333.2L368.8,340.7L361.3,344.7L355.4,331.5L358.5,330L362.3,325.8L363.1,326Z","cx":362.6,"cy":335.4,"x":355.4,"y":325.6,"w":13.4,"h":19,"borough":"E09000020"},{"code":"E05013737","name":"Coningham","d":"M326.1,352.9L331.6,353.6L331.2,357.8L332.2,361.2L333.7,361.2L321.2,365.6L320,362.6L316.8,360.7L314.1,352.3L326.1,352.9Z","cx":323.6,"cy":358.1,"x":314.1,"y":352.3,"w":19.7,"h":13.3,"borough":"E09000013"},{"code":"E05013932","name":"Coombe Hill","d":"M306.9,493.5L304.3,496.9L303.3,499.8L305.6,506.6L304.8,511.4L306.8,512.9L308.6,520.1L308.8,527.4L311.6,537.3L307.3,532.1L306.5,534.2L304.1,536.7L297.9,537.3L294.6,523.6L290.7,524.5L285.5,528.5L283.4,529.3L276.7,530.6L266.1,531.4L262.9,530.6L273.8,519.4L277.1,512.3L274.4,511L283.5,499.2L291.1,492.9L303.4,484.6L304.6,488.4L306.7,490.5L306.9,493.5Z","cx":291.9,"cy":513.9,"x":262.9,"y":484.6,"w":48.7,"h":52.7,"borough":"E09000021"},{"code":"E05013933","name":"Coombe Vale","d":"M297.9,537.3L300.1,548.3L290.1,551.5L290.1,551L285.6,549.5L269.4,533.3L266.1,531.4L276.7,530.6L283.4,529.3L285.5,528.5L290.7,524.5L294.6,523.6L297.9,537.3Z","cx":287.2,"cy":537.8,"x":266.1,"y":523.6,"w":34,"h":28,"borough":"E09000021"},{"code":"E05009300","name":"Cordwainer","d":"M496.3,339.3L498.1,339.7L497.1,340.1L497.6,340.9L496.9,343L491.7,341.1L492.4,338.2L496.3,339.3Z","cx":494.8,"cy":340.5,"x":491.7,"y":338.2,"w":6.4,"h":4.8,"borough":"E09000001"},{"code":"E05009301","name":"Cornhill","d":"M506.6,335.9L504.5,340.5L503.4,340.3L503.3,340.9L502.1,340.5L502.3,339.7L499.1,339.7L502,338.4L505.5,334L507.7,334.6L506.6,335.9Z","cx":504,"cy":337.7,"x":499.1,"y":334,"w":8.6,"h":6.9,"borough":"E09000001"},{"code":"E05011466","name":"Coulsdon Town","d":"M452.4,703.4L450.6,706.1L449.7,706.3L451.8,712.4L449.8,713.3L450.9,714.5L451.2,717.3L449.8,718.3L448.6,717.9L446.5,714.5L443.3,716L443,720L439.8,724.5L437.2,732.2L437.5,733.3L435.7,733.5L436.5,738.4L435.9,738.2L436.1,740.3L435.5,740.3L433.3,744.9L432.7,744.5L431.9,746.2L428.5,744.5L427.3,744.5L426.9,745.5L422.7,742.6L420.4,743.4L417.6,737.5L421.4,733.7L418.2,733.1L421.6,726.3L416.9,724.9L418.2,720.4L415.3,713.3L414.3,713.7L413.4,712.6L412.6,708.6L423.5,702.1L424.2,703.4L425.9,703.6L431.9,701.1L433.6,696.6L433.3,695.4L427.6,691L439.8,683.8L440.7,686.5L444.6,689.9L450.5,692.4L450.6,694.7L449.8,695.4L452,697.1L450.9,698.9L452.4,703.4Z","cx":433,"cy":714.6,"x":412.6,"y":683.8,"w":39.8,"h":62.4,"borough":"E09000008"},{"code":"E05009393","name":"Courtfield","d":"M401,380.6L392.2,389.8L389.7,386.7L386.5,380.1L381.7,382.5L378,375.3L393.9,374L394.4,376.6L396,378.2L397.1,377.2L398.4,377.4L401,380.6Z","cx":390.2,"cy":380.2,"x":378,"y":374,"w":23,"h":15.8,"borough":"E09000020"},{"code":"E05011241","name":"Cranbrook","d":"M684.3,220L686.6,222.5L685.3,224L682.9,223.2L682.3,225.3L683,225.7L681.9,228L685.1,233.3L680.8,235.8L681.1,236.6L679.2,238.7L678.6,238.3L678,239.6L677.6,239.2L671.8,246.3L663.4,230.5L656.8,220.8L677.8,219.4L684.3,220Z","cx":672.7,"cy":229.4,"x":656.8,"y":219.4,"w":29.7,"h":26.8,"borough":"E09000026"},{"code":"E05013612","name":"Cranford","d":"M137.8,412.6L139.1,413L138.6,414.9L139.3,415.3L138.4,417.7L139.1,418.1L138.6,420.8L137.9,420.6L137.6,421.9L138.5,422.3L137.8,425.9L137.1,425.7L137,426.5L138.3,427.1L139.3,431.1L136,432.6L138.7,438.9L128.9,443.3L129.3,439.1L128,435.1L123.6,428.8L122.2,428.6L121.6,427.1L118.3,424.6L117.4,424.8L117.1,421.4L111.9,414.9L112.9,409.2L110.8,402.1L111.2,399.3L110.6,398.5L115.7,387.1L116.6,379.7L126.4,382.2L125.4,386.3L126.5,386.5L126,389.6L127.5,389.8L126.5,393.8L123.8,393.2L121.6,395.7L125.6,400.4L126.2,403.1L125.7,407.5L137.8,412.6Z","cx":124.6,"cy":412.2,"x":110.6,"y":379.7,"w":28.8,"h":63.6,"borough":"E09000018"},{"code":"E05013968","name":"Cranham","d":"M944.4,226.9L944,229L948.1,242.5L913,252.6L905.2,253.3L888,252.7L888.3,251.2L880.7,246.3L885.3,241.3L884.6,240.8L885.8,238.3L887.5,238.7L885.9,237.9L886.3,237.1L887.5,237.5L889.3,234.7L895.6,237.7L898,233.3L899.3,233.9L898.7,232L899.9,231L901.1,227.8L899.5,227.1L899.9,223.2L901.8,222.7L902.3,221L900.5,218.3L901,217.3L899.1,215.4L916.9,217.3L922.6,219.4L930.7,225L934.5,226.7L939.7,227.4L944.4,226.9Z","cx":914.9,"cy":236.7,"x":880.7,"y":215.4,"w":67.4,"h":37.9,"borough":"E09000016"},{"code":"E05011222","name":"Crayford","d":"M835,436L837.7,440.8L838.1,440.2L841.6,440.2L842.8,442.3L842.2,444.4L840.2,444L838.1,445.9L839.4,444.8L840,445.2L838.9,447.1L840.8,444.4L844.8,445.2L844.3,448.6L845.9,449.3L845.3,452.2L842.8,453.1L842.8,454.1L840.2,456.4L838.2,457L836.9,455.6L834.4,457.3L834,456.8L833.1,457.1L830.6,462.7L828,462.1L827.6,463L826.6,462.9L826.3,466.3L822.5,470.7L821.8,470.3L818.8,471.4L818.5,472.8L817.1,473.5L816,472.8L812.8,475.6L809,473.1L806.8,477.1L803.1,474.1L793.3,469.7L789.4,466.7L790,462.5L788.2,459.4L784.5,456.8L784.6,453.1L787,453.7L787.8,451.2L789,451.6L789.9,449.2L791,449.3L791.5,451.6L798.3,453L798.7,453.9L800.9,451.2L798.6,446.5L796.6,445.7L795.2,441.2L794.2,441.5L794.5,439.6L801.1,443.3L806.7,444.8L808.3,442.9L809.8,443.6L810.2,442.7L812.5,441.7L813.8,443.1L817,438.7L816.3,438.3L816.7,437.5L817.1,437.9L818.2,435.8L820.3,434.3L819.9,433.4L830.6,433.5L835,436Z","cx":815.5,"cy":454.5,"x":784.5,"y":433.4,"w":61.4,"h":43.8,"borough":"E09000004"},{"code":"E05013813","name":"Cricket Green","d":"M405.5,542.4L410,545.1L408.7,547.9L409.3,548.3L409.4,551.5L412.8,551.2L411.3,547.2L412.5,546.2L413.5,547L414.3,546.4L414.4,547.4L416.5,548.1L418.8,546.8L415.6,557.1L416.3,558.8L445.3,573L444.7,572.7L436.4,575.9L433.4,573.2L417.2,575.9L416.9,576.9L413.7,578.8L408.6,578.4L407.4,575.3L403.1,571.3L405,569.8L404.8,567.7L403.4,565.6L406.1,561.6L397.7,558.4L383,544.3L384.4,542L386.3,542.8L387.7,542.4L387.8,543L391.9,542.4L391.6,541.5L399,541.3L400.6,546L405.5,542.4Z","cx":411,"cy":560.4,"x":383,"y":541.3,"w":62.3,"h":37.5,"borough":"E09000024"},{"code":"E05013634","name":"Cricklewood","d":"M354.8,228.4L359.5,237.5L349.8,245.5L353.7,253.5L356.1,250.8L357.6,251L357.3,252L360.4,257.9L357,259.2L355.6,257.1L351.5,260.2L337.3,239.8L329.3,230.1L333.9,227.4L341.1,224.8L345.7,219.1L350.8,222.9L354.8,228.4Z","cx":346.6,"cy":237.7,"x":329.3,"y":219.1,"w":31,"h":41.1,"borough":"E09000003"},{"code":"E05013499","name":"Cricklewood & Mapesbury","d":"M351.5,260.2L363.3,276.2L356.9,275.4L344.1,272.2L344.5,271L343.3,270.6L343.5,270.1L344.6,270.4L346.7,264.9L345.4,264.9L343.9,263.6L335.7,263.2L333.4,260.7L331.2,260.9L331.2,256.9L330.3,255.6L339.8,248.9L343,247.8L351.5,260.2Z","cx":345.6,"cy":262.3,"x":330.3,"y":247.8,"w":33,"h":28.4,"borough":"E09000005"},{"code":"E05009302","name":"Cripplegate","d":"M494.9,325.3L494.8,327L496.5,327.7L496.8,326.8L497.8,327.3L496.3,330.8L494.1,330L492.8,331.5L491.4,331.9L492.7,325.8L491.6,326.2L491.2,323.9L489,324.1L488.4,321.6L489.7,320.9L490.2,321.8L491.7,321.3L492.7,324.3L494.8,324.3L494.9,325.3Z","cx":493.1,"cy":326.6,"x":488.4,"y":320.9,"w":9.4,"h":11,"borough":"E09000001"},{"code":"E05013718","name":"Crofton Park","d":"M564.1,444.2L561.6,448.2L566.9,450.3L564.7,453L571.1,456.8L574,461L571.2,463.2L569.1,462.7L569.2,463.4L566.3,464.6L564.1,468.9L564.9,471.2L563.4,471.8L564.3,473.9L563.6,475L547.7,475L546.6,476L546.6,475.4L543,475.4L550.2,460.8L549.8,460.6L555.4,451.1L558.1,441.9L564.1,444.2Z","cx":558.4,"cy":461.9,"x":543,"y":441.9,"w":31,"h":34.1,"borough":"E09000023"},{"code":"E05011223","name":"Crook Log","d":"M774.1,421.9L772.8,424.8L773.5,425.2L773.2,425.7L772.2,426.9L771.5,426.3L770.4,428L769.7,427.8L770.5,428.4L770,431.6L769.7,432.2L768.8,431.8L767.9,434.5L768.3,439.1L765.9,439.6L765.9,441L767.3,441L766.9,444.4L765.8,444.2L765.5,447.2L766,447.2L766,449.9L766.8,450.1L766.3,451.2L767,457L765.9,457L761.3,463.8L746.5,461.7L741.3,459.8L745.3,460L745.6,459L748.4,458.1L749.2,458.5L749.9,456.8L749.9,449.9L747.9,448L748.8,447.8L749.3,442.9L751,442.3L751.1,440.8L750.4,440.4L751.5,437.2L749.1,436L750.5,429.2L746.9,429L747,428L743.1,427.5L743.8,426.7L744.2,422.7L746.7,423.1L746.7,421.7L747.4,421.7L747.3,423.3L751.1,424.2L750.9,425.2L757.3,425.4L758,421L763.2,422.3L766.2,418.5L767.1,419.1L769,418.5L771.3,421L774.1,421.9Z","cx":758.6,"cy":440.6,"x":741.3,"y":418.5,"w":32.8,"h":45.3,"borough":"E09000004"},{"code":"E05013588","name":"Crouch End","d":"M465.8,211.8L468.6,217.7L468,218.3L469,220.2L463.5,223.1L462.3,221.5L456.4,224.2L453.2,224.2L446.4,226.5L440.6,214.7L438.5,215.4L438.7,213.3L441,212.4L441.4,206.9L442.9,205.9L442.1,204.6L441.5,204.8L441.5,203.6L446.7,201.5L447.5,203.3L450.5,203.5L452.8,202.7L457.3,205.9L457.3,208.6L459.7,208.2L461,209L460.9,209.9L463.3,208.4L464.2,208.6L465.8,211.8Z","cx":452.9,"cy":214.3,"x":438.5,"y":201.5,"w":30.4,"h":24.9,"borough":"E09000014"},{"code":"E05013995","name":"Crystal Palace & Anerley","d":"M519.3,506.4L519.8,505.7L520.9,505.9L520.6,506.6L525.7,508.7L528.7,511L531.4,516.9L530.6,517.1L530.6,519.4L533.3,521.1L526.2,533.5L529.4,535.4L529.6,534.4L530.8,535L530.5,537.5L533.9,537.3L533.1,538L533.8,539.2L523.1,548.3L521.5,544.1L518.1,539.4L517.3,535.4L518.3,531.4L513.8,528.1L509.1,526L508.3,522.6L511.3,517.7L515.5,506.8L516.8,505.7L519.3,505.5L519.3,506.4Z","cx":521.7,"cy":524.6,"x":508.3,"y":505.5,"w":25.6,"h":42.8,"borough":"E09000006"},{"code":"E05011467","name":"Crystal Palace & Upper Norwood","d":"M511.3,517.7L508.3,522.6L508.7,525.1L509.1,526L513.8,528.1L518.3,531.4L517.3,535.4L518.1,539.4L511.5,544.3L510.4,543.6L507.1,546.2L503.3,542L499.5,543.9L499.2,543.2L498.4,543.4L498,539.9L492.2,537.3L492.5,536.5L491.1,535.9L492.7,534.4L487.2,530.2L485.1,530.6L483.9,528.7L484.6,524.5L485.4,524.5L485.7,523.6L483.4,523L483.1,521.5L481.4,521.3L481.8,519.8L478.2,518.6L478.8,512.5L492,512.1L494.6,512.5L502.1,518.8L511.3,517.7Z","cx":499.1,"cy":528,"x":478.2,"y":512.1,"w":40,"h":34.1,"borough":"E09000008"},{"code":"E05013908","name":"Custom House","d":"M660.5,348.1L652.5,347.7L652.1,347.1L648,347.5L640.6,346.2L626.5,347L626.4,343.5L627.9,342.8L630.1,339.1L624.7,336.1L624.5,332.7L644,332.7L653.3,327.7L652.7,328.9L654.1,329.8L654.9,332.7L654.9,333.6L654,333.8L654.8,339.5L655.9,341.2L659.9,343.7L660.5,348.1Z","cx":642.6,"cy":339.5,"x":624.5,"y":327.7,"w":36,"h":20.4,"borough":"E09000025"},{"code":"E05009394","name":"Dalgarno","d":"M348.5,312.1L352.2,322.8L345.4,324.7L347,329.3L337.7,326.8L336.1,327.9L333.9,325.1L335.8,323.5L336,318.4L335.3,318L335,311.9L333.5,308.3L333.8,307.6L334.8,307.7L334.7,308.3L337.4,307.7L339.4,308.3L348.5,312.1Z","cx":342.1,"cy":318.2,"x":333.5,"y":307.6,"w":18.7,"h":21.7,"borough":"E09000020"},{"code":"E05009370","name":"Dalston","d":"M528,281.3L514.2,281.3L514.7,277.5L513.5,277.5L514,275.4L512.3,271L514.9,269.1L518.5,268L519.7,268.7L523.2,267.8L524.2,273.3L522.6,274.4L527.1,275L529.1,278.8L527.8,278.8L528,281.3Z","cx":520,"cy":275.3,"x":512.3,"y":267.8,"w":16.8,"h":13.5,"borough":"E09000012"},{"code":"E05013996","name":"Darwin","d":"M706.3,636.6L707.6,640.2L709.1,649.4L710.8,653.7L714.9,658.7L724.5,661.4L730.4,660L745.6,661.5L743.2,663.6L742.6,667.3L743.3,670.1L744.7,669.7L745.3,672.2L744.5,672.8L746.5,679.8L748.5,681.9L744,687.6L744,689.5L742.5,688.8L741.4,689.7L739.6,693.7L734.9,692.6L734.4,695L731.3,693.5L728.6,693.7L726.6,696.4L723.8,697.1L723,700L718.3,705.3L708.4,711L705,715.4L705.8,717.7L705.2,721.9L703.4,725.9L704.7,730.1L704,730.6L704.9,734.4L702.4,735.2L705.5,741.1L706.5,745.5L712.4,751.9L710.1,753.3L705.9,759L701,761.5L691.3,761.8L684.4,764.1L673.7,766L670.8,760.3L668.8,760.9L664.5,757.3L661.8,757.8L658.5,757.3L657.4,759L654.6,759.8L656.8,748.5L655.4,747.6L654.8,743.4L657.7,742.4L664.2,738.2L661.9,734.4L660.6,733.7L660.7,732.5L660.2,733.5L659,732.9L656.7,730.4L655.7,721.9L656.7,722.1L655.9,716.2L657.1,710.3L655.4,708.9L656.7,707.2L650.9,696.6L654.2,687.1L649.5,685L650.4,682.3L642.3,680.4L640.6,678.9L639.2,680.2L638.1,683.2L636.9,682.9L635.6,689.5L632.4,690.9L631,693.3L628.8,693.1L628.2,689.1L627.5,689.7L624.9,689.3L622.7,691.6L620.7,691.8L617.3,686.1L614.1,686.1L608.3,684.6L605.4,681.9L600.8,659.3L605.3,657.9L607.4,654.5L609.5,653.6L609.7,650.5L612.4,647.3L615,648.8L615.6,650.9L621.9,651.7L625.1,645.8L628.3,645.6L636.2,651.7L637.3,651.3L641.9,652.8L644.6,652.8L644.8,654.9L648.1,655.1L649.7,650.1L651.6,652L654.7,650.1L658.6,645.9L656.6,642.9L659.6,641L659.3,638.9L661.5,631.9L664.9,632.6L667.7,631.5L668.7,635.7L680.8,632.6L680.8,633.6L683.5,634.5L683.7,635.3L685.7,634.3L687,637.4L690.1,635.1L693,636.6L696.6,637L697.7,633.8L703.1,634.9L706.3,636.6Z","cx":678.1,"cy":689.5,"x":600.8,"y":631.5,"w":147.7,"h":134.6,"borough":"E09000006"},{"code":"E05009371","name":"De Beauvoir","d":"M513.5,277.5L514.7,277.5L513.5,291L512.2,291.6L511.7,295.4L504.6,293.9L501.8,294.2L505.3,279.2L505.1,276.5L513.5,277.5Z","cx":508.7,"cy":286,"x":501.8,"y":276.5,"w":12.9,"h":18.8,"borough":"E09000012"},{"code":"E05013719","name":"Deptford","d":"M573.1,400.4L576.8,401.8L577.1,403.9L580.3,403.5L580.2,402.9L583.3,401.6L584.1,402.5L581.6,403.9L580.9,407.1L581.4,408.6L577.4,411.1L579.6,410.7L579.5,411.5L577.7,411.7L577.4,413.8L575.8,413.4L573.9,415.1L573.2,414.5L572.3,415.5L573.1,417L571.2,418.7L566.1,411.1L560.3,411.7L557,412.8L554,404.2L553.2,396.1L555.7,398.3L559.2,399.1L565.4,394.9L573.1,400.4Z","cx":567.2,"cy":405.8,"x":553.2,"y":394.9,"w":30.9,"h":23.8,"borough":"E09000023"},{"code":"E05013500","name":"Dollis Hill","d":"M329.3,230.1L343,247.8L339.8,248.9L330.3,255.6L318,260.2L311.7,263.8L307.1,268.3L307.9,266.6L307.8,264.4L304.6,261.3L305.2,259.4L303.9,253.7L305.9,245.1L307.7,241.7L309.2,240L313.9,237.5L311.3,233.9L312.4,233.9L312.9,232.4L313,230.1L312.2,229L313,227.8L313.9,228.4L315.1,227.1L315.5,227.6L317.2,227.2L317.1,226.7L318.4,226.9L318.8,228L320.1,227.4L320.1,228L321.5,227.8L322.5,228.6L322.9,227.2L325.4,227.2L326.5,228.6L327.9,228.2L329.3,230.1Z","cx":320.8,"cy":245.7,"x":303.9,"y":226.7,"w":39.1,"h":41.7,"borough":"E09000005"},{"code":"E05013519","name":"Dormers Wells","d":"M181.3,319.9L180.8,321.3L185.1,322.4L184.6,324.9L185.5,325.1L186.2,323.7L188.5,324.1L191.7,329.3L191.8,331.3L190.7,333.4L191.9,335.3L190.9,338L189,338.4L189.8,341.2L187.8,342L189.1,343.7L194.3,343.1L197.1,344.3L184.1,347.3L170.5,343.7L164.2,344.9L159.6,343.9L158.6,342.8L154.9,342.8L154.1,339.9L154.5,333.1L163.3,335.2L163.9,333.4L166.9,333.6L168.2,329.6L172.9,320.9L172.9,318.2L175.1,315.9L178.7,318.2L178.2,319L181.3,319.9Z","cx":176.1,"cy":334.6,"x":154.1,"y":315.9,"w":43,"h":31.4,"borough":"E09000009"},{"code":"E05009303","name":"Dowgate","d":"M496.9,343L500.1,343.9L499.5,348.1L495.5,347.3L496.3,345.2L494.7,344.7L495.4,342.4L496.9,343Z","cx":497.6,"cy":345.3,"x":494.7,"y":342.4,"w":5.4,"h":5.7,"borough":"E09000001"},{"code":"E05013720","name":"Downham","d":"M628.5,504.3L626.5,504L623.3,505.7L621.1,505.7L621.4,507.6L620.4,507.8L616.2,512.7L614,511.8L613.1,514.8L611.8,515.6L610.5,518.6L611.1,520.3L608.5,522.4L606.4,520.1L604.2,522L603.5,525.3L600.3,525.7L600.5,527L598.4,527.8L597.7,525.5L596.5,525.1L596.5,527.6L595.2,527.9L593,518L586.7,510.2L591.5,503.6L597,506.1L603.8,505.5L602.7,501.3L601.4,500L601.2,496.7L607,494.4L613.2,493.5L616,492.2L616.2,490.6L622.7,487.8L629,495.4L629,496.5L628.1,497.1L628.3,501.9L629.5,502.6L628.5,504.3Z","cx":608.3,"cy":507,"x":586.7,"y":487.8,"w":42.8,"h":40.2,"borough":"E09000023"},{"code":"E05011099","name":"Dulwich Hill","d":"M536.1,459.8L531.2,464.6L528.9,471.4L526.3,471L526.7,469.1L524.8,468.6L520,468.9L514.9,460L518.1,456.2L519,451.1L522.2,452L526.2,443.3L530,452.2L536.1,459.8Z","cx":525.2,"cy":459.1,"x":514.9,"y":443.3,"w":21.2,"h":28.2,"borough":"E09000028"},{"code":"E05011100","name":"Dulwich Village","d":"M502.9,449L504,449.5L504.6,449L505.5,451.1L507.8,452.8L512.6,453.7L514.9,460L520,468.9L519.1,470.1L519,472.8L504.6,475.8L499.9,477.7L494.3,477.3L490.7,466.7L487,462.3L485.9,459.8L485,459.8L484.1,456.2L484.6,453L490.9,446.3L495.2,439.3L496,441.7L497.1,441.2L500.4,445.2L498.5,446.9L497.4,446.9L496.9,448.4L498,448.2L500.5,451.6L502.9,449Z","cx":500.9,"cy":461.5,"x":484.1,"y":439.3,"w":35.9,"h":38.4,"borough":"E09000028"},{"code":"E05011101","name":"Dulwich Wood","d":"M528.9,471.4L528.6,475.4L527.4,477.1L528.6,477.9L529.3,484L528.1,484.9L525.2,491L522.5,493.1L518,494.4L515.4,500.3L516.8,505.7L515.5,506.8L511.6,516.3L510.6,515.8L510.9,514.4L509.8,513.5L508.5,513.9L507.6,511L505.5,511.8L504.9,506.6L502.4,502.6L502.6,501.3L499.9,499.8L496.6,484L494.3,477.3L499.9,477.7L504.6,475.8L519,472.8L519.1,470.1L520,468.9L520.9,469.3L523.2,468.4L526.7,469.1L526.3,471L528.9,471.4Z","cx":512.2,"cy":488.6,"x":494.3,"y":468.4,"w":34.9,"h":48,"borough":"E09000028"},{"code":"E05013520","name":"Ealing Broadway","d":"M250.1,336.9L250.2,339L252.6,340.3L252.3,343L248.7,343.1L248.8,344.1L242.4,345.4L242.6,344.3L240.6,343.5L240.5,342.2L238.4,342.6L238.1,341.2L233,342.8L232.1,339.1L225.7,339.7L222.3,332.7L221.8,325.6L228.6,324.7L230,323.4L235.4,324.7L239.1,321.8L240.8,323.7L242.6,322.4L245.6,322L246.4,321.1L250.4,321.3L249.7,329.3L250.8,329.4L250.1,331.2L250.8,331.5L247,335.5L250,335.9L250.1,336.9Z","cx":238,"cy":332.7,"x":221.8,"y":321.1,"w":30.8,"h":24.4,"borough":"E09000009"},{"code":"E05013521","name":"Ealing Common","d":"M269.2,349.2L269.2,353.4L268.1,352.9L268.7,355.5L272.2,359.3L271.8,359.9L266,363.7L262.4,363.7L256.2,362.2L248.2,366.6L242.2,368.5L240.7,359.7L240.8,357.2L242.3,356.1L242.9,354.4L242.4,345.4L248.8,344.1L248.7,343.1L252.3,343L252.6,340.3L250.2,339L250.1,336.9L269.9,336.5L269.2,339.5L270.3,347.3L269.4,347.3L269.2,349.2Z","cx":256.2,"cy":351.8,"x":240.7,"y":336.5,"w":31.5,"h":32,"borough":"E09000009"},{"code":"E05009395","name":"Earl's Court","d":"M381.1,381.2L377.9,382.7L379.2,385.2L371.7,389.6L369.8,388.3L364.6,381L372.7,375.7L378,375.3L381.1,381.2Z","cx":373.1,"cy":381.9,"x":364.6,"y":375.3,"w":16.5,"h":14.3,"borough":"E09000020"},{"code":"E05013522","name":"East Acton","d":"M309.4,338.8L312.5,344.7L314.1,352.3L312.4,352.5L292,352.9L293.1,348.3L292.4,347.9L292.3,344.9L291.3,345L291.4,341.2L290.6,341.2L290.1,339L284.7,339.7L288.8,332.3L296.6,328.9L306.1,323.2L307.9,326.8L307.4,328.7L309.4,338.8Z","cx":300.7,"cy":340.2,"x":284.7,"y":323.2,"w":29.4,"h":29.7,"borough":"E09000009"},{"code":"E05013635","name":"East Barnet","d":"M435.8,100.1L431.8,103.2L427.9,104.9L426.7,106.4L427,107.3L423.1,109.8L416.5,111.1L416.7,112.9L415.6,113.4L414.8,111L412.2,111L406.2,100.9L404,95.5L397.9,76.5L396.4,59.6L410.7,64.1L414.4,66.8L421.1,69.3L422.4,71.2L422.7,73.5L421.7,74L423.6,76.9L424,80.1L425.6,79.6L426.8,82L424.1,83.5L424,84.3L425.4,85.1L424.2,87.7L424.8,88.7L427.6,88.7L429.3,94.8L432.6,93.8L435.8,100.1Z","cx":413.9,"cy":86.6,"x":396.4,"y":59.6,"w":39.4,"h":53.9,"borough":"E09000003"},{"code":"E05013636","name":"East Finchley","d":"M419.2,164.6L412.7,179.7L415.2,189.7L416.4,190.1L414.6,194.5L414.6,197.7L416.5,197.7L416.4,200.4L417.9,200.4L418.3,201.2L417.3,201.2L417.3,202.1L415.3,204.4L405.4,195.1L404.3,195.8L404.4,199.3L399.3,198.9L396.3,196.4L394.4,197.6L392.3,196.4L390.6,197.7L392.2,190.3L385.7,185.6L389.6,182.3L398.9,172.2L402.8,169.6L411.8,164.4L415.4,163.9L419.2,164.1L419.2,164.6Z","cx":404.5,"cy":184,"x":385.7,"y":163.9,"w":33.5,"h":40.5,"borough":"E09000003"},{"code":"E05014076","name":"East Greenwich","d":"M628.3,394.9L610.6,398.1L606.3,398L606,399.3L602,400.6L599,394.5L600.5,394L606,388.4L607.2,385.2L607.6,380.6L607.2,378.5L606.7,378.7L611.7,376.8L619.3,385.8L625.1,390.2L628.3,394.9Z","cx":612.7,"cy":390.4,"x":599,"y":376.8,"w":29.3,"h":23.8,"borough":"E09000011"},{"code":"E05013909","name":"East Ham","d":"M674.7,310.6L671,311.4L671,313.5L662.5,315.7L659.7,304.9L657.4,305.5L657.2,304.7L658,304.1L656.7,301.7L657.7,301.3L656.5,299.6L659.4,298.6L658.8,296.3L656.7,294L667.9,289.9L670,298.6L669.5,299.4L670.2,299.2L670.8,301.8L674,301.3L674.5,303.6L673.2,303.9L674.7,310.6Z","cx":665.4,"cy":303.3,"x":656.5,"y":289.9,"w":18.2,"h":25.9,"borough":"E09000025"},{"code":"E05013910","name":"East Ham South","d":"M691.2,309.3L696.8,309.8L697.3,310.4L696.2,310.4L696.3,311L697.7,311.2L699.2,312.9L672.9,327L668,327.9L658.1,326.8L653.3,327.7L651.6,322.4L651,316.9L655.3,317.6L655.4,315.4L656,315.2L656.1,315.7L662,314L662.5,315.7L671,313.5L671,311.4L681.4,309.8L690.4,306.6L690.5,309.5L691.2,309.3Z","cx":673.4,"cy":318.1,"x":651,"y":306.6,"w":48.2,"h":21.3,"borough":"E09000025"},{"code":"E05014011","name":"East Putney","d":"M367.5,440.8L369.5,443.4L370.3,451.1L370.7,451.6L371,450.7L371.7,451.2L371.6,454.9L373.4,459.6L369.1,460.8L358.5,460.6L354.4,452.8L340.3,463.6L340.2,462.1L347.3,439.1L356.7,441.2L367.5,440.8Z","cx":357.6,"cy":450.6,"x":340.2,"y":439.1,"w":33.2,"h":24.6,"borough":"E09000032"},{"code":"E05013775","name":"East Sheen","d":"M304.7,431.5L301.3,435.4L298.8,440.6L300.2,441.7L297.5,450.9L311.4,461.9L318.2,473.5L316.9,475.8L300.9,485.7L300.8,486.5L295,484.7L289.2,484.2L286.6,480.9L286.6,478.5L273.1,470.1L269.2,466.7L270.2,457.1L275.3,456.2L275.6,447.8L269.4,448.2L267.5,437.9L273.4,442.1L273.9,440.2L274.7,440.2L275,438.7L275.6,438.7L274.8,438.1L274.8,433.2L282.5,433.4L282.2,429.9L282.8,429.7L282.2,429.2L282.8,426.9L288.1,425.9L297.1,426.9L297.5,429L298.3,428.8L298.7,431.6L304.7,431.5Z","cx":291.1,"cy":457.8,"x":267.5,"y":425.9,"w":50.7,"h":60.5,"borough":"E09000027"},{"code":"E05011224","name":"East Wickham","d":"M737.6,415.8L740.9,417.6L745.2,417.6L745.1,419.7L746.5,419.8L746.7,423.1L744.2,422.7L743.8,426.7L743.1,427.5L747,428L746.9,429L750.5,429.2L749.6,433.9L725.2,432L709,440L702.6,441.7L701.8,439.3L701.8,428.8L702.9,429L704.8,424.8L707.5,422.3L709.9,421.4L714.8,416.6L718.8,416L720.7,411.8L725.2,413.8L725.8,413L726.8,413.6L728.6,411.8L730.2,412.8L732.5,410.7L737,416.4L737.6,415.8Z","cx":724.3,"cy":425.9,"x":701.6,"y":410.7,"w":48.9,"h":31,"borough":"E09000004"},{"code":"E05014059","name":"Eastbrook & Rush Green","d":"M823.7,240.6L820.8,248.7L823.3,251.2L823.3,257.9L825.7,259L826.9,262.3L829.6,264.9L828.9,267.2L826.5,269.7L824.7,274.8L816.6,276.9L816.6,273.5L804.7,274.2L803.6,275.4L800.5,270.4L798,270.6L798,269.9L796.4,270.4L794.8,267.2L793.4,256.9L790.1,252.9L791,252L789.9,250.8L789.9,248.6L789.1,248.6L787.1,239.4L796.1,248L801.5,244.7L809.8,241.3L812.9,242.1L821.7,242.3L823.7,240.6Z","cx":809.5,"cy":258.4,"x":787.1,"y":239.4,"w":42.5,"h":37.5,"borough":"E09000002"},{"code":"E05014060","name":"Eastbury","d":"M755.4,304.9L750.5,305.1L743.7,303.6L742.8,309.6L734.2,307.9L723.6,305.3L716.7,302.4L703.5,293.1L708.2,294L715.2,293.5L748.9,289.3L749,291.9L755.6,291.4L754.9,296.3L755.4,304.9Z","cx":734.4,"cy":298.5,"x":703.5,"y":289.3,"w":52.1,"h":20.4,"borough":"E09000002"},{"code":"E05013567","name":"Eastcote","d":"M135.8,192.8L135.9,193.6L137.1,193.2L140.1,197.2L141.2,207.3L141.2,209.7L140.5,209.9L144.2,217.3L145.4,221.9L144.7,222.5L147.5,228L146.6,229L147.3,230.3L140.2,237.1L133.8,237.5L131.5,238.5L129.6,240.9L125.6,234.9L122.2,223.4L121.5,223.8L121,222.3L120,222.1L121.5,220.8L119.1,215.3L119,212.2L120,211.4L119.4,206.5L117.2,206.3L114,202.3L111.2,203.1L108.2,195.6L115.3,193.4L115.7,194.9L118.3,194.5L118,193.2L117.1,193.2L116.8,192.4L118,190.7L121.6,194.1L124.1,190.7L125.2,192L124.5,192.6L124.9,194.1L126,194.1L126.9,196.8L135.8,192.8Z","cx":130.3,"cy":214.1,"x":108.2,"y":190.7,"w":39.3,"h":50.2,"borough":"E09000017"},{"code":"E05013545","name":"Edgware","d":"M271.5,151.5L288,174.1L283.4,177.9L280.9,177.9L276.3,180.8L276.9,181.6L268.7,183.1L264.3,185.2L260.7,181.9L267.5,179.3L258.7,161.4L261.6,161L265.3,159.3L266.6,159.9L268.3,158.7L266.8,158L266.7,157.2L268.2,156.3L266.8,154.2L271.5,151.5Z","cx":272.5,"cy":169.3,"x":258.7,"y":151.5,"w":29.3,"h":33.7,"borough":"E09000015"},{"code":"E05013637","name":"Edgware","d":"M245.9,106L250.3,115L263.5,129.4L276.6,134.4L287.3,132.5L299.6,134L311,152.8L305.4,151.5L300.5,151.3L283.4,153.4L278.9,155.1L277.1,154.5L274.7,156.3L263.9,142.5L243.7,114L242.4,110L243.8,105.8L245.9,106Z","cx":278.1,"cy":138.8,"x":242.4,"y":105.4,"w":68.6,"h":50.8,"borough":"E09000003"},{"code":"E05013638","name":"Edgwarebury","d":"M299.5,95.3L301,96.1L301.6,101.1L302.4,100.9L306.2,103.7L309.3,103.7L309.5,101.6L315,105.4L317.1,104.7L317,103.2L320.7,101.8L323.2,103.7L324.9,112.5L324.8,117L320,120.3L315.9,126.6L309.5,128.3L306.6,128.3L302.2,134L287.3,132.5L276.6,134.4L263.5,129.4L250.3,115L245.9,106L253.6,107.5L258.6,105.4L266.2,104.7L268.1,103L271.1,102L274.4,102L276.9,100.9L280.2,101.2L279.6,100.1L281.1,94.8L286.7,94.2L286.6,91.5L288.3,91L291.2,91.9L292.5,89.6L294.5,91.2L295.6,93.6L299.5,95.3Z","cx":288,"cy":114.8,"x":245.9,"y":89.6,"w":79,"h":44.7,"borough":"E09000003"},{"code":"E05013679","name":"Edmonton Green","d":"M573.7,133.6L566.3,142.7L562.6,150.2L558.2,150L549.5,153.4L541.5,149.8L528.4,147.1L519.4,146.7L518,144.6L519.3,140.8L518.8,135.5L520.6,128.1L519.9,127.9L520,127.1L523.6,127.9L523.8,126.6L525.4,126.9L525.5,126.2L531.6,127.7L531.9,126.9L535.1,126L537.1,123.3L538.6,123.7L538.5,126.6L535.1,131.9L546.2,133.6L546.6,133L555,135.3L556.7,133L564,135.3L564.3,137.8L567.2,138.7L568.9,138.2L572.9,132.8L573.7,133.6Z","cx":541.5,"cy":140,"x":518,"y":123.3,"w":55.7,"h":30.1,"borough":"E09000010"},{"code":"E05013969","name":"Elm Park","d":"M844.2,258.1L844.5,259.4L847.8,259L850.5,260L844.9,277.5L844.3,282.4L847.4,283.6L848.1,282.2L846.5,281.3L846.8,280L851,281.3L852,280.7L852,282.4L856.7,284.1L857.7,283.4L861.4,284.5L859.7,289.1L860.7,292.5L858,301.1L852.4,307.9L849.9,305.1L845.8,302.2L846.5,301.1L841.7,299L842.8,295.9L840.4,294.6L838.9,295.6L832.7,290.2L832,293.5L829.5,291.9L824.9,297.1L821.5,295.6L819.9,297.3L810.3,294L811.8,291.9L816.6,288.5L818,281.3L824.7,274.8L826.5,269.7L828.9,267.2L830.6,262.6L834.9,258.8L840.3,257.3L844.2,258.1Z","cx":838.5,"cy":282.8,"x":810.3,"y":257.3,"w":51.1,"h":50.6,"borough":"E09000016"},{"code":"E05014077","name":"Eltham Page","d":"M658.3,433.5L658.5,440.8L662.4,440.6L663,439.6L663.4,440.2L663.8,446.3L665.7,454.9L661.9,456L662.2,457.7L657.9,457.3L651.3,455.2L642.5,454.9L642,450.7L643.6,450.5L642.5,442.3L644.3,441L639.9,437.5L639.9,430.1L643.9,432L650.3,437L652.6,435.1L658.3,433.5Z","cx":652.5,"cy":445.5,"x":639.7,"y":430.1,"w":26.1,"h":27.6,"borough":"E09000011"},{"code":"E05014078","name":"Eltham Park & Progress","d":"M701.8,428.8L701.8,439.3L702.6,441.7L697.8,443.1L664.9,449.9L663,439.6L662.4,440.6L660.3,441L658.5,440.8L658.6,439.8L658,439.8L658.3,433.5L666.5,426.1L667.6,425.9L669.4,421.2L670.6,421.4L670.8,420.6L675.6,421.7L675.3,422.9L676.1,422.9L676.5,425.2L674.6,426.3L674.2,429.5L676.7,431.3L678.4,428.8L680.9,427.5L680.8,428.8L681.9,428L684.4,428.8L685.1,430.3L687.6,428.8L690.4,433.5L691.5,434.3L698.2,427.8L701.8,428.8Z","cx":678.8,"cy":436.9,"x":658,"y":420.6,"w":44.5,"h":29.3,"borough":"E09000011"},{"code":"E05014079","name":"Eltham Town & Avery Hill","d":"M705.9,448L708.7,465.5L707.9,468.6L706.7,469.3L707.9,473.1L704.7,474.5L702.7,472.9L702.7,474.3L704.5,475.6L701.3,479.4L700.2,478.7L697.3,484.9L669.3,480L669.6,478.8L668,473.5L667.9,474.1L660.4,474.1L656.8,472.2L658.3,470.8L660,462.1L660.7,461.9L661,457.7L662.2,457.7L661.9,456L665.7,454.9L664.9,449.9L697.8,443.1L705.9,448Z","cx":685.1,"cy":463.9,"x":656.8,"y":443.1,"w":51.9,"h":41.9,"borough":"E09000011"},{"code":"E05013970","name":"Emerson Park","d":"M899.1,215.4L901,217.3L900.5,218.3L902.3,221L901.8,222.7L899.9,223.2L899.5,227.1L901.1,227.8L899.9,231L898.7,232L899.3,233.9L898,233.3L895.6,237.7L889.3,234.7L887.5,237.5L886.3,237.1L885.9,237.9L887.5,238.7L885.8,238.3L884.6,240.8L885.3,241.3L880.7,246.3L866.4,235.2L856.7,231.2L857,228.2L855.1,225.9L855.1,222.3L857.2,222.9L860.4,225.1L864.4,225.5L864,224.2L862.5,224L863.2,221.9L864,222.1L865.7,220.6L864.8,217.2L863.8,217.2L863.9,215.6L865.1,215.6L865.8,212.2L868.7,213.9L870.9,210.3L873.1,211.8L874.3,210.7L873.5,210.1L878.8,206.7L888.3,213.7L899.1,215.4Z","cx":880,"cy":225.7,"x":855.1,"y":206.7,"w":47.1,"h":39.6,"borough":"E09000016"},{"code":"E05013886","name":"Endlebury","d":"M610,122L606.9,130.2L606,135.3L604,135.7L602,135.1L601.6,135.9L600.3,135.7L600.5,134.4L596,133.6L593.5,131.1L584.7,131.5L584.9,127.5L586.2,125.6L585.4,124.8L581.7,123.7L581.3,126L580.2,126L580.4,127.1L576.6,126.8L584.5,111.1L586.4,111.1L586.8,112.3L588.3,112.9L588.5,111.5L594.7,111.9L598.9,114L603.4,114.8L604.8,115.9L600.9,118.4L601.4,121.6L603.9,121.2L604.5,122.8L608.5,120.9L610,122Z","cx":594.1,"cy":123.1,"x":576.6,"y":111.1,"w":33.4,"h":24.7,"borough":"E09000031"},{"code":"E05013680","name":"Enfield Lock","d":"M590.3,20.9L591.2,20.9L592.2,28.9L590.9,38.1L591.8,43.4L590.7,53.3L592.8,57.3L591,56.3L583.9,55.2L583.9,54.4L580.2,54.1L578.2,52L576.8,48L574.8,49.5L569.8,48.7L570.1,45.3L561.5,43.6L561.7,46.6L555.3,44.5L556.9,38.3L563.5,26.8L564.8,17.9L570.7,18.3L580.9,20.4L590.3,20.9Z","cx":576.6,"cy":35.8,"x":555.3,"y":17.9,"w":37.4,"h":39.4,"borough":"E09000010"},{"code":"E05011225","name":"Erith","d":"M825.4,402.5L824.9,405.6L822.1,404.6L820.3,407.1L820.1,410.3L819.3,410.5L818.6,420.8L817.1,421L817.1,418.5L815.2,418.5L815.1,417L813.3,417L813.7,414.5L811.5,409.2L812.2,409L812,407.5L808.3,409.8L806.4,409.9L805.2,409.4L803.9,406.5L803.2,406.7L804.1,408.6L803.6,409.2L802.1,409.9L800.6,409.6L800.9,408.8L798.9,408.4L799,407.7L795.4,406.5L796,405L795.3,405.4L791.7,404L792.6,400L791,400.4L790.8,403.7L787,404.4L784.8,394.9L785.6,394.7L785.4,393L789,391.7L790.9,392.4L800.2,389.8L801.3,388.6L803.1,390L804.1,389.4L797.6,380.4L801.5,376.6L802.2,378L808.1,375.3L808.7,386.5L812,391.7L811.9,393.2L812.9,393.4L815.3,396.6L815.1,397.6L815.6,396.8L821.5,401L825.4,402.5Z","cx":805.1,"cy":398.4,"x":784.8,"y":375.3,"w":40.6,"h":45.7,"borough":"E09000004"},{"code":"E05013721","name":"Evelyn","d":"M575.1,392.8L573.1,400.4L565.4,394.9L559.2,399.1L555.7,398.3L553.2,396.1L552.4,390.2L549.9,383.7L554.3,384.1L556.6,382.4L555.8,380.8L557,380.1L556.4,378.9L557.9,378.5L560.2,380.1L566,378.4L569.5,386.9L575.1,392.8Z","cx":562.3,"cy":389.6,"x":549.9,"y":378.4,"w":25.2,"h":22.1,"borough":"E09000023"},{"code":"E05011468","name":"Fairfield","d":"M497.2,591.5L495,598.2L494.2,618.9L487.1,617L487.2,623.1L478.1,610L478,602.9L476,598.4L480.9,597.2L479.8,596.5L481.5,595.1L482.7,597.2L485.6,590.7L487.7,588.3L497.2,591.5Z","cx":487.3,"cy":604.3,"x":476,"y":588.3,"w":21.2,"h":34.8,"borough":"E09000008"},{"code":"E05011242","name":"Fairlop","d":"M734.1,173.6L712.2,183.7L709.5,200.2L705.8,199.8L703.6,197.7L700.1,197.6L705.3,186.9L693,183.3L693.2,182.7L693.8,183.1L694.6,180.4L696,180.8L696.3,178.7L695,177.9L694.7,175.5L693,173.6L692,170L689.8,169.2L690.6,166L698.4,161.6L704.3,162.9L707.5,166.5L709.5,165.6L710,164.6L713.9,163.1L713,160.8L713.2,159.3L714,157L715.6,156.3L716.5,154.3L717,158L715.2,167.3L728.9,162.3L729.8,166.3L730.4,166.1L734.1,173.6Z","cx":709.8,"cy":175.4,"x":689.8,"y":154.3,"w":44.3,"h":45.9,"borough":"E09000026"},{"code":"E05014012","name":"Falconbrook","d":"M406.8,421L409.4,422.7L410.6,425.4L410,428.6L405,431.8L405.7,434.3L401,436.4L400.2,438.9L396.1,437L395.3,435.6L385.6,438.3L385.6,436L391.2,430.9L393.1,428.4L394,425L395.9,423.1L401.5,421.9L403.8,420.2L406.8,421Z","cx":399.5,"cy":429.6,"x":385.6,"y":420.2,"w":25,"h":18.7,"borough":"E09000032"},{"code":"E05011226","name":"Falconwood & Welling","d":"M749.6,433.9L749.1,436L751.5,437.2L750.4,440.4L751.1,440.8L751,442.3L749.3,442.9L748.8,447.8L747.9,448L749.9,449.9L749.9,456.8L749.2,458.5L748.4,458.1L745.6,459L745.3,460L741.3,459.8L729,457.1L705.9,448L700.9,445.5L697.6,442.7L709,440L725.2,432L749.6,433.9Z","cx":730.1,"cy":445.1,"x":697.6,"y":432,"w":53.9,"h":28,"borough":"E09000004"},{"code":"E05011102","name":"Faraday","d":"M512,386.3L514.9,388.8L514.1,390L513.6,393.8L512.2,393.6L512.1,395.1L516.6,394.9L516.7,399.1L514.8,399.3L514.6,398.7L514.7,399.3L503.1,400.8L500.6,400L499.3,402.3L498.7,401.8L497.1,402.7L495.9,402L496,400.6L493.7,401.4L492.5,400.6L492.8,396.4L491,396.1L490.7,392.4L494.1,391.1L494,389.2L496.1,388.3L497.2,389L497.1,388.4L500.2,387.1L498.9,385.2L501.8,385.6L508.3,382.7L512,386.3Z","cx":503.7,"cy":393.4,"x":490.7,"y":382.7,"w":26.2,"h":20,"borough":"E09000028"},{"code":"E05013997","name":"Farnborough & Crofton","d":"M712.9,612.8L711.9,616.8L708.4,619.5L709.8,619.9L709.8,620.8L708.7,621.6L710.8,624.1L709,626.9L710.3,627.9L709.4,632.2L705.8,635.5L706.3,636.6L703.1,634.9L697.7,633.8L696.6,637L693,636.6L690.1,635.1L687,637.4L685.7,634.3L683.7,635.3L683.5,634.5L680.8,633.6L680.8,632.6L668.7,635.7L667.6,627.3L669.5,625.4L668.9,624.8L670.1,622.5L664.4,617.8L661.7,612.6L668.6,605.4L668.1,601.4L672.1,601.4L671,600.3L671.9,598.9L671.8,596.3L673.3,591.9L674.6,591.7L681.9,595.5L685.6,598.6L688,597.2L689.4,594.9L691.7,596.1L690.8,597.6L694.9,600.3L695.7,599.3L700.9,602L701.7,597.2L702.7,597.8L704.2,596.6L708.6,604.3L707.8,604.8L709,607.3L710.7,608.3L712.9,612.8Z","cx":687.9,"cy":616.1,"x":661.7,"y":591.7,"w":51.2,"h":45.7,"borough":"E09000006"},{"code":"E05009304","name":"Farringdon Within","d":"M487.7,333.6L487.5,335.9L485.3,335.2L483.8,342.2L481.3,342.8L480.6,337.4L478.6,335.3L478.1,333.6L478.6,331.7L479.9,332.5L479.8,331.5L480.3,331.5L483.5,334.2L483.9,333.2L487.6,333.4L487.5,332.1L484.6,329.4L486.3,328.3L485.6,327L488.6,325.8L488.8,324.9L489.5,331L487.7,332.3L487.7,333.6Z","cx":483.8,"cy":334.5,"x":478.1,"y":324.9,"w":11.4,"h":17.9,"borough":"E09000001"},{"code":"E05009305","name":"Farringdon Without","d":"M478.1,333.6L476.7,331.7L475.3,331.3L474.5,337.1L474.8,338.4L475.8,338.2L475.8,344.5L472.3,344.7L471.1,341.1L472.1,340.1L471.8,339.1L472.8,339L469.6,330.4L476.7,331.3L485.6,327L486.3,328.3L484.6,329.4L487.5,332.1L487.6,333.4L483.9,333.2L483.5,334.2L482.4,332.7L479.8,331.5L479.9,332.5L478.6,331.7L478.1,333.6Z","cx":477.3,"cy":334.7,"x":469.6,"y":327,"w":18,"h":17.7,"borough":"E09000001"},{"code":"E05013613","name":"Feltham North","d":"M128.9,443.3L129.2,445.3L131.2,449.3L135.6,452.2L139,451.6L139.1,453.3L142.1,457.9L120.6,463.8L119.4,466.3L113.3,461.9L107,460.2L98.1,453L118.5,446.3L112.6,435.6L117.3,431.1L120.3,426.3L121.6,427.1L122.2,428.6L123.6,428.8L128,435.1L129.3,439.1L128.9,443.3Z","cx":120.9,"cy":449.8,"x":98.1,"y":426.3,"w":43.9,"h":40,"borough":"E09000018"},{"code":"E05013614","name":"Feltham West","d":"M104.5,458.3L107,460.2L113.3,461.9L119.4,466.3L116.6,472.9L112,479L102.5,484.2L103.8,488L105.8,487.4L108.3,492.7L109.4,492.7L108.5,494.4L108,493.9L105.5,494.3L102.6,496.2L102.7,496.7L98,496.9L97.6,499.8L95.8,499.6L95.6,500.7L92,500.3L83.2,497.3L83.4,489.7L74.1,488.9L75.7,479.4L99.9,470.8L101.3,458.5L101.8,457.9L102,460.4L102.6,460.4L104.5,458.3Z","cx":97.3,"cy":480.8,"x":74.1,"y":457.9,"w":45.4,"h":42.8,"borough":"E09000018"},{"code":"E05013814","name":"Figge's Marsh","d":"M423,537.7L422.2,539.2L424.8,537.1L426.5,539.6L426.3,540.9L428.8,539.6L430.5,541.8L425.7,544.9L425.6,546.6L426.5,547.7L424.3,548.7L421.6,551.5L417.8,549.6L418.8,546.8L416.5,548.1L414.4,547.4L414.3,546.4L413.5,547L412.5,546.2L411.3,547.2L412.8,551.2L409.4,551.5L409.3,548.3L408.7,547.9L410,545.1L405.3,542.2L407.4,540.3L408.5,541.5L409.3,539.9L408.1,539.6L406.2,534.6L413.1,534L412.5,521.1L414,522.2L414.8,526.8L419.9,534.4L423,537.7Z","cx":416.7,"cy":540.3,"x":405.3,"y":521.1,"w":25.2,"h":30.5,"borough":"E09000024"},{"code":"E05013639","name":"Finchley Church End","d":"M389.6,182.3L375.5,193.7L372.1,194.7L367.7,194.3L358.7,196.2L355.9,194.7L353.4,191.3L352,186.9L348.2,184.8L342.4,179.5L337.1,176.8L337.5,175.9L343.1,178.7L345.7,177.2L346.3,178.7L349.9,179.7L353.1,177.2L354.6,173.4L354.9,173.8L355.5,172.4L356.5,172.8L356.8,171.7L356.2,171.1L358.5,165.4L361.1,167.3L364,166.9L366.4,164.2L365.8,162.7L367.8,161.2L367.7,159.7L369.5,159.1L370.2,157.4L376.8,164.1L373.4,168.2L373.4,169.6L375.6,171.7L375.2,172.2L389.6,182.3Z","cx":366.6,"cy":180.3,"x":337.1,"y":157.4,"w":52.5,"h":38.8,"borough":"E09000003"},{"code":"E05013703","name":"Finsbury Park","d":"M480.7,241.9L486.4,248L483.1,249.7L481.7,247.8L479.8,247L477.9,247.4L474.8,257.3L472.7,253.9L465.9,258.5L462.8,255.2L463.6,253.5L467.9,250.5L463.8,244L465.1,243.6L467.2,241.5L467.1,240.8L467.7,241.5L471,238.8L471.7,237.1L472.4,237.9L473.5,236.9L472.7,236L473.2,234.7L480.1,242.1L480.7,241.9Z","cx":472.9,"cy":247,"x":462.8,"y":234.7,"w":23.6,"h":23.8,"borough":"E09000019"},{"code":"E05013887","name":"Forest","d":"M622,206.5L622.7,206.7L622.6,209.9L625.1,217.9L625,223.4L623.9,227.2L622.8,227.2L620.4,221.9L614.7,225L613.4,222.7L602.3,232L598,234.1L592.8,231L589.7,233.5L589.3,232.8L588.1,234.1L585.6,234.7L584.1,231.4L592.8,224.6L589.2,221.9L591.1,219.2L595.5,217.2L597.4,214.9L611.4,205.7L622,206.5Z","cx":606.8,"cy":219.9,"x":584.1,"y":205.7,"w":41,"h":28.9,"borough":"E09000031"},{"code":"E05013911","name":"Forest Gate North","d":"M646.3,260L647,268.2L638.2,269.7L622.2,274.2L622.7,272.2L622.2,272.3L620.4,268.5L624.4,265.9L623.7,264L629.8,260.7L628.6,258.5L631.1,258.5L631.3,257.3L632.1,257.1L632.6,259.6L634.4,259.6L634.6,262.4L642.6,261.3L646.3,260Z","cx":633.6,"cy":266.2,"x":620.4,"y":257.1,"w":26.7,"h":17.1,"borough":"E09000025"},{"code":"E05013912","name":"Forest Gate South","d":"M650.2,273.7L636.1,276.5L636,282.6L632.2,282.8L631.5,286.4L628.1,286.4L627.2,287.2L627.5,286.4L625.9,286L620.5,286.8L617.7,289.3L614.3,280.3L614.4,279.4L617.7,277.5L617.4,276.9L619.8,276.2L619.4,275.2L638.2,269.7L647,268.2L656.4,271.2L650.2,273.7Z","cx":631.2,"cy":277.5,"x":614.3,"y":268.2,"w":42,"h":21.1,"borough":"E09000025"},{"code":"E05013722","name":"Forest Hill","d":"M549.8,460.6L550.2,460.8L543,475.4L541.2,482.6L541.5,491.4L538.2,492.5L534,496.9L531.8,497.3L519.2,495.2L518,494.4L522.5,493.1L525.2,491L528.1,484.9L529.3,484L528.6,477.9L527.4,477.1L528.6,475.4L529.7,467.6L531.2,464.6L536.1,459.8L540.5,462.9L546.3,460.2L549.8,460.6Z","cx":535.6,"cy":478.4,"x":518,"y":459.8,"w":32.2,"h":37.5,"borough":"E09000023"},{"code":"E05013589","name":"Fortis Green","d":"M433.2,174.7L433.4,175.5L435,174.5L436.6,178.3L435.9,178.7L436.8,181.2L437.5,180.8L438.5,183.7L437.8,184.2L438.5,185.6L438.2,186.1L437.7,185.2L437.5,186.5L435.1,188.4L434.7,187.7L434.3,188L434.3,190.1L432.3,189L427.6,190.9L427.5,197.6L426.1,197.7L426.7,200L428.8,200L428.9,201.2L425.5,202.5L424.8,202.1L421,206.9L417.5,206.3L417.1,206.7L419.3,208.6L420.1,210.5L417.5,208.4L417,209L413.5,208.2L413.7,207.3L411.2,204.6L413.3,202.9L415.3,204.4L417.3,202.1L417.3,201.2L418.3,201.2L417.9,200.4L416.4,200.4L416.5,197.7L414.6,197.7L414.6,194.5L416.4,190.1L415.2,189.7L412.7,179.7L419.2,164.6L422.7,169.6L423.3,176.4L425.2,179.7L433.2,174.7Z","cx":423,"cy":187.2,"x":411.2,"y":164.4,"w":27.4,"h":46.1,"borough":"E09000014"},{"code":"E05013656","name":"Fortune Green","d":"M380.7,264.5L376.2,266.4L375.8,265.9L369,267L370.5,271.4L370.1,273.9L367.6,273.9L363.1,275.8L351.5,260.2L355.6,257.1L357,259.2L360.4,257.9L360.6,260L368.2,258.3L368.1,256.5L369.5,253.1L371.3,252.6L373.4,257.7L380.7,264.5Z","cx":365.6,"cy":264.3,"x":351.5,"y":252.6,"w":29.3,"h":23.2,"borough":"E09000007"},{"code":"E05013640","name":"Friern Barnet","d":"M433.2,145.4L440.1,155.5L434.5,158.2L436.2,167.9L433.2,174.7L425.2,179.7L423.3,176.4L422.7,169.6L419.5,165.2L419.7,164.4L415.4,163.9L411.8,164.4L411.4,163.9L415.4,161.8L414.4,158.9L415.2,158.5L413,152.4L416.5,150.4L415.7,142.9L413.9,137L416.2,135.1L414.1,126.9L415.9,125L417,126L417.7,125.6L418.6,124.7L418,123.3L419.2,122.6L433.2,145.4Z","cx":424.9,"cy":152.6,"x":411.4,"y":122.6,"w":28.7,"h":57.1,"borough":"E09000003"},{"code":"E05013657","name":"Frognal","d":"M396,265.7L394.5,264.9L391.4,266.6L390.9,272.9L391.6,274.1L390.9,274.4L388.8,270.4L384.4,265.9L380.7,264.5L373.4,257.7L371.3,252.6L371.4,249.7L373.6,250.1L378,247.8L379,245.5L385.2,246.5L392.8,257.3L392.8,259.4L395.9,264.2L396,265.7Z","cx":383.7,"cy":257.5,"x":371.3,"y":245.5,"w":24.8,"h":28.9,"borough":"E09000007"},{"code":"E05013738","name":"Fulham Reach","d":"M361.5,394.9L355.6,397.4L350.9,398.3L344.8,396.4L345.4,398.7L341.3,400.4L341.9,402.1L340.5,403.3L341.6,409.2L339.9,409.6L339.5,399.7L336.2,391.9L341.2,388.6L348.6,385.4L348.6,384.4L351.2,384.1L352.8,387.9L351.8,388.1L352.1,389L351.2,389.4L352.3,390L352.8,391.5L355.2,390.2L355.5,390.7L357.8,390.2L359.3,393.2L361,393L361.5,394.9Z","cx":347.2,"cy":393.7,"x":336.2,"y":384.1,"w":25.3,"h":25.5,"borough":"E09000013"},{"code":"E05013739","name":"Fulham Town","d":"M366.6,411.8L366.6,417.4L360.4,419.5L357.4,423.3L355.4,423.6L354.1,418.9L358.5,413.8L355.7,408.8L362.9,405L365.7,408.6L366.6,411.8Z","cx":360.8,"cy":414,"x":354.1,"y":405,"w":12.6,"h":18.7,"borough":"E09000013"},{"code":"E05011243","name":"Fullwell","d":"M694.6,180.4L693.8,183.1L693.2,182.7L693,183.3L705.3,186.9L698.5,201.2L694.3,199.1L694.1,197.9L691.1,196L687.4,198.7L679.3,191.8L667,191.3L662.3,193.7L648.9,186.5L654,179.7L658.4,175.3L668.2,177.9L670.9,172.8L682.3,176.6L683.4,177.6L694.6,180.4Z","cx":677.8,"cy":186.1,"x":648.9,"y":172.8,"w":56.4,"h":28.4,"borough":"E09000026"},{"code":"E05013776","name":"Fulwell & Hampton Hill","d":"M189,486.8L193.1,488.2L193.8,489.9L196.9,488.7L199.2,488.7L200.9,489.9L205.1,499.8L203.3,500.5L202.4,498.6L198.9,501.1L201.8,505.5L195.4,503.6L194.4,507.4L195.4,512.3L192.5,515L190,514.2L186.8,516.5L186.4,514.4L184.2,515L183.4,512.9L179.1,514.1L177.7,513.5L175.1,507.2L175.7,503.6L173.1,502.1L173.6,501.3L172.2,500L172.6,499.2L169.7,493.1L168.6,492L158.8,488L163.1,484.7L176.3,480.7L181.9,485.3L185.8,486.5L185.5,487.2L186.5,487.8L187,486.5L189,486.8Z","cx":183.8,"cy":497.3,"x":158.8,"y":480.7,"w":46.3,"h":35.8,"borough":"E09000027"},{"code":"E05014013","name":"Furzedown","d":"M440.4,497.5L439.8,509.3L441.1,515.4L438.1,518.8L433.2,521.7L427.4,517.7L425,517.7L415,512.5L410.6,508.5L415.3,507L425.5,501.9L427.5,498.6L427.8,495.2L440.4,497.5Z","cx":429.5,"cy":508.6,"x":410.6,"y":495.2,"w":30.6,"h":26.5,"borough":"E09000032"},{"code":"E05013641","name":"Garden Suburb","d":"M413.3,202.9L409.4,205.4L407.5,209.2L406.6,209.5L406.8,215.4L405.3,218.9L403.8,217.9L403.7,224.4L401.6,225.1L401.6,227.4L399,229.9L397.8,233.3L393.4,231L393.2,232L390,232.6L390.2,233.1L388.7,234.5L385.5,230.9L384.5,232.2L383.3,231.4L384.1,229.3L376.7,224.6L379.7,222.7L372.7,219.6L376.4,216.8L374.3,213.9L368.8,209.2L368.7,204.4L369.5,202.1L368.4,201.4L368.7,196.8L367.7,196.8L367.7,194.3L372.1,194.7L375.5,193.7L385.7,185.6L392.2,190.3L390.6,197.7L392.3,196.4L394.4,197.6L396.3,196.4L399.3,198.9L404.4,199.3L404.3,195.8L405.4,195.1L413.3,202.9Z","cx":388.8,"cy":209.9,"x":367.7,"y":185.6,"w":45.6,"h":48.9,"borough":"E09000003"},{"code":"E05014061","name":"Gascoigne","d":"M693.6,305.8L694,308.5L690.5,309.5L689.4,302.6L690.7,301.1L693.6,305.8ZM702,297.7L704.2,300.1L710.3,298.4L716.7,302.4L723.6,305.3L700.3,312.3L696.9,308.7L694.9,308.5L693.8,304.5L692,302L692.5,300.9L691.4,300.1L694.6,301.3L700.3,297.7L702,297.7Z","cx":705.4,"cy":304.6,"x":691.4,"y":297.7,"w":32.2,"h":14.7,"borough":"E09000002"},{"code":"E05014103","name":"Gipsy Hill","d":"M498.6,494.6L499.9,499.8L502.6,501.3L502.4,502.6L504.9,506.6L505.5,511.8L507.6,511L508.5,513.9L509.8,513.5L510.9,514.4L511.3,517.7L502.1,518.8L494.6,512.5L489.6,512.3L487.9,508.5L492.7,506.6L493.9,504.9L491.2,503.4L491,502.3L489,502.3L488.9,500.9L489.7,500.9L484,496.4L485.9,496L492.1,496.9L492.1,494.1L496.2,494.3L496.8,495.2L498.6,494.6Z","cx":498.1,"cy":507,"x":484,"y":494.1,"w":27.6,"h":24.7,"borough":"E09000022"},{"code":"E05009396","name":"Golborne","d":"M358.8,315.4L360.4,315.9L362.7,320.5L365.6,322L366.8,325.8L362.3,325.8L358.5,330L355.4,331.5L349.1,314.4L352.1,314L358.8,315.4Z","cx":357.3,"cy":321.8,"x":349.1,"y":314,"w":17.6,"h":17.5,"borough":"E09000020"},{"code":"E05013642","name":"Golders Green","d":"M372.7,219.6L371.4,220.4L370.8,217.9L367.1,220L365.9,219.8L365.3,217.5L364.7,217.5L362.1,220.6L362.6,221.2L358.7,224.6L359.4,225.1L357.8,227.1L354.8,228.4L350.8,222.9L345.7,219.1L350.4,215.4L353.5,210.7L357,199.1L359.1,197.2L367.7,194.3L367.7,196.8L368.7,196.8L368.4,201.4L369.5,202.1L368.7,204.4L368.8,209.2L374.3,213.9L376.4,216.8L372.7,219.6Z","cx":361,"cy":211.8,"x":345.7,"y":194.3,"w":30.7,"h":34.1,"borough":"E09000003"},{"code":"E05011244","name":"Goodmayes","d":"M758,235.6L757.5,238.7L755.6,239.2L752.4,242.8L745.4,245.1L745.2,245.9L746.1,246.3L743.5,252.6L747.1,253.7L745.2,256L743.1,256L743.1,256.9L738.6,256.2L737.9,257.7L740.2,260L736.9,264.9L732.8,264.9L732.6,265.9L731.7,266.3L733.1,261.3L732,257.9L733.9,254.6L734.2,249.5L721,253.7L722,249.3L715.3,251.4L712.9,246.3L713.5,246.1L712.6,245.5L713.2,244.6L720,243.4L745.4,235L745.6,238.3L758,235.6Z","cx":735.5,"cy":247.1,"x":712.6,"y":235,"w":45.4,"h":31.2,"borough":"E09000026"},{"code":"E05011103","name":"Goose Green","d":"M525.4,436.8L526.2,443.3L522.2,452L519,451.1L518.1,456.2L514.9,460L512.6,453.7L507.8,452.8L505.5,451.1L504.6,449L504,449.5L502.9,449L506.3,443.8L511,433.9L512.2,433.9L512.9,437.5L513.9,437.5L514.8,436.2L519,435.4L518.7,434.5L521,433.7L522,435.1L522.3,437.5L525.4,436.8Z","cx":515.4,"cy":445.2,"x":502.9,"y":433.7,"w":23.3,"h":26.3,"borough":"E09000028"},{"code":"E05013971","name":"Gooshays","d":"M916.2,157.4L911.7,161.2L884.7,175.1L882.5,172.2L877.6,174.9L874.3,167.5L871.8,168.6L866.7,166.1L865.8,163.3L866.7,162L864.8,159.9L858,163.3L855.4,157.2L854.3,156.4L856.9,155.5L853.8,151.9L850.3,155.9L849.5,152.1L850.6,151.7L849.9,150.5L853.3,148.1L851.3,147.3L854.3,144.3L853.2,139.9L853.9,137.8L852.5,133.8L852.6,128.1L851.3,124.1L855.8,123.5L862,119.5L867.4,117.6L869.8,114.6L885.6,129L903.8,141.8L909.6,147.9L911.1,151.5L916.2,157.4Z","cx":879.2,"cy":147,"x":849.5,"y":114.6,"w":66.7,"h":60.5,"borough":"E09000016"},{"code":"E05014062","name":"Goresbrook","d":"M779.9,290.8L780,303.7L779.4,305.1L771.5,306L769.4,307.6L765.3,305.5L755.4,304.9L754.9,296.3L755.6,291.4L749,291.9L748.9,289.3L779.5,286L779.9,290.8Z","cx":767.3,"cy":296.3,"x":748.9,"y":286,"w":31.2,"h":21.5,"borough":"E09000002"},{"code":"E05013658","name":"Gospel Oak","d":"M428.8,264L430,272.3L427,268.5L423.1,271.6L421.7,269.3L418.8,268.2L415.3,269.1L414.3,272.3L412.8,272.5L405.7,265.3L406.1,263L408.9,262.1L407.6,260.4L416.5,258.5L423.7,259L426.7,261.1L428.8,264Z","cx":417.9,"cy":264.7,"x":405.7,"y":258.3,"w":24.3,"h":14.3,"borough":"E09000007"},{"code":"E05013681","name":"Grange Park","d":"M510.1,84.9L510.3,87.2L512.3,88.1L513.4,90.2L514.5,90L514.5,91.5L508.9,91.4L504.9,100.3L503.2,101.4L501.4,100.9L498.7,104.1L498.1,105.6L498.6,108.5L496.6,111.1L495.5,110.8L495.3,111.7L493.7,112.1L493.6,111L492.8,110.8L493.5,108.1L493,107.1L490.3,106.6L489.9,107.3L489.2,107.1L489.4,106.2L486.2,105.8L487.9,99L487.3,98.6L483.5,100.3L479.4,100.7L478.7,99L476.8,99.5L474.5,99L473.8,96.1L474.3,95.7L473.4,94.8L474.5,93.6L475.1,94.2L476.3,92.5L474.7,91.2L474.8,88.3L480.5,87L486.7,83.7L489.1,88.1L491,85.6L491.7,86L496.3,76.1L498.6,74.6L499.3,74.8L499.3,75.7L501.4,75.4L501.4,76.7L504.3,78.4L507.4,78.6L508.5,80.7L509.6,80.5L510.1,84.9Z","cx":494.3,"cy":92.4,"x":473.4,"y":74.6,"w":41.1,"h":37.5,"borough":"E09000010"},{"code":"E05013815","name":"Graveney","d":"M438.1,518.8L427.5,530.8L423,537.7L419.9,534.4L414.8,526.8L414,522.2L412.5,521.1L413,517.7L415,512.5L425,517.7L427.4,517.7L433.2,521.7L438.1,518.8Z","cx":422.5,"cy":524.1,"x":412.5,"y":512.5,"w":25.6,"h":25.1,"borough":"E09000024"},{"code":"E05013934","name":"Green Lane & St James","d":"M290.1,551.5L286.7,552.5L289.8,554L291.1,558.8L292.6,560.9L296.4,563.7L299.8,562.6L300.8,561.1L301.1,562.8L302.3,562.8L303.4,564.5L303.6,566L297.7,568.1L284.7,577.4L283.6,572.5L279.3,566.2L275.1,552.7L276.1,551.5L276.1,549.8L277.2,550.4L279,548.9L280.8,549.6L282.3,547.9L282.4,546.6L285.6,549.5L290.1,551L290.1,551.5Z","cx":286.8,"cy":562,"x":275.1,"y":546.6,"w":28.5,"h":30.8,"borough":"E09000021"},{"code":"E05013913","name":"Green Street East","d":"M654.9,284.7L655.8,286.6L654.7,286.2L650.6,288.5L656.7,294L646.3,297.8L643.1,289.9L642.7,282.4L641.3,276L650.2,273.7L651.2,277.3L652.5,276.9L653,277.5L654.9,284.7Z","cx":648.3,"cy":285.4,"x":641.3,"y":273.7,"w":15.4,"h":24.2,"borough":"E09000025"},{"code":"E05013914","name":"Green Street West","d":"M646.3,297.8L636.3,301.7L635.8,300.1L637.2,299.8L636.5,297.5L637.5,297.1L636.9,295.4L635.2,295.8L635,294.4L630.5,295.2L631.1,292.5L630.3,292.1L630.4,288.3L629.5,288.3L629.5,286.4L631.5,286.4L632.2,282.8L636,282.6L636.1,276.5L641.3,276L642.7,282.4L643.1,289.9L646.3,297.8Z","cx":638.1,"cy":289.2,"x":629.5,"y":276,"w":16.8,"h":25.7,"borough":"E09000025"},{"code":"E05013523","name":"Greenford Broadway","d":"M171.1,289.5L189.7,295.2L188.5,297.8L190.3,298.2L189.1,299.2L188.1,298.8L187.3,301.3L188.7,302.2L186.7,304.5L189.4,306.2L187.1,312.9L191.1,313.5L190.4,314.6L191.1,319.2L188.5,324.1L186.2,323.7L185.5,325.1L184.6,324.9L185.1,322.4L180.8,321.3L182.2,318.4L181.2,316.9L182.8,314.4L179.6,312.7L179.5,311.6L177.6,311.6L176.3,312.7L175.7,312.5L175.9,311.6L173.6,311L174,308.9L172.6,306.4L169.3,303.9L160.5,302.8L158.5,310.2L153.1,309.3L155.6,302.8L153.8,303L155.7,295.9L157.6,296.5L157.7,292.9L160,293.5L160.5,290.8L159,291.4L157.9,289.3L158.8,284.5L164.9,287.8L171.1,289.5Z","cx":174.1,"cy":302.1,"x":153.1,"y":284.5,"w":38,"h":40.5,"borough":"E09000009"},{"code":"E05013546","name":"Greenhill","d":"M228.9,209L225.1,212.2L217.5,215.6L217.5,216.2L209.7,218.1L205.7,217.9L201.9,213.9L199.4,214.1L199.3,211.8L201.5,209.5L208.6,209.4L208.2,204.6L209.8,204.4L209.7,203.3L208.8,203.3L207.4,200.8L216.6,198.1L215.6,197.4L216.3,196.4L223.3,202.5L228.9,209Z","cx":214.5,"cy":208.7,"x":199.3,"y":196.4,"w":29.6,"h":21.9,"borough":"E09000015"},{"code":"E05014080","name":"Greenwich Creekside","d":"M591.3,397L592,399.3L592.6,399.3L593.2,403.1L588.5,406.5L581.7,406.9L582.6,404.4L586.6,400L583.2,398.5L583.2,397.2L588.4,397.8L591.2,397.6L591.3,397ZM584.9,400.4L584.1,402.5L583.3,401.6L580.2,402.9L580.3,403.5L577.1,403.9L576.8,401.8L573.1,400.4L575.1,392.8L582.1,396.6L582.9,399.5L584.9,400.4Z","cx":587.8,"cy":402.1,"x":581.7,"y":397,"w":11.6,"h":9.9,"borough":"E09000011"},{"code":"E05014081","name":"Greenwich Park","d":"M599,394.5L602,400.6L606,399.3L610.5,404L618.7,416.2L603.3,418.9L594.7,417L589.4,417.9L587.8,417.2L586.5,419.1L588.8,424.4L586.5,426.1L584.7,423.6L581.7,422.3L582.2,421L581.5,418.5L580.3,417.9L580.7,416.6L577.6,414.5L577.2,412.2L579.3,412.2L580,411.5L580.1,409.8L581.9,409L581.7,406.9L588.5,406.5L593.2,403.1L592.6,399.3L592,399.3L591.3,397L599,394.5Z","cx":597.5,"cy":410.3,"x":577.2,"y":394.5,"w":41.5,"h":31.6,"borough":"E09000011"},{"code":"E05014082","name":"Greenwich Peninsula","d":"M638.7,377L640,382L639.8,384.1L642.1,390.2L637.8,391.5L633.3,394.1L628.3,394.9L625.1,390.2L619.3,385.8L611.7,376.8L606.7,378.7L605.5,374.4L604.1,374.4L603.2,372.3L601.8,365.6L602.3,359.9L605.3,356.7L608.3,355.9L610.4,356.8L620.8,370.9L625.7,374.7L629.8,375.7L630.4,376.8L630.7,376.1L633.1,377L638.7,377Z","cx":620.6,"cy":376.7,"x":601.8,"y":355.9,"w":40.4,"h":39,"borough":"E09000011"},{"code":"E05013740","name":"Grove","d":"M336.7,367.5L338,378.2L336.2,377.2L332.4,377.4L332.3,375.7L326.5,375.9L326.4,368.1L327.2,366.9L326.5,364.3L335.8,360.7L336.7,367.5Z","cx":332.1,"cy":369.7,"x":326.4,"y":360.7,"w":11.6,"h":17.5,"borough":"E09000013"},{"code":"E05013888","name":"Grove Green","d":"M598,234.1L611.1,241.9L605.8,248.7L597.4,257.3L596,253.5L592.9,250.3L591.1,242.3L592.2,238.7L593.9,236.4L594.5,232.2L598,234.1Z","cx":599.5,"cy":244.1,"x":591.1,"y":232.2,"w":20,"h":25.1,"borough":"E09000031"},{"code":"E05013723","name":"Grove Park","d":"M639.2,476.2L638.2,478.7L638.5,481.7L633.7,482.8L634.4,487.6L636.6,486.1L638.4,486.3L638.8,489.5L638.2,490.8L641.6,493.5L641.3,494.4L641.8,493.5L642.9,494.8L643.8,494.3L644.3,495.2L649,492.2L648.8,495.8L649.8,501.7L649.1,502.6L650,503L650.7,508.5L647.2,512.9L634.6,500.3L629.5,504.3L628.5,504.3L629.5,502.6L628.3,501.9L628.1,497.1L629,496.5L629,495.4L622.7,487.8L610.9,468.9L620.8,468L630.9,464L631.6,465.7L629.5,466.7L629.8,471L628.8,471.4L629.8,474.3L634.7,476.2L639.2,476.2Z","cx":632,"cy":487.4,"x":610.9,"y":464,"w":39.8,"h":48.9,"borough":"E09000023"},{"code":"E05013759","name":"Hackbridge","d":"M422.1,598.7L418.4,606.2L418,603.9L416.7,603.1L417.2,602.4L416.4,600.3L413.2,598.6L411.2,598.6L409.4,593.2L410.2,590.9L409.5,589.4L410.1,586.9L409.6,582.4L410.7,580.5L408.6,578.4L413.7,578.8L416.9,576.9L417.2,575.9L423.6,575L422.1,598.7Z","cx":416.9,"cy":588.6,"x":408.6,"y":575,"w":15,"h":31.2,"borough":"E09000029"},{"code":"E05009372","name":"Hackney Central","d":"M538,265.9L539.3,270.8L539.9,270.4L541.3,274.1L542.9,273.7L543.6,275.2L539.2,275.6L538.7,282.2L530.2,282.8L529.9,281.3L528,281.3L527.8,278.8L529.1,278.8L527.1,275L522.6,274.4L524.2,273.3L523.2,267.8L537.8,264.4L538,265.9Z","cx":532.8,"cy":273.5,"x":522.6,"y":264.4,"w":21,"h":18.5,"borough":"E09000012"},{"code":"E05009373","name":"Hackney Downs","d":"M536.5,247.6L538.2,253.3L538.4,257.5L541.7,264.7L538,265.9L537.8,264.4L528.7,266.4L525.5,259.6L523.7,259.4L519.6,245.7L525.2,246.7L527.8,245.3L532.9,246.3L535.4,245.3L536.5,247.6Z","cx":530.8,"cy":255.4,"x":519.6,"y":245.3,"w":22.1,"h":21.1,"borough":"E09000012"},{"code":"E05009374","name":"Hackney Wick","d":"M584,266.8L581.9,267L584.8,282.8L580.8,282.2L574,282.8L570,284.7L569.3,283.2L565,280.1L559.7,285.7L560.1,286.6L548.2,287L546.6,286L546.6,284.3L548.5,282.4L549.8,279.6L555,279L554.6,275.6L556.7,275.8L555.8,272.5L564.9,269.7L569.3,266.8L578.5,266.1L580,266.6L581.1,265.1L582.5,266.6L584,266.8Z","cx":567.9,"cy":276.8,"x":546.6,"y":265.1,"w":38.3,"h":21.9,"borough":"E09000012"},{"code":"E05013972","name":"Hacton","d":"M880.1,268.3L876.7,271.4L874.5,271.6L870.6,274.4L868.4,277.9L865.9,279.8L866.2,280.5L862,284.3L862.2,285.1L857.7,283.4L856.7,284.1L852,282.4L852,280.7L851,281.3L846.8,280L846.5,281.3L848.1,282.2L847.4,283.6L844.3,282.4L844.9,277.5L847.8,268L876.4,257.7L876.9,264.4L880.1,268.3Z","cx":861.6,"cy":271.8,"x":844.3,"y":257.7,"w":35.8,"h":27.4,"borough":"E09000016"},{"code":"E05009375","name":"Haggerston","d":"M530.5,297.7L529.9,298.8L530.7,301.8L527.4,302.6L527.1,302L525.8,305.8L518.1,306.8L516,308.3L514.7,311.2L512.1,310.4L513,305.5L513.3,295.8L511.7,295.4L512.2,291.6L513.5,291L513.5,292.1L517.8,291.8L516.6,290.6L521.2,291L521.2,291.6L526.5,291.4L531.2,295.6L530.5,297.7Z","cx":520.4,"cy":299.3,"x":511.7,"y":290.6,"w":19.4,"h":20.6,"borough":"E09000012"},{"code":"E05011245","name":"Hainault","d":"M779.9,176.8L778,176L772.4,181.4L766,167.7L761.3,163.9L757.3,158.7L739.9,170.9L734.1,173.6L730.4,166.1L729.8,166.3L728.9,162.3L715.2,167.3L717,158L716.5,154.3L713.7,149L720.6,145.6L723,150.7L726.8,149.2L727.3,150.9L734.2,148.3L742.6,142.7L744.8,145.6L745.7,145.6L751.5,141.6L753.7,137.6L756.9,135.5L757.4,134.2L765.2,130.2L768.1,130.2L775.4,142.9L779.1,151.7L780.5,158.3L780.4,166.5L781.4,169.4L779.9,176.8Z","cx":752.9,"cy":155.1,"x":713.7,"y":130.2,"w":67.8,"h":51.2,"borough":"E09000026"},{"code":"E05013889","name":"Hale End & Highams Park South","d":"M623.8,167.5L619.8,176.6L619.2,183.7L615.3,182.1L606,176.2L600.5,174.3L591.7,174.1L591.1,169L589.3,169L591.8,166.1L593.6,165.8L593.6,163.1L594.5,162.7L592,161.6L591.9,160.8L594.9,160.4L595.4,159.1L598.4,158.2L598,156.6L601.6,155.1L603.8,160.4L605.4,161L606.1,160.2L606.3,160.8L607.7,160.4L608,162L611.5,161.6L615.1,158L616.1,158.9L617.7,158.9L617.6,162.2L620.8,163.5L621.4,162.5L623.6,163.9L622.6,166.1L623.8,167.5Z","cx":607.8,"cy":168.7,"x":589.3,"y":155.1,"w":34.5,"h":28.5,"borough":"E09000031"},{"code":"E05013777","name":"Ham, Petersham & Richmond Riverside","d":"M269.5,461.5L269.2,466.7L273.1,470.1L286.6,478.5L286.6,480.9L289.2,484.2L295,484.7L300.8,486.5L291.1,492.9L283.5,499.2L272.2,513.9L264.9,517.1L260.2,500.3L257.3,500.5L256.8,505.1L255.2,505.3L254.4,502.8L247.1,495.8L246.5,496.2L246.9,497.7L242,495.8L241.4,498.1L240.8,498.1L239,496.9L239.4,496.4L237.4,494.4L236.3,494.3L232,501.9L226.4,498.4L221.3,496.7L217,492L215.9,485.7L214.6,483.2L215.3,483.2L213.4,480L213.4,476.4L214.6,474.3L223.3,469.1L233.6,467L242.2,463L245.7,457.9L245.9,456.2L245.7,453.9L243.1,448L243.9,446.7L244.6,447.8L245.4,446.1L246.9,448.4L248.1,447.8L251.3,451.4L250.1,452.4L253.6,457.5L254.2,457L255.1,457.7L253.5,460.2L254.5,460.8L263.2,462.9L267.3,462.7L269.5,461.5Z","cx":254,"cy":483.7,"x":213.4,"y":446.1,"w":87.4,"h":71,"borough":"E09000027"},{"code":"E05013741","name":"Hammersmith Broadway","d":"M338,378.2L344.5,378.2L344.6,382L350.2,382.7L351.8,384.1L348.6,384.4L348.6,385.4L341.2,388.6L336.2,391.9L333.5,386.5L328.6,383.9L326.5,383.5L326.4,382.2L327.3,375.9L332.3,375.7L332.4,377.4L336.2,377.2L338,378.2Z","cx":337.1,"cy":382.8,"x":326.4,"y":375.7,"w":25.5,"h":16.2,"borough":"E09000013"},{"code":"E05013659","name":"Hampstead Town","d":"M416.5,258.5L407.6,260.4L408.9,262.1L406.1,263L405.7,265.3L404,264L396,266.8L395.9,264.2L392.8,259.4L392.8,257.3L388.6,252L385.9,247L379,245.5L379.8,241.1L383.9,237.9L386.7,236.8L386.8,235.8L390.2,233.1L390,232.6L393.2,232L393.4,231L397.8,233.3L399,229.9L400,231.2L400,238.1L409.4,247L412.2,252.9L413.2,253.3L416.5,258.5Z","cx":397.5,"cy":248.7,"x":379,"y":229.9,"w":37.5,"h":36.9,"borough":"E09000007"},{"code":"E05013778","name":"Hampton","d":"M148.3,515L161.5,512.7L161.7,513.5L162.7,513.3L162.7,512.3L164.5,513.3L166.1,511.6L166.8,512.7L169.7,512.9L169.9,513.9L171.3,513.9L171.4,512.9L173.7,513.3L174.2,512.1L179.1,514.1L183.4,512.9L184.2,515L186.4,514.4L186.8,516.5L187.3,522.6L185.9,523L185.7,525.1L187.4,526.2L186.5,530.6L188.6,531.6L187.8,533.3L193.9,534.2L194.4,532.3L198.6,534L199.5,533.1L201.4,533.5L204.8,535.6L206.5,534.6L207.8,536.9L205.8,539.2L227,535L228.2,537.8L234.1,535L234.6,535.9L228.8,543.9L227.1,553.8L231.1,555.9L230.3,557.8L234.7,559.2L233.7,561.1L225.6,569.6L218.3,571.9L215,570.2L201.1,549.6L197.3,548.1L190.7,543L183.8,536.9L183.4,535L179,532.9L172.4,533.5L161.5,539.4L155,540.7L150.2,539.4L149.8,536.3L143.4,535.9L142.1,528.3L147,528.3L145.1,518.8L146.4,517.3L139,511.2L141.2,511.6L147.9,516.3L148.3,515Z","cx":189.6,"cy":537.6,"x":139,"y":511,"w":95.7,"h":60.9,"borough":"E09000027"},{"code":"E05013779","name":"Hampton North","d":"M177.7,513.5L174.2,512.1L173.7,513.3L171.4,512.9L171.3,513.9L169.9,513.9L169.7,512.9L166.8,512.7L166.1,511.6L164.5,513.3L162.7,512.3L162.7,513.3L161.7,513.5L161.5,512.7L148.3,515L149.4,512.3L144.3,502.3L145.9,501.9L145.1,500.5L150.5,494.3L158.8,488L168.6,492L169.7,493.1L172.6,499.2L172.2,500L173.6,501.3L173.1,502.1L175.7,503.6L175.1,507.2L177.7,513.5Z","cx":160.4,"cy":502.8,"x":144.3,"y":488,"w":33.4,"h":27,"borough":"E09000027"},{"code":"E05013780","name":"Hampton Wick & South Teddington","d":"M232,501.9L235.9,504.5L239.1,508L242,515L239.2,526.4L238.4,538L238.7,551.2L237.8,555.3L234.7,559.2L230.3,557.8L231.1,555.9L227.1,553.8L228.8,543.9L234.6,535.9L234.1,535L228.2,537.8L227,535L229,534.4L228.4,528.5L227.1,527.6L226,524.1L224,522.4L225,520.9L214.2,513.3L214.1,511.8L215.4,511L215.5,504.2L217,503.8L217.4,504.7L219.2,503.4L219.5,504.5L221.3,503.8L221.1,501.3L222.1,500.3L223.9,502.1L225.3,499.6L227.1,500.2L227.3,499.4L232,501.9Z","cx":230.7,"cy":523.8,"x":214.1,"y":499.4,"w":28,"h":59.8,"borough":"E09000027"},{"code":"E05013524","name":"Hanger Hill","d":"M270.6,292.7L275.3,298.4L273.9,302L271.5,303.2L270.9,302L268.6,302.8L268,301.5L261.6,304.9L266,309.6L269.2,310.4L267.9,314L268.4,320.5L271.5,320.5L272,324.3L271.4,326.2L272.4,327L272.9,326.2L274.5,327.5L267.9,335L265.6,336.3L250.1,336.9L250,335.9L247,335.5L250.8,331.5L250.1,331.2L250.8,329.4L249.7,329.3L250.4,321.3L246.4,321.1L245.6,322L242.6,322.4L240.8,323.7L239.1,321.8L237.9,310.8L237.2,310.2L234.3,310.6L234.5,307.2L235.3,307.2L235.6,308.5L237.9,308.7L239.1,305.3L240.7,304.7L244.9,305.3L253.3,298L256.8,298.8L264.9,295.2L269.8,291.8L270.6,292.7Z","cx":257,"cy":315.9,"x":234,"y":291.8,"w":41.3,"h":45.1,"borough":"E09000009"},{"code":"E05013525","name":"Hanwell Broadway","d":"M225.7,339.7L225.9,344.5L214.4,347L217.9,357.2L211.8,360.1L213.3,361.8L209.6,365L210.8,366.2L211.5,365.4L212.9,366.2L216.7,372.8L213.6,374.7L207.2,372.5L202.6,368.3L196.6,359.9L197.5,358.9L195,355.5L197.3,354.2L198.2,350.2L198.2,347.3L197.1,344.3L206.6,342.2L225.7,339.7Z","cx":208.5,"cy":354.8,"x":195,"y":339.5,"w":30.9,"h":35.2,"borough":"E09000009"},{"code":"E05013615","name":"Hanworth Park","d":"M143,461.9L141.5,462.3L140.4,464L141.5,465.9L136.5,471.6L135.3,470.8L134.1,472.6L142.7,478.5L141.7,481.7L141,481.5L140.1,485.9L138.4,485.7L136.9,488.9L130.2,488.2L132.7,494.1L132.4,495.2L128.7,496.7L128.1,498.1L123.4,497.1L112,492.5L108.3,492.7L105.8,487.4L103.8,488L102.5,484.2L112,479L116.6,472.9L120.6,463.8L142.1,457.9L143,461.9Z","cx":125.3,"cy":479.2,"x":102.5,"y":457.9,"w":40.5,"h":40.2,"borough":"E09000018"},{"code":"E05013616","name":"Hanworth Village","d":"M169.5,476.2L156.9,485.5L156.8,486.5L158.9,488L150.5,494.3L145.1,500.5L145.9,501.9L144.3,502.3L149.4,512.3L147.9,516.3L141.2,511.6L139.1,511L140.9,513.1L137.1,511.4L132.8,510.6L124.2,512.7L120.6,510.2L119.9,507L117.7,503.6L115.1,502.4L115.8,500.7L113.5,499.8L114.2,498.3L109.4,496.5L110.1,494.8L108.5,494.4L109.4,492.7L112,492.5L123.4,497.1L128.1,498.1L128.7,496.7L132.4,495.2L132.7,494.1L130.2,488.2L136.9,488.9L138.4,485.7L140.1,485.9L141,481.5L141.7,481.7L142.3,480.4L141.7,480L142.7,478.5L134.1,472.6L135.3,470.8L136.5,471.6L141.5,465.9L140.4,464.8L141.5,462.3L145,461.5L146.8,464L146.9,466.7L150.8,469.7L154.6,471.2L154.9,473.5L156.4,474.7L157.7,474.7L159.1,473.5L161.5,473.7L162.4,472.4L169.5,476.2Z","cx":140.7,"cy":490.9,"x":108.5,"y":461.5,"w":61.4,"h":54.8,"borough":"E09000018"},{"code":"E05013568","name":"Harefield Village","d":"M59.9,149.8L67.7,153.4L70,155.3L61,161.2L63.5,165.2L63.4,170.9L57.6,175.3L56.2,183.5L54.9,185.8L54.8,188L53.5,189.6L55.1,190.7L54.3,193L54.4,196.2L45.5,192.2L35.9,186.3L32.6,181.6L12.6,181.2L11.2,174.3L11.9,172.6L13.1,172.2L15.2,173L16.5,170.3L15.6,168.8L15.4,165.8L13.1,158L14,157L13.4,153.8L14.7,147.5L15.7,146.5L17.7,138.9L15.8,135.9L13.2,134.9L12,132.8L12.1,129.8L14,127.9L15,124.3L12,120.5L13,116.9L15.6,114.6L16.7,114.6L19.8,116.7L22.2,116.3L26.1,123.5L39.7,133.2L48.6,142.9L59.9,149.8Z","cx":35.9,"cy":157.9,"x":11.2,"y":114.6,"w":58.9,"h":81.6,"borough":"E09000017"},{"code":"E05013501","name":"Harlesden & Kensal Green","d":"M331.3,294.4L333.1,296.3L335.3,296.5L335.1,295.8L335.7,295.8L337.1,301.8L327.7,302.6L327.4,303.7L326.7,303.2L323.1,304.3L316.3,304.7L312.6,303L311.4,301.5L307.3,300.3L301.6,300.5L300.4,287L305.8,290.2L306.4,288.9L305.6,288.5L305.9,287.8L310.4,285.1L311.2,282.8L313.2,282.6L313.5,286.2L315.1,286.2L318.3,291L320.9,290.4L322.1,291L322.5,289.3L324.9,290.4L330.8,295.4L331.3,294.4Z","cx":316.7,"cy":295.8,"x":300.4,"y":282.6,"w":36.7,"h":22.1,"borough":"E09000005"},{"code":"E05013973","name":"Harold Wood","d":"M913.4,174.1L917.8,175.5L924.1,175.7L924.5,179.7L923.3,183.8L926.7,198.3L928.7,200L938.4,215.1L941.9,224L944,225.1L944.4,226.9L939.7,227.4L934.5,226.7L930.7,225L922.6,219.4L916.9,217.3L888.3,213.7L856.4,188.8L872.6,181.4L871.3,178.7L874.3,177.2L874.2,175.9L877.6,174.9L882.5,172.2L884.7,175.1L911.7,161.2L916.2,157.4L917.8,159.1L917.4,160.1L910.1,162.5L910,165.6L909,165.6L908.3,168.1L905.1,171.3L906.2,172.4L909.8,172.4L913.4,174.1Z","cx":901.8,"cy":195.4,"x":856.4,"y":157.4,"w":88,"h":70,"borough":"E09000016"},{"code":"E05013590","name":"Harringay","d":"M487.9,199.1L486.6,200.2L487.9,205.4L486.7,206.9L488,217.9L487.5,218.3L487.7,221.3L490.7,230.7L481.2,241.5L478.6,239.6L480.1,221.7L479.6,217.7L478.5,213.7L473.5,204.8L471,197.4L481.9,193L483.4,196L487.9,199.1Z","cx":482,"cy":214.8,"x":471,"y":193,"w":19.7,"h":48.5,"borough":"E09000014"},{"code":"E05013547","name":"Harrow on the Hill","d":"M217.5,216.2L219.6,225.7L222.8,232.6L219.3,235.2L213.7,237.5L213.8,239.2L215,239.6L215.6,246.3L213.5,246.8L211.9,248.4L208.8,253.3L208.9,255.4L207.7,255L206.9,257.5L197.4,255.4L192.8,251.6L186.7,241.7L190.6,236.6L186.1,233.9L188.3,231.8L187.7,231.2L188.7,229.9L189.4,230.5L191.1,228L188.3,225L191.1,221.5L197.4,223.2L198.6,215.4L199.4,214.1L201.9,213.9L205.7,217.9L207.1,218.3L217.5,216.2Z","cx":203.7,"cy":235,"x":186.1,"y":213.9,"w":36.7,"h":43.6,"borough":"E09000015"},{"code":"E05013795","name":"Harrow Road","d":"M370.7,312.1L370.5,317.3L375.2,314.8L379.6,318.2L373.9,321.6L365.5,319L365.6,322L362.7,320.5L360.4,315.9L358.8,315.4L361,315.4L362.7,316.7L363.4,310L365.8,310.8L363.8,302.6L365.5,303.2L369.6,307.4L370.1,312.1L370.7,312.1Z","cx":368.4,"cy":314.9,"x":358.8,"y":302.6,"w":20.7,"h":19.4,"borough":"E09000033"},{"code":"E05013548","name":"Harrow Weald","d":"M214.4,156.3L215.9,165L217.8,165.8L215.9,166.5L216.3,167.3L212.2,169L211.6,168.2L210.2,168.8L210.2,167.9L209.3,167.7L203.4,170.1L202.7,172.2L199.4,174.3L198,172.2L194.8,174.1L190.2,174.3L190.7,175.3L190,176.2L181.2,169.4L182.1,166.5L185.4,166.5L186.5,167.5L183.6,156.6L174.5,142.2L170.5,139.9L168.2,135.5L171.4,134.4L178.3,126.8L190.7,123.7L201.8,116.5L200.7,117.8L202.8,121.4L197.7,128.8L198.7,135.1L204.4,143.3L211.5,149.6L212.4,149.4L212.7,151.9L214.6,155.5L213.7,155.5L213.7,156.3L214.4,156.3Z","cx":193.4,"cy":148.8,"x":168.2,"y":116.5,"w":49.5,"h":59.8,"borough":"E09000015"},{"code":"E05013682","name":"Haselbury","d":"M527.8,112.7L531.8,124.3L531.9,126.9L531.6,127.7L525.5,126.2L525.4,126.9L523.8,126.6L523.6,127.9L520,127.1L519.9,127.9L520.6,128.1L518.8,135.5L519.3,140.8L518,144.6L519.4,146.7L513.3,147.9L506.1,144.6L502.5,143.9L502.4,141.4L507.1,131.7L509.1,124.5L512.2,117.4L520.1,111.5L526.2,103.3L527.8,112.7Z","cx":517.1,"cy":127.8,"x":502,"y":103.3,"w":29.8,"h":44.5,"borough":"E09000010"},{"code":"E05013549","name":"Hatch End","d":"M181.2,169.4L171.9,161.2L165.5,164.2L163.4,172.2L162.4,173.2L155,164.6L151.3,166.5L149.9,168.4L148,165.4L147.6,154.5L149.3,154.7L150.7,152.1L150.1,147.3L148.8,144.1L151.9,141.8L159.2,140.3L168.2,135.5L170.5,139.9L174.5,142.2L183.6,156.6L186.5,167.5L185.4,166.5L182.1,166.5L181.2,169.4Z","cx":165.1,"cy":154.2,"x":147.6,"y":135.5,"w":38.9,"h":37.7,"borough":"E09000015"},{"code":"E05013890","name":"Hatch Lane & Highams Park North","d":"M628.2,124.7L626.3,131.5L624.6,132.3L623.2,135.1L621.3,136.3L621.5,138.9L614.7,138.6L623.7,142.7L629.6,151.5L629.7,153.8L627.2,159.3L627.6,160.4L627,160.1L623.8,167.5L622.6,166.1L623.6,163.9L621.4,162.5L620.8,163.5L617.6,162.2L617.7,158.9L616.1,158.9L615.1,158L611.5,161.6L608,162L607.7,160.4L606.3,160.8L606.1,160.2L605.4,161L603.8,160.4L601.6,155.1L601,151.1L604.6,147.3L605.8,147.5L606,135.3L606.9,130.2L610,122L613.1,123.5L624.9,122.6L628.2,124.7Z","cx":615.8,"cy":143.9,"x":601,"y":122,"w":28.7,"h":45.5,"borough":"E09000031"},{"code":"E05013974","name":"Havering-atte-Bower","d":"M849.7,153L848,153.4L847.8,158.2L840.3,164.8L833.7,168.8L823.7,169.2L818.2,167.7L817.2,172L812.2,179.1L807.1,173.4L800.2,174.9L792.7,178.1L784.3,179.5L779.8,181.8L779.9,181L779.2,181L781.4,169.4L780.4,166.5L780.5,158.3L779.1,151.7L775.4,142.9L768.1,130.2L788.5,130.6L800.7,132.3L804.4,134.2L812,130L818,128.3L818.3,126L819,125.8L820.9,126L824.6,128.5L824.7,126.4L827.5,126.6L828.7,128.3L829.2,127.1L835.1,126L841.6,127.5L845.5,126.9L851.3,124.1L852.6,128.1L852.5,133.8L853.9,137.8L853.2,139.9L854.3,144.3L851.3,147.3L853.3,148.1L849.9,150.5L850.6,151.7L849.5,152.1L849.7,153Z","cx":812.5,"cy":150,"x":768.1,"y":124.1,"w":86.2,"h":57.7,"borough":"E09000016"},{"code":"E05013660","name":"Haverstock","d":"M430,272.3L431.5,281.7L429.9,284.3L423.5,281.7L420.7,283.6L415.4,283.2L415.3,281.1L413.3,278.6L415.6,277.1L416,275.8L412.8,272.5L414.3,272.3L415.3,269.1L418.8,268.2L421.7,269.3L423.1,271.6L427,268.5L430,272.3Z","cx":422.5,"cy":276.4,"x":412.8,"y":268.2,"w":18.7,"h":16.2,"borough":"E09000007"},{"code":"E05013998","name":"Hayes & Coney Hall","d":"M647.6,655.1L644.8,654.9L644.6,652.8L641.9,652.8L637.3,651.3L636.2,651.7L628.3,645.6L625.1,645.8L621.9,651.7L615.6,650.9L615,648.8L612.4,647.3L609.7,650.5L609.5,653.6L607.4,654.5L605.3,657.9L600.8,659.3L598.1,645.8L594.2,639.7L590.4,637L588.8,637L582.7,629.4L580.9,624.8L585.6,622.9L597.8,615.5L602.7,610.5L606.9,604.5L609.1,600.1L601.8,598.7L603.5,596.8L603.7,595.5L604.4,595.9L607.9,592.5L607.7,590.7L608.7,589L607.6,586.2L607.4,578.2L609.6,577.4L609.3,576.7L610.4,575.9L617.7,577L622.8,576.7L629.1,578.6L634.4,576.3L639.7,578.8L640.7,580.3L642.1,586L644.4,589.4L644.9,595.5L646.2,598.2L646.3,603.7L643.9,616.4L646.8,627.9L646.2,628.4L647,628.6L647.7,631.9L649.5,633.2L648.4,637.4L643.3,642.5L641.4,646.9L642.7,648.4L646.1,649.6L647.6,655.1Z","cx":620.5,"cy":617.8,"x":580.9,"y":575.9,"w":68.6,"h":83.4,"borough":"E09000006"},{"code":"E05013569","name":"Hayes Town","d":"M121.8,359.9L108.8,359.7L107,362.9L104,361L102.1,362.7L98.1,359.9L94.9,360.1L95.3,358.2L71.1,351.5L71.8,346.8L70.2,335.3L72.4,335.3L74.9,331.3L77.7,330.4L78.7,329.1L82.8,332.3L86.8,338.2L90.2,337.2L93.5,337.4L99.7,341.4L101.7,341.6L98.2,332.5L107.2,334.4L106.9,336.3L109.4,336.7L115.2,339.5L115.8,338.6L117.8,338.6L116.1,341.8L117.7,343.3L124.4,346.2L125.6,346L121.8,359.9Z","cx":97.1,"cy":347.1,"x":70.2,"y":329.1,"w":55.4,"h":33.9,"borough":"E09000017"},{"code":"E05013550","name":"Headstone","d":"M181.2,169.4L194.3,179.5L190.9,181L198.2,199.1L197.4,199.3L197,198.5L195.2,199.5L196.4,202.5L196.6,205.9L197.9,206.3L199.3,213.3L192.4,212.4L185.1,209.4L186.7,207.4L180.7,204L180.2,204.8L179,204L179.4,203.5L177.1,201.2L177.8,199.6L178.8,199.5L178.7,198.1L180.3,195.5L177.1,194.1L177.4,193.6L175.6,192.6L173.6,193.4L167.2,177.8L162.4,173.2L163.4,172.2L165.5,164.2L171.9,161.2L181.2,169.4Z","cx":181.9,"cy":186.6,"x":162.4,"y":161.2,"w":36.8,"h":52.1,"borough":"E09000015"},{"code":"E05014063","name":"Heath","d":"M794.8,267.2L789.6,268.2L786.2,267.4L779,267.8L778.5,257.7L777.9,257.1L779.2,254.1L779.7,248.9L782,248.4L782.6,240.4L787.1,239.4L789.1,248.6L789.9,248.6L789.9,250.8L791,252L790.1,252.9L793.4,256.9L794.8,267.2Z","cx":785.8,"cy":256.5,"x":777.9,"y":239.4,"w":16.9,"h":28.7,"borough":"E09000002"},{"code":"E05013781","name":"Heathfield","d":"M166.6,447.1L161.7,454.5L160.1,455.8L157.6,456.4L186.2,462.7L181.7,465.9L176.9,471L169.5,476.2L162.4,472.4L161.5,473.7L159.1,473.5L157.7,474.7L156.4,474.7L154.9,473.5L154.6,471.2L150.8,469.7L146.9,466.7L146.8,464L145,461.5L148.9,460.6L149.8,461.3L159.8,448.4L162.6,446.1L162.9,447.1L166.6,447.1Z","cx":163.8,"cy":464.1,"x":145,"y":446.1,"w":41.2,"h":30.1,"borough":"E09000027"},{"code":"E05013570","name":"Heathrow Villages","d":"M67.9,369.4L67.4,373.4L116.6,379.7L115.7,387.1L110.6,398.5L111.2,399.3L110.8,402.1L112.9,409.2L111.9,414.9L117.4,422.5L104.6,428.8L90.8,438.1L87.2,445.3L89.1,447.2L81.5,447.4L78.6,454.1L72.4,453.1L66.9,451.1L66.7,449.9L65,449.7L64.6,450.5L58.2,446.7L43.4,444L40.4,441.2L40,440.2L40.7,439.8L39.1,438.7L28.5,438.7L24.4,437.9L21.4,435.6L19.4,436L15.8,430.3L10.9,427.5L4.5,426.5L3.5,428.2L0,427.1L0.5,423.8L2.1,423.5L5.1,417.6L8,402.3L9.8,397.8L13.7,391.7L12.5,390.3L13.1,386.9L14.1,387.1L14.5,386.3L13.8,385.6L16,384.6L15.9,383.3L16.9,383.3L18.2,381.8L17.7,380.4L18.3,379.1L22.3,378.4L23.9,375.5L34.2,375.9L48.8,373.8L49.3,368.8L51.6,360.1L55.8,367.3L63.9,369.2L66.1,368.5L67.9,369.4Z","cx":61,"cy":408.5,"x":0,"y":360.1,"w":117.4,"h":94,"borough":"E09000017"},{"code":"E05013975","name":"Heaton","d":"M877.4,174.5L874.2,175.9L874.3,177.2L871.3,178.7L872.6,181.4L856.4,188.8L850,187.5L839.7,183.8L834.2,184.2L833,181.6L836.9,179.3L833.2,175.1L834,173.8L833.7,168.8L840.3,164.8L847.8,158.2L848,153.4L849.7,153L850.3,155.9L853.8,151.9L856.9,155.5L854.3,156.4L855.4,157.2L858,163.3L864.8,159.9L866.7,162L865.8,163.3L866.7,166.1L871.8,168.6L874.3,167.5L877.4,174.5Z","cx":853.8,"cy":173.1,"x":833,"y":151.9,"w":44.4,"h":36.9,"borough":"E09000016"},{"code":"E05013643","name":"Hendon","d":"M337.1,176.8L342.4,179.5L348.2,184.8L352,186.9L353.4,191.3L355.9,194.7L358.7,196.2L361.7,196L357,199.1L353.5,210.7L350.4,215.4L345.7,219.1L337.7,213.7L335.3,207.3L329.9,200.6L326.3,198.5L322,197.6L323.9,189.4L324.4,182.5L323.4,175.9L321.9,171.7L326.3,172.2L337.1,176.8Z","cx":339.6,"cy":194.8,"x":321.9,"y":171.7,"w":39.8,"h":47.4,"borough":"E09000003"},{"code":"E05013591","name":"Hermitage & Gardens","d":"M507.8,213.2L508.8,213.9L502.9,222.5L501.1,223.1L501.4,223.8L498,223.6L492.2,225.1L488.8,225.1L487.7,221.3L487.5,218.3L488,217.9L487.1,208.4L489.1,209.7L492.4,210.5L497.4,209.9L503.8,211.1L507.8,213.2Z","cx":496.4,"cy":216.9,"x":487.1,"y":208.4,"w":21.7,"h":16.7,"borough":"E09000014"},{"code":"E05014104","name":"Herne Hill & Loughborough Junction","d":"M494.2,418.5L494.4,422.5L497.6,430.3L496.9,435.1L490.9,446.3L484.6,453L484.1,456.2L485,459.8L483.3,463.2L480.6,466.5L474.1,468.4L472.3,463.6L472.8,460.2L471.2,457.1L471.2,455.8L473,455.2L472.8,453.5L471.8,450.1L469.8,450.5L469.3,449.3L472.4,448.4L473.4,449.9L476.1,445.2L478.7,447.8L479.8,446.7L479.2,445.9L480.6,443.3L480.5,442.1L479.3,441.5L479.6,440.8L481.4,441.3L481.9,439.4L481.3,438.7L482.4,436.8L482.7,433.2L482.1,432L480.3,432.2L483,428.2L484.1,421.7L486.6,417.4L490.7,422.5L492.9,421L494.2,418.5Z","cx":484.4,"cy":443.1,"x":469.3,"y":417.4,"w":28.3,"h":51,"borough":"E09000022"},{"code":"E05013617","name":"Heston Central","d":"M162.6,419.3L156.6,415.8L155.2,420.2L156,420.8L155.8,421.6L144.7,415.5L137.8,412.6L140.2,412L141.9,405.9L142.8,405.6L146.8,396.2L152.7,397L153.6,394.1L152.7,391.7L153,387.7L158.5,386.2L159.4,389.8L160.5,391.3L160.3,392.8L162.6,393.8L161.6,400.2L163.4,403.3L162.9,407.3L165,406.9L165,408.6L163.3,408.6L162.3,412.4L161,411.8L159.5,413.6L162,415.1L161.5,415.7L162.9,415.8L162.6,419.3Z","cx":153.4,"cy":405.4,"x":137.8,"y":386.2,"w":27.2,"h":35.4,"borough":"E09000018"},{"code":"E05013618","name":"Heston East","d":"M169.7,378.9L171.2,379.3L173.9,386.2L170.3,387.5L169.5,390.2L169,390.2L169.4,390.5L168.5,393.6L170.7,393.8L170.7,397.2L170.3,398.1L168,397.4L170.3,400.4L172.3,399.7L177.1,400.4L175.3,404.6L186.5,402.1L185.8,410.7L180.1,408.4L175.7,408.6L174.2,406.9L171.7,413.8L169.7,416.8L169.5,420L165.5,420L162.6,419.3L162.9,415.8L161.5,415.7L162,415.1L159.5,413.6L161,411.8L162.3,412.4L163.3,408.6L165,408.6L165,406.9L162.9,407.3L163.4,403.3L161.6,400.2L162.6,393.8L160.3,392.8L160.5,391.3L159.4,389.8L158.5,386.2L153,387.7L152.6,380.3L153.6,380.1L153.6,381L155.3,380.1L155.8,378.5L156.5,378.2L157.2,378.9L159.4,378L159.1,377.2L160.2,376.6L161.6,380.4L163.9,382.4L163.9,383.3L168.6,380.8L168,379.9L169.7,378.9Z","cx":167.5,"cy":398.3,"x":152.6,"y":376.6,"w":33.9,"h":43.4,"borough":"E09000018"},{"code":"E05013619","name":"Heston West","d":"M122.4,365.8L146.4,375.3L152.1,374.4L156.8,371.7L156.8,373.8L159.2,374L160.2,376.6L159.1,377.2L159.4,378L157.2,378.9L156.5,378.2L155.3,380.1L153.6,381L153.6,380.1L152.6,380.3L152.7,391.7L153.6,394.1L152.7,397L146.8,396.2L142.8,405.6L141.9,405.9L140.2,412L137.8,412.6L125.7,407.5L126.2,403.1L125.6,400.4L121.6,395.7L123.8,393.2L126.5,393.8L127.5,389.8L126,389.6L126.5,386.5L125.4,386.3L126.4,382.2L116.6,379.7L117.1,374.9L118.1,372.5L117.8,369.6L119.2,365.4L119.7,364.7L122.4,365.8Z","cx":136.4,"cy":387.3,"x":116.6,"y":364.7,"w":43.6,"h":48,"borough":"E09000018"},{"code":"E05013644","name":"High Barnet","d":"M388.8,44.2L384.8,54.1L381,56L378.7,56.1L375.9,58L375.6,58.8L381.1,62.2L380.3,65.1L379.1,64.9L379,70.4L379.6,71.4L378,73.5L377.2,73.8L376.6,72.9L370.2,76.1L372,78L371,78.2L369.8,76.7L368.9,77.5L368.3,76.1L367.2,76.9L365.6,76.3L365.7,74.2L364.5,74.4L364.4,75.2L362.4,75.2L362.3,75.9L361,75.9L360.5,74.4L359.2,74L351.1,74.2L351.6,75.4L349.5,76.3L346.7,79.6L348.4,81.1L347.5,82.2L349.7,83.7L346.3,87.5L346.7,88.1L343.7,92.5L336.1,98L328.6,98L328.9,102.6L326.1,102.4L325.8,104.3L323.2,103.7L320.7,101.8L317,103.2L317.1,104.7L315,105.4L309.5,101.6L309.3,103.7L306.2,103.7L302.4,100.9L301.6,101.1L301,96.1L299.5,95.3L300.9,92.1L301.7,92.7L302.9,91.7L306.4,83.5L308.4,71L307.3,70.6L306.7,69.3L307.5,68.1L309.1,68.1L310.7,69.8L315.8,67L318.4,66L318.9,66.8L322.5,64.9L322.1,64.1L324,63L326.4,62.6L327,63.9L333.2,60.7L336.1,66L344,59.4L344.7,59.2L345.1,60.5L351.6,56.1L353.1,58L358.1,55.2L354.3,47.4L355.9,46.2L358,48.2L360.8,44.3L364.9,45.9L363.4,41.5L367.6,41.3L368.7,45.1L373.5,44.9L371.4,50.2L376.4,51.8L378,53.3L381.9,45.7L384.3,44.5L388.8,44.2Z","cx":340.2,"cy":74.8,"x":299.5,"y":41.3,"w":89.3,"h":64.1,"borough":"E09000003"},{"code":"E05013891","name":"High Street","d":"M580.1,199.8L582.1,207.3L571,209.2L571.9,210.5L572.7,216.2L568.8,218.1L567.8,212.8L565.7,213.3L564.6,210.1L562.2,207.3L560.4,206.3L559.6,203.6L556.7,200.8L556.4,199.3L564.3,197.7L568.1,196L570.4,205L574.2,203.3L573.6,201.4L574.2,200.6L579.1,199.3L579.4,200L580.1,199.8Z","cx":569.2,"cy":205.3,"x":556.4,"y":196,"w":25.7,"h":22.1,"borough":"E09000031"},{"code":"E05013892","name":"Higham Hill","d":"M580.2,169.4L577,169.8L577.4,174.9L572.6,175.7L573.6,178.5L572.3,183.7L570.6,184.2L570.6,186.9L565.5,190.3L566,191.1L565.4,191.7L562.1,193.6L557.3,193.9L556.7,194.9L552.2,194.9L550.6,200.2L544,201.2L541.3,199.8L542.5,198.3L541,193.9L544.7,181.2L549.9,174.7L555.3,164.2L562.7,159.1L564.2,156.8L565,156.4L565.4,158L564.1,159.3L571,161.6L580.2,169.4Z","cx":559.2,"cy":179.5,"x":541,"y":156.4,"w":39.2,"h":44.7,"borough":"E09000031"},{"code":"E05013704","name":"Highbury","d":"M495.7,250.6L497.3,255.6L495,256.9L495,262.8L494.3,262.8L494.7,267L493.5,268L492.9,267.4L493.1,268.7L491,268.5L491,270.1L488.3,270.3L487.6,276.2L483.3,277.3L481.5,276.7L474.7,269.1L476.3,267L478.8,266.3L479.9,264.9L479.3,259.6L488.2,259L487.6,249.5L490.7,248.7L495.7,250.6Z","cx":486.9,"cy":263.8,"x":474.7,"y":248.7,"w":22.6,"h":28.5,"borough":"E09000019"},{"code":"E05013683","name":"Highfield","d":"M509.1,124.5L507.1,131.7L502.4,141.4L502.5,143.9L501.6,144.6L501,143.7L491.1,144.3L484.3,147.1L483.9,146.5L482.7,146.9L482.5,143.7L484.6,143.1L486.7,139.5L485.8,136.1L487.8,128.8L488.5,121L492.5,115.1L495.3,117.4L498,118.4L498.8,120.7L502.7,120.3L502.4,121.2L509.1,124.5Z","cx":495.8,"cy":131.8,"x":482.5,"y":115.1,"w":26.7,"h":32,"borough":"E09000010"},{"code":"E05013592","name":"Highgate","d":"M438.7,213.3L438.5,215.4L440.6,214.7L446.4,226.5L437.8,233.1L435.7,233.7L433.3,231.8L428.2,230.3L426.6,229L417.6,228L414.3,226.7L409.5,227.2L406.2,226.3L401.6,227.4L401.6,225.1L403.7,224.4L403.8,217.9L405.3,218.9L406.8,215.4L406.6,209.5L407.5,209.2L409.4,205.4L411.2,204.6L413.7,207.3L413.5,208.2L417,209L417.5,208.4L420.1,210.5L420.4,210.1L417.1,206.7L417.5,206.3L421,206.9L424.8,202.1L425.5,202.5L429.5,201.2L429.8,204.8L430.2,204.6L431.2,208.2L430.4,211.8L433.2,210.9L433.6,213.5L438.8,212.4L438.7,213.3Z","cx":424.1,"cy":218.8,"x":401.6,"y":201.2,"w":44.8,"h":32.5,"borough":"E09000014"},{"code":"E05013661","name":"Highgate","d":"M435.7,233.7L437.8,242.5L437.4,250.1L439.2,254.5L431.7,258.8L428.8,264L426.7,261.1L423.7,259L415.9,258.1L413.2,253.3L412.2,252.9L409.4,247L400,238.1L400,231.2L399,229.9L401.6,227.4L406.2,226.3L409.5,227.2L414.3,226.7L417.6,228L426.6,229L428.2,230.3L433.3,231.8L435.7,233.7Z","cx":420.5,"cy":242.4,"x":399,"y":226.3,"w":40.3,"h":37.7,"borough":"E09000007"},{"code":"E05013571","name":"Hillingdon East","d":"M91,271L116.8,273.7L117.2,275L112.1,276.9L112.3,278.6L110.6,279.6L109.1,282.2L109.1,285.9L108,284.5L101.9,286.4L101.7,287.4L93.4,291L92,289.5L86.4,294.2L81.5,295.8L80.9,298.6L82.7,303.6L82.4,305.8L81.4,305.5L81.4,307.7L85.2,315L78.3,310.8L67.9,302.8L68.9,296.5L68.4,292.9L70.5,287L66.5,285.3L62.1,285.9L62.4,284.5L60.1,280.7L62.6,277.9L65.8,276.2L65.7,274.6L63.7,275.2L63.4,273.7L60.6,273.9L60.2,272.5L54.2,274.2L55.5,271.8L58.1,270.3L59.9,262.6L62.4,261.7L62.7,260.4L76.6,263.2L86.3,269.3L91,271Z","cx":81.5,"cy":281.8,"x":54.2,"y":260.4,"w":63,"h":54.6,"borough":"E09000017"},{"code":"E05013572","name":"Hillingdon West","d":"M67.9,302.8L60.9,298L57.1,298.4L48.4,296.7L47,297.3L46.5,299L45.1,299L45.1,294.2L40.4,294.4L36.8,283.2L35,282.8L34.4,281.3L36.1,280.7L38.3,283.4L41.3,283.6L43.5,282.4L46.1,274.6L47.1,274.6L47.1,275.6L48.7,275.6L49.2,276.5L53.3,276.3L54.2,274.2L60.2,272.5L60.6,273.9L63.4,273.7L63.7,275.2L65.7,274.6L65.8,276.2L62.6,277.9L60.1,280.7L62.4,284.5L62.1,285.9L66.5,285.3L70.5,287L68.4,292.9L68.9,296.5L67.9,302.8Z","cx":54.3,"cy":287.5,"x":34.4,"y":272.5,"w":36.1,"h":30.3,"borough":"E09000017"},{"code":"E05013705","name":"Hillrise","d":"M463.5,223.1L462.7,223.6L465.1,224.2L467.4,227.1L466.8,227.8L467.3,228.2L461.9,232.6L463.3,234.9L454.6,241.9L448.5,236L447.7,237.3L444.3,235L443.2,235.6L440.6,230.9L449.1,225.1L456.4,224.2L462.3,221.5L463.5,223.1Z","cx":454.5,"cy":231,"x":440.6,"y":221.5,"w":26.9,"h":20.4,"borough":"E09000019"},{"code":"E05013816","name":"Hillside","d":"M362.7,512.3L345,531L341.4,533.7L339.6,530L342.6,527.2L341.3,525.7L344.6,523.6L341.2,520.9L339.4,518L347,512.5L350.7,515.2L351.1,514.4L349.9,513.5L352.1,509.5L351.5,508.9L356,505.1L358.7,505.7L362.7,501.1L363.9,503.6L368.5,503.6L362.7,512.3Z","cx":352.4,"cy":516.3,"x":339.4,"y":501.1,"w":29.1,"h":32.5,"borough":"E09000024"},{"code":"E05013724","name":"Hither Green","d":"M593.7,447.8L601.2,454.1L622.7,487.8L616.2,490.6L616,492.2L613.2,493.5L607,494.4L601.2,496.7L600.1,491.6L599.2,491.4L598.1,488.2L598.4,487.2L602.5,486.1L601.4,477.9L602.1,477.7L601.9,470.7L593.7,470.5L594.2,468.6L595.5,468.6L595,467.2L597.1,466.5L596.2,461L594.5,460.6L593.9,457.3L591.7,457.3L592.4,456.8L592.2,455.2L590.3,453.5L590.5,452.8L591.5,453L592.2,448.4L593.7,447.8Z","cx":605.7,"cy":475.1,"x":590.3,"y":447.6,"w":32.5,"h":49.1,"borough":"E09000023"},{"code":"E05013893","name":"Hoe Street","d":"M597.4,214.9L595.5,217.2L591.1,219.2L589.2,221.9L586,219.6L582.8,213.7L580.9,201.2L579.7,197.9L580.6,196.2L583.8,193.6L586.1,194.3L594.1,192.6L595.1,203.5L593.6,204.6L593.9,206.1L592.5,206.5L592,207.4L593.9,212.2L593.9,214.5L597.4,214.9Z","cx":588.2,"cy":205.9,"x":579.7,"y":192.6,"w":17.6,"h":29.3,"borough":"E09000031"},{"code":"E05013662","name":"Holborn & Covent Garden","d":"M479.6,329.8L476.7,331.3L469.6,330.4L472.2,336.1L469.6,337.1L468.5,334.8L462.8,337.6L460.1,336.9L459.7,337.4L458.8,336.5L453.7,341.1L450.9,338.6L450,334L461.8,331.7L461,329.1L456.3,323L467.2,318.8L469.1,316.7L471.2,320.1L475.3,321.4L476.2,323.2L477.6,323L479.6,329.8Z","cx":465.5,"cy":328.9,"x":450,"y":316.7,"w":29.6,"h":24.4,"borough":"E09000007"},{"code":"E05009397","name":"Holland","d":"M369.2,366.9L360.6,371.7L361.9,372.3L365.2,376.6L363.8,377.8L358.8,372.5L358,372.8L351.6,364.8L347.3,356.7L363,350.6L369.2,366.9Z","cx":359.1,"cy":362.2,"x":347.3,"y":350.6,"w":21.9,"h":27.2,"borough":"E09000020"},{"code":"E05013706","name":"Holloway","d":"M465.9,258.5L472.3,266.3L467.8,269.9L466.4,268.3L463.5,272.7L462.7,276.2L454.6,279.4L453.8,274.8L451.4,272.3L462.9,255.2L465.9,258.5Z","cx":461.3,"cy":267.7,"x":451.4,"y":255.2,"w":20.8,"h":24.2,"borough":"E09000019"},{"code":"E05009376","name":"Homerton","d":"M552.2,266.3L554.5,272.5L555.8,272.5L556.7,275.8L554.6,275.6L555,279L549.8,279.6L548.5,282.4L547,283.6L546,283L538.9,284.9L539.2,275.6L543.6,275.2L542.9,273.7L541.3,274.1L539.9,270.4L539.3,270.8L538,265.9L541.7,264.7L543.1,267.6L546,266.4L546.2,267.2L549.8,266.6L549.9,267.2L552.2,266.3Z","cx":546.3,"cy":274.7,"x":538,"y":264.7,"w":18.7,"h":20.2,"borough":"E09000012"},{"code":"E05013935","name":"Hook & Chessington North","d":"M251.6,605L247.1,610.9L248.9,612.8L255.4,614.5L253.2,617L258.4,617.8L258.3,618.3L259.6,618.7L261.2,617L262.6,618L263.1,617.2L264.5,617.8L264.8,619.5L267.9,621.8L264.2,626.9L262.8,627.5L258.9,626.5L259.3,625.4L255.9,624.2L255.3,625.4L251.6,624.6L239.7,625.8L239.4,624.4L231.8,624.2L230.8,623.5L230.8,620.4L229,621.2L227.1,620.6L228.3,608.8L229.2,606.5L232.1,603.9L238.7,602.4L239.1,601.4L251.6,605Z","cx":243.7,"cy":615.7,"x":227.1,"y":601.4,"w":40.7,"h":26.1,"borough":"E09000021"},{"code":"E05013593","name":"Hornsey","d":"M471,197.4L473.5,204.8L478.5,213.7L478,214.1L476.9,213.2L473.8,213L471.8,209L467.1,212L465.8,211.8L464.2,208.6L463.3,208.4L460.9,209.9L461,209L459.7,208.2L457.3,208.6L457.3,205.9L452.8,202.7L450.5,203.5L447.5,203.3L445.8,198.9L448.4,194.9L453.6,194.1L453.2,192.2L457.6,190.5L462.2,190.3L464.2,192L467.7,190.3L471,197.4Z","cx":462,"cy":200.8,"x":445.8,"y":190.3,"w":32.7,"h":23.8,"borough":"E09000014"},{"code":"E05013620","name":"Hounslow Central","d":"M177,408.8L178,411.3L181.7,416.2L183.9,421.4L180.2,423.6L179.1,429.9L183.6,429.5L183.8,430.9L174.8,438.1L174.8,431.8L173.1,430.7L170.7,426.1L169.7,416.8L171.7,413.8L174.2,406.9L175.7,408.6L177,408.8Z","cx":176.2,"cy":422.1,"x":169.5,"y":406.9,"w":14.3,"h":31.2,"borough":"E09000018"},{"code":"E05013621","name":"Hounslow East","d":"M185.8,410.7L193.7,410.9L193.7,412.6L192,414.3L192.4,414.9L193,415.5L195.5,414.5L197.9,416.8L198.4,416.4L199.4,418.1L183.8,430.9L183.6,429.5L179.1,429.9L180.2,423.6L183.9,421.4L181.7,416.2L178,411.3L177,408.8L180.1,408.4L185.8,410.7Z","cx":187.2,"cy":418.8,"x":177,"y":408.4,"w":22.4,"h":22.5,"borough":"E09000018"},{"code":"E05013622","name":"Hounslow Heath","d":"M174.8,438.1L170.1,442.3L166.6,447.1L162.9,447.1L162.6,446.1L159.8,448.4L149.8,461.3L148.9,460.6L143,461.9L142.1,457.9L139.1,453.3L139,451.6L135.6,452.2L131.2,449.3L129.2,445.3L128.9,443.3L132.6,442.1L147.5,434.5L170.7,426.1L173.1,430.7L174.8,431.8L174.8,438.1Z","cx":152.8,"cy":443.2,"x":128.9,"y":426.1,"w":45.8,"h":35.8,"borough":"E09000018"},{"code":"E05013623","name":"Hounslow South","d":"M199.6,443.3L198.4,445L195.4,445.3L194.5,446.5L191.5,447.4L186.5,447.2L185.7,444.8L182.9,444.4L172,445.5L168.7,446.3L168,447.2L166.6,447.1L170.1,442.3L174.8,438.1L203.7,414.5L205.1,416.8L204.2,418.7L205.2,418.9L205.1,420L208,420.4L208.3,423.3L206.9,427.3L207.3,429.9L204.1,430.5L203.9,429.5L200.2,429.5L200.5,433.2L201.5,433.2L201.6,442.5L199.6,443.3Z","cx":191.4,"cy":434.3,"x":166.6,"y":414.5,"w":41.7,"h":32.9,"borough":"E09000018"},{"code":"E05013624","name":"Hounslow West","d":"M162.6,419.3L169.5,420L170.7,426.1L147.5,434.5L138.7,438.9L136,432.6L139.3,431.1L138.3,427.1L137,426.5L137.1,425.7L137.8,425.9L138.5,422.3L137.6,421.9L137.9,420.6L138.6,420.8L139.1,418.1L138.4,417.7L139.3,415.3L138.6,414.9L139.1,413L155.8,421.6L156,420.8L155.2,420.2L156.6,415.8L162.6,419.3Z","cx":150.7,"cy":425.4,"x":136,"y":413,"w":34.7,"h":25.9,"borough":"E09000018"},{"code":"E05009377","name":"Hoxton East & Shoreditch","d":"M511.7,295.4L513.3,295.8L513,305.5L512.1,310.4L514.7,311.2L512.8,313.3L514,313.6L513.8,319L514.5,319L514.7,320.1L513.8,323.4L511.6,323.5L511.4,324.3L508.4,323.4L507.5,325.8L505.9,327.3L503.4,326.6L504.6,319.7L503.4,319.7L503.1,318.6L504,316.9L503.7,315.4L505.2,314.6L506.1,302L502.3,302.2L502.1,301.1L500.5,301.7L498.1,296.7L501.8,294.2L504.6,293.9L511.7,295.4Z","cx":508,"cy":309,"x":498.1,"y":293.9,"w":16.6,"h":33.5,"borough":"E09000012"},{"code":"E05009378","name":"Hoxton West","d":"M503.7,315.4L501.3,316.1L499.3,312.9L491.4,309.6L491.7,307.9L489.5,302.4L498.1,296.7L500.5,301.7L502.1,301.1L502.3,302.2L506.1,302L505.2,314.6L503.7,315.4Z","cx":498.7,"cy":306.5,"x":489.5,"y":296.7,"w":16.7,"h":19.4,"borough":"E09000012"},{"code":"E05013796","name":"Hyde Park","d":"M413,338.2L414.8,340.1L416.7,339.9L418.8,345.4L424.2,352.9L423.7,357.8L411.1,354L404.1,353.8L401.6,352.5L402.5,351.1L402.2,346.4L399.8,344.1L400.3,342.4L398.3,342.8L395.9,339.9L397.4,338.4L390.6,331.2L390.9,330.8L387.3,330.2L385.4,328.1L391.2,327L402.8,327.3L408.6,325.6L407.7,328.7L406.1,330.8L413,338.2Z","cx":406.8,"cy":341.5,"x":385.4,"y":325.6,"w":39,"h":32.2,"borough":"E09000033"},{"code":"E05013976","name":"Hylands & Harrow Lodge","d":"M856.7,231.2L857.1,233.5L855.9,239.4L851.8,252.2L846,257.7L840.3,257.3L834.9,258.8L830.6,262.6L829.6,264.9L826.9,262.3L825.7,259L823.3,257.9L823.3,251.2L820.8,248.7L822.3,243.6L824.3,240.4L824.6,238.7L823.5,235.6L828.7,234.3L829.4,236.2L838.1,233.3L837.8,232.4L838.7,232.2L837.6,229.9L840.5,229.3L840.3,228.6L842.2,228L841.1,223.8L843.2,223.8L848.7,227.8L856.7,231.2Z","cx":839.1,"cy":244.2,"x":820.8,"y":223.8,"w":36.4,"h":41.1,"borough":"E09000016"},{"code":"E05013573","name":"Ickenham & South Harefield","d":"M54.4,196.2L57.1,201.7L59.5,204.4L60.1,210.7L62.2,209.4L65.2,209L72.9,210.5L73.8,213.2L75.3,212.8L79.9,213.7L78.8,216.2L81.1,220.4L80.6,221.7L77.7,221.2L75.5,222.1L73.7,220.6L72.4,221.2L71,224.6L68.9,225.1L68.6,225.9L79.8,229.5L105.2,242.7L104.8,244L102.5,244.6L104.4,247.6L105.9,252.7L102.5,252.7L103,253.9L106.5,253.7L106.8,255.6L105.8,256.2L103.5,255.8L100,254.3L95.5,256.2L93.9,257.9L93.6,259.8L96.6,265.5L91.8,267.2L90.9,269.1L91,271L86.3,269.3L76.6,263.2L62.7,260.4L49.3,253.9L39.4,251.8L38.8,250.5L34.6,249.7L34.9,247.6L32.5,245.7L33.2,243.6L32,241.3L32.7,240.2L30.1,237.9L31.1,229.7L29.8,227.6L29.3,224.8L31.1,222.3L26.2,219.6L24.6,216.4L25.6,213.7L24.4,209.5L18.3,203.8L17.2,197.6L15.4,195.3L14.6,192L13.6,191.7L13.8,190.3L12.7,189.9L13.8,185.6L12.6,181.2L32.6,181.6L35.9,186.3L45.5,192.2L54.4,196.2Z","cx":56.4,"cy":227.6,"x":12.6,"y":181.2,"w":94.2,"h":89.8,"borough":"E09000017"},{"code":"E05011246","name":"Ilford Town","d":"M682.3,257.1L681.2,257.9L679.3,255.6L680.3,255.2L682.3,257.1ZM703,241.9L704,242.5L708.7,240.6L711.4,241.3L715.3,251.4L711.4,253.1L701.7,252.6L701.4,251L688.9,257.7L687.2,256.2L685.7,256.5L684.3,255.8L682.4,257.1L680.5,255.2L687.6,252.6L686.1,248.2L689.4,246.3L690.1,247.6L695,244.6L699.8,240.8L700.7,238.7L703.5,239.4L703,241.9Z","cx":699.9,"cy":248.6,"x":680.5,"y":238.7,"w":34.8,"h":19,"borough":"E09000026"},{"code":"E05009324","name":"Island Gardens","d":"M600.7,382.7L600,386.2L599.2,387.5L598.3,386.9L598.9,387.9L596.4,389.8L590.7,391.7L584.9,391.7L579.5,389.4L576.2,386.3L573.9,382.9L572,377.6L572.9,376.8L590.6,378L591.9,377.2L592.9,378.5L595.1,379.5L596.1,378.5L597.7,381.2L597.4,382.4L600.7,382.7Z","cx":586.4,"cy":384,"x":572,"y":376.8,"w":28.7,"h":14.8,"borough":"E09000030"},{"code":"E05013625","name":"Isleworth","d":"M225.6,421L224.3,429.9L223.9,423.1L225.6,421ZM206.6,412.2L208.8,415.3L211,413.2L215.1,414.7L217.4,414.3L218.3,415.1L218.5,418.1L220.6,418.7L221,420.2L222.8,417.7L223,413.9L227.2,418.1L226.5,419.5L223.7,421.4L222.4,421L223.6,421.6L222.7,424.2L223.2,431.1L221.2,431.3L219.6,433L217.2,438.9L218.7,445L217.2,447.1L215.3,445.2L213,445.3L209.9,450.1L206,449.5L205.2,451.6L200.9,446.5L201.5,442.9L199.6,443.3L201.6,442.5L201.5,433.2L200.5,433.2L200.2,429.5L203.9,429.5L204.1,430.5L207.3,429.9L206.9,427.3L208.3,423.3L208,420.4L205.1,420L205.2,418.9L204.2,418.7L205.1,416.8L203.7,414.5L206.6,412.2Z","cx":211.9,"cy":431.1,"x":199.6,"y":412.2,"w":27.6,"h":39.4,"borough":"E09000018"},{"code":"E05013684","name":"Jubilee","d":"M586.8,105.1L575.9,128.1L564.7,125.2L563.5,122.8L553.1,120.1L553.5,115.7L551.8,115.5L551.5,116.3L540.5,113.4L540.3,114.2L539.6,113.8L538.4,114.8L534.5,112.9L530.2,112.9L530,113.4L527.8,112.7L526.2,103.3L531.8,95.3L532.7,89.4L539.6,90.2L543.7,91.5L543,97.3L567.4,103.7L569.2,103.7L569.1,100.9L569.9,99.3L572.5,98.6L582,103.9L582.7,103.2L586.8,105.1Z","cx":556.5,"cy":108.9,"x":526.2,"y":89.4,"w":60.6,"h":38.6,"borough":"E09000010"},{"code":"E05013707","name":"Junction","d":"M453.3,241.1L451.3,243.8L455.4,246.8L453.2,249.7L450.4,251.8L451.8,254.1L447.7,254.6L448.3,255.8L440.4,256.9L437.4,250.1L437.8,242.5L435.7,233.7L437.8,233.1L440.6,230.9L443.2,235.6L444.3,235L447.7,237.3L448.5,236L453.3,241.1Z","cx":444.4,"cy":244.9,"x":435.7,"y":230.9,"w":19.7,"h":26.1,"borough":"E09000019"},{"code":"E05013999","name":"Kelsey & Eden Park","d":"M591,553.4L593.1,554.8L592.8,556.1L593.5,557.1L585.9,556.7L583,557.3L583.6,560.1L583.2,563.2L584.8,564.5L588.4,571.3L584.9,575L585.3,578.4L582.3,578.6L583,583.3L580.2,583.9L577.2,580.5L574.5,590.7L573.8,590.7L572.6,594.7L571.2,594.7L570.8,597.2L569.1,598.7L560.8,599.3L561.2,595.5L560.5,595.5L559.6,587.3L561.1,577.6L553.7,575.5L549.6,570.8L548.9,571.1L547.4,568.7L543.7,567.9L541,565.2L545.9,557.4L548.7,559L553.1,557.1L555.7,557.1L564,546.6L565.5,543.2L567.2,543.2L566.9,544.3L568.6,545.1L568.8,543.6L570,543.6L570,544.7L570.7,544.9L570.7,544.1L574.8,544.1L575.2,543.6L576.1,544.5L576.2,546.8L577.9,548.5L581.4,547.5L582.8,546.2L584.6,546.4L584.5,547.2L586.2,548.9L587,548.3L587.9,548.9L588.5,551.2L591,553.4Z","cx":568.6,"cy":568,"x":541,"y":543.2,"w":52.5,"h":56.1,"borough":"E09000006"},{"code":"E05011469","name":"Kenley","d":"M482.6,691L484.5,692.8L484.5,693.7L486.4,693.3L487.5,693.9L493.3,699L494.6,698.5L499.1,701.9L502.6,708.6L507,713.7L505.2,714.1L503.9,715.6L507.4,721.9L507.4,725.7L501.6,729.1L499.2,732.2L499.3,736.2L498.1,738.2L496.3,739.4L496.3,743L492.1,744.7L490.7,743L489.1,743.8L489,745.1L483.8,739.6L482.8,736.9L483.3,735L481.3,732L477.3,732.9L474.9,730.8L477.4,728.5L471.5,722.3L471,720L468.7,716.9L467.9,717.7L466.3,715.6L465.5,708.9L460.5,696.9L461.2,696.6L460,693.5L465,691.2L467.6,694.9L469.5,693.7L469.8,694.3L471,693.7L471.6,694.5L473,693.7L475.5,691L475.8,688.6L479.4,693.1L482.6,691Z","cx":485,"cy":714.8,"x":460,"y":688.6,"w":47.4,"h":56.5,"borough":"E09000008"},{"code":"E05014105","name":"Kennington","d":"M482,381.8L475.8,392.2L478.3,394L477.4,396.4L479.3,397.8L478.8,398.1L481.2,401.6L476.2,402.7L469.9,398L470.5,396.6L469.2,394.3L470.2,393.2L469.7,390.7L468.7,390.7L468.6,390L470.5,390L468.4,386.3L468.7,384.3L463.8,381L467.6,373.8L472.3,371.9L473,373.8L480.1,377.6L482,381.8Z","cx":473.6,"cy":386,"x":463.8,"y":371.9,"w":18.2,"h":30.8,"borough":"E09000022"},{"code":"E05013663","name":"Kentish Town North","d":"M440.4,256.9L442.1,260L444.1,261.3L449.2,267.2L449.6,268.7L437.5,268.3L429.4,265.3L428.8,264L431.7,258.8L439.2,254.5L440.4,256.9Z","cx":438.5,"cy":263,"x":428.8,"y":254.5,"w":20.7,"h":14.3,"borough":"E09000007"},{"code":"E05013664","name":"Kentish Town South","d":"M449.6,268.7L451.4,272.3L440.4,285.7L436.6,279.2L431,278.6L429.4,265.3L437.5,268.3L449.6,268.7Z","cx":439.5,"cy":274,"x":429.4,"y":265.3,"w":22,"h":20.4,"borough":"E09000007"},{"code":"E05013502","name":"Kenton","d":"M269.8,203.3L272.5,209.7L273.3,209.7L271.1,215.3L260.7,224.8L260.5,228L263.1,234.1L255.3,228L234.1,217.5L226.9,215.8L217.5,215.6L225.1,212.2L234.2,204.4L243.5,199.5L247.4,199.1L269.8,203.3Z","cx":250.5,"cy":212.6,"x":217.5,"y":199.1,"w":55.8,"h":35,"borough":"E09000005"},{"code":"E05013551","name":"Kenton East","d":"M260.7,181.9L264.3,185.2L260.4,187.3L266.1,190.3L267.7,193L269.8,203.3L247.4,199.1L243.5,199.5L241,200.6L239.2,198.3L238.6,195.1L236.2,190.9L235.9,189.6L236.7,187.3L241.4,185L241.9,185.8L243.3,185.2L244.6,183.8L249.4,182.9L251.9,183.3L253.2,182.3L254.8,182.5L256.8,184.2L258.3,181.6L258.5,182.3L260.7,181.9Z","cx":253.2,"cy":192.5,"x":235.9,"y":181.6,"w":34.1,"h":21.7,"borough":"E09000015"},{"code":"E05013552","name":"Kenton West","d":"M232.1,178.5L234.9,187.8L235.3,188.6L236.1,188.2L236.2,190.9L238.6,195.1L239.2,198.3L241,200.6L234.2,204.4L228.9,209L223.3,202.5L211.4,192.6L214.9,193.2L215.6,192.2L218.8,192.2L221,190.7L223.1,186.5L223.9,178.3L225.5,173.6L227.9,173.8L231,176.4L230,179.3L232.1,178.5Z","cx":228.3,"cy":192.8,"x":211.4,"y":173.4,"w":29.6,"h":35.6,"borough":"E09000015"},{"code":"E05013782","name":"Kew","d":"M255.2,391.9L252.1,394.5L253.3,392.6L255.2,391.9ZM280.4,412.6L284,417.2L278.3,423.1L268.3,426.5L262.9,426.7L263,425.2L259.8,422.5L261.2,415.1L260,413.9L258.3,414.3L256.6,421.6L251.2,420.8L246.3,418.1L242.5,417.9L237.2,415.7L241,413L245.9,404.8L254.6,394.1L260.9,391.3L264.1,390.9L267.5,392.1L275.2,399.3L280.4,412.6ZM256.2,391.5L258.6,390L261,389.6L256.2,391.5Z","cx":262.6,"cy":409.7,"x":237.2,"y":390.9,"w":46.8,"h":35.8,"borough":"E09000027"},{"code":"E05014083","name":"Kidbrooke Park","d":"M661.5,417.6L669.5,420.2L667.6,425.9L666.5,426.1L660.2,432.4L657.2,433.5L657.3,434.1L652.6,435.1L650.3,437L643.9,432L639.9,430.1L633.5,413.2L640.1,412L661.5,417.6Z","cx":650.7,"cy":423.5,"x":633.5,"y":412,"w":36,"h":24.9,"borough":"E09000011"},{"code":"E05014084","name":"Kidbrooke Village & Sutcliffe","d":"M639.9,430.1L639.9,437.5L644.3,441L642.5,442.3L643.6,450.5L642,450.7L642.5,454.9L638.5,454.7L625.1,450.9L620.9,449.5L618,447.6L616.7,444.2L630.9,442.1L629,436.6L629.9,432.8L635.6,427.8L636.7,429L639.1,427.6L639.9,430.1Z","cx":633.5,"cy":443.3,"x":616.7,"y":427.6,"w":27.6,"h":27.2,"borough":"E09000011"},{"code":"E05013503","name":"Kilburn","d":"M377.5,296.1L375.8,300.7L376.6,301.8L375.8,304.3L371.6,312.7L370.1,312.1L369.6,307.4L362.4,300.7L368.3,298.6L364.4,293.3L362.7,287.6L358.3,284.1L365.2,279L377.5,296.1Z","cx":369.2,"cy":295.1,"x":358.3,"y":279,"w":19.2,"h":33.7,"borough":"E09000005"},{"code":"E05013665","name":"Kilburn","d":"M376.4,280.5L375.5,284.3L376.6,287L379.2,287L381,288.1L381.4,287.6L384.2,287.8L384.4,288.7L382.5,289.3L383,290.2L392,286.8L393.2,289.5L391,289.9L386.2,292.5L380.9,299.6L377.5,296.1L363.4,276.3L365.6,278.8L369.7,277.1L372.4,277.1L371,280.5L374.8,281.1L376.4,280.5Z","cx":377.8,"cy":288.4,"x":363.4,"y":276.3,"w":29.7,"h":23.2,"borough":"E09000007"},{"code":"E05013936","name":"King George's & Sunray","d":"M285.7,606L280.4,609.6L279.8,611.3L277.7,612.6L276.7,614.9L272.9,616.8L267.9,621.8L264.8,619.5L264.5,617.8L263.1,617.2L262.6,618L261.2,617L259.6,618.7L258.3,618.3L258.4,617.8L253.2,617L255.4,614.5L248.9,612.8L247.1,610.9L251.6,605L257.8,606.4L263.5,605L268.1,601.2L280.6,581.6L284.7,577.6L285.5,583.3L289.8,587.9L283.3,592.5L286.5,595.9L284.6,600.3L284.7,603.5L285.7,606Z","cx":271.5,"cy":603.8,"x":247.1,"y":577.6,"w":42.6,"h":44.2,"borough":"E09000021"},{"code":"E05013666","name":"King's Cross","d":"M456.2,287L459.4,294.8L459.1,306.6L462.5,306.4L467.1,308.5L467.6,312.3L470.6,315L467.2,318.8L460.1,321.4L452,301.5L454.5,300.3L454.8,299.2L451.8,294.8L447.5,292.3L442.6,287.6L441.4,287.4L443.5,286.2L456.2,287Z","cx":457.7,"cy":303.6,"x":441.4,"y":286.2,"w":29.3,"h":35.2,"borough":"E09000007"},{"code":"E05009379","name":"King's Park","d":"M568.8,248.4L573.8,251.2L575.6,253.7L576.1,256L582.5,260.2L584,266.8L582.5,266.6L581.1,265.1L580,266.6L578.5,266.1L569.3,266.8L564.9,269.7L554.5,272.5L550,256.9L549.4,256.7L551.9,249.1L550.9,247.6L554.1,248.4L556.7,247.6L558.4,248.7L561.4,248.2L564.9,249.9L568.8,248.4Z","cx":564.4,"cy":259.4,"x":549.4,"y":247.6,"w":34.6,"h":24.9,"borough":"E09000012"},{"code":"E05013504","name":"Kingsbury","d":"M296.6,185.9L304.8,196L310.4,204.8L303.9,208.2L298.2,208.6L279.9,201.7L283.1,200.6L284.3,198.9L284.2,197.7L289.3,194.7L289.5,189.9L287,185.6L287.6,185.4L287.3,184.6L293.7,181.9L296.6,185.9Z","cx":295.8,"cy":197.7,"x":279.9,"y":181.9,"w":30.4,"h":26.6,"borough":"E09000005"},{"code":"E05013937","name":"Kingston Gate","d":"M262.9,530.6L257.9,530L250.2,531.4L245,530.6L252.9,524.7L257.3,519L256.5,518.6L254.2,519.6L253.5,516.1L251.9,513.9L257.1,511.4L257.6,512.7L260.7,512L260.9,512.9L263.5,512.3L264.9,517.1L272.2,513.9L274.4,511L277.1,512.3L273.8,519.4L262.9,530.6Z","cx":261.4,"cy":521.4,"x":245,"y":511,"w":32.1,"h":20.4,"borough":"E09000021"},{"code":"E05013938","name":"Kingston Town","d":"M245,530.6L253.8,531.2L252.8,535.2L254.4,535.4L254.8,538.2L254.2,538.2L255.9,541.3L255.7,547L262.3,548.7L261.9,550.6L258.6,550.4L258.4,552.1L260.2,552.3L260,552.9L254.8,552.3L247.1,555.2L244.3,558.8L243.5,557.4L239.7,556.3L239.1,557.3L236.8,556.3L237.8,555.3L238.7,551.2L238.4,538L239,529.8L245,530.6Z","cx":247,"cy":543.9,"x":236.8,"y":529.8,"w":25.5,"h":28.9,"borough":"E09000021"},{"code":"E05014106","name":"Knight's Hill","d":"M480.3,486.1L482.2,493.7L484.9,492.7L485.9,496L484,496.4L489.7,500.9L488.9,500.9L489,502.3L491,502.3L491.2,503.4L493.9,504.9L492.7,506.6L487.9,508.5L489.6,512.3L478.8,512.5L468.6,510.8L469.5,507.2L468.6,503.2L468.9,496.7L466.8,493.9L464.8,492.5L464.8,491.4L467.6,488.9L473.6,485.5L472.3,485.3L472.7,484.9L476.6,483.6L478.1,482.3L476.8,484.9L477.4,488.2L480.3,486.1Z","cx":478,"cy":500.1,"x":464.8,"y":482.3,"w":29,"h":30.3,"borough":"E09000022"},{"code":"E05013797","name":"Knightsbridge & Belgravia","d":"M401.6,352.5L404.1,353.8L411.1,354L423.7,357.8L424.1,359.3L426.9,359.1L426.7,360.5L424.7,361.6L428.6,365.8L431.1,370.6L432.9,371.5L429.3,379.5L426.9,382.7L428.7,384.1L429.8,392.6L427.9,392.8L427.8,391.5L427,391.7L427.6,392.8L426.7,392.8L419.8,385L420.5,384.3L419.8,381.4L421.1,380.4L419.6,378.2L420.8,377L419.6,375.7L420.5,374.5L419.5,369.4L417.3,367.1L416.6,361L413.8,362L408.5,367.7L408.1,366.7L405.8,368.5L405.3,367.1L391.8,369.4L390.7,361.8L397.4,361L399.5,354.2L400.4,352.3L401.6,352.5Z","cx":414.8,"cy":367.6,"x":390.7,"y":352.3,"w":42.2,"h":40.5,"borough":"E09000033"},{"code":"E05013526","name":"Lady Margaret","d":"M181.3,319.9L178.2,319L178.7,318.2L175.1,315.9L172.9,318.2L172.9,320.9L168.2,329.6L166.9,333.6L163.9,333.4L163.3,335.2L159.6,334.8L158.8,333.6L150.2,331.9L152.1,329.8L158.9,317.8L158.5,310.2L160.5,302.8L169.3,303.9L172.6,306.4L174,308.9L173.6,311L175.9,311.6L175.7,312.5L176.3,312.7L177.6,311.6L179.5,311.6L179.6,312.7L182.8,314.4L181.2,316.9L182.2,318.4L181.3,319.9Z","cx":165.4,"cy":318.9,"x":150.2,"y":302.8,"w":32.6,"h":32.4,"borough":"E09000009"},{"code":"E05013725","name":"Ladywell","d":"M593.6,447.6L592.2,448.4L591.5,453L590.5,452.8L590.3,453.5L592.2,455.2L592.4,456.8L591.7,457.3L588.5,457.5L588.5,456.8L584.9,456.8L583.8,456L581.9,456.8L581.5,456L578.9,460.6L574,461L571.1,456.8L564.7,453L566.9,450.3L561.6,448.2L564.1,444.2L563.9,439.4L566.8,438.3L569.1,435.1L571.1,435.8L573.8,435.1L575,437L575.8,436.8L577.4,427.6L576.8,427.3L580.8,425.9L583,429.4L586.4,441.3L589.1,444.8L593.6,447.6Z","cx":577.6,"cy":445.8,"x":561.6,"y":425.9,"w":32,"h":35,"borough":"E09000023"},{"code":"E05013798","name":"Lancaster Gate","d":"M401.6,352.5L400.4,352.3L399.5,354.2L397.4,361L390.7,361.8L390.8,362.4L386.2,361.8L381.8,345.8L380.4,346L379.6,341.6L381,341.2L379.8,336.3L388.7,331.7L387.3,330.2L390.9,330.8L390.6,331.2L397.4,338.4L395.9,339.9L398.3,342.8L400.3,342.4L399.8,344.1L402.2,346.4L402.5,351.1L401.6,352.5Z","cx":390.7,"cy":346.9,"x":379.6,"y":330.2,"w":23,"h":32.2,"borough":"E09000033"},{"code":"E05009306","name":"Langbourn","d":"M504.5,340.5L506.8,341.4L509.3,341.2L509.4,342.2L506.1,343.1L503.6,342.6L499.7,340.9L499.4,340.1L501.2,341.1L501.4,339.9L502.3,339.7L502.1,340.5L504.5,340.5Z","cx":504.8,"cy":341.6,"x":499.4,"y":339.7,"w":9.9,"h":3.4,"borough":"E09000001"},{"code":"E05009325","name":"Lansbury","d":"M595,321.4L594.2,323.7L593.2,323.7L593.5,327.3L596.4,330.4L597.3,334L599.2,334L600.2,331.7L601.3,331.3L607.6,335.7L608.6,337.6L606.9,338.4L605.2,340.7L596.4,343.1L579.5,344.7L580.7,341.8L578.4,341.8L578.4,339L575.3,339L576.8,335L590.6,325.8L593.6,322.6L594.8,319.9L595,321.4Z","cx":591.1,"cy":336.3,"x":575.3,"y":319.9,"w":33.3,"h":24.7,"borough":"E09000030"},{"code":"E05013894","name":"Larkswood","d":"M606,135.3L605.8,147.5L604.6,147.3L601,151.1L601.6,155.1L598,156.6L598.4,158.2L595.4,159.1L594.9,160.4L591.9,160.8L592,161.6L594.5,162.7L593.6,163.1L593.6,165.8L591.8,166.1L589.3,169L591.1,169L591.7,174.1L587.3,174L584.1,172.6L584.8,165.8L582.9,153.2L584.7,131.5L593.5,131.1L596,133.6L600.5,134.4L600.3,135.7L606,135.3Z","cx":592.6,"cy":148.9,"x":582.9,"y":131.1,"w":23.3,"h":43,"borough":"E09000031"},{"code":"E05014014","name":"Lavender","d":"M427,438.9L411.9,439.4L409.8,440.4L409.9,441.9L402.6,445.3L402.9,446.1L400,446.7L399.8,442.5L399,443.1L401,436.4L405.7,434.3L405,431.8L407.9,430.5L408.7,433.7L425.9,429.4L426,430.1L425.3,430.1L425.6,434.1L427,438.9Z","cx":412.4,"cy":437,"x":399,"y":429.4,"w":28.1,"h":17.3,"borough":"E09000032"},{"code":"E05013817","name":"Lavender Fields","d":"M405.5,542.4L400.6,546L399,541.3L391.6,541.5L391.9,542.4L387.8,543L387.7,542.4L386.3,542.8L384.4,542L386.2,539L386.3,532.5L392.3,528.9L392.8,530.8L399,528.9L398.3,526.4L401.8,524.5L402.3,527L408.9,524.9L412.6,524.7L413.1,534L406.2,534.6L408.1,539.6L409.3,539.9L408.5,541.5L407.4,540.3L405.5,542.4Z","cx":399.6,"cy":534.6,"x":384.4,"y":524.5,"w":28.7,"h":21.5,"borough":"E09000024"},{"code":"E05013708","name":"Laycock","d":"M474.7,269.1L481.5,276.7L485.3,277.1L487.6,283L482.4,284.5L482.6,286.8L478.7,287.4L476.6,279.2L465.3,283.6L464.8,279.8L464.2,280L462.5,275.2L463.5,272.7L466.4,268.3L467.8,269.9L472.3,266.3L474.7,269.1Z","cx":473.9,"cy":277,"x":462.5,"y":266.3,"w":25.1,"h":21.1,"borough":"E09000019"},{"code":"E05009380","name":"Lea Bridge","d":"M543.8,236.4L549,242.7L548.5,245.9L551.9,249.1L549.4,256.7L552.6,265.7L551.7,267L546.2,267.2L546,266.4L543.1,267.6L538.4,257.5L538.2,253.3L536.5,247.6L539.1,244.9L543.8,236.4Z","cx":544.8,"cy":253.4,"x":536.5,"y":236.4,"w":16.1,"h":31.2,"borough":"E09000012"},{"code":"E05013895","name":"Lea Bridge","d":"M589.2,221.9L592.8,224.6L584.1,231.4L574.3,236.9L576.3,241.9L570.7,244.6L568.8,247.2L568.8,248.4L564.9,249.9L561.4,248.2L558.4,248.7L556.7,247.6L554.1,248.4L550.9,247.6L548.5,245.9L549,242.7L543.8,236.4L547.3,228.4L549.6,230.1L558.6,225.5L559.9,225.1L560.4,225.9L562.9,224.2L563.5,224.8L565.5,223.6L567.4,225.1L568.1,227.4L571.2,226.3L572.4,228.2L581.7,223.4L581.1,222.5L586,219.6L589.2,221.9Z","cx":565.1,"cy":235.1,"x":543.8,"y":219.6,"w":48.9,"h":30.3,"borough":"E09000031"},{"code":"E05013726","name":"Lee Green","d":"M618,447.6L620.9,449.5L625.1,450.9L626.2,457.3L627.6,457.1L627.9,459L622.2,460L622,459.2L622.2,460.4L630.4,462.5L630.9,464L620.8,468L610.9,468.9L601.2,454.1L593.7,447.8L594.9,448L594.8,445.2L596.9,445L596.8,444.4L598,444L599.4,444.4L600.7,443.1L603.4,444L611.9,444L613.7,444.8L615.7,447.6L618,447.6Z","cx":612.9,"cy":455.7,"x":593.7,"y":443.1,"w":37.2,"h":25.9,"borough":"E09000023"},{"code":"E05013727","name":"Lewisham Central","d":"M588.8,424.4L591.1,429L591.1,432.4L592.2,436L595.5,437.9L599.9,443.6L599.4,444.4L598,444L596.8,444.4L596.9,445L594.8,445.2L594.9,448L589.1,444.8L586.4,441.3L583,429.4L580.6,425.6L584,423.6L584.7,423.6L586.5,426.1L588.8,424.4Z","cx":589.5,"cy":436,"x":580.6,"y":423.6,"w":19.3,"h":24.4,"borough":"E09000023"},{"code":"E05013896","name":"Leyton","d":"M594.5,232.2L593.9,236.4L592.2,238.7L591.1,242.3L592.9,250.3L596,253.5L597.4,257.3L594.1,262.6L591.6,265.1L584.3,267.4L582.5,260.2L576.1,256L575.6,253.7L573.8,251.2L568.8,248.4L568.8,247.2L570.7,244.6L576.3,241.9L574.3,236.9L584.1,231.4L585.6,234.7L588.1,234.1L589.3,232.8L589.7,233.5L592.8,231L594.5,232.2Z","cx":584.6,"cy":248.6,"x":568.8,"y":231,"w":28.5,"h":36.4,"borough":"E09000031"},{"code":"E05013897","name":"Leytonstone","d":"M623.9,226.5L625.8,228.2L626.8,227.6L627,232.2L625.3,232L626.8,239L625.2,240.2L621.5,240.4L621.3,244.4L616.7,244L615.6,245.3L598,234.1L602.3,232L613.4,222.7L614.7,225L620.4,221.9L622.8,227.2L623.9,227.2L623.9,226.5Z","cx":615.1,"cy":233.7,"x":598,"y":221.9,"w":29,"h":23.4,"borough":"E09000031"},{"code":"E05013742","name":"Lillie","d":"M378.4,397.2L374.5,401.2L372.8,398.5L369.7,401L368.3,400.4L366.4,396.8L360.8,400L358.9,395.7L372.3,389.2L378.4,397.2Z","cx":369.5,"cy":395.7,"x":358.9,"y":389.2,"w":19.4,"h":12,"borough":"E09000013"},{"code":"E05009307","name":"Lime Street","d":"M509.6,335.9L506.8,341.4L504.5,340.5L506.6,335.9L508.2,336.7L508.4,335L509.6,335.9Z","cx":506.8,"cy":338.4,"x":504.5,"y":335,"w":5.1,"h":6.5,"borough":"E09000001"},{"code":"E05009326","name":"Limehouse","d":"M561.1,341.2L568.7,341.6L571.1,342.6L574.2,346.8L572.7,348.1L572,350.2L569.4,350.2L568.2,351.3L567.1,350.4L568.9,348.3L565.7,349.6L561.8,347.3L560.2,347.3L560.7,346.2L559.6,347.1L554.7,346.6L554.7,345L557.3,343.7L558.3,341.1L561.1,341.2Z","cx":565.2,"cy":345.4,"x":554.7,"y":341.1,"w":19.4,"h":10.3,"borough":"E09000030"},{"code":"E05013915","name":"Little Ilford","d":"M679.7,256.2L683.2,261.1L683.6,263.8L684.7,263.8L685.7,274.8L685.4,280.7L681.7,280L678.4,280.9L671.9,287.4L670.1,287.4L669.2,281.9L672.1,276.9L672,273.1L670.1,268L669.5,268.2L669.3,265.7L666.5,261.7L663.4,260.5L655.2,254.1L654.1,248.2L663.9,243.4L665.5,246.8L668.4,249.5L668.8,251.8L670.3,252.2L671,253.7L671.9,253.5L672.1,254.8L673.4,255L675.7,257.9L679.7,256.2Z","cx":672.2,"cy":264.3,"x":654.1,"y":243.4,"w":31.6,"h":44,"borough":"E09000025"},{"code":"E05013799","name":"Little Venice","d":"M394.9,318.4L402.8,327.3L391.2,327L389.5,325.3L387,325.1L381.9,322.4L383,320.9L379,317.8L385.7,313.3L387.5,312.9L386.9,312.1L387.5,311.6L388.4,312.1L389.5,311.2L394.9,318.4Z","cx":390.2,"cy":320.4,"x":379,"y":311.2,"w":23.8,"h":16.2,"borough":"E09000033"},{"code":"E05011104","name":"London Bridge & West Bermondsey","d":"M514.2,356.8L512.6,360.7L521.3,367.5L516.8,369L517.7,373.2L513.8,374.7L509.8,380.1L507.7,378.9L505.5,379.1L503.3,376.6L507.4,371.7L506.9,371.1L507.9,369.2L504.9,368.1L498.7,363.9L499.7,361L495.7,359.1L500,352.1L508.3,354L514.2,356.8Z","cx":508.2,"cy":364.9,"x":495.7,"y":352.1,"w":25.6,"h":28,"borough":"E09000028"},{"code":"E05009381","name":"London Fields","d":"M538.7,282.2L539,287.8L536.7,292.1L536.5,299.8L533.2,300.1L530.5,297.7L531.2,295.6L526.5,291.4L521.2,291.6L521.2,291L516.6,290.6L517.8,291.8L513.5,292.1L514.2,281.3L529.9,281.3L530.2,282.8L538.7,282.2Z","cx":527.2,"cy":288.2,"x":513.5,"y":281.3,"w":25.5,"h":19,"borough":"E09000012"},{"code":"E05014064","name":"Longbridge","d":"M729.6,291.6L715.2,293.5L699.2,280L706.1,275.2L712.7,273.3L714,270.8L713.7,272.7L715.1,277.9L727.9,270.4L730,268.3L734.4,278.6L733.8,279.8L731.6,280.3L731,282.4L727.8,286.8L729.6,291.6Z","cx":718.8,"cy":281.8,"x":699.2,"y":268.3,"w":35.2,"h":25.1,"borough":"E09000002"},{"code":"E05011227","name":"Longlands","d":"M722.6,490.3L722.6,492L724.5,491.8L724.6,492.9L725.3,492.9L725.1,495L724.2,495.8L724.8,497.7L724.1,497.7L723.3,502.1L721.4,501.9L721.7,505.1L722.5,505.1L721.6,507.4L723.2,507.6L723.3,510.4L722.7,510.4L721.5,513.9L718.1,513.1L717.7,516.5L717,517.3L710,509.9L702.9,498.6L692.8,494.4L694.5,492.2L694.3,489.9L695,489.1L693.2,487.2L695.1,485.3L696.5,486.3L697.3,484.9L722.6,490.3Z","cx":711.2,"cy":498.1,"x":692.8,"y":484.9,"w":32.5,"h":32.4,"borough":"E09000004"},{"code":"E05013818","name":"Longthornton","d":"M453.1,532.1L451,537.3L447.9,538L447.7,542.6L448.6,546.2L442.8,548.7L442.3,548.1L431.7,556.1L427.9,554.4L429.4,551.9L426,548.1L426.5,547.7L425.5,545.5L430.5,541.8L428.8,539.6L426.3,540.9L426.5,539.6L424.8,537.1L422.2,539.2L427.5,530.8L434.7,522.6L432.6,525.5L433.4,526.4L428.9,531L432.9,531.9L435.5,530.2L445.5,534.6L446.2,531L447.2,532.1L452.9,532.7L453.1,532.1Z","cx":436.7,"cy":541.1,"x":422.2,"y":522.6,"w":30.9,"h":33.5,"borough":"E09000024"},{"code":"E05013685","name":"Lower Edmonton","d":"M575.9,128.1L573.7,133.6L572.9,132.8L568.9,138.2L567.2,138.7L564.3,137.8L564,135.3L556.7,133L555,135.3L546.6,133L546.2,133.6L535.1,131.9L538.5,126.6L538.6,123.7L537.1,123.3L535.1,126L531.9,126.9L531.8,124.3L527.8,112.7L530,113.4L530.2,112.9L534.5,112.9L538.4,114.8L539.6,113.8L540.3,114.2L540.5,113.4L551.5,116.3L551.8,115.5L553.5,115.7L553.1,120.1L563.5,122.8L564.7,125.2L575.9,128.1Z","cx":550.5,"cy":125.5,"x":527.8,"y":112.7,"w":48.1,"h":26.1,"borough":"E09000010"},{"code":"E05013819","name":"Lower Morden","d":"M363.6,566L363.4,570.6L365.2,570.6L369.2,574.2L367.1,580.7L367.1,584.3L363.4,579.7L361.4,582L355.9,577.8L351.6,583.9L352.2,584.3L351.2,586L346,593.2L334.7,586L327.6,579.1L326.1,571.1L329.4,569.8L328.7,568.7L335.7,569.2L336.3,568.3L334.9,566.2L336.8,564.9L336.3,564.3L342.5,562.2L342.2,563.3L343.2,563.2L346.6,568.5L345.8,569.1L346.7,570.6L348.2,569.8L350.7,566L354.6,567.5L363.6,566Z","cx":346.2,"cy":576.4,"x":326.1,"y":562.2,"w":43.1,"h":31,"borough":"E09000024"},{"code":"E05011247","name":"Loxford","d":"M686.6,277.1L686.4,281.1L685.4,280.7L685.7,274.8L684.7,263.8L683.6,263.8L683.2,261.1L681.2,257.9L682.3,257.1L684.4,261.1L685.3,267.4L686.3,269.5L685.7,272L686.6,277.1ZM684.3,255.8L685.7,256.5L687.2,256.2L688.9,257.7L693.4,270.8L701.6,268L701.8,268.5L701,268.7L701.6,270.4L706.5,268.7L707.1,271.4L708,271L709.2,274.4L706.1,275.2L700.9,279.2L696.8,281.3L696.2,280.3L689.4,282.2L686.9,281.3L686.1,272L686.7,269.3L685.6,267.4L684.9,261.9L682.4,257.1L684.3,255.8Z","cx":693.8,"cy":271.6,"x":682.4,"y":255.8,"w":26.8,"h":26.5,"borough":"E09000026"},{"code":"E05013800","name":"Maida Vale","d":"M380.9,299.6L389.5,311.2L388.4,312.1L387.5,311.6L386.9,312.1L387.5,312.9L385.7,313.3L379,317.8L375.2,314.8L370.5,317.3L370.7,312.1L371.6,312.7L375.8,304.3L376.6,301.8L375.8,300.7L377.5,296.1L380.9,299.6Z","cx":379.5,"cy":308.9,"x":370.5,"y":296.1,"w":19,"h":21.7,"borough":"E09000033"},{"code":"E05013916","name":"Manor Park","d":"M672.1,276.9L661.7,273.3L663.4,282.2L655.8,285.1L655.7,284.3L654.9,284.7L653,277.5L652.5,276.9L651.2,277.3L650.2,273.7L656.4,271.2L647,268.2L646.3,260L659.2,260.9L656.8,255.6L663.4,260.5L666.5,261.7L668.3,265.1L668.9,264.9L669.5,268.2L670.1,268L672,273.1L672.1,276.9Z","cx":658.9,"cy":269.9,"x":646.3,"y":255.6,"w":25.8,"h":29.5,"borough":"E09000025"},{"code":"E05013898","name":"Markhouse","d":"M586,219.6L581.1,222.5L581.7,223.4L572.4,228.2L569.1,221.7L568.8,218.1L572.7,216.2L571.9,210.5L571,209.2L582.1,207.3L582.8,213.7L586,219.6Z","cx":576.8,"cy":217.4,"x":568.8,"y":207.3,"w":17.2,"h":20.9,"borough":"E09000031"},{"code":"E05013553","name":"Marlborough","d":"M203.9,186.7L216.3,196.4L215.6,197.4L216.6,198.1L207.4,200.8L208.8,203.3L209.7,203.3L209.8,204.4L208.2,204.6L208.6,209.4L201.5,209.5L199.3,211.8L198.6,211.3L197.9,206.3L196.6,205.9L196.4,202.5L195.2,199.5L197,198.5L197.4,199.3L198.2,199.1L190.9,181L194.3,179.5L203.9,186.7Z","cx":202.4,"cy":195.9,"x":190.9,"y":179.5,"w":25.7,"h":32.4,"borough":"E09000015"},{"code":"E05013977","name":"Marshalls & Rise Park","d":"M833.7,168.8L834,173.8L833.2,175.1L836.9,179.3L833,181.6L834.2,184.2L839.7,183.8L850,187.5L856.4,188.8L849.9,196.2L840.9,200.6L837.5,201.4L827.6,208.2L826.8,207.1L823,210.1L821.8,208.4L820.3,208.2L821,210.1L816.1,213L809.4,203.3L807.7,196L809.5,190.9L812.2,187.3L811.3,183.8L812.2,179.1L817.2,172L818.2,167.7L823.7,169.2L833.7,168.8Z","cx":826.8,"cy":190.5,"x":807.7,"y":167.7,"w":48.7,"h":45.3,"borough":"E09000016"},{"code":"E05013917","name":"Maryland","d":"M623.7,264L624.4,265.9L620.4,268.5L622.2,272.3L622.7,272.2L622.2,274.2L619.4,275.2L619.8,276.2L617.4,276.9L617.7,277.5L612.7,281.3L611,280.7L609.8,281.5L609.1,278.4L604,281.7L604.4,279.8L600.6,272L601.5,271.4L599.4,268.2L608.3,266.1L611.1,266.4L611.2,268.7L615.7,267.8L617.2,265.9L615.7,263.6L617.5,261.7L618.1,262.6L621.7,260.5L623.7,264Z","cx":612.3,"cy":271.9,"x":599.4,"y":260.5,"w":25,"h":21.1,"borough":"E09000025"},{"code":"E05013801","name":"Marylebone","d":"M413,338.2L406.1,330.8L407.7,328.7L408.6,325.6L423.9,321.3L429.2,320.5L431.2,321.6L433.6,330L435.1,332.1L413,338.2Z","cx":420.6,"cy":329.2,"x":406.1,"y":320.5,"w":29,"h":17.7,"borough":"E09000033"},{"code":"E05013978","name":"Mawneys","d":"M812.2,179.1L811.3,183.8L812.2,187.3L809.5,190.9L807.7,196L808.9,200.8L797.1,211.4L794.6,212.2L780.4,211.4L783.2,205.7L783.6,194.1L782.7,191.3L783.3,183.5L781.9,180.6L784.3,179.5L792.7,178.1L800.2,174.9L807.1,173.4L812.2,179.1Z","cx":796.2,"cy":192.8,"x":780.4,"y":173.4,"w":31.9,"h":38.8,"borough":"E09000016"},{"code":"E05014065","name":"Mayesbrook","d":"M750.8,267.8L748.8,275L752.9,275.8L751.2,278.2L754,280.9L755.6,288.5L729.6,291.6L727.8,286.8L731,282.4L731.6,280.3L733.8,279.8L734.4,278.6L730,268.3L731.7,266.3L746.6,268L750.8,267.8Z","cx":741.4,"cy":279.5,"x":727.8,"y":265.9,"w":27.8,"h":25.7,"borough":"E09000002"},{"code":"E05011248","name":"Mayfield","d":"M731.7,266.3L727.9,270.4L715.1,277.9L713.7,272.7L714,270.8L712.7,273.3L709.2,274.4L708,271L707.1,271.4L706.5,268.7L709.4,267.8L706.2,258.8L705.6,252.9L711.4,253.1L722,249.3L721,253.7L734.2,249.5L733.9,254.6L732,257.9L733.1,261.3L731.7,266.3Z","cx":719.6,"cy":262.1,"x":705.6,"y":249.3,"w":28.5,"h":28.5,"borough":"E09000026"},{"code":"E05013820","name":"Merton Park","d":"M383,544.3L380.6,547.7L377.4,548.5L373.9,551.7L372.7,560.3L369.6,565.1L368.8,565.1L363.6,552.1L350.8,538L356.6,534.8L362.4,529.3L365,528.1L368.9,533.1L383,544.3Z","cx":367.1,"cy":544,"x":350.8,"y":528.1,"w":32.2,"h":36.9,"borough":"E09000024"},{"code":"E05014085","name":"Middle Park & Horn Park","d":"M642.5,454.9L651.3,455.2L661,457.7L660.7,461.9L660,462.1L658.3,470.8L656.8,472.2L660.4,474.1L659.7,476.7L656.8,475.8L656.5,476.9L653.3,475.6L651.5,477.5L644,472.6L640.5,471.2L639.2,476.2L634.7,476.2L629.8,474.3L628.8,471.4L629.8,471L629.5,466.7L631.6,465.7L630.4,462.5L622.2,460.4L622,459.2L622.2,460L627.9,459L627.6,457.1L626.2,457.3L625.1,450.9L638.5,454.7L642.5,454.9Z","cx":643.3,"cy":464.5,"x":622,"y":450.9,"w":39,"h":26.6,"borough":"E09000011"},{"code":"E05013709","name":"Mildmay","d":"M510.3,266.8L514,275.4L513.5,277.5L489.9,275.2L487.6,276.2L488.3,270.3L491,270.1L491,268.5L493.1,268.7L492.9,267.4L493.5,268L494.7,267L494.3,262.8L495,262.8L495,256.9L497.3,255.6L497.3,262.1L498.6,263L499.4,262.6L500.6,264.7L503.2,266.1L510.3,266.8Z","cx":500.9,"cy":270.4,"x":487.6,"y":255.6,"w":26.4,"h":21.9,"borough":"E09000019"},{"code":"E05009327","name":"Mile End","d":"M576.1,321.1L572,325.8L576.3,328.7L578.8,333.6L576.8,335L575.3,339L578.4,339L578.4,341.8L580.7,341.8L579.5,344.7L568.7,341.6L561.1,341.2L564.3,333.2L561.5,329.1L560.5,319.2L568.6,315.5L569.9,319.4L574.4,317.6L576.1,321.1Z","cx":569.5,"cy":330.5,"x":560.5,"y":315.5,"w":20.1,"h":29.1,"borough":"E09000030"},{"code":"E05013645","name":"Mill Hill","d":"M365,165.2L364,166.9L362,167.5L358.5,165.4L356.2,171.1L356.8,171.7L356.5,172.8L355.5,172.4L354.9,173.8L354.6,173.4L353.1,177.2L349.9,179.7L346.3,178.7L345.7,177.2L343.1,178.7L337.5,175.9L337.1,176.8L326.3,172.2L321.9,171.7L299.6,134L302.2,134L306.6,128.3L309.5,128.3L315.9,126.6L320,120.3L324.8,117L328.4,116.9L328,125.6L335.6,128.1L338.1,128.1L343.1,130.2L344.1,129.4L345.6,130.6L348.4,131.1L350.2,130.6L352.5,128.3L357,127.9L359.8,126.4L361.9,127.5L363.1,126.9L365.2,127.9L367.9,130.6L368.5,133L369.6,133.6L368.4,136.6L367,136.3L364,137L363.8,137.8L362.1,137.2L358.7,138.4L352.4,137.8L350.1,146.4L348.3,145.8L350.2,148.3L350.5,152.1L352.7,155.5L356.6,159.7L365,165.2Z","cx":333.8,"cy":148.4,"x":299.6,"y":116.9,"w":70,"h":62.8,"borough":"E09000003"},{"code":"E05011249","name":"Monkhams","d":"M630.2,120.1L636.1,125.6L638.8,127.1L638.6,127.9L640.7,130L640.5,130.6L643.1,132.5L648.8,140.8L652.7,145L645.9,158.7L642.5,168.1L636,165.2L632.7,160.4L629.2,158.5L628.2,160.8L627.6,160.4L627.2,159.3L629.7,153.8L629.6,151.5L623.7,142.7L614.7,138.6L621.5,138.9L621.3,136.3L623.2,135.1L624.6,132.3L626.3,131.5L627.9,123.5L628.8,122.9L629.2,119.9L630.2,120.1Z","cx":636.4,"cy":144.3,"x":614.7,"y":119.9,"w":38,"h":48.2,"borough":"E09000026"},{"code":"E05013783","name":"Mortlake & Barnes Common","d":"M328.4,419.1L328,433.7L315.1,431.3L298.7,431.6L298.3,428.8L297.5,429L297.1,426.9L288.1,425.9L276.5,428.4L276.3,424.2L278.3,423.1L284,417.2L287.2,420L291.7,421.9L298.1,421.6L304.2,418.1L306.5,415.5L309.1,415.1L311.2,415.8L312.5,418.3L312.3,419.3L313.5,420.6L317,419.1L319,419.8L321.5,418.9L328.4,419.1Z","cx":306.8,"cy":424.7,"x":276.3,"y":415.1,"w":52.2,"h":18.7,"borough":"E09000027"},{"code":"E05013939","name":"Motspur Park & Old Malden East","d":"M320.4,575.9L321.6,582L318.2,585L316.3,588.7L315,587.7L314.3,592.5L309.7,588.5L303.4,581L301.3,580.7L302.8,579.3L300.8,576.9L299.4,576.7L299.4,573.4L293.4,573.8L291.8,572.3L297.7,568.1L307.8,564.1L311.9,561.1L314.5,565.6L318.1,567.1L320.4,575.9Z","cx":309.8,"cy":575.5,"x":291.8,"y":561.1,"w":29.8,"h":31.4,"borough":"E09000021"},{"code":"E05014000","name":"Mottingham","d":"M651.5,477.5L654.3,480.4L655.7,483.8L657.9,485.9L657.8,486.6L664.9,495.6L668.8,502.4L673.3,508.2L672.7,509.1L673.3,510.2L671.9,512.1L670.9,515.6L670.6,516L666.7,513.3L665.6,517.9L662.6,517.1L661.6,517.5L661.2,519.8L659.8,519.6L659.3,520.9L660.7,521.3L660.4,523.8L658.6,525.5L645.1,511.4L647.2,512.9L650.7,508.5L650,503L649.1,502.6L649.8,501.7L648.8,495.8L649,492.2L644.3,495.2L643.8,494.3L642.9,494.8L641.8,493.5L641.3,494.4L641.6,493.5L638.2,490.8L638.8,489.5L638.4,486.3L636.6,486.1L634.4,487.6L633.7,482.8L638.5,481.7L638.2,478.7L640.5,471.2L644,472.6L651.5,477.5Z","cx":654.2,"cy":498,"x":633.7,"y":471.2,"w":39.7,"h":54.2,"borough":"E09000006"},{"code":"E05014086","name":"Mottingham, Coldharbour & New Eltham","d":"M697.3,484.9L696.5,486.3L695.1,485.3L693.2,487.2L695,489.1L694.3,489.9L694.5,492.2L692.8,494.4L693.7,494.6L693.1,496.9L691.3,495L691.4,496.2L689.3,499.6L683.2,505.1L683.2,506.1L680.4,507.4L680.8,508L679.1,509.7L677.4,510.4L676.6,507.8L673.8,508.7L668.8,502.4L664.9,495.6L655.7,483.8L654.3,480.4L651.5,477.5L653.3,475.6L656.5,476.9L656.8,475.8L659.7,476.7L660.4,474.1L667.9,474.1L668,473.5L669.6,478.8L669.3,480L697.3,484.9Z","cx":674.7,"cy":490.6,"x":651.5,"y":473.5,"w":45.8,"h":36.9,"borough":"E09000011"},{"code":"E05013743","name":"Munster","d":"M360.8,400L363.1,404.8L355.7,408.8L358.5,413.8L354.1,418.9L347,406.1L344.8,396.4L350.9,398.3L355.6,397.4L358.9,395.7L360.8,400Z","cx":353.7,"cy":405.3,"x":344.8,"y":395.7,"w":18.2,"h":23.2,"borough":"E09000013"},{"code":"E05013594","name":"Muswell Hill","d":"M438.2,186.1L439.1,186.1L441.3,188.8L444.3,187.3L446.9,190.3L445.8,198.9L446.7,201.5L441.5,203.6L441.5,204.8L442.1,204.6L442.9,205.9L441.4,206.9L441,212.4L438.7,213.3L438.8,212.4L435.8,212.6L433.6,213.5L433.2,210.9L430.4,211.8L431.2,208.2L430.2,204.6L429.8,204.8L429.5,201.2L428.9,201.2L428.8,200L426.7,200L426.1,197.7L427.5,197.6L427.6,190.9L432.3,189L434.3,190.1L434.3,188L434.7,187.7L435.1,188.4L437.5,186.5L437.7,185.2L438.2,186.1Z","cx":436.9,"cy":198.8,"x":426.1,"y":185.2,"w":21,"h":28.4,"borough":"E09000014"},{"code":"E05014107","name":"Myatt's Fields","d":"M476.2,402.7L485.9,409.2L485.1,413.9L486.6,417.4L484.1,421.7L474.9,420.8L471.1,421.6L471.6,406.1L473.2,400.8L476.2,402.7Z","cx":477.9,"cy":412.9,"x":470.9,"y":400.8,"w":15.8,"h":20.9,"borough":"E09000022"},{"code":"E05011470","name":"New Addington North","d":"M598.1,645.8L596.5,644.4L593.5,643.8L594.3,646.5L592.2,649.4L591.7,654.3L585.6,653.9L580,656.6L578.8,656.2L574.8,646.3L568.1,640L573.1,635.5L574.4,637L582.7,629.4L588.8,637L590.4,637L594.2,639.7L598.1,645.8Z","cx":582.9,"cy":643.5,"x":568.1,"y":629.4,"w":30,"h":27.2,"borough":"E09000008"},{"code":"E05011471","name":"New Addington South","d":"M598.1,645.8L605.4,681.9L608.3,684.6L607.1,690.5L603.8,691L602.3,688.2L596,681.7L591.5,681.7L589.6,680.2L590.6,678.7L588.6,679.2L586.8,677.5L587.5,676.2L585.9,676.2L584.6,673.7L583.6,673.3L582.3,670.7L579.7,668L580.4,666.9L578.1,666.9L577.8,664.6L570.6,655.1L573.3,655.6L577.9,654.5L578.8,656.2L580,656.6L585.6,653.9L591.7,654.3L592.2,649.4L594.3,646.5L593.5,643.8L596.5,644.4L598.1,645.8Z","cx":592.5,"cy":667.1,"x":570.6,"y":643.8,"w":37.7,"h":47.2,"borough":"E09000008"},{"code":"E05013728","name":"New Cross Gate","d":"M549.9,383.7L552.4,390.2L554,404.2L557,412.8L553,414.1L549.6,413.9L548.1,411.3L540.2,405.9L541.8,398.1L541,392.4L541.7,390.5L540.4,388.3L542.1,388.8L544.5,388.3L545,387.5L542.9,386L543.6,385.2L549.3,382.9L549.9,383.7Z","cx":548.1,"cy":399.4,"x":540.2,"y":382.9,"w":16.8,"h":31.2,"borough":"E09000023"},{"code":"E05013940","name":"New Malden Village","d":"M311.6,537.3L311.8,540.7L313.8,542L314.5,548.1L313.9,552.1L312,554.6L312.2,558.2L311.3,560.1L311.9,561.1L303.6,566L303.4,564.5L302.3,562.8L301.1,562.8L300.8,561.1L299.8,562.6L297.2,563L296.9,563.7L294.9,562.4L294.4,562.8L291.1,558.8L289.8,554L286.7,552.5L300.1,548.3L297.9,537.3L304.1,536.7L306.5,534.2L307.3,532.1L311.6,537.3Z","cx":303.6,"cy":550.8,"x":286.7,"y":532.1,"w":27.8,"h":33.9,"borough":"E09000021"},{"code":"E05013686","name":"New Southgate","d":"M467.4,150.9L469.6,150.9L468.7,158.9L465.2,159.3L463.8,158.3L463.2,158.9L458.1,158.3L455.8,155.9L454.8,157.2L453.1,157L444.2,153.6L440.1,155.5L433.2,145.4L437.7,143.3L449.8,144.8L460.1,150.2L463.9,151.3L467.4,150.9Z","cx":451.4,"cy":151.3,"x":433.2,"y":143.3,"w":36.4,"h":16,"borough":"E09000010"},{"code":"E05011250","name":"Newbury","d":"M717.4,243.8L712.3,244.7L712.3,242.5L711.2,242.1L711.4,241.3L708.7,240.6L704,242.5L703,241.9L703.5,239.4L700.7,238.7L700.9,234.3L695.3,229.5L698.4,223.8L704,225.1L715.9,221.2L729.7,210.9L733.9,209L730.5,216L731.5,223.2L729.7,225.3L729.4,227.4L721.4,226.7L721.5,229.5L718.5,229.1L718.7,229.9L717.7,229.9L717.8,233.1L715.7,240.2L714.5,240.4L714.4,241.5L717.1,242.7L717.4,243.8Z","cx":714.1,"cy":228.2,"x":695.3,"y":209,"w":38.6,"h":35.8,"borough":"E09000026"},{"code":"E05011105","name":"Newington","d":"M490.7,392.4L491,396.1L483.5,401.4L485.4,402.7L486,404.6L481.7,406.3L476.2,402.7L481.2,401.6L478.8,398.1L479.3,397.8L477.4,396.4L478.3,394L475.8,392.2L483.8,379.9L484.9,381.2L486.9,380.1L487.3,383.7L490.7,392.4Z","cx":483.5,"cy":393,"x":475.8,"y":379.9,"w":15.2,"h":26.5,"borough":"E09000028"},{"code":"E05014015","name":"Nine Elms","d":"M449.6,402.9L445.8,411.5L444.5,411.1L443.6,412.2L438.2,406.1L439,404.8L437.9,403.5L434.3,405.2L429.5,409.8L429.8,396.4L442.2,398.7L442.4,398L447.9,396.2L452.2,393.8L454.8,394.7L453.3,399.5L450.5,401L449.6,402.9Z","cx":441.4,"cy":402.2,"x":429.5,"y":393.8,"w":25.2,"h":18.5,"borough":"E09000032"},{"code":"E05013595","name":"Noel Park","d":"M490.7,178.1L491.8,183.8L481.9,193L471,197.4L462.1,179.5L462.9,179.1L464.8,180.6L469.1,181.8L476,180L486.4,175.7L490.7,178.1Z","cx":477.9,"cy":185.7,"x":462.1,"y":175.7,"w":29.8,"h":21.7,"borough":"E09000014"},{"code":"E05013941","name":"Norbiton","d":"M262.9,530.6L266.1,531.4L269.4,533.3L282.4,546.6L282.3,547.9L280.8,549.6L279,548.9L277.2,550.4L276.1,549.8L276.1,551.5L275.1,552.7L275.4,554.4L269.6,549.3L262.3,548.7L255.7,547L255.9,541.3L254.2,538.2L254.8,538.2L254.4,535.4L252.8,535.2L253.8,531.2L257.9,530L262.9,530.6Z","cx":266.3,"cy":541.2,"x":252.8,"y":530,"w":29.6,"h":24.4,"borough":"E09000021"},{"code":"E05011472","name":"Norbury & Pollards Hill","d":"M474.1,545.5L469.6,550L463.9,551.9L455.8,557.8L453.1,552.7L449.9,549.3L448.6,546.2L447.7,542.6L447.9,538L451,537.3L453.1,532.1L454.2,531.4L467.6,538.8L474.1,545.5Z","cx":459.1,"cy":544.1,"x":447.7,"y":531.4,"w":26.5,"h":26.5,"borough":"E09000008"},{"code":"E05011473","name":"Norbury Park","d":"M478.8,512.5L478.2,518.6L481.8,519.8L481.4,521.3L483.1,521.5L483.4,523L485.7,523.6L485.4,524.5L484.6,524.5L483.9,528.7L485.1,530.6L487.2,530.2L492.7,534.4L491.1,535.9L491.6,536.3L486.6,539.9L479.6,541.3L474.1,545.5L467.6,538.8L454.2,531.4L455.4,531.6L456.9,530L457.4,527.8L459.3,527L462.5,519.8L467.4,516.3L471,511.4L474.9,511.4L478.8,512.5Z","cx":473.6,"cy":528.9,"x":454.2,"y":511.4,"w":38.5,"h":34.1,"borough":"E09000008"},{"code":"E05009398","name":"Norland","d":"M361.3,344.7L363.8,350.2L347.3,356.7L346.1,353.6L348.6,353L348.4,350.9L349.5,350.6L349.1,349.2L353.6,347.7L354.1,346.2L356.2,345.2L353.5,339.1L354.7,336.7L356.8,334.8L361.3,344.7Z","cx":355.8,"cy":347.4,"x":346.1,"y":334.8,"w":17.6,"h":21.9,"borough":"E09000020"},{"code":"E05013527","name":"North Acton","d":"M301.6,300.5L307.3,300.3L311.4,301.5L312.6,303L311.8,304.7L313.8,305.8L311.8,306.8L308.4,310.2L307.5,312.3L307.9,313.6L305.3,317.6L306.1,323.2L296.6,328.9L288.8,332.3L287,334.6L284.7,339.7L290.1,339L290.6,341.2L291.4,341.2L291.3,345L286,345.6L285.1,344.9L282.4,345.6L281.7,346.6L278.8,344.5L279.5,345.8L278.8,346L279.2,347.3L278.4,347.5L278.6,349.4L275.4,349.2L275.3,350L273.8,350.2L269.2,349.2L269.4,347.3L270.3,347.3L269.2,339.5L269.9,336.5L262.6,336.7L265.6,336.3L267.9,335L274.5,327.5L272.9,326.2L272.4,327L271.4,326.2L272,324.3L271.5,320.5L268.4,320.5L267.9,314L269.2,310.4L272.2,311.4L279.1,308.9L286.2,308.5L288.9,306.8L290.6,305.1L290.7,303.9L295.9,299.6L299.1,297.8L300.5,298.6L301.1,300.7L301.6,300.5Z","cx":287.3,"cy":322.2,"x":262.6,"y":297.8,"w":51.2,"h":52.3,"borough":"E09000009"},{"code":"E05011106","name":"North Bermondsey","d":"M536.5,363.5L538.6,366.4L538.3,367.3L534.8,367.5L535,368.3L534.1,368.5L535.3,374.5L534.6,375.1L536.1,375.7L540.3,381L543.8,381.2L538.9,383.9L518.1,368.8L521.3,367.5L512.6,360.7L514.2,356.8L518.3,358.4L520.4,360.3L517.3,364.3L520.5,361L528.8,364.1L536.5,363.5Z","cx":528,"cy":369.5,"x":512.6,"y":356.8,"w":31.3,"h":27,"borough":"E09000028"},{"code":"E05013760","name":"North Cheam","d":"M346,593.2L343.8,596.5L344.4,596.8L343.1,599.3L343.9,600.1L344.6,599.3L346.4,600.6L347.5,599.5L350.3,601L350.7,600.5L350.5,601.8L352.2,602.4L352,603.1L355.2,606.2L355.9,609.4L350.2,612.1L349.1,610.7L348.6,611.9L349.2,613.8L346.1,615.5L346.1,617.4L340.1,620.8L338.8,619.1L338,619.7L337.1,617.8L335.7,618.7L335.1,616.8L336.6,615.9L336,614.9L336.8,614.5L336.1,613.2L334.8,614.2L334.7,613L333.4,612.1L333,612.6L332.1,610.9L331.1,612.3L326.5,606L328,605.4L327.2,604.3L327.8,603.9L327.3,602.7L332.4,599.3L332.6,598L331.1,595.9L332.6,595.5L332.4,594.6L334.7,594L335,594.9L335.5,593L337.4,593L340,589.6L346,593.2Z","cx":340.6,"cy":605.7,"x":326.5,"y":589.6,"w":29.4,"h":31.2,"borough":"E09000029"},{"code":"E05013528","name":"North Greenford","d":"M206.9,257.5L217,260.5L228.1,267L234.2,272L235.4,274.6L238.8,276.7L240.6,279L238.5,279.2L239.5,280.7L239,283L236.8,280.5L234.9,280.1L226.2,283L223,285.7L221.8,285.7L222.1,284.3L221.2,281.9L218.6,283.6L218.9,284.3L217.2,283.4L214.9,284L215.5,285.3L214.6,285.9L208.5,284.5L206.7,283.8L203.3,277.3L200.1,277.7L202.7,266.1L204.4,262.4L194.1,266.1L190.2,266.1L190.3,265.3L188.6,264.9L188.5,265.9L184.9,264.7L184.9,264.2L182.2,264.7L182,263.2L177.8,261.7L178.2,260.4L175.9,258.5L175.2,256.4L192.8,251.6L197.4,255.4L206.9,257.5Z","cx":209.5,"cy":268.9,"x":175.2,"y":251.6,"w":65.4,"h":34.3,"borough":"E09000009"},{"code":"E05013529","name":"North Hanwell","d":"M206.6,342.2L197.1,344.3L194.3,343.1L189.1,343.7L187.8,342L189.8,341.2L189,338.4L190.9,338L191.9,335.3L190.7,333.4L191.8,331.3L191.7,329.3L188.5,324.1L191.1,319.2L190.4,314.6L192.8,312.5L199.5,312.7L201.3,311.6L205.3,312.1L208.6,311.2L209.2,313.3L208,313.8L211.2,326L211.8,326L212.4,333.1L213.3,333.1L213.7,337.4L212.1,340.5L206.6,342.2Z","cx":200.8,"cy":328.3,"x":187.8,"y":311.2,"w":25.9,"h":33.1,"borough":"E09000009"},{"code":"E05013554","name":"North Harrow","d":"M192.4,212.4L185.9,213.7L173.8,221.7L170.4,222.7L166.2,222.7L165.4,222.3L168.2,216.6L165.8,217L162.1,204.8L172.2,201.9L166.8,198.3L166.7,196L172.7,199.8L173.6,199.1L174.2,199.6L174.8,198.5L172.6,195.8L173.6,193.4L175.6,192.6L177.4,193.6L177.1,194.1L180.3,195.5L178.7,198.1L178.8,199.5L177.8,199.6L177.1,201.2L179.4,203.5L179,204L180.2,204.8L180.7,204L186.7,207.4L185.1,209.4L192.4,212.4Z","cx":174.4,"cy":209.4,"x":162.1,"y":192.6,"w":30.3,"h":30.1,"borough":"E09000015"},{"code":"E05013784","name":"North Richmond","d":"M276.3,424.2L276.5,428.4L282.8,426.9L282.2,429.2L282.8,429.7L282.2,429.9L282.5,433.4L274.8,433.2L264.8,437.9L256.4,437.2L255.8,433.7L249.6,435.1L247.7,433.4L248.2,432L245.1,432.2L238.7,434.5L232.6,440L225.6,432.4L227,421.9L228.1,420.4L237.2,415.7L242.5,417.9L246.3,418.1L251.2,420.8L256.6,421.6L258.3,414.3L260,413.9L261.2,415.1L259.8,422.5L263,425.2L262.9,426.7L268.3,426.5L276.3,424.2Z","cx":249.9,"cy":427.9,"x":225.6,"y":413.8,"w":57.2,"h":26.3,"borough":"E09000027"},{"code":"E05011107","name":"North Walworth","d":"M503.3,376.6L508.3,382.7L501.8,385.6L498.9,385.2L500.2,387.1L497.1,388.4L497.2,389L496.1,388.3L494,389.2L494.1,391.1L490.7,392.4L487.3,383.7L486.9,380.1L484.9,381.2L483.8,379.9L485.4,378L485.1,375.3L486.2,374.5L492.7,376.5L503.3,376.6Z","cx":495.1,"cy":382.1,"x":483.8,"y":374.5,"w":24.5,"h":17.9,"borough":"E09000028"},{"code":"E05014066","name":"Northbury","d":"M685.9,296.3L684.9,296.3L686,294.4L683.4,288L685.4,280.7L686.4,281.1L685.5,287.8L686.6,288.5L686.2,291.4L687.9,291.9L688.5,294.4L685.9,296.3ZM699.2,280L715.2,293.5L708.2,294L703.5,293.1L701,290.8L698.6,292.9L690.4,293.5L688.8,294.2L687.9,290.8L686.7,291L687.2,287.6L686,285.1L686.9,281.3L689.4,282.2L693.8,281.5L695.3,280.3L696.8,281.3L699.2,280Z","cx":698.1,"cy":287.8,"x":686,"y":280,"w":29.3,"h":14.3,"borough":"E09000002"},{"code":"E05014016","name":"Northcote","d":"M428.9,448.2L423.4,450.9L424.3,452.6L421.6,454.3L409,460L410.8,463.4L409.2,465.9L401.6,451.6L400,446.7L402.9,446.1L402.6,445.3L409.9,441.9L409.8,440.4L411.9,439.4L427,438.9L428.9,448.2Z","cx":414.3,"cy":448.9,"x":400,"y":438.9,"w":28.9,"h":27,"borough":"E09000032"},{"code":"E05013530","name":"Northfield","d":"M240.7,359.7L242.2,368.5L248.2,366.6L252,374.9L247.7,375.9L247.4,374.4L242,372.5L242.6,375.7L234.9,380.4L231.1,376.6L231.8,375.9L230.3,373L226.3,376.3L221.3,373L219.8,372.8L218.1,374.7L212.9,366.2L211.5,365.4L210.8,366.2L209.6,365L213.3,361.8L211.8,360.1L222.5,355.1L228.8,366.2L228.9,365.2L230.9,364.1L230.9,363.1L240.7,359.7Z","cx":229.8,"cy":368.1,"x":209.6,"y":355.1,"w":42.4,"h":25.3,"borough":"E09000009"},{"code":"E05013531","name":"Northolt Mandeville","d":"M182.9,264.5L184.6,268L180.7,273.1L180.8,273.9L183.3,272.5L185.7,274.4L183.8,276.5L183.2,275.4L181.2,276.2L181,277.3L183,279L176.3,281.1L171.8,287L171.1,289.5L164.9,287.8L147.9,278.6L136.5,273.9L136.6,272.5L148.3,267.6L157,261.1L156.9,260.5L159.1,264.2L162.2,262.3L162.7,263L175,258.6L175.2,256.4L175.9,258.5L178.2,260.4L177.8,261.7L182,263.2L182.2,264.7L182.9,264.5Z","cx":164.5,"cy":273.1,"x":136.5,"y":256.4,"w":49.2,"h":33.1,"borough":"E09000009"},{"code":"E05013532","name":"Northolt West End","d":"M158.8,284.5L157.9,289.3L159,291.4L160.5,290.8L160,293.5L157.7,292.9L157.6,296.5L155.7,295.9L153.8,303L155.6,302.8L153.1,309.3L146.4,307.4L145.9,308.9L143.2,306.6L117.5,299.9L116.6,300.3L114.6,299.2L114.2,297.3L112.5,295.6L110,295.6L109.8,293.3L107.6,292.3L107.5,291.6L109,290.6L107.6,289.3L107.6,288.3L110.7,288.7L124.7,284.3L133.2,284.7L136.1,284.1L135,278.2L134.7,277.7L133.1,278.2L132.1,274.1L136.6,274.6L136.5,273.9L147.9,278.6L158.8,284.5Z","cx":137.3,"cy":292.5,"x":107.5,"y":273.9,"w":53.1,"h":35.4,"borough":"E09000009"},{"code":"E05011228","name":"Northumberland Heath","d":"M813.7,414.5L810.3,415.5L807.6,417.7L805.6,417.7L803,416.4L802.6,419.5L799.3,419.7L799.3,418.7L797.2,418.9L795.9,420L791.3,421.2L790.8,422.1L788.1,422.3L787.1,421.9L787,420.4L785.9,421L783.8,420L782.6,421.4L782,420.4L777.5,419.3L777.8,417.9L778.6,417.9L778.6,415.3L775.6,415.8L774.6,411.3L776.1,409.6L774.9,406.5L775.5,406.1L773.9,405.2L776.7,403.7L786.4,401L787,404.4L790.8,403.7L791,400.4L792.6,400L791.7,404L795.3,405.4L796,405L795.4,406.5L799,407.7L798.9,408.4L800.9,408.8L800.6,409.6L802.1,409.9L803.6,409.2L804.1,408.6L803.2,406.7L803.9,406.5L805.2,409.4L806.4,409.9L808.3,409.8L812,407.5L812.2,409L811.5,409.2L813.7,414.5Z","cx":791.2,"cy":412.2,"x":773.9,"y":400,"w":39.8,"h":22.3,"borough":"E09000004"},{"code":"E05013596","name":"Northumberland Park","d":"M555.3,164.2L549.9,174.7L544.7,181.2L542.4,187.3L536.6,186.3L537.9,182.1L537,181.6L523.7,179.9L523.7,162.9L524.9,158L527.1,158.5L539.8,158L545.5,161.2L555.3,164.2Z","cx":537.4,"cy":170.4,"x":523.7,"y":158,"w":31.6,"h":29.3,"borough":"E09000014"},{"code":"E05013505","name":"Northwick Park","d":"M234.1,217.5L244.4,245.3L242.4,246.8L238,247L238.4,250.3L236.9,250.5L236.3,246.3L232.7,245.5L229.1,246.7L230,248.4L228.6,249.7L227.8,248.9L225.7,249.7L225.8,250.5L224.1,252L224.9,252.2L224.9,253.1L223,256L216.9,252.7L211.9,248.4L213.5,246.8L215.6,246.3L215,239.6L213.8,239.2L213.7,237.5L219.3,235.2L222.8,232.6L219.6,225.7L217.5,215.6L226.9,215.8L234.1,217.5Z","cx":227.8,"cy":235.5,"x":211.9,"y":215.6,"w":32.5,"h":40.3,"borough":"E09000005"},{"code":"E05013574","name":"Northwood","d":"M116.4,147.9L112.2,151.7L111.4,154.7L114.2,156.3L113.9,158.3L113.5,159.1L113,158.7L110.7,165.2L110.1,166L108.7,165.4L116.4,171.7L112.7,177.9L110.7,177.4L106.5,182.7L104.4,180.2L102.3,181.6L99.4,181.2L98.6,178.5L99.5,176.4L95.8,176.4L95,173.4L93.1,173L92.2,170.3L76,174.3L78.5,180L76.6,181.2L73.7,181.6L74,182.5L72.7,182.3L67.8,185L66.7,187.5L68,188.6L67,192.4L59.6,187.3L56.2,183.5L57.6,175.3L63.4,170.9L63.5,165.2L61,161.2L70,155.3L67.7,153.4L62.9,151.5L72.7,145.8L76.7,137.6L79.3,137.8L82.5,136.6L85.2,137L91.8,140.1L96.9,141L99.2,142.5L110.9,143.7L116.4,147.9Z","cx":86.9,"cy":161.6,"x":56.2,"y":136.6,"w":60.2,"h":55.8,"borough":"E09000017"},{"code":"E05013575","name":"Northwood Hills","d":"M125.8,149.8L126.8,157.6L128.4,162.3L127.6,165L127.9,171.3L130.7,178.3L130.2,179.9L133.3,180.8L135.9,190.3L135.8,192.8L126.9,196.8L126,194.1L124.9,194.1L124.5,192.6L125.2,192L124.1,190.7L121.6,194.1L118,190.7L116.8,192.4L117.1,193.2L118,193.2L118.3,194.5L115.7,194.9L115.3,193.4L113,194.1L111.9,190.9L108.2,192.2L105.2,184.6L110.7,177.4L112.7,177.9L116.4,171.7L108.7,165.4L110.1,166L110.7,165.2L113,158.7L113.5,159.1L113.9,158.3L114.2,156.3L111.4,154.7L112.2,151.7L116.4,147.9L117.5,148.6L125.8,149.8Z","cx":120.7,"cy":174.8,"x":105.2,"y":147.9,"w":30.7,"h":48.9,"borough":"E09000017"},{"code":"E05013533","name":"Norwood Green","d":"M207.2,372.5L198.9,372.8L189.1,366.9L180.2,369.4L174.3,373L171.6,378L171.1,377.2L168,379.9L168.6,380.8L163.9,383.3L163.9,382.4L161.6,380.4L159.2,374L156.8,373.8L156.8,371.7L148.9,375.3L148.2,373.8L146.6,374.2L148.2,370.7L149.9,371.1L150.4,366.4L158.2,368.8L159.1,355.1L155.4,355.5L155.8,354L197.1,344.3L198.2,347.3L198.2,350.2L197.3,354.2L195,355.5L197.5,358.9L196.6,359.9L202.6,368.3L207.2,372.5Z","cx":176.8,"cy":362.4,"x":146.6,"y":344.3,"w":60.6,"h":39,"borough":"E09000009"},{"code":"E05009399","name":"Notting Dale","d":"M356.8,334.8L354.7,336.7L353.5,339.1L356.2,345.2L354.1,346.2L353.6,347.7L349.1,349.2L347.1,345.4L346.1,345.8L346.4,346.6L344.6,347L340.8,335.9L347.9,335L355.4,331.5L356.8,334.8Z","cx":349.4,"cy":340.4,"x":340.8,"y":331.5,"w":16,"h":17.7,"borough":"E09000020"},{"code":"E05011108","name":"Nunhead & Queen's Road","d":"M541.9,407.1L541.9,416.6L543.1,422.9L542.4,423.8L544.2,428.6L547.3,430.1L546.9,430.7L548.1,431.6L544.3,429.9L548.2,438.9L545,442.3L538.4,436L535.5,436.2L532.7,433.2L533.7,433L533.3,431.6L534,431.3L533.4,428.2L532,424L528.8,422.1L528.2,419.3L528.7,414.7L527.7,414.7L529.4,410.7L534.8,408.2L537.9,408.2L538.2,407.7L539.2,408.2L540.2,405.9L541.9,407.1Z","cx":537.8,"cy":423.3,"x":527.7,"y":405.9,"w":20.5,"h":36.4,"borough":"E09000028"},{"code":"E05013687","name":"Oakwood","d":"M474.8,88.3L474.7,91.2L467,90.6L466.8,92.5L465.9,92.3L466,94.4L467.8,95.2L468.4,98.4L467.7,98.6L467.8,99.3L462.8,99.2L458.8,100.5L455.5,100.3L453.6,92.5L449.7,93.8L447.9,95.5L446.8,95.2L444.1,85.6L450,82.4L456.2,76.9L469.9,72.5L471,79.6L476,77.1L475.7,78.4L479.2,78.2L481.8,83L475.3,85.6L474.8,88.3Z","cx":461.9,"cy":86.4,"x":444.1,"y":72.5,"w":37.7,"h":28,"borough":"E09000010"},{"code":"E05011474","name":"Old Coulsdon","d":"M489,745.1L492.7,747L485.3,752.7L482.8,753.5L472.8,760.5L468.5,760.1L468.6,761.8L465.9,765.8L464.8,770.2L457.1,771L455.1,767.9L454.8,765.5L450,759.4L448.8,756.1L449.2,754.4L445.2,748.9L443,749.1L441.9,744.5L437.5,746.6L435.2,745.9L434.3,743.6L435.5,740.3L436.1,740.3L435.9,738.2L436.5,738.4L435.7,733.5L437.5,733.3L437.2,732.2L439.8,724.5L443,720L443.3,716L446.5,714.5L448.6,717.9L449.8,718.3L451.2,717.3L450.9,714.5L449.8,713.3L451.8,712.4L449.7,706.3L450.6,706.1L452.4,703.4L452.6,705.5L455.6,705.7L460.9,703.2L461.9,700.6L465.5,708.9L466.3,715.6L467.9,717.7L468.7,716.9L471,720L471.5,722.3L477.4,728.5L474.9,730.8L477.3,732.9L481.3,732L483.3,735L482.8,736.9L483.8,739.6L489,745.1Z","cx":460.6,"cy":738,"x":434.3,"y":700.6,"w":58.4,"h":70.4,"borough":"E09000008"},{"code":"E05011109","name":"Old Kent Road","d":"M540.4,388.3L541.7,390.5L541,392.4L541.8,398.1L541.5,401.6L539.2,408.2L538.2,407.7L537.9,408.2L534.8,408.2L532.1,409.6L529.7,404.6L520.3,408L518,398.1L516.8,398.3L516.6,394.9L512.1,395.1L512.2,393.6L513.6,393.8L514.1,390L514.9,388.8L512,386.3L514.1,383.7L515.8,385.8L523.3,387.9L526.5,389.8L531.4,389.4L535.9,387.1L540.4,388.3Z","cx":528.5,"cy":396.8,"x":512,"y":383.7,"w":29.8,"h":25.9,"borough":"E09000028"},{"code":"E05013942","name":"Old Malden","d":"M314.3,592.5L314.2,593.4L310,593.4L303.6,596.1L298.5,595.7L295.2,594.4L293.7,598.6L291,602L285.7,606L284.7,603.5L284.6,600.3L286.5,595.9L283.3,592.5L289.8,587.9L285.5,583.3L284.7,577.4L291.8,572.3L293.4,573.8L299.4,573.4L299.4,576.7L300.8,576.9L302.8,579.3L301.3,580.7L303.4,581L309.7,588.5L314.3,592.5Z","cx":295.6,"cy":587.7,"x":283.3,"y":572.3,"w":31,"h":33.7,"borough":"E09000021"},{"code":"E05014001","name":"Orpington","d":"M756.6,608.8L754.9,613.4L756.9,614.3L755.5,616.6L756.9,619.1L752.9,620.8L753,621.6L749.3,620.8L749,621.8L747.2,621.2L746.3,622.5L743.4,621.4L739.7,622.7L740,623.7L739.3,623.7L738.4,626.1L737.1,626.3L735.7,624.1L728.4,624.2L727.2,623.7L726.4,624.4L726.8,630L725.5,630.9L716.5,619.7L720,606.5L717.7,606.5L718.5,603.3L720.3,601.2L721,601.6L721.3,598.7L721.9,599.1L724.2,595.3L725.2,595.7L729.1,590.7L732,589L733.4,597L738.9,599.3L741.6,599.3L741.5,598.2L742.5,598.2L749.9,599.7L751.4,603.7L756.6,608.8Z","cx":735.2,"cy":610.9,"x":716.5,"y":589,"w":40.4,"h":41.9,"borough":"E09000006"},{"code":"E05013626","name":"Osterley & Spring Grove","d":"M207.2,372.5L212.1,373.8L214,379.5L217,381L220.5,380.8L223,382.4L223.6,387.5L224.6,389.4L230.5,390.5L232,391.9L221.8,398L199.4,418.1L198.4,416.4L197.9,416.8L195.5,414.5L193,415.5L192.4,414.9L192,414.3L193.7,412.6L193.7,410.9L185.8,410.7L186.5,402.1L175.3,404.6L177.1,400.4L175.5,399.7L170.3,400.4L168,397.4L170.3,398.1L170.7,397.2L170.7,393.8L168.5,393.6L169.4,390.5L169,390.2L169.5,390.2L170.3,387.5L173.9,386.2L171.2,379.3L169.7,378.9L171.1,377.2L171.6,378L174.3,373L180.2,369.4L189.1,366.9L198.9,372.8L207.2,372.5Z","cx":196.6,"cy":390.6,"x":168,"y":366.9,"w":64,"h":51.2,"borough":"E09000018"},{"code":"E05014108","name":"Oval","d":"M473.2,400.8L471.6,406.1L466.6,406.7L464.6,409.9L463.6,409.2L462.3,410.1L459.1,409.2L459.1,408.4L454.1,407.9L454.3,406.7L451.6,405.8L453.2,400.6L456.7,401.2L457.6,398.3L460.5,399.9L461.4,399.1L461.6,396.2L463.6,395.7L464,394.3L463.2,391.1L468.6,390L468.7,390.7L469.7,390.7L470.2,393.2L469.2,394.3L470.5,396.6L469.9,398L473.2,400.8Z","cx":463.5,"cy":401.5,"x":451.6,"y":390,"w":21.7,"h":20.2,"borough":"E09000022"},{"code":"E05013744","name":"Palace & Hurlingham","d":"M354.1,418.9L355.4,423.6L356.2,423.6L357.4,423.3L360.4,419.5L366.6,417.4L367.2,420.6L369.1,420.4L370.7,422.3L373.5,420.2L377.5,418.7L378.7,425.7L381,430.3L374.3,432.2L364.2,431.3L355,427.8L355,426.7L354.4,427.5L347.6,423.1L340.7,413.4L339.9,409.6L341.6,409.2L340.5,403.3L341.9,402.1L341.3,400.4L345.4,398.7L347,406.1L354.1,418.9Z","cx":358.8,"cy":420.4,"x":339.9,"y":398.7,"w":41.1,"h":33.5,"borough":"E09000013"},{"code":"E05013688","name":"Palmers Green","d":"M486.4,132.3L485.8,136.1L486.7,139.5L484.6,143.1L482.5,143.7L482.7,146.9L483.9,146.5L484.3,147.1L476.3,151.3L467.4,150.9L471.3,143.9L466.5,142.5L465.7,143.5L464.5,143.5L458.7,140.5L460.1,135.3L462,135.7L462.5,130.2L468.7,128.3L469.8,128.7L471.7,125.2L473.2,126.2L472.2,129.2L475.5,133L476.3,133.2L477,131.3L477.7,131.5L479,127.1L479.9,128.8L486.4,132.3Z","cx":473.7,"cy":138.8,"x":458.7,"y":125.2,"w":28.1,"h":26.1,"borough":"E09000010"},{"code":"E05011475","name":"Park Hill & Whitgift","d":"M522.8,626.5L506.3,623.7L494.2,618.9L494.4,608.6L505.7,607.1L507.2,606.2L508.5,602.9L515.8,603.3L519.6,604.6L522.9,604.5L528.8,602L529.1,607.7L528.3,607.7L528,610.2L526,610.5L526.5,613.8L524.2,614.7L525,616.3L522.8,617.2L523.3,620.4L524.6,619.9L525.5,621L523.2,623.7L524.3,625.2L522.8,626.5Z","cx":512.1,"cy":614,"x":494.2,"y":602,"w":34.9,"h":24.6,"borough":"E09000008"},{"code":"E05014067","name":"Parsloes","d":"M779,267.8L779.5,286L755.6,288.5L754,280.9L751.2,278.2L752.9,275.8L748.8,275L750.8,267.8L765.7,265.1L774.2,261.5L777.9,257.1L778.5,257.7L779,267.8Z","cx":766.2,"cy":275.3,"x":748.8,"y":257.1,"w":30.8,"h":31.4,"borough":"E09000002"},{"code":"E05013745","name":"Parsons Green & Sandford","d":"M383.5,403.5L386.5,408.2L383.7,410.5L384.5,411.3L383.6,413L380.9,411.3L377.1,415.5L377.5,418.7L373.5,420.2L370.7,422.3L369.1,420.4L367.2,420.6L366.6,411.8L370.8,408.4L372.3,404.4L373.6,405.8L376.2,405.2L376.1,403.1L378.8,403.9L381.3,401.4L383.5,403.5Z","cx":375.4,"cy":411.6,"x":366.6,"y":401.4,"w":19.9,"h":20.9,"borough":"E09000013"},{"code":"E05011110","name":"Peckham","d":"M532.1,409.6L529.4,410.7L527.7,414.7L524.1,414.7L520.6,416L512.7,414.1L511.4,410.9L508.4,408L506.6,402.3L504.7,402L505.1,400L514.7,399.3L514.6,398.7L514.8,399.3L516.7,399.1L516.8,398.3L518,398.1L520.3,408L529.7,404.6L532.1,409.6Z","cx":518,"cy":407.7,"x":504.7,"y":398.1,"w":27.4,"h":17.9,"borough":"E09000028"},{"code":"E05011111","name":"Peckham Rye","d":"M548.1,431.6L549.9,433.7L550.8,437.5L550.8,442.5L549.8,447.2L551.5,447.8L555.1,450.9L549.8,460.6L546.3,460.2L540.5,462.9L536.1,459.8L530,452.2L526.2,443.3L525.4,436.8L532.7,433.2L535.5,436.2L538.4,436L545,442.3L548.2,438.9L544.3,429.9L548.1,431.6Z","cx":540.1,"cy":447.5,"x":525.4,"y":429.7,"w":29.7,"h":33.1,"borough":"E09000028"},{"code":"E05009400","name":"Pembridge","d":"M376.8,346.4L363.8,350.2L361.3,344.7L368.8,340.7L368.4,337.6L373.3,336.7L374.6,343L375.9,342.8L376.8,346.4Z","cx":369.4,"cy":344,"x":361.3,"y":336.7,"w":15.5,"h":13.5,"borough":"E09000020"},{"code":"E05014002","name":"Penge & Cator","d":"M557.1,509.3L558.8,509.9L559.9,508L563.9,507.8L564.9,508.7L562.2,534L555.2,534.2L548.9,530.8L547.3,534L548.8,535.2L548.3,535.7L546.9,535.2L545.7,537.1L544.1,538L544.4,539L543.6,539.7L543,539L541,540.3L538.9,543.4L538.3,542.8L537,543.6L536.4,542.8L535.9,543.2L535.5,542.6L536.5,542L535.9,540.5L535.3,539.6L534.2,539.9L533.1,538L533.9,537.3L530.5,537.5L530.8,535L529.6,534.4L529.4,535.4L526.2,533.5L533.3,521.1L530.6,519.4L530.6,517.1L531.4,516.9L530.5,513.7L530.1,512.9L529.6,513.3L529.4,512L528.9,512.3L528.7,511L525.7,508.7L520.6,506.6L520.9,505.9L519.8,505.7L519.7,506.6L519.3,505.5L522.8,506.8L523,506.1L523.9,506.2L526.2,507.8L530.5,507.6L535.5,511.4L537.1,511.8L539.1,512L539.6,510.4L543,510.6L543.1,512.7L549.9,512.1L549.5,512.9L552.6,512L552.5,511.4L555.1,510.4L555.8,509.3L557.1,509.3Z","cx":545.4,"cy":523.5,"x":519.3,"y":505.5,"w":45.6,"h":38.1,"borough":"E09000006"},{"code":"E05013534","name":"Perivale","d":"M239,283L243.5,289.3L242,290.2L241.6,300.1L240.1,302.2L245.8,304.3L244.9,305.3L240.7,304.7L239.1,305.3L237.9,308.7L235.6,308.5L235.3,307.2L234.5,307.2L234,308.3L233.2,307.6L233.9,306L232.6,305.8L230.8,307.2L230.2,309.6L226.9,310.2L225.3,308.1L225.2,306.2L222.7,305.1L221.1,306.4L221.3,307.7L218.3,310.2L216,307.7L216.2,306.2L211.8,305.5L210.6,306.4L210.3,310.4L208.6,311.2L205.3,312.1L201.3,311.6L199.5,312.7L195.1,312.9L196.1,311.7L196.4,308.7L195.6,305.8L197.5,304.9L196.9,303.9L198.3,303L197.6,302.8L195.7,298.6L194.5,298.2L195.1,296.7L205.2,299.8L203.7,294.2L205.2,290.8L208.9,290L214,292.1L213.5,289.5L212.4,289.7L211.4,286.6L211.6,284.9L214.6,285.9L215.5,285.3L214.9,284L217.2,283.4L218.9,284.3L218.6,283.6L221.2,281.9L222.1,284.3L221.8,285.7L223,285.7L226.2,283L234.9,280.1L236.8,280.5L239,283Z","cx":221.3,"cy":297.2,"x":194.5,"y":280.1,"w":51.3,"h":32.7,"borough":"E09000009"},{"code":"E05013729","name":"Perry Vale","d":"M572.9,486.5L569.9,493.7L562.8,493.3L562.7,494.4L559.8,494.6L559.9,497.1L557,496L554.1,496.9L554,498.1L552.4,498.1L551.8,499.2L550.4,498.3L550.2,499.2L549.2,499.2L548.9,501.1L542.2,499.8L542.3,499L541.2,498.8L541.2,482.6L543,475.4L543.8,475L546.6,475.4L546.6,476L547.7,475L564.7,475.4L565.2,480.9L566.1,481.5L565.2,484.4L567.2,484.7L568,486.3L572.9,486.5Z","cx":554,"cy":486.9,"x":541.2,"y":475,"w":31.6,"h":26.1,"borough":"E09000023"},{"code":"E05014003","name":"Petts Wood & Knoll","d":"M711.1,565.2L710.8,567.1L712,568.9L711.7,569.8L712.5,570L712.9,573.8L710.7,583.7L709.5,584.5L712.6,587.1L714.9,587.5L718.2,591.1L721.3,591.7L724.8,590.6L726.7,593.6L725.2,595.7L724.2,595.3L721.9,599.1L721.3,598.7L721,601.6L720.3,601.2L718.5,603.3L717.7,606.5L720,606.5L716.5,619.7L710.7,608.3L709,607.3L707.8,604.8L708.6,604.3L704.2,596.6L702.7,597.8L701.7,597.2L700.9,602L695.7,599.3L694.9,600.3L690.8,597.6L691.7,596.1L689.4,594.9L688,597.2L685.6,598.6L677.2,592.8L673.3,591.9L674.4,589.8L676.9,588.8L677.9,587.5L678,583.7L679.6,581.4L679,581L679.6,579.9L680.3,580.1L682.3,575.7L681.9,572.1L679.9,567.5L683.5,562.4L681.1,558.8L684.2,560.3L700.2,564.9L705.8,565.6L711.1,565.2Z","cx":699.5,"cy":585.2,"x":673.3,"y":558.8,"w":53.4,"h":60.9,"borough":"E09000006"},{"code":"E05013802","name":"Pimlico North","d":"M435.5,371.7L437.6,376.3L448.6,385L447.5,386.2L436.9,388.4L431.2,383.5L428.7,384.1L426.9,382.7L429.3,379.5L432.9,371.5L435.5,371.7Z","cx":436.8,"cy":381.3,"x":426.9,"y":371.5,"w":21.7,"h":16.9,"borough":"E09000033"},{"code":"E05013803","name":"Pimlico South","d":"M448.6,385L452.3,387.7L447.4,392.4L440.8,394.1L429.8,392.6L428.7,384.1L431.2,383.5L436.9,388.4L447.5,386.2L448.6,385Z","cx":439.4,"cy":389.5,"x":428.7,"y":383.5,"w":23.6,"h":10.7,"borough":"E09000033"},{"code":"E05013576","name":"Pinkwell","d":"M79.9,354.4L95.3,358.2L94.9,360.1L98.1,359.9L102.1,362.7L104,361L107,362.9L108.8,359.7L126.1,359.7L122.4,365.8L119.7,364.7L119.2,365.4L117.8,369.6L118.1,372.5L117.1,374.9L116.6,379.7L91,376.8L67.4,373.4L70.4,360.5L71.4,360.7L73.6,355.9L76.4,354L79.9,354.4Z","cx":94.4,"cy":367.3,"x":67.4,"y":354,"w":58.6,"h":25.7,"borough":"E09000017"},{"code":"E05013555","name":"Pinner","d":"M162.4,173.2L167.2,177.8L173.6,193.4L172.6,195.8L174.8,198.5L174.2,199.6L173.6,199.1L172.7,199.8L166.7,196L166.8,198.3L147.4,185L130.2,179.9L130.7,178.3L127.9,171.3L127.6,165L128.4,162.3L126.8,157.6L125.8,149.8L131.2,149.4L139.2,146L148.8,144.1L150.1,147.3L150.7,152.1L149.3,154.7L147.6,154.5L148.6,167.1L149.9,168.4L151.3,166.5L155,164.6L162.4,173.2Z","cx":147.3,"cy":171.4,"x":125.8,"y":144.1,"w":48.9,"h":55.8,"borough":"E09000015"},{"code":"E05013556","name":"Pinner South","d":"M166.8,198.3L172.2,201.9L162.1,204.8L165.8,217L168.2,216.6L165.4,222.3L154.4,219.6L153.1,222.5L153.1,224.8L150.5,226.3L147.3,230.3L146.6,229L147.5,228L144.7,222.5L145.4,221.9L144.2,217.3L140.5,209.9L141.2,209.7L141.2,207.3L140.1,197.2L137.1,193.2L135.9,193.6L134.7,184.2L133.3,180.8L147.4,185L166.8,198.3Z","cx":151.3,"cy":203.9,"x":133.3,"y":180.8,"w":38.9,"h":49.5,"borough":"E09000015"},{"code":"E05013535","name":"Pitshanger","d":"M234,308.3L234.3,310.6L237.2,310.2L237.9,310.8L239.1,321.8L235.4,324.7L230,323.4L228.6,324.7L221.8,325.6L222.3,332.7L225.7,339.5L206.6,342.2L212.1,340.5L213.7,337.4L213.3,333.1L212.4,333.1L211.8,326L211.2,326L208,313.8L209.2,313.3L208.6,311.2L210.3,310.4L210.6,306.4L211.8,305.5L216.2,306.2L216,307.7L218.3,310.2L221.3,307.7L221.1,306.4L222.7,305.1L225.2,306.2L225.3,308.1L226.9,310.2L230.2,309.6L230.8,307.2L232.6,305.8L233.9,306L233.2,307.6L234,308.3Z","cx":221.9,"cy":320.5,"x":206.6,"y":305.1,"w":32.5,"h":37.1,"borough":"E09000009"},{"code":"E05014004","name":"Plaistow","d":"M645.3,511L643.5,512.9L640.6,512.3L635.5,512.7L633.4,515.2L631.6,523L630.2,523.6L629.9,528.7L633.5,529.7L634.1,531L632.3,533.7L628.3,537.1L628.4,536.3L626.5,535.2L625.1,536.7L624.5,536.7L624.9,535.9L622.7,535.9L623.3,532.9L622,532.5L621.4,534.2L616.2,535.2L611.4,525.3L608.5,522.4L611.1,520.3L610.5,518.6L611.8,515.6L613.1,514.8L614,511.8L616.2,512.7L620.4,507.8L621.4,507.6L621.1,505.7L623.3,505.7L626.5,504L629.5,504.3L634.6,500.3L645.3,511Z","cx":625.1,"cy":518.7,"x":608.5,"y":500.3,"w":36.8,"h":36.7,"borough":"E09000006"},{"code":"E05013918","name":"Plaistow North","d":"M646.3,297.8L649.1,307.7L646.5,308.3L639.1,315.9L634.6,309.6L623.6,304.1L625.4,300.7L626.4,294.8L630.5,295.2L635,294.4L635.2,295.8L636.9,295.4L637.5,297.1L636.5,297.5L637.2,299.8L635.8,300.1L636.3,301.7L646.3,297.8Z","cx":636.5,"cy":303.9,"x":623.6,"y":294.4,"w":25.6,"h":21.5,"borough":"E09000025"},{"code":"E05013919","name":"Plaistow South","d":"M651,316.9L651.6,322.4L653.3,327.7L644,332.7L632.1,332.3L633.1,326.8L631.1,322.6L633.1,321.4L646.5,308.3L649.1,307.7L648.9,309.6L651,316.9Z","cx":642.9,"cy":322.6,"x":631.1,"y":307.7,"w":22.1,"h":24.9,"borough":"E09000025"},{"code":"E05013920","name":"Plaistow West & Canning Town East","d":"M639.1,315.9L631.1,322.6L633.1,326.8L632.1,332.3L624.9,332.7L624.3,331L625.3,329.6L623.8,327.3L619.1,327.9L619.5,324.5L618.9,320.1L620.2,318.2L622.1,317.3L622,316.7L618,316.9L618,311.6L619.9,312.3L620.9,309.8L618.6,308.1L625.7,305.5L628.3,306.2L634.6,309.6L639.1,315.9Z","cx":627.3,"cy":318.3,"x":618,"y":305.5,"w":21.1,"h":27.2,"borough":"E09000025"},{"code":"E05013921","name":"Plashet","d":"M672.1,276.9L669.2,281.9L670.1,287.4L671.9,287.4L667.9,289.9L656.7,294L650.6,288.5L654.7,286.2L655.8,286.6L654.9,284.7L655.7,284.3L655.8,285.1L663.4,282.2L661.7,273.3L672.1,276.9Z","cx":662.7,"cy":284.9,"x":650.6,"y":273.3,"w":21.6,"h":20.7,"borough":"E09000025"},{"code":"E05014087","name":"Plumstead & Glyndon","d":"M728,393.6L724.6,392.4L724.1,395.5L721.4,398.3L722.3,398.7L722.1,399.9L721,399.7L721.3,398.5L718,398.5L711.7,401.8L711,401.8L711.3,400.4L703.5,400.2L702.4,398.7L696.6,396.8L697.7,393.2L698.5,382.4L705.5,384.6L707.2,384.4L727.1,374.2L724.4,388.6L729.2,388.1L728,393.6Z","cx":712.9,"cy":389.9,"x":696.6,"y":374.2,"w":32.6,"h":27.6,"borough":"E09000011"},{"code":"E05014088","name":"Plumstead Common","d":"M728,393.6L730.4,394.3L729.2,401.4L733.8,405L734.5,407.1L736,406.9L741.2,410.5L737,416.4L732.5,410.7L730.2,412.8L728.6,411.8L726.8,413.6L725.8,413L725.2,413.8L720.7,411.8L718.8,416L714.8,416.6L709.9,421.4L707.5,422.3L704.6,421.9L703.6,419.8L701.5,418.9L702.6,413.2L696.9,409.8L697.1,408.8L693.8,407.3L694.4,406.3L690,405.6L690.8,399.7L694.3,398L695.4,396.4L702.4,398.7L703.5,400.2L711.3,400.4L711,401.8L711.7,401.8L718,398.5L721.3,398.5L721,399.7L722.1,399.9L722.3,398.7L721.4,398.3L724.1,395.5L724.6,392.4L728,393.6Z","cx":714.2,"cy":407.2,"x":690,"y":392.4,"w":51.2,"h":29.9,"borough":"E09000011"},{"code":"E05013821","name":"Pollards Hill","d":"M455.8,557.8L455.5,558.8L457.4,560.1L450.7,567.5L451.9,567.9L445.3,572.9L416.3,558.8L415.6,557.1L417.8,549.6L421.6,551.5L425.7,547.7L429.4,551.9L427.9,554.4L431.7,556.1L442.3,548.1L442.8,548.7L448.6,546.2L449.9,549.3L453.1,552.7L455.8,557.8Z","cx":438.1,"cy":559,"x":415.6,"y":546.2,"w":41.8,"h":26.6,"borough":"E09000024"},{"code":"E05013689","name":"Ponders End","d":"M590.4,82L588.6,99.3L586.8,105.1L582.7,103.2L582,103.9L572.5,98.6L569.9,99.3L569.1,100.9L569.2,103.7L567.4,103.7L543,97.3L543.7,91.5L539.6,90.2L532.7,89.4L533.2,80.9L549.4,82.8L549.5,80.9L550.4,80.9L550.5,79.9L551.9,79.9L559.8,83.2L563.9,83.9L564.8,84.9L565.5,84.7L566.2,81.5L570.5,82.8L571.2,79.6L578.7,79.9L579.1,78.8L590.4,82Z","cx":565.1,"cy":90.7,"x":532.7,"y":78.8,"w":57.7,"h":26.3,"borough":"E09000010"},{"code":"E05009328","name":"Poplar","d":"M606.5,344.5L602.2,345.2L597.8,350.2L591.8,351.3L591.7,350.8L587.5,351.1L582.2,350.4L575.7,348.1L571.1,342.6L579.5,344.7L596.4,343.1L605.2,340.7L606.9,338.4L608.6,337.6L606.5,344.5Z","cx":590.6,"cy":346.2,"x":571.1,"y":337.6,"w":37.5,"h":13.7,"borough":"E09000030"},{"code":"E05009308","name":"Portsoken","d":"M516.7,337.6L517.8,342.8L516.8,343L516.8,342.2L516,342.2L516.5,340.9L515.8,341.1L516.2,339.1L515.4,339.3L515.3,338.4L512.4,339.7L511.9,339.3L514.6,337.4L512.1,335.2L513.3,333.6L516.7,337.6Z","cx":515,"cy":337.9,"x":511.9,"y":333.6,"w":5.9,"h":9.3,"borough":"E09000001"},{"code":"E05013506","name":"Preston","d":"M263.1,234.1L268.6,241.1L273.9,244.7L272,246.7L266,242.3L263.2,243.4L260.7,246.3L257.6,247.2L253.8,247.6L244.4,245.3L234.1,217.5L255.3,228L263.1,234.1Z","cx":251.3,"cy":235.2,"x":234.1,"y":217.5,"w":39.8,"h":30.1,"borough":"E09000005"},{"code":"E05013667","name":"Primrose Hill","d":"M413.3,278.6L415.3,281.1L415.4,283.2L420.7,283.6L424.9,286.2L431.2,295.4L430.5,296.5L426.7,294.2L423.5,293.9L415.6,296.1L414.4,294.2L409,297.1L403.7,291.8L401.9,293.3L400.8,292.1L398.9,293.7L398.1,292.3L398.4,290L396.1,289.9L397,282.2L398.4,281.3L413.3,278.6Z","cx":411.7,"cy":288,"x":396.1,"y":278.6,"w":35.1,"h":18.5,"borough":"E09000007"},{"code":"E05011476","name":"Purley & Woodcote","d":"M465.4,658.9L465.5,660.2L472.5,657.7L472.5,661.4L469.5,665.5L471.2,667.6L469.2,669.4L471.2,672.2L472.5,672.6L472.8,674.1L476.1,673.5L478.5,674.9L480.3,684.2L484.1,690.3L479.4,693.1L475.8,688.6L475.5,691L471.6,694.5L471,693.7L469.8,694.3L469.5,693.7L467.6,694.9L465,691.2L460,693.5L461.9,700.6L461.4,702.5L455.6,705.7L452.6,705.5L450.9,698.9L452,697.1L449.8,695.4L450.6,694.7L450.5,692.4L444.6,689.9L440.7,686.5L439.8,683.8L433.7,687.4L431.9,684L429.7,672L433.2,670.7L433.4,669.4L434.4,668.8L433.1,665.7L433.6,665.4L442.2,660.8L447.4,661.5L446.9,659.5L449.1,659.3L448.7,658.3L451.6,657.2L452.4,655.5L453.6,656.2L454.1,660.4L465.4,658.9Z","cx":455.9,"cy":678.3,"x":429.7,"y":655.5,"w":54.5,"h":50.2,"borough":"E09000008"},{"code":"E05011477","name":"Purley Oaks & Riddlesdown","d":"M494.3,650.7L492.2,658.3L486.2,670.7L485.3,678.5L485.7,681.3L487.2,681.9L493.3,687.8L493.4,689.5L496,691.2L497.8,695L498.6,694.7L499.5,696L500.4,694.7L501.8,694.9L507,692.8L506.1,693.1L507,694.9L503.7,696.9L505.1,698.7L499.1,701.9L494.6,698.5L493.3,699L487.5,693.9L486.4,693.3L484.5,693.7L484.5,692.8L482.6,691L484.1,690.3L480.3,684.2L478.5,674.9L476.1,673.5L472.8,674.1L472.5,672.6L471.2,672.2L469.2,669.4L471.2,667.6L469.5,665.5L473,659.6L472.5,657.7L469.3,658.9L469,655.6L469.8,653L472.4,653L474.1,643.8L475.7,643.1L478.8,643.5L478.7,644.8L480.2,645.2L478.1,652.8L479.5,653.4L480.3,656.2L482,656L484.3,651.7L488.9,654.3L491,649.7L494.3,650.7Z","cx":483.6,"cy":670.8,"x":469,"y":643.1,"w":38,"h":58.8,"borough":"E09000008"},{"code":"E05009401","name":"Queen's Gate","d":"M386.2,361.8L390.8,362.4L392.3,374.2L379.9,375.3L381.1,372.1L380.6,372.3L380,368.8L379.1,368.8L379.1,367.7L375.6,363.3L380.7,360.7L386.2,361.8Z","cx":384.9,"cy":367.8,"x":375.6,"y":360.7,"w":16.7,"h":14.7,"borough":"E09000020"},{"code":"E05013804","name":"Queen's Park","d":"M358.8,315.4L352.1,314L349.1,314.4L348.5,312.1L348.6,308.5L349.6,307.7L349.3,305.5L358.2,302.8L363.8,302.6L365.8,310.8L363.4,310L362.7,316.7L361,315.4L358.8,315.4Z","cx":357.2,"cy":309.2,"x":348.5,"y":302.6,"w":17.3,"h":14.1,"borough":"E09000033"},{"code":"E05009309","name":"Queenhithe","d":"M489.2,342.6L489.4,343.3L491.5,344.1L491.6,342.8L492.2,342.8L491.6,345.8L491.6,345L490.5,345.6L486.2,344.7L486.3,343L489.2,342.6Z","cx":489.1,"cy":344,"x":486.2,"y":342.4,"w":6.2,"h":3.4,"borough":"E09000001"},{"code":"E05013507","name":"Queens Park","d":"M363.9,302.6L358.2,302.8L349.3,305.5L349.6,307.7L348.6,308.5L348.5,312.1L337.4,307.7L334.7,308.3L334.8,307.7L331.1,306.4L327.4,303.7L327.7,302.6L337.1,301.8L335.7,295L336.4,296.1L341.3,295L340.8,294.4L342,292.7L345.4,290.2L349.7,294.6L358.3,284.1L362.7,287.6L364.4,293.3L368.3,298.6L362.4,300.7L363.9,302.6Z","cx":349.6,"cy":298.9,"x":327.4,"y":284.1,"w":40.9,"h":28,"borough":"E09000005"},{"code":"E05013508","name":"Queensbury","d":"M293.7,181.9L287.3,184.6L287.6,185.4L287,185.6L289.5,189.9L289.3,194.7L284.2,197.7L284.3,198.9L283.1,200.6L279.9,201.7L289.5,205L288.6,205.7L288.3,207.8L283.6,210.3L280.2,210.1L272.9,215.1L271.1,215.3L273.3,209.7L272.5,209.7L269.8,203.3L267.7,193L266.1,190.3L260.4,187.3L268.7,183.1L276.9,181.6L276.3,180.8L280.9,177.9L283.4,177.9L288,174.1L293.7,181.9Z","cx":278.4,"cy":193.4,"x":260.4,"y":174.1,"w":33.3,"h":41.1,"borough":"E09000005"},{"code":"E05013979","name":"Rainham & Wennington","d":"M892.1,318.8L889.8,322.2L889.5,324.9L893.7,326.2L894.4,329.4L893.3,330.4L888.9,328.3L885.3,328.5L889.9,339.1L888.6,340.3L889,344.7L890.4,345L890.9,350L888.6,350.6L888.4,351.3L880.8,352.5L872.8,352.7L872.1,354L872.8,356.7L876.8,366.4L870.2,370.4L869.2,369.2L867,369.4L861.4,371.7L859.6,371.7L858.1,372.8L856.8,374.7L855.4,382.4L852.6,384.6L851.8,384.4L852.3,383.5L851.2,384.8L842.4,386L836.9,387.7L826.7,388.3L822.2,380.1L821.5,374L820.5,371.9L822.1,370.6L821,369.2L820.5,366.4L817.8,362.6L817.9,361L815.8,355.1L810.6,350L808.3,349.4L801.2,344.9L799.8,343.1L793.8,342.8L793.4,341.6L792.5,341.8L793.4,335.2L796.6,324.5L804.7,327L809,329.4L811.9,331.9L816,337.4L816.4,336.9L817.6,337.2L819.2,335.3L820.8,335L822,332.9L825.1,331.7L826.5,330L828,329.6L828.3,326L833.3,324.7L836,323L835.6,322.4L841.6,318.4L847.5,312.1L853.6,307.2L858,301.1L860.7,292.5L871.8,294.8L876.6,293.7L877.9,295.9L876.4,301.1L881.1,303.2L878,317.6L892.1,318.8Z","cx":848.8,"cy":342.6,"x":792.5,"y":292.5,"w":102,"h":96.1,"borough":"E09000016"},{"code":"E05013822","name":"Ravensbury","d":"M403.1,571.3L401.5,569.8L397.3,568.1L392,575L388,578.2L381.2,583.3L379.8,582.2L383.2,560.7L382.4,557.4L383.8,556.3L383.6,555L384.4,554.2L382.4,551.7L383.5,551.2L383.5,548.9L381.4,549.3L380.6,547.7L383,544.3L397.7,558.4L406.1,561.6L403.4,565.6L404.8,567.7L405,569.8L403.1,571.3Z","cx":390.2,"cy":564.3,"x":379.8,"y":544.3,"w":26.3,"h":39,"borough":"E09000024"},{"code":"E05013746","name":"Ravenscourt","d":"M314.8,386.7L313.5,384.1L314.9,369.2L313.9,368.5L313.1,368.8L326.5,364.3L327.2,366.9L326.4,368.1L326.5,375.9L327.3,375.9L326.5,383.5L319.5,384.1L314.8,386.7Z","cx":320.4,"cy":375.3,"x":313.1,"y":364.3,"w":14.2,"h":22.5,"borough":"E09000013"},{"code":"E05013557","name":"Rayners Lane","d":"M165.4,222.3L171.9,225.5L170.8,233L159.1,233L161.6,239L157.9,240.8L152,245.1L150.4,237.1L147.3,230.3L150.5,226.3L153.1,224.8L153.1,222.5L154.4,219.6L165.4,222.3Z","cx":158.6,"cy":230.5,"x":147.3,"y":219.6,"w":24.6,"h":25.5,"borough":"E09000015"},{"code":"E05013823","name":"Raynes Park","d":"M341.3,525.7L342.6,527.2L339.6,530L341.4,533.7L345,531L346.1,532.3L346.3,535L349.8,534L350.8,538L343.5,541.3L329.8,542.4L325.8,545.3L324.1,551.4L320.9,550.4L317.4,548.1L314.5,548.1L313.8,542L311.8,540.7L311.2,539.4L311.6,537.3L308.8,527.4L317.2,532.1L320.6,531L327.9,530.4L331.6,526.8L333,527.6L334.4,527L334.4,525.7L335.3,525.7L335.6,526.8L338.2,526.2L337.6,525.3L339.2,524.7L341.3,525.7Z","cx":328.1,"cy":537.1,"x":308.8,"y":524.7,"w":41.9,"h":26.6,"borough":"E09000024"},{"code":"E05009402","name":"Redcliffe","d":"M392.2,389.8L384.3,397.4L381.3,401.4L372.3,389.2L379.2,385.2L377.9,382.7L381.1,381.2L381.7,382.5L386.5,380.1L389.7,386.7L392.2,389.8Z","cx":382.6,"cy":389.9,"x":372.3,"y":380.1,"w":19.9,"h":21.3,"borough":"E09000020"},{"code":"E05013668","name":"Regent's Park","d":"M449.4,313.3L436.4,319.4L434.4,319.5L433.8,318.2L433.7,319.5L432.4,319.5L431.7,317.1L430.1,317.6L423.5,293.9L426.7,294.2L430.5,296.5L431.2,295.4L434.2,295.9L438.5,293.7L441.6,299.2L443.9,298.2L443,301.3L441.1,303L439.4,303.4L439.7,304.9L442.6,306.2L444.3,305.8L449.4,313.3Z","cx":435.6,"cy":306.7,"x":423.5,"y":293.7,"w":25.9,"h":25.9,"borough":"E09000007"},{"code":"E05013805","name":"Regent's Park","d":"M423.5,293.9L430.1,317.6L431.7,317.1L432.4,319.5L409.8,325.4L408.5,322.4L406.1,319.5L410.1,317.3L406.2,311.4L404,314L400.8,315L398.1,312.5L404.2,307.9L395.7,296.1L400.8,292.1L401.9,293.3L403.7,291.8L409,297.1L414.4,294.2L415.6,296.1L423.5,293.9Z","cx":414.3,"cy":308.1,"x":395.7,"y":291.8,"w":36.7,"h":33.7,"borough":"E09000033"},{"code":"E05013690","name":"Ridgeway","d":"M493.3,56L495.6,60.3L497.1,65.7L497.3,71L496.3,76.1L491.7,86L491,85.6L489.1,88.1L486.7,83.7L480.5,87L474.8,88.3L475.3,85.6L481.8,83L479.2,78.2L475.7,78.4L476,77.1L471,79.6L469.9,72.5L456.2,76.9L454.9,62L461,60L460.8,54.8L454.2,54.4L453.7,47.8L447.9,47.6L440.4,44.5L436.2,46.2L423.9,47.6L425.4,37.7L428.5,37.3L428,20.7L421.5,19.6L410.7,11.4L410.7,7.2L416.5,8.6L423.3,11.6L427.4,12.2L444.9,5.9L459.7,6.5L464.4,5.3L469.7,12L468.3,19.4L468.7,20L469.9,19.4L469.7,23.4L471.2,24.9L474.4,33.3L476.8,36.2L485.2,41.3L487.7,47.6L493.3,56Z","cx":460.2,"cy":42,"x":410.7,"y":5.3,"w":86.6,"h":83,"borough":"E09000010"},{"code":"E05014017","name":"Roehampton","d":"M320.7,432L321.6,435.8L318.7,436L319.5,449.9L323.5,449.7L324,458.3L325.3,460.8L323.4,463.4L326.7,471L330.9,469.5L340.3,463.6L341.3,466.5L338.5,482.1L330.5,482.8L318.4,488.9L306.9,493.5L306.7,490.5L304.6,488.4L303.4,484.6L316.9,475.8L318.2,473.5L311.4,461.9L297.5,450.9L300.2,441.7L298.8,440.6L301.3,435.4L304.7,431.5L315.1,431.3L320.7,432Z","cx":317,"cy":461.9,"x":297.5,"y":431.3,"w":43.8,"h":62.2,"borough":"E09000032"},{"code":"E05011112","name":"Rotherhithe","d":"M556.4,378.9L557,380.1L555.8,380.8L556.6,382.4L554.3,384.1L549.3,383.7L549.3,382.9L543.6,385.2L542.9,386L545,387.5L544.5,388.3L538.9,383.9L543.8,381.2L540.3,381L536.1,375.7L534.6,375.1L535.3,374.5L534.1,368.5L535,368.3L534.8,367.5L538.3,367.3L538.6,366.4L536.5,363.5L544.3,359.7L546.6,357.6L546.1,356.8L547.5,357L548,358.6L550.8,356.3L553.4,358L554.9,356.8L557.9,359.3L557.3,360.5L558.8,361.4L557.6,363.3L556.5,362.6L555.7,362.9L553.5,367.5L551.4,366L549.8,368.6L550,373.4L551.9,374.9L550.5,377L552,379.7L553.1,380.3L556.4,378.9Z","cx":545.8,"cy":370.9,"x":534.1,"y":356.3,"w":24.6,"h":32,"borough":"E09000028"},{"code":"E05013509","name":"Roundwood","d":"M329.2,278.4L329.7,280.5L328.3,285.5L330.9,286.4L334.4,286.4L335,287.4L330.8,295.4L324.9,290.4L322.5,289.3L322.1,291L320.9,290.4L318.3,291L315.1,286.2L313.5,286.2L313.2,282.6L311.2,282.8L310.4,285.1L305.9,287.8L305.6,288.5L306.4,288.9L305.8,290.2L300.4,287L302.6,276.9L304.6,272L311.7,263.8L316.5,265.3L321.2,271.6L321.3,272.2L319.3,273.3L320.7,275.4L322.2,273.7L324.8,275.4L328.6,275.6L329.4,276L328.5,277.5L329.2,278.4Z","cx":316.3,"cy":279.8,"x":300.4,"y":263.8,"w":34.6,"h":31.6,"borough":"E09000005"},{"code":"E05013558","name":"Roxbourne","d":"M181.7,235.4L176.2,241.3L154.1,251.8L153.8,249.3L151.5,245.5L157.9,240.8L161.6,239L159.1,233L170.8,233L171.9,225.5L178.9,231.8L181.7,235.4Z","cx":166.9,"cy":239.4,"x":151.5,"y":225.5,"w":30.2,"h":26.3,"borough":"E09000015"},{"code":"E05013559","name":"Roxeth","d":"M192.8,251.6L175.2,256.4L175,258.6L162.7,263L162.2,262.3L159.1,264.2L156.9,260.5L154,252.9L154.1,251.8L176.2,241.3L181.7,235.4L186.1,233.9L190.6,236.6L186.7,241.7L192.8,251.6Z","cx":173.7,"cy":250,"x":154,"y":233.9,"w":38.7,"h":30.3,"borough":"E09000015"},{"code":"E05013922","name":"Royal Albert","d":"M660.5,348.1L686.8,349.8L687.8,348.7L688.8,349.4L688.2,351.1L698.3,351.7L696.8,355.5L695.2,355.9L697,356.8L696.9,357.6L696.5,356.7L694.6,358L695.2,358.6L693.6,360.8L692,361.2L692.8,362.2L691.7,364.5L686.9,366.7L685.9,366.9L685.7,366.4L685.7,366.9L672.6,368.3L662.8,366L650.4,365.6L649.8,361.8L650.9,361.8L652.1,347.1L652.5,347.7L660.5,348.1Z","cx":672.5,"cy":357.7,"x":649.8,"y":347.1,"w":48.4,"h":21.1,"borough":"E09000025"},{"code":"E05009403","name":"Royal Hospital","d":"M419.8,375.3L420.8,377L419.6,378.2L421.1,380.4L419.8,381.4L420.5,384.3L419.8,385L426.7,392.8L410.3,396.4L408.6,391.5L405,394.1L402.9,390L409,386.2L407.4,382.7L414,377.2L413.8,375.9L419.8,375.3Z","cx":414.8,"cy":387,"x":402.9,"y":374.9,"w":23.8,"h":21.5,"borough":"E09000020"},{"code":"E05013923","name":"Royal Victoria","d":"M652.1,347.1L650.9,361.8L649.8,361.8L650.4,365.6L633.5,367.9L627.7,366L624.6,363.3L619.9,356.8L620.2,355.9L615.9,352.3L616.8,348.9L616,347.7L612.2,346L614.9,346.4L620.7,348.9L626.5,347L640.6,346.2L648,347.5L652.1,347.1Z","cx":635.6,"cy":356.1,"x":612.2,"y":346,"w":39.9,"h":21.9,"borough":"E09000025"},{"code":"E05013577","name":"Ruislip","d":"M106.5,182.7L105.2,184.6L108.2,192.2L111.9,190.9L113,194.1L108.2,195.6L110.3,202.1L111.2,203.1L114,202.3L117.2,206.3L119.4,206.5L120,211.4L119,212.2L119.1,215.3L121.3,220L121.5,220.8L120,222.1L121.1,222.9L112.2,225.9L105.6,227.2L106.2,229L101.7,231L93.7,236.6L79.8,229.5L68.6,225.9L68.9,225.1L71,224.6L72.4,221.2L73.7,220.6L75.5,222.1L77.7,221.2L80.6,221.7L81.1,220.4L78.8,216.2L79.9,213.7L75.3,212.8L73.8,213.2L72.9,210.5L65.2,209L62.2,209.4L60.1,210.7L59.5,204.4L57.1,201.7L54.4,196.2L54.3,193L55.1,190.7L53.5,189.6L54.8,188L54.9,185.8L56.2,183.5L59.6,187.3L67,192.4L68,188.6L66.7,187.5L67.8,185L72.7,182.3L74,182.5L73.7,181.6L76.6,181.2L78.5,180L76,174.3L92.2,170.3L93.1,173L95,173.4L95.8,176.4L99.5,176.4L98.6,178.5L99.4,181.2L102.3,181.6L104.4,180.2L106.5,182.7Z","cx":89.1,"cy":203.7,"x":53.5,"y":170.3,"w":68,"h":66.2,"borough":"E09000017"},{"code":"E05013578","name":"Ruislip Manor","d":"M129.6,240.9L128.3,242.8L124.2,245.9L121,247.8L117,248.7L93.7,236.6L101.7,231L106.2,229L105.6,227.2L112.2,225.9L121.1,222.9L121.5,223.8L122.2,223.4L125.6,234.9L129.6,240.9Z","cx":113.9,"cy":236.2,"x":93.7,"y":222.9,"w":35.9,"h":25.9,"borough":"E09000017"},{"code":"E05013980","name":"Rush Green & Crowlands","d":"M816.3,225L819.2,230.7L823.5,235.6L824.6,238.7L824.3,240.4L821.7,242.3L812.9,242.1L809.8,241.3L801.5,244.7L796.1,248L783.6,235.6L782.5,236.2L780.5,234.7L778.1,234.3L778.1,233.1L781.7,232.6L780.8,226.1L779.5,226.1L779.7,221L778.5,221.2L779.1,211.4L794.6,212.2L799.7,209.5L805.1,214.7L810.3,215.8L809.6,217.7L810.1,219.6L810.8,219.2L811.5,220L812.2,222.1L811.1,222.5L812.2,224.6L811.6,226.7L816.3,225Z","cx":798.9,"cy":228.5,"x":778.1,"y":209.5,"w":46.4,"h":38.4,"borough":"E09000016"},{"code":"E05013730","name":"Rushey Green","d":"M591.7,457.3L593.9,457.3L594.5,460.6L596.2,461L597.1,466.5L595,467.2L595.5,468.6L594.2,468.6L592.2,476.2L588.5,474.7L588.6,473.9L582.1,472.6L581.7,473.5L580.3,473.3L580.1,478.7L581.3,481.5L580.4,481.9L577.8,480.2L577.4,481.1L576.2,480.9L575.7,482.1L574,478.5L572.9,486.5L568,486.3L567.2,484.7L565.2,484.4L566.1,481.5L565.2,480.9L564.7,475.4L563.6,475L564.3,473.9L563.4,471.8L564.9,471.2L564.1,468.9L566.3,464.6L569.2,463.4L569.1,462.7L571.2,463.2L574,461L578.9,460.6L581.5,456L581.9,456.8L583.8,456L584.9,456.8L588.5,456.8L588.5,457.5L591.7,457.3Z","cx":579,"cy":469.6,"x":563.4,"y":456,"w":33.8,"h":30.5,"borough":"E09000023"},{"code":"E05011113","name":"Rye Lane","d":"M527.7,414.7L528.7,414.7L528.2,419.3L528.8,422.1L532,424L534,431.3L533.3,431.6L533.7,433L529,435.4L522.3,437.5L522,435.1L521,433.7L518.7,434.5L519,435.4L514.8,436.2L513.9,437.5L512.9,437.5L512.2,433.9L511,433.9L511.3,429.7L513.6,425.6L517.1,424.2L516.4,419.1L515.1,419.3L514.6,417.2L512.3,417.7L511.6,414.3L515.4,414.3L520.6,416L524.1,414.7L527.7,414.7Z","cx":522.2,"cy":426.4,"x":511,"y":414.1,"w":23,"h":23.4,"borough":"E09000028"},{"code":"E05011478","name":"Sanderstead","d":"M511.9,653.7L519.3,657L524.3,661.9L523.5,663.6L522.3,664.2L523.5,665.5L522.2,665.9L522.8,668.2L521.8,668.8L522.5,669.7L525.8,670.9L528.8,670.7L530.3,671.8L530.7,674.3L534.2,678.1L535.2,682.7L534.7,687.2L539,698.7L537.8,704.6L535.2,707L532.5,707.6L528.6,710.5L521.3,709.9L520.3,705.5L515.6,707.4L510.9,708.2L511,711.4L509.4,712L507.8,714.1L502.6,708.6L499.1,701.9L505.1,698.7L503.7,696.9L507,694.9L506.1,693.1L507,692.8L501.8,694.9L500.4,694.7L499.5,696L498.6,694.7L497.8,695L496,691.2L493.4,689.5L493.3,687.8L487.2,681.9L485.7,681.3L485.4,673.7L486.2,670.7L492.2,658.3L494.3,650.7L495,644.2L496.9,646.1L496.8,647.3L499.8,649.2L500.6,647.5L503.2,648.4L503.4,647.5L504.4,647.5L511.9,653.7Z","cx":511.7,"cy":681.1,"x":485.3,"y":644.2,"w":53.7,"h":69.8,"borough":"E09000008"},{"code":"E05013747","name":"Sands End","d":"M381,430.3L378.7,425.7L377.1,415.5L380.9,411.3L383.6,413L384.5,411.3L383.7,410.5L386.5,408.2L388.2,408.8L391.9,407.9L390,417.4L387.5,423.8L383.7,429L381,430.3Z","cx":384.1,"cy":418.4,"x":377.1,"y":407.7,"w":14.8,"h":22.6,"borough":"E09000013"},{"code":"E05011479","name":"Selhurst","d":"M501,584.3L497.2,591.5L480.9,586.2L479.5,583.7L479.5,578.6L491.1,567.9L493.4,567L494.1,565.1L498.1,568.9L501.1,574.6L501.9,578.2L501,584.3Z","cx":491.7,"cy":579.4,"x":479.5,"y":565.1,"w":22.4,"h":26.5,"borough":"E09000008"},{"code":"E05011480","name":"Selsdon & Addington Village","d":"M580.9,624.8L582.7,629.4L574.4,637L573.1,635.5L568.1,640L570.5,642.3L565.2,644.6L567.2,651.3L566.8,652.2L562.9,654.7L559.2,647.1L551.9,653L546.6,654.9L547,656.2L545.3,657.4L548.2,659.8L541.7,665.5L536.3,658.3L522.5,669.7L521.8,668.8L522.8,668.2L522.2,665.9L523.5,665.5L522.3,664.2L523.5,663.6L524.3,661.9L519.3,657L511.9,653.7L513.4,652.2L514.5,652.6L516.5,651.1L513,645L519.7,639.9L520.4,640L521,638.5L524.1,639.5L529.4,638.7L530.7,636.4L532,635.9L532.5,633.6L531.6,633.4L531.8,632L538.4,634.3L539,633.8L538.6,632.6L539.3,632.8L539.9,631.9L539.2,630.5L545.3,628.2L548.2,628.2L550.5,630L551.4,629.4L554.4,630L563.7,624.1L566.6,625.8L567.5,625L567.8,626L574.4,623.7L577.9,620.4L580.9,624.8Z","cx":545.6,"cy":643.4,"x":511.9,"y":620.4,"w":70.8,"h":49.3,"borough":"E09000008"},{"code":"E05011481","name":"Selsdon Vale & Forestdale","d":"M577.9,654.5L573.3,655.6L570.6,655.1L577.8,664.6L578.1,666.9L580.4,666.9L579.7,668L582.3,670.7L583.6,673.3L584.6,673.7L585.9,676.2L587.5,676.2L586.8,677.5L588.6,679.2L590.6,678.7L589.6,680.2L591.5,681.7L591.7,682.9L590.3,683.1L588.3,685.9L587.4,689.1L585.4,684.8L584,683.1L583.2,683.1L580,675.1L578.1,673.3L573.4,672.6L565.5,674.7L559.5,672.2L557.5,674.5L554.6,681.3L549.2,682.1L544.8,683.8L543.8,687.2L546.7,691.2L547.6,697.9L545.4,697.7L543.6,701.3L543.6,703L542.2,703.2L539.3,705.3L537.8,704.6L539,698.7L534.7,687.2L535.2,682.7L534.2,678.1L530.7,674.3L530.3,671.8L528.8,670.7L525.8,670.9L522.5,669.7L536.3,658.3L541.7,665.5L548.2,659.8L545.3,657.4L547,656.2L546.6,654.9L551.9,653L559.2,647.1L562.9,654.7L566.8,652.2L567.2,651.3L565.2,644.6L570.5,642.3L574.8,646.3L577.9,654.5Z","cx":554.8,"cy":669.8,"x":522.5,"y":642.3,"w":69.2,"h":63,"borough":"E09000008"},{"code":"E05011251","name":"Seven Kings","d":"M743.5,208.4L742.4,211.6L741.1,212.6L742.5,213.2L739.6,219.1L738.6,224.2L742.6,225.7L745.7,228.6L746.7,230.9L745.3,233.3L745.4,235L720,243.4L717.4,243.8L717.1,242.7L714.4,241.5L714.5,240.4L715.7,240.2L717.8,233.1L717.7,229.9L718.7,229.9L718.5,229.1L721.5,229.5L721.4,226.7L729.4,227.4L729.7,225.3L731.5,223.2L730.5,216L733.9,209L743.5,208.4Z","cx":731.9,"cy":228.5,"x":714.4,"y":208.2,"w":32.3,"h":35.6,"borough":"E09000026"},{"code":"E05013598","name":"Seven Sisters","d":"M519,205.4L517.8,217L518.6,221.3L514.6,221.5L514.1,222.7L508.7,221.3L502.9,222.5L508.8,213.9L507.8,213.2L509.5,213.3L512,210.9L509.3,209.4L510,208L504.3,205.9L504.6,202.1L511.6,203.1L515.2,205L519,205.4Z","cx":512.2,"cy":212.9,"x":502.9,"y":202.1,"w":16.1,"h":20.6,"borough":"E09000014"},{"code":"E05009382","name":"Shacklewell","d":"M528.7,266.4L519.7,268.7L518.5,268L514.9,269.1L512.3,271L510.3,266.8L510.6,260.4L523.3,261.5L522.5,260L525.5,259.6L528.7,266.4Z","cx":518.4,"cy":264.7,"x":510.3,"y":259.4,"w":18.4,"h":11.6,"borough":"E09000012"},{"code":"E05009332","name":"Shadwell","d":"M538.4,338L558.3,341.1L557.3,343.7L554.7,345L548.1,346.6L532.7,347.3L531,337.1L538.4,338Z","cx":542.7,"cy":342.6,"x":531,"y":337.1,"w":27.2,"h":10.3,"borough":"E09000030"},{"code":"E05014019","name":"Shaftesbury & Queenstown","d":"M445.8,411.5L444.2,414.1L445.2,414.7L444.8,416L443.5,417.2L442.2,416.4L440.6,418.5L439.1,418.9L438.8,419.8L438.1,419.5L435.3,422.1L434.9,421.4L426.1,426.9L425.9,429.4L408.7,433.7L407.9,430.5L410,428.6L410.6,425.4L409.4,422.7L406.8,421L415.4,422.1L418.2,421.6L428.6,414.3L429.5,409.8L434.3,405.2L437.9,403.5L439,404.8L438.2,406.1L442.6,411.7L443.6,412.2L444.5,411.1L445.8,411.5Z","cx":427.1,"cy":419.8,"x":406.8,"y":403.5,"w":39,"h":30.3,"borough":"E09000032"},{"code":"E05013748","name":"Shepherd's Bush Green","d":"M349.1,349.2L349.5,350.6L348.4,350.9L348.6,353L346.1,353.6L347.3,356.7L335.8,360.7L332.2,361.2L331.1,354L336.2,354.8L336.9,350.2L338.5,347.1L343.5,343L344.6,347L346.4,346.6L346.1,345.8L347.1,345.4L349.1,349.2Z","cx":340.6,"cy":353.1,"x":331.1,"y":343,"w":18.4,"h":18.3,"borough":"E09000013"},{"code":"E05011482","name":"Shirley North","d":"M560.8,599.3L545.7,603.9L547.3,609.6L546.1,609.8L545.4,607.9L544.3,607.5L540.4,607.9L533.3,600.6L530.2,594L529.3,589.8L531.5,590.6L532.8,589.2L534.2,590.9L536.4,589.4L535.7,587.1L536.5,586.6L536.4,584.8L530.7,581.6L529.9,582.6L528,579.3L541,565.2L543.7,567.9L547.4,568.7L548.9,571.1L549.6,570.8L553.7,575.5L561.1,577.6L559.6,587.3L560.5,595.5L561.2,595.5L560.8,599.3Z","cx":545.2,"cy":587.4,"x":528,"y":565.2,"w":33.3,"h":44.5,"borough":"E09000008"},{"code":"E05011483","name":"Shirley South","d":"M576.4,621.6L574.4,623.7L567.8,626L567.5,625L566.6,625.8L563.7,624.1L554.4,630L551.4,629.4L550.5,630L548.2,628.2L545.3,628.2L539.2,630.5L539.9,631.9L539.3,632.8L538.6,632.6L539,633.8L538.4,634.3L531.8,632L528.4,630.1L527.3,628.1L522.8,626.5L524.3,625.2L523.2,623.7L525.5,621L524.6,619.9L523.3,620.4L522.8,617.2L525,616.3L524.2,614.7L526.5,613.8L526,610.5L528,610.2L528.3,607.7L529.1,607.7L528.8,602L533.3,600.6L540.4,607.9L544.3,607.5L545.4,607.9L546.1,609.8L547.3,609.6L545.7,603.9L560.8,599.3L569.1,598.7L570.8,597.2L571.2,594.7L572.6,594.7L573.4,600.3L576.4,608.4L577,618.3L575.3,618.7L576.4,621.6Z","cx":550.5,"cy":615.4,"x":522.8,"y":594.7,"w":54.2,"h":39.6,"borough":"E09000008"},{"code":"E05014089","name":"Shooters Hill","d":"M690.8,399.7L690,405.6L694.4,406.3L693.8,407.3L697.1,408.8L696.9,409.8L702.6,413.2L701.5,418.9L703.6,419.8L704.6,421.9L707.5,422.3L704.8,424.8L702.9,429L698.2,427.8L691.5,434.3L690.4,433.5L687.6,428.8L685.1,430.3L684.4,428.8L681.9,428L680.8,428.8L680.9,427.5L678.4,428.8L676.7,431.3L674.8,430.5L674.2,429.5L674.6,426.3L676.5,425.2L676.1,422.9L675.3,422.9L675.6,421.7L670.8,420.6L670.6,421.4L669.4,421.2L670.1,416L672,410.3L678.3,410.7L677.7,407.1L678.6,406.9L678.4,405.9L680.3,405.4L683.7,398.9L690.8,399.7Z","cx":687.6,"cy":417.6,"x":669.4,"y":398.9,"w":38.1,"h":35.4,"borough":"E09000011"},{"code":"E05014005","name":"Shortlands & Park Langley","d":"M611.8,576.3L610.4,575.9L609.3,576.7L609.6,577.4L607.4,578.2L605,571.5L601.8,574L598.1,577.6L597.4,581L600.3,586.8L595.2,589.8L594.3,588.5L589,590.6L583.3,587.1L580.2,583.9L583,583.3L582.3,578.6L585.3,578.4L584.9,575L588.4,571.3L584.8,564.5L583.2,563.2L583.6,560.1L583,557.3L585.9,556.7L593.5,557.1L592.8,556.1L593.1,554.8L591,553.4L593.6,554L594.7,551L595.8,551.7L596.3,550.2L594.1,547.7L594.3,546.8L595.2,546.6L595.7,543.2L597.1,543.4L596.5,541.5L595,541.1L595.5,538L602.3,540.1L598.2,535.6L595.2,527.9L596.5,527.6L596.5,525.1L597.7,525.5L598.4,527.8L600.5,527L600.3,525.7L606.6,525.7L607.2,526.6L606.7,527.8L609.2,531.4L608.9,532.5L609.6,532.7L610.9,536.9L613,539L613.6,542.8L614.9,542.2L616,543L613.4,546.2L615.5,548.3L617.2,547.7L618.3,549.8L617.5,551.4L621.4,555.3L622.7,558.2L616.6,562.8L618.2,565.6L612.1,568.7L613.8,571.9L611.7,575L611.8,576.3Z","cx":601.1,"cy":559.3,"x":580.2,"y":525.1,"w":42.5,"h":65.5,"borough":"E09000006"},{"code":"E05011230","name":"Sidcup","d":"M754.2,527.6L752.9,527.4L746.4,530L738.3,531L728.1,526.6L717,517.3L717.7,516.5L718.1,513.1L721.5,513.9L722.7,510.4L723.3,510.4L723.2,507.6L721.6,507.4L722.5,505.1L721.7,505.1L721.4,501.9L723.3,502.1L724.1,497.7L724.8,497.7L724.2,495.8L725.1,495L725.3,492.9L724.6,492.9L724.5,491.8L722.6,492L722.6,490.3L732,491L760.1,486.8L764.3,490.5L761.7,493.1L760.1,499.4L755.1,498.1L751.8,502.8L747.9,500.2L742.7,507L746,506.8L746.3,508L744.1,510.8L749.2,514.8L746.4,517.7L747,518.6L747.7,518.6L749.1,516.1L752.3,517.9L751.4,519.8L752.4,520.5L751.2,523.4L750.4,522.8L749.5,523.6L754.4,526.8L754.2,527.6Z","cx":738.4,"cy":508.2,"x":717,"y":486.8,"w":47.3,"h":44.2,"borough":"E09000004"},{"code":"E05011231","name":"Slade Green & Northend","d":"M843.4,403.3L843.7,405.2L839.7,406.5L841.4,405.4L841.8,403.7L842.6,404.2L842,403.7L842.8,402.9L843.4,403.3ZM855.1,398.1L862.2,402.5L860.2,404.2L860.7,408L860.4,406.9L859.9,409.2L855.4,411.3L854.6,412.2L854.8,416.2L851,420.8L854.3,425.4L853.1,430.7L853.3,436.6L846.5,441.3L844.3,444.6L842.2,444.4L842.8,442.3L841.6,440.2L838.1,440.2L837.7,440.8L835,436L832.6,434.1L819.9,433.4L819.2,431.5L815.1,431.3L815.2,426.1L817.8,426.3L818,423.8L818.6,423.6L819.3,410.5L820.1,410.3L821.1,405.4L822.1,404.6L824.9,405.6L825.4,402.5L829.8,403.9L830,405.2L830.4,403.7L832.6,403.7L833.9,404.6L835.9,403.9L838.1,404L837.8,404.6L839.6,403.9L840,404.4L838.2,406.3L840.4,403.1L842,403.1L841.4,405.4L839.6,406.5L840.8,406.5L843.7,405.2L843.5,402.9L845,402.7L843.7,402.7L844,402.1L846.9,401.8L844.7,404L847.3,401.6L847.9,402.5L848.7,400.8L852.6,400.2L853.5,398.5L855.1,398.1Z","cx":838.3,"cy":419.7,"x":815.1,"y":398.1,"w":47.1,"h":46.4,"borough":"E09000004"},{"code":"E05013536","name":"South Acton","d":"M291.3,345L292.3,344.9L292.4,347.9L293.1,348.3L289.9,358L287,362.9L279.6,370.4L275.8,366.9L271.8,359.9L272.2,359.3L268.7,355.5L268.1,352.9L269.2,353.4L269.2,349.2L273.8,350.2L275.3,350L275.4,349.2L278.6,349.4L278.4,347.5L279.2,347.3L278.8,346L279.5,345.8L278.8,344.5L281.7,346.6L282.4,345.6L285.1,344.9L286,345.6L291.3,345Z","cx":281.1,"cy":355.9,"x":268.1,"y":344.5,"w":25,"h":25.9,"borough":"E09000009"},{"code":"E05014020","name":"South Balham","d":"M434.3,476L443.4,475.6L442.1,479L441.5,479L441.3,482.1L438.7,485.3L438.8,487.6L441,491.2L442.7,491L444.1,497.9L427.8,495.2L422.2,492.9L418,488.7L415.2,487.8L418.3,484.2L423,473.5L434.5,476.9L434.3,476Z","cx":430.6,"cy":485.7,"x":415.2,"y":473.5,"w":28.9,"h":24.4,"borough":"E09000032"},{"code":"E05013763","name":"South Beddington & Roundshaw","d":"M465.4,658.9L454.1,660.4L453.6,656.2L452.4,655.5L451.6,657.2L448.7,658.3L449.1,659.3L446.9,659.5L447.4,661.5L442.2,660.8L433.6,665.4L433.1,665.7L434.4,668.8L432.5,669.4L432.4,668.4L433.1,668.4L431.9,665.7L430.7,665.9L430.6,665L431.7,665L431.2,662.7L429.5,662.5L431,661.9L429.8,661.7L429.7,660.8L430.6,660.6L430.4,658.1L427.9,657.9L427.5,657L427.9,655.8L430.1,654.1L429.9,652.6L432.1,651.5L432.6,650.3L432,649.7L433,649.6L433.3,646.5L434,646.5L433.8,645.8L437,641.8L436.6,639.5L439.4,638.7L439.6,635.7L440.7,635.7L441.1,632.4L455.6,630L460.6,627.3L460.1,631.7L458.8,631.9L460,633.4L458.3,633.8L458.1,633.2L456.8,633.8L456.8,634.7L457.3,636.6L460.6,636L462.1,645L463.3,644.8L463.9,647.3L465.3,657.2L465.9,657L466,658.7L465.4,658.9Z","cx":447.6,"cy":647.9,"x":427.5,"y":627.3,"w":38.5,"h":42.1,"borough":"E09000029"},{"code":"E05011116","name":"South Bermondsey","d":"M538.9,383.9L544.5,388.3L542.1,388.8L535.9,387.1L531.4,389.4L526.5,389.8L523.3,387.9L515.8,385.8L514.1,383.7L512,386.3L505.5,379.1L507.7,378.9L509.8,380.1L513.8,374.7L517.7,373.2L516.8,369L518.1,368.8L538.9,383.9Z","cx":523.6,"cy":381.3,"x":505.5,"y":368.8,"w":39.1,"h":20.9,"borough":"E09000028"},{"code":"E05011484","name":"South Croydon","d":"M494.2,618.9L506.3,623.7L511,624.1L527.3,628.1L528.4,630.1L531.8,632L531.6,633.4L532.5,633.6L532,635.9L530.7,636.4L529.4,638.7L524.1,639.5L521,638.5L520.4,640L519.7,639.9L513,645L516.5,651.1L514.5,652.6L513.4,652.2L511.9,653.7L504.4,647.5L503.4,647.5L503.2,648.4L500.6,647.5L499.8,649.2L496.8,647.3L496.9,646.1L495,644.2L494.3,650.7L491,649.7L488.9,654.3L484.3,651.7L482,656L480.3,656.2L479.5,653.4L478.1,652.8L480.2,645.2L478.7,644.8L478.8,643.5L475.7,643.1L477.9,641.8L477.7,638.7L476.8,636.6L480.1,635.3L481.2,636.2L481.7,635.5L486.6,634.5L486.9,636.2L488.5,636L487.1,617L494.2,618.9Z","cx":501.8,"cy":636.5,"x":475.7,"y":617,"w":56.7,"h":39.2,"borough":"E09000008"},{"code":"E05013670","name":"South Hampstead","d":"M391.8,276L393.2,278.2L396.3,280.5L397,282.2L396.1,289.9L393.2,289.5L392,286.8L383,290.2L382.5,289.3L384.4,288.7L384.2,287.8L381.4,287.6L381,288.1L379.2,287L376.6,287L375.5,284.3L378,276.2L387.7,274.8L391,276.3L391.8,276Z","cx":386.4,"cy":282.3,"x":375.5,"y":274.8,"w":21.4,"h":15.4,"borough":"E09000007"},{"code":"E05013984","name":"South Hornchurch","d":"M852.4,307.9L841.6,318.4L837.7,320.9L832.5,316.5L831.8,318L824.6,315.5L823,318.8L819.6,319.2L818.9,320.1L814.3,318.4L816.6,311.7L815.3,310.8L805.4,308.3L806.1,307L804.2,305.8L806.7,303.2L810.3,294L819.9,297.3L821.5,295.6L824.9,297.1L829.5,291.9L832,293.5L832.7,290.2L838.9,295.6L840.4,294.6L842.8,295.9L841.7,299L846.5,301.1L845.8,302.2L849.9,305.1L852.4,307.9Z","cx":828.4,"cy":306.1,"x":804.2,"y":290.2,"w":48.2,"h":30.6,"borough":"E09000016"},{"code":"E05011485","name":"South Norwood","d":"M523.1,548.3L529.6,553.6L525.6,555.9L525.7,557.8L525,558.4L524.3,557.4L523.6,558.6L522.6,558.2L520.4,560.9L517.2,557.4L511.7,571.7L501,584.3L501.9,578.2L501.1,574.6L498.1,568.9L494.1,565.1L494.8,562.4L494.4,560.3L502.6,556.3L507.8,547.5L507.1,546.2L510.4,543.6L511.5,544.3L518.1,539.4L521.5,544.1L523.1,548.3Z","cx":510.3,"cy":559.1,"x":494.1,"y":539.4,"w":35.5,"h":44.9,"borough":"E09000008"},{"code":"E05013786","name":"South Richmond","d":"M274.8,433.2L274.8,438.1L275.6,438.7L275,438.7L274.7,440.2L273.9,440.2L273.4,442.1L267.5,437.9L269.4,448.2L275.6,447.8L275.3,456.2L270.2,457.1L269.5,461.5L267.3,462.7L263.2,462.9L253.5,460.2L255.1,457.7L254.2,457L253.6,457.5L250.1,452.4L251.3,451.4L248.1,447.8L246.9,448.4L245.4,446.1L244.6,447.8L243.9,446.7L243.1,448L239.5,443.6L232.7,440L238.7,434.5L245.1,432.2L248.2,432L247.7,433.4L249.6,435.1L255.8,433.7L256.4,437.2L261.6,438.1L264.8,437.9L274.8,433.2Z","cx":257.4,"cy":446.3,"x":232.7,"y":432,"w":42.9,"h":30.8,"borough":"E09000027"},{"code":"E05013579","name":"South Ruislip","d":"M152,245.1L151.5,245.5L153.8,249.3L154,252.9L157,261.1L148.3,267.6L136.6,272.5L136.6,274.6L132.1,274.1L133.1,278.2L134.7,277.7L135,278.2L136.1,284.1L133.2,284.7L124.7,284.3L110.7,288.7L109.3,288L109.8,286.6L109.1,285.9L109.1,282.2L110.6,279.6L112.3,278.6L112.1,276.9L117.2,275L116.8,273.7L91,271L90.9,269.1L91.8,267.2L96.6,265.5L93.6,259.8L93.9,257.9L95.5,256.2L100,254.3L103.5,255.8L105.8,256.2L106.8,255.6L106.5,253.7L103,253.9L102.5,252.7L105.9,252.7L104.4,247.6L102.5,244.6L104.8,244L105.2,242.7L117,248.7L121,247.8L128.3,242.8L131.5,238.5L133.8,237.5L140.2,237.1L147.3,230.3L150.4,237.1L152,245.1Z","cx":126.3,"cy":260.4,"x":90.9,"y":230.3,"w":66.1,"h":58.4,"borough":"E09000017"},{"code":"E05013599","name":"South Tottenham","d":"M541.3,199.8L535.9,208.2L531,213L530.7,214.5L531.9,217.2L525.4,219.4L525.4,220L518.6,221.3L517.8,217L519,205.4L521.1,195.8L523.8,196.4L528.6,194.9L529.6,197.2L536.6,197.9L541.3,199.8Z","cx":527.1,"cy":207.2,"x":517.8,"y":194.9,"w":23.6,"h":26.5,"borough":"E09000014"},{"code":"E05013787","name":"South Twickenham","d":"M212.1,480.2L212.7,481.5L211.7,480.7L212.1,480.2ZM208.2,462.7L209.1,464.9L208,465.7L209,469.3L213.7,468.8L210.9,476.2L211.8,476.4L212.1,480L211.4,480.9L214.6,485.7L215.4,491L214.2,491.6L213.5,490.8L203.9,491.4L203.3,492.7L199.2,488.7L193.8,489.9L193.1,488.2L189,486.8L191.5,481.5L197.5,475L195.5,472.8L196.2,472.4L195.6,471.4L193.8,471.2L194.7,468.2L192.9,466.3L194.3,464.2L198.6,464.6L208.2,462.7Z","cx":203,"cy":478.5,"x":189,"y":462.7,"w":26.4,"h":30.1,"borough":"E09000027"},{"code":"E05011252","name":"South Woodford","d":"M648.9,186.5L649.1,189.2L648.4,190.3L651.5,198.1L651.6,205L645.5,201.7L644.3,202.5L644.5,203.1L640.8,204.8L641.3,205.7L639.9,206.3L639,204L635.3,202.9L635.5,202.3L633.9,204.4L632.9,204.2L633.4,202.9L632.1,202.5L629.1,202.5L628.9,203.3L627.7,203.3L627.8,202.5L626.2,202.1L626,202.9L625,202.9L625.1,201.5L619.8,199.6L618.7,188.8L619.2,183.7L624.9,183.8L635.4,181.8L641.6,183.7L645.9,186.3L648.9,186.5Z","cx":634.8,"cy":193.4,"x":618.7,"y":181.8,"w":32.9,"h":24.6,"borough":"E09000026"},{"code":"E05013537","name":"Southall Broadway","d":"M154.5,333.1L154.1,339.9L154.9,342.8L158.6,342.8L159.6,343.9L164.2,344.9L170.5,343.7L184.1,347.3L155.8,354L156,352.3L155.1,352.1L154,353.6L148.6,352.5L148.9,350.8L147.3,349.8L148.7,342.6L150.2,341.8L151.3,332.3L154.5,333.1Z","cx":160.3,"cy":346.5,"x":147.3,"y":332.3,"w":36.8,"h":21.7,"borough":"E09000009"},{"code":"E05013538","name":"Southall Green","d":"M148.9,375.3L143.1,374.4L122.4,365.8L126.1,359.7L138.9,357.8L155.8,354L155.4,355.5L159.1,355.1L158.2,368.8L150.4,366.4L149.9,371.1L148.2,370.7L146.6,374.2L148.2,373.8L148.9,375.3Z","cx":142.7,"cy":363.9,"x":122.4,"y":354,"w":36.7,"h":21.3,"borough":"E09000009"},{"code":"E05013539","name":"Southall West","d":"M151.3,332.3L150.2,341.8L148.7,342.6L147.3,349.8L148.9,350.8L148.6,352.5L154,353.6L155.1,352.1L156,352.3L155.8,354L138.9,357.8L126.1,359.7L127.1,358.4L138.3,351.9L143.5,337.2L148.5,334L150.2,331.9L151.3,332.3Z","cx":143.4,"cy":348.3,"x":126.1,"y":331.9,"w":30,"h":27.8,"borough":"E09000009"},{"code":"E05013691","name":"Southbury","d":"M537.2,51.2L534.2,64.1L532.5,92.9L531.8,95.3L526.2,103.3L513.5,79.4L514.6,76.9L515.3,76.9L515.4,75.2L520,71.6L522.2,64.9L523.9,63L529.1,52.9L533.4,53.7L533.5,51.4L535.9,52.1L535.8,50.6L537.2,51.2Z","cx":526.5,"cy":77.2,"x":513.5,"y":50.6,"w":23.7,"h":52.7,"borough":"E09000010"},{"code":"E05013540","name":"Southfield","d":"M304.7,362.6L304.9,365.4L301.6,372.8L301.9,374.7L285.6,376.6L283,375.1L281.7,372.5L279.6,370.4L287,362.9L292,352.9L312.4,352.5L313.3,356.5L305.3,356.3L302.2,357L304.2,359.7L304.7,362.6Z","cx":295.4,"cy":364.5,"x":279.6,"y":352.5,"w":33.8,"h":24.4,"borough":"E09000009"},{"code":"E05014021","name":"Southfields","d":"M377.1,460L376.7,463L375.4,465.5L375.8,471.2L376.9,474.1L379.2,474.5L379.3,476.6L362.1,481.3L360.2,475.6L358.5,460.6L372.4,460.2L373.4,459.6L371.6,454.9L374.9,455.1L374.9,458.9L377.1,460Z","cx":368.3,"cy":469.3,"x":358.5,"y":454.9,"w":20.8,"h":26.5,"borough":"E09000032"},{"code":"E05013692","name":"Southgate","d":"M474.7,91.2L476.3,92.5L475.1,94.2L474.5,93.6L473.4,94.8L474.3,95.7L473.8,96.1L474.5,99L476.8,99.5L478.7,99L479.4,100.7L476.2,101.2L474.8,103L475.5,103.5L473.6,105.1L466.3,108.1L464.7,111L466.1,114L462.8,118.8L464.2,119.5L464.8,118.6L469,121L468.5,121.8L471.2,123.7L471,124.5L471.8,124.7L470.4,128.3L468.5,127.5L467.4,124.7L465.8,123.5L463.3,124.3L462.1,123.5L461.9,124.7L458.1,126.4L457.4,123.5L454.5,124.1L453.6,122.8L449.6,123.5L449,124.3L449,123.3L447.5,123.1L449.9,119.1L449.1,118.4L451.4,113.4L446.5,111.5L445.2,110.2L445.1,108.9L440.4,105.4L441.3,104.9L440.8,104.1L441.4,102.8L443.3,102.8L443.4,100.5L439.8,96.5L443.4,96.9L443.2,97.6L444.9,98L445.9,95.7L447.9,95.5L449.7,93.8L453.6,92.5L455.5,100.3L458.8,100.5L462.8,99.2L465.9,99.7L467.8,99.3L467.7,98.6L468.4,98.4L467.8,95.2L466,94.4L465.9,92.3L466.8,92.5L467,90.6L474.7,91.2Z","cx":458.6,"cy":107.8,"x":439.8,"y":90.6,"w":39.6,"h":37.7,"borough":"E09000010"},{"code":"E05009333","name":"Spitalfields & Banglatown","d":"M537.8,325.3L537.6,327.5L526.7,331.5L516.7,337.6L513.3,333.6L511.9,329.1L510.3,329.3L511.6,323.5L528.6,320.3L530.9,320.1L531.8,324.9L535.7,323.7L536,325.3L537.8,325.3Z","cx":522.4,"cy":327.6,"x":510.3,"y":320.1,"w":27.5,"h":17.5,"borough":"E09000030"},{"code":"E05009383","name":"Springfield","d":"M543.8,236.4L539.1,244.9L536.5,247.6L533.3,241.9L532.8,238.1L530.8,233.7L527,229.9L526.1,230.7L523.2,230.7L523.2,231.8L518.1,231.4L518.3,227.4L512.1,226.3L514.6,221.5L525.4,220L525.4,219.4L531.9,217.2L535.2,227.1L537.7,230.7L539.9,231.4L541.2,234.5L543.8,236.4Z","cx":529.8,"cy":230,"x":512.1,"y":217.2,"w":31.7,"h":30.5,"borough":"E09000012"},{"code":"E05013985","name":"Squirrels Heath","d":"M878.8,206.7L873.5,210.1L874.3,210.7L873.1,211.8L870.9,210.3L868.7,213.9L865.8,212.2L865.1,215.6L863.9,215.6L863.8,217.2L864.8,217.2L865.7,220.6L864,222.1L863.2,221.9L862.5,224L864,224.2L864.4,225.5L860.4,225.1L857.2,222.9L855.1,222.3L855.1,225.9L857,228.2L856.7,231.2L848.7,227.8L843.2,223.8L837.6,218.3L834.9,217.5L831.9,217.9L846.8,210.3L844.7,209.4L840.9,200.6L849.9,196.2L856.4,188.8L878.8,206.7Z","cx":855.8,"cy":209.8,"x":831.9,"y":188.8,"w":46.9,"h":42.4,"borough":"E09000016"},{"code":"E05013981","name":"St Alban's","d":"M843.2,223.8L841.1,223.8L842.2,228L840.3,228.6L840.5,229.3L837.6,229.9L838.7,232.2L837.8,232.4L838.1,233.3L829.4,236.2L828.7,234.3L823.5,235.6L819.2,230.7L816.3,225L831.9,217.9L834.9,217.5L837.6,218.3L843.2,223.8Z","cx":830.1,"cy":226.8,"x":816.3,"y":217.5,"w":26.9,"h":18.7,"borough":"E09000016"},{"code":"E05013982","name":"St Andrew's","d":"M856.7,231.2L866.4,235.2L888.3,251.2L888.2,254.6L886,256.4L885.3,258.8L886,260.4L883.1,267L880.1,268.3L876.9,264.4L876.4,257.7L847.8,268L850.5,260L847.8,259L844.5,259.4L844.2,258.1L846,257.7L852.7,250.5L856.8,235.8L856.7,231.2Z","cx":866.8,"cy":251.7,"x":844.2,"y":231.2,"w":44.1,"h":37.1,"borough":"E09000016"},{"code":"E05013597","name":"St Ann's","d":"M501.6,201.2L504.6,202.1L504.3,205.9L510,208L509.3,209.4L512,210.9L509.5,213.3L503.8,211.1L497.4,209.9L492.4,210.5L489.1,209.7L487.1,208.4L486.7,206.9L487.9,205.4L486.6,200.2L487.9,199.1L493.1,201.5L499.3,200.6L501.6,201.2Z","cx":497.8,"cy":206.3,"x":486.6,"y":199.1,"w":25.3,"h":14.3,"borough":"E09000014"},{"code":"E05009329","name":"St Dunstan's","d":"M561.1,341.2L554.9,340.7L555.2,335.3L553.9,333.2L553.8,331.3L550.7,330.2L551.2,329.6L550.1,327.9L548.9,327.9L547.5,325.8L545.1,325.1L555.9,322L560.5,319.2L561.5,329.1L564.3,333.2L561.1,341.2Z","cx":557,"cy":330.2,"x":545.1,"y":319.2,"w":19.2,"h":22.1,"borough":"E09000030"},{"code":"E05013983","name":"St Edward's","d":"M831.9,217.9L811.6,226.7L812.2,224.6L811.1,222.5L812.2,222.1L811.5,220L810.8,219.2L810.1,219.6L809.6,217.7L810.3,215.8L805.1,214.7L799.7,209.5L808.9,200.8L809.4,203.3L816.1,213L821,210.1L820.3,208.2L821.8,208.4L823,210.1L826.8,207.1L827.6,208.2L837.5,201.4L840.9,200.6L844.7,209.4L846.8,210.3L831.9,217.9Z","cx":822.9,"cy":212.6,"x":799.7,"y":200.6,"w":47.1,"h":26.1,"borough":"E09000016"},{"code":"E05011114","name":"St George's","d":"M487.3,370L485.8,373L486.2,374.5L485.1,375.3L485.4,378L482,381.8L480.1,377.6L473,373.8L472.3,371.9L473.7,371.3L476.1,364.5L478.2,362.2L478,362.9L485.2,363.9L487.3,370Z","cx":480.6,"cy":371,"x":472.3,"y":362.2,"w":15,"h":19.6,"borough":"E09000028"},{"code":"E05011115","name":"St Giles","d":"M512.7,414.1L511.6,414.3L512.3,417.7L514.6,417.2L515.1,419.3L516.4,419.1L517.1,424.2L506.4,423.1L501.9,424.2L496.3,426.9L494.4,422.5L494.2,418.5L497.8,416L495.7,414.3L495,411.8L497.3,411.3L497.1,410.1L502.7,408.6L501.3,406.1L501.9,405.6L497.4,402.3L498.7,401.8L499.3,402.3L500.6,400L503.1,400.8L505.1,400L504.7,402L506.6,402.3L508.4,408L511.4,410.9L512.7,414.1Z","cx":504.4,"cy":415.3,"x":494.2,"y":400,"w":22.9,"h":26.8,"borough":"E09000028"},{"code":"E05013824","name":"St Helier","d":"M379.8,582.2L374.8,578.6L367.1,584.3L367.1,580.7L369.2,574.2L365.2,570.6L363.4,570.6L363.6,566L366.6,563.7L367.4,560.7L368.8,565.1L369.6,565.1L372.7,560.3L373.9,551.7L377.4,548.5L380.6,547.7L381.4,549.3L383.5,548.9L383.5,551.2L382.4,551.7L384.4,554.2L383.6,555L383.8,556.3L382.4,557.4L383.2,560.7L379.8,582.2Z","cx":375.2,"cy":566.1,"x":363.4,"y":547.7,"w":21,"h":36.5,"borough":"E09000024"},{"code":"E05013761","name":"St Helier East","d":"M403.1,571.3L407.4,575.3L408.6,578.4L410.7,580.5L409.6,582.4L410.1,586.9L409.5,589.4L410.2,590.9L402.4,594.4L402.3,593.6L401.5,594L399.3,590L399.8,589.4L398.9,586.6L392.3,583.5L390.2,580.5L389.4,580.7L388.1,579.3L388,578.2L392,575L397.3,568.1L401.5,569.8L403.1,571.3Z","cx":400.9,"cy":581,"x":388,"y":568.1,"w":22.7,"h":26.3,"borough":"E09000029"},{"code":"E05013762","name":"St Helier West","d":"M401.5,594L402.5,598.4L394.5,602.5L394.2,601L392.8,601.6L388.1,599.7L382.5,590L378.4,589L378.5,588.5L375.6,588.3L370.9,592.1L367.1,584.3L374.8,578.6L381.2,583.3L388,578.2L388.1,579.3L389.4,580.7L390.2,580.5L392.3,583.5L398.9,586.6L399.8,589.4L399.3,590L401.5,594Z","cx":386.9,"cy":589.4,"x":367.1,"y":578.2,"w":35.4,"h":24.4,"borough":"E09000029"},{"code":"E05013899","name":"St James","d":"M556.4,199.3L556.7,200.8L559.6,203.6L560.4,206.3L562.2,207.3L564.6,210.1L565.7,213.3L567.8,212.8L569.1,221.7L571.2,226.3L568.1,227.4L567.4,225.1L565.5,223.6L563.5,224.8L562.9,224.2L560.4,225.9L559.9,225.1L558.6,225.5L549.6,230.1L547.3,228.4L543.8,236.4L541.2,234.5L539.9,231.4L537.7,230.7L535.2,227.1L530.7,214.5L531,213L535.9,208.2L541.3,199.8L544,201.2L550.6,200.2L552.2,194.9L556.7,194.9L556.9,196.2L557.5,196.2L556.4,199.3Z","cx":549.5,"cy":215.6,"x":530.7,"y":194.9,"w":40.5,"h":41.5,"borough":"E09000031"},{"code":"E05013806","name":"St James's","d":"M472.2,336.1L472.8,339L471.8,339.1L472.1,340.1L471.1,341.1L472.3,344.7L465.9,346L462.8,347.9L459.4,353.6L456.7,375.5L447.4,374.9L446,371.9L443.7,371.9L443.7,370L435.5,371.7L432.9,371.5L431.1,370.6L428.6,365.8L424.7,361.6L437,350.9L444.7,346.8L446.5,343.7L451.7,339.7L453.7,341.1L458.8,336.5L459.7,337.4L460.1,336.9L462.8,337.6L468.5,334.8L469.6,337.1L472.2,336.1Z","cx":448.7,"cy":356.2,"x":424.7,"y":334.8,"w":48.1,"h":40.7,"borough":"E09000033"},{"code":"E05009330","name":"St Katharine's & Wapping","d":"M554.7,346.6L549.8,347.3L546.2,350L545.5,349.8L545.9,350.4L544.7,350.8L537.8,357.8L533.8,359.9L527,358.6L523.7,356.7L523.7,355.9L523,356.7L520.7,354.9L520,355.3L519.9,354.2L510.2,350.4L511,347.1L514.1,345L514.9,346.8L516.1,346.2L517.7,348.3L519.9,349.4L525.5,347.5L548.1,346.6L554.7,345L554.7,346.6Z","cx":530.5,"cy":351.7,"x":510.2,"y":345,"w":44.5,"h":14.8,"borough":"E09000030"},{"code":"E05013785","name":"St Margarets & North Twickenham","d":"M232.4,441.9L226.8,448.6L228.8,449L229.2,451.8L228.5,452.8L229,453.3L226.9,454.5L226.9,455.2L223.3,457L222.4,453.1L217.5,457.5L216.9,457.1L214.2,458.9L208.9,459.8L204.1,463.8L198.6,464.6L194.3,464.2L196.4,455.6L196.1,453L197.1,447.1L199.6,443.3L201.5,442.9L200.9,446.5L205.2,451.6L206,449.5L209.9,450.1L213,445.3L215.3,445.2L217.2,447.1L218.7,445L217.6,442.7L217.8,437.4L221,431.6L223.3,431.1L226.5,436.2L232.4,441.9Z","cx":213.5,"cy":450.1,"x":194.3,"y":431.1,"w":38.1,"h":33.5,"borough":"E09000027"},{"code":"E05013943","name":"St Mark's & Seething Wells","d":"M275.4,554.4L276.3,555.9L259.4,561.2L253.1,564.3L230.1,579.1L229.2,576.9L232.3,574.2L228.1,567.5L233.7,561.1L236.8,556.3L239.1,557.3L239.7,556.3L243.5,557.4L244.3,558.8L247.1,555.2L254.8,552.3L260,552.9L260.2,552.3L258.4,552.1L258.6,550.4L261.9,550.6L262.3,548.7L265,548.5L269.6,549.3L275.4,554.4Z","cx":249.3,"cy":561.2,"x":228.1,"y":548.5,"w":48.2,"h":30.6,"borough":"E09000021"},{"code":"E05014109","name":"St Martin's","d":"M472.8,469.1L473.5,470.7L479.3,469.5L479.2,468.8L479.9,468.8L479.6,474.3L481.5,474.3L481.2,478.1L484.7,480.4L488.2,480.4L487.3,481.7L487,481.1L484.6,481.9L482.2,484.2L481.8,483.6L480.3,486.1L477.4,488.2L476.8,484.9L478.1,482.3L476.6,483.6L468.7,485.5L468.6,481.7L469.2,481.9L469.9,480.4L468.7,479.8L470.6,477.3L466.1,473.5L460.6,471.2L462.1,468.6L461.4,466.9L463.1,465.7L463.9,467.4L466.3,466.9L467.9,468.4L470.9,467L471.9,469.5L472.8,469.1Z","cx":473.8,"cy":476.5,"x":460.6,"y":465.7,"w":27.6,"h":22.5,"borough":"E09000022"},{"code":"E05014006","name":"St Mary Cray","d":"M779.3,569.6L779.1,570.4L781.8,572.9L780.5,577L781.3,578.6L780.7,579.1L782.6,582.2L781.8,584.3L781.8,586.6L782.6,587.1L782.5,591.5L781.6,591.5L781.6,593.4L783.3,593.8L783.2,595.3L785.8,597.4L785,602.7L784,602.4L781.6,605.8L783.5,608.4L782.2,612.3L784.5,613.2L783.9,615.7L783.2,615.9L781.3,614.2L780.7,616.3L778.8,618.3L774.7,616.6L772.3,616.8L770.1,614.5L761,613L751.4,603.7L749.9,599.7L742.5,598.2L741.5,598.2L741.6,599.3L738.9,599.3L733.4,597L732,589L729.1,590.7L726.7,593.6L724.8,590.6L721.3,591.7L718.2,591.1L714.9,587.5L712.6,587.1L709.5,584.5L710.7,583.7L712.9,573.8L712.5,570L711.7,569.8L712,568.9L710.8,567.1L711.1,565.2L736.9,565.6L737.6,562L741.6,563.5L741.8,564.5L746.4,564.7L746.3,565.4L747.3,565.6L747.8,564.9L752.4,566L753,563.5L756.1,563.9L757.3,564.7L756.2,567.9L779.3,569.6Z","cx":752,"cy":586.2,"x":709.5,"y":562,"w":76.3,"h":56.3,"borough":"E09000006"},{"code":"E05014018","name":"St Mary's","d":"M398.9,411.7L399.2,413L401.7,412.2L407,413.2L409.6,421.6L403.8,420.2L401.5,421.9L395.9,423.1L394,425L393.1,428.4L391.2,430.9L385.6,436L385.6,438.3L378.6,440L373.6,440.2L373.5,437.9L374.7,438.5L373.6,435.8L382.7,433.4L386.9,430.9L390,426.9L392.9,421.9L392.8,421L393.6,421.2L392.9,420.8L394.8,413L398.3,405L401,402.9L403.1,406.5L401.1,410.5L398.9,411.7Z","cx":394.2,"cy":422.2,"x":373.5,"y":402.9,"w":36.1,"h":37.3,"borough":"E09000032"},{"code":"E05011229","name":"St Mary's & St James","d":"M789.4,466.7L793.3,469.7L803.1,474.1L806.8,477.1L801.8,488.7L802.1,494.4L801.1,495.8L801.8,496L801.2,497.9L800.5,497.9L798.9,501.3L794.7,499L793.6,500L792.8,498.1L789,496.7L788.3,500.3L786.5,503.2L785.5,514.2L783.5,516.7L787.5,520.3L786.9,521.7L783.3,522L783.5,526.8L781.1,531.9L781.8,533.3L786.5,534L785.5,539L781.2,538.2L780.7,539.6L761.7,528.5L756.3,527L754.2,527.6L754.4,526.8L750.8,524.7L749.5,523.6L750.4,522.8L751.2,523.4L752.4,520.5L751.4,519.8L752.3,517.9L749.1,516.1L747.7,518.6L747,518.6L746.4,517.7L749.2,514.8L744.1,510.8L746.3,508L746,506.8L742.7,507L747.9,500.2L751.8,502.8L755.1,498.1L760.1,499.4L761.7,493.1L764.3,490.5L759.5,486.5L761.1,483.6L760,482.8L760.2,482.1L759.2,482.1L759.9,472.8L764.6,470.8L765.7,469.3L773.5,465.3L773.3,463.6L782.9,463.6L789.4,466.7Z","cx":775.2,"cy":498.4,"x":742.7,"y":463.6,"w":64.1,"h":75.9,"borough":"E09000004"},{"code":"E05013710","name":"St Mary's & St James'","d":"M487.6,283L488.3,285.7L494.8,291.8L501.8,294.2L494.1,299.8L492.1,295.6L490.4,297.3L489.9,296.3L487.5,299.2L483.7,295.9L481.3,297.7L478.8,302.2L477.4,298L478.7,287.4L482.6,286.8L482.4,284.5L487.6,283Z","cx":486.9,"cy":292.6,"x":477.4,"y":283,"w":24.4,"h":19.2,"borough":"E09000019"},{"code":"E05013669","name":"St Pancras & Somers Town","d":"M441.5,287.6L442.6,287.6L447.5,292.3L451.8,294.8L454.8,299.2L454.5,300.3L452,301.5L454.9,309.8L449.4,313.3L444.3,305.8L442.6,306.2L439.7,304.9L439.4,303.4L441.1,303L443,301.3L443.9,298.2L441.6,299.2L436.9,290.8L439.4,289.3L438.7,288.1L439.6,287.2L441.5,287.6Z","cx":446.6,"cy":299.8,"x":436.9,"y":287.2,"w":18,"h":26.1,"borough":"E09000007"},{"code":"E05014007","name":"St Paul's Cray","d":"M780.7,539.6L780.5,540.1L783.3,543L785.4,543.6L788.2,547.9L790.8,554L791.2,559.2L792.7,563.5L796.7,569.8L791.9,570.4L756.2,567.9L757.3,564.7L756.1,563.9L753,563.5L752.4,566L747.8,564.9L747.3,565.6L746.3,565.4L746.4,564.7L741.8,564.5L741.6,563.5L737.6,562L736.9,565.6L724.4,565.8L717.4,565.1L716.7,562.6L717.5,559.2L721.5,560.1L722.6,555.3L719.8,555.7L719.7,554.8L715.8,552.1L715.7,550.4L712.3,550.2L710.5,548.5L711.4,547L709.2,543.4L723.3,537.5L722.2,535.2L725.9,534L728.1,526.6L738.3,531L746.4,530L752.9,527.4L756.3,527L761.7,528.5L780.7,539.6Z","cx":753,"cy":549.8,"x":709.2,"y":526.6,"w":87.5,"h":43.8,"borough":"E09000006"},{"code":"E05013711","name":"St Peter's & Canalside","d":"M494.1,299.8L489.5,302.4L491.7,307.9L491.4,309.6L496,311.6L496,312.3L485.8,314.8L484.5,310.4L483,308.5L480.2,311.2L478.5,304.5L478.8,302.2L481.3,297.7L483.7,295.9L487.5,299.2L489.9,296.3L490.4,297.3L492.1,295.6L494.1,299.8Z","cx":486.4,"cy":305.1,"x":478.5,"y":295.6,"w":17.5,"h":19.2,"borough":"E09000019"},{"code":"E05009404","name":"St. Helen's","d":"M355.4,331.5L347.9,335L340.8,335.9L336.1,327.9L337.7,326.8L347,329.3L345.4,324.7L352.2,322.8L355.4,331.5Z","cx":346.5,"cy":330,"x":336.1,"y":322.8,"w":19.3,"h":13.1,"borough":"E09000020"},{"code":"E05009384","name":"Stamford Hill West","d":"M513.4,223.8L512.1,226.3L518.3,227.4L517.8,240.8L516.2,240.4L514,238.1L511.4,237.3L495.6,243.2L495.6,240.9L500,236.4L500.4,233L504.7,232L506.1,229.3L506.9,229.3L508.2,231.6L510,231L509.6,228.8L511.3,223.2L513.4,223.8Z","cx":509.1,"cy":234.3,"x":495.6,"y":223.2,"w":22.6,"h":20,"borough":"E09000012"},{"code":"E05009405","name":"Stanley","d":"M407.4,382.7L409,386.2L395.2,395.5L394.2,397.4L383.5,403.5L381.3,401.4L384.3,397.4L403.4,378.5L407.4,382.7Z","cx":396,"cy":390.8,"x":381.3,"y":378.5,"w":27.7,"h":24.9,"borough":"E09000020"},{"code":"E05013560","name":"Stanmore","d":"M243.8,105.8L242.4,110L243.7,114L257.8,133.6L244,137.4L239.5,140.6L243.2,150.5L239.7,150.9L239.8,151.7L236.9,150.9L236.7,151.7L235,151.9L234.6,154.7L233.5,154.2L234.1,155.7L233.6,157.2L231.5,154.7L229.2,156.4L221.8,156.1L216.9,157.4L216.7,156.1L213.7,156.3L213.7,155.5L214.6,155.5L212.7,151.9L212.4,149.4L211.5,149.6L204.4,143.3L198.7,135.1L197.7,128.8L202.8,121.4L200.7,117.8L201.8,116.5L203.7,118.8L209.9,110.6L217.6,105.1L225.6,102.2L229.2,97.8L242.6,104.3L243.8,105.8Z","cx":225.7,"cy":128.7,"x":197.7,"y":97.8,"w":60.1,"h":59.6,"borough":"E09000015"},{"code":"E05009334","name":"Stepney Green","d":"M554.9,340.7L538.4,338L539.1,331.7L537.6,327.5L545.1,325.1L547.5,325.8L548.9,327.9L550.1,327.9L551.2,329.6L550.7,330.2L553.8,331.3L553.9,333.2L555.2,335.3L554.9,340.7Z","cx":546.3,"cy":333.4,"x":537.6,"y":325.1,"w":17.6,"h":15.6,"borough":"E09000030"},{"code":"E05014110","name":"Stockwell East","d":"M471.1,420.8L464.7,422.7L462.9,424.2L462.1,422.7L460.9,423.3L460,424.6L461.2,427.3L459,428.8L458,429L456.5,426.5L455.4,427.3L453.9,425L466.6,406.7L471.6,406.1L471.1,420.8Z","cx":464.4,"cy":417.4,"x":453.9,"y":406.1,"w":17.6,"h":22.8,"borough":"E09000022"},{"code":"E05014111","name":"Stockwell West & Larkhall","d":"M452.3,404L451.6,405.8L454.3,406.7L454.1,407.9L459.1,408.4L459.1,409.2L462.3,410.1L463.6,409.2L464.6,409.9L454.2,424.6L452,423.6L449.2,423.6L447.1,422.1L444.2,424.8L442.6,425.4L438.8,419.8L439.1,418.9L440.6,418.5L442.2,416.4L443.5,417.2L444.8,416L445.2,414.7L444.2,414.1L449.6,402.9L452.3,404Z","cx":451.4,"cy":415.4,"x":438.8,"y":402.9,"w":25.8,"h":22.5,"borough":"E09000022"},{"code":"E05009385","name":"Stoke Newington","d":"M517.8,240.8L517.7,244.6L520.4,246.8L523.7,259.4L522.5,260L523.3,261.5L510.6,260.4L510.9,255.6L508.4,255.2L508.2,251.8L509.4,251L509.4,247L505.1,242.8L504,240L511.4,237.3L514,238.1L516.2,240.4L517.8,240.8Z","cx":514.5,"cy":249.9,"x":504,"y":237.3,"w":19.7,"h":24.2,"borough":"E09000012"},{"code":"E05013510","name":"Stonebridge","d":"M304.6,261.3L307.8,264.4L307.9,266.6L304.6,272L300.9,283L300.5,293.3L301.6,300.5L301.1,300.7L300.5,298.6L299.1,297.8L295.9,299.6L290.7,303.9L290.6,305.1L288.9,306.8L286.2,308.5L279.1,308.9L272.2,311.4L266,309.6L261.6,304.9L268,301.5L268.6,302.8L270.9,302L271.5,303.2L273.9,302L275.3,298.4L270.6,292.7L275.7,289.1L277.5,285.9L276.5,285.5L278.9,281.7L281.6,279.8L282.9,277.1L282.7,275.6L285.6,272.3L285.7,268.7L289.4,264.2L288.1,262.1L288.9,259.6L288.2,257.9L286.8,257.9L286.1,256.7L286.9,256.5L287.3,254.5L289.8,253.3L296.4,257.5L304.6,261.3Z","cx":288.5,"cy":285.2,"x":261.6,"y":253.3,"w":46.3,"h":58,"borough":"E09000005"},{"code":"E05013764","name":"Stonecot","d":"M367.1,584.3L370.9,592.1L365.1,597.2L362.1,604.1L356.7,610.7L355.2,606.2L352,603.1L352.2,602.4L350.5,601.8L350.7,600.5L350.3,601L347.5,599.5L346.4,600.6L344.6,599.3L343.9,600.1L343.1,599.3L344.4,596.8L343.8,596.5L351.2,586L352.2,584.3L351.6,583.9L355.9,577.8L361.4,582L363.4,579.7L367.1,584.3Z","cx":357.5,"cy":593.1,"x":343.1,"y":577.8,"w":27.8,"h":32.9,"borough":"E09000029"},{"code":"E05013924","name":"Stratford","d":"M614.3,280.3L616.8,287.2L610,291.4L610.5,292.1L608.6,292.7L608.7,293.3L605.2,295.6L609.2,305.1L610,311.4L596.7,316.3L605.2,311.4L606.5,307.6L605.7,306L603.4,311.7L601.6,313.5L599.9,313.8L599.7,311.4L598.6,315L596.8,315.2L596.1,313.6L594.9,313.5L596.2,315.5L596,316.7L595.1,316.9L595.4,315.2L591.7,309.5L588.1,308.5L584.1,305.7L583,303.9L591.6,296.5L600.6,284.7L602.1,285.7L602.8,284.3L605.1,283.4L604,281.7L609.1,278.4L609.8,281.5L611,280.7L612.7,281.3L614.3,280.3Z","cx":600.7,"cy":298.5,"x":583,"y":278.4,"w":33.8,"h":38.4,"borough":"E09000025"},{"code":"E05013925","name":"Stratford Olympic Park","d":"M599.4,268.2L601.5,271.4L600.6,272L602.8,275.6L604.4,279.8L603.7,281.1L605.1,283.4L602.8,284.3L602.1,285.7L600.6,284.7L591.6,296.5L583,303.9L582.9,301.7L579.1,294.8L581.4,292.3L585.3,284.3L581.9,267L584.3,267.4L591.6,265.1L593.2,265.9L594.1,270.3L599.4,268.2Z","cx":591.2,"cy":282.3,"x":579.1,"y":265.1,"w":25.9,"h":38.8,"borough":"E09000025"},{"code":"E05014112","name":"Streatham Common & Vale","d":"M469,509.3L468.6,510.8L471,511.4L467.4,516.3L462.5,519.8L459.3,527L457.4,527.8L456.9,530L455.4,531.6L454.9,531L452.9,532.7L447.2,532.1L446.2,531L445.5,534.6L435.5,530.2L432.9,531.9L428.9,531L433.4,526.4L432.6,525.5L441.1,515.4L443.7,521.1L444.5,520.5L444.9,521.1L448.8,518L451.6,514.1L449.1,505.9L451,504.7L452.4,504.9L452.3,505.7L453,505.9L453.3,505.3L459.4,506.4L458.9,508.3L459.6,508L462.5,509.3L464,509.3L464.1,507.6L467,507.4L467.9,507.6L467.6,508.9L469,509.3Z","cx":451,"cy":520.6,"x":428.9,"y":504.7,"w":42,"h":29.9,"borough":"E09000022"},{"code":"E05014113","name":"Streatham Hill East","d":"M460.6,471.2L466.1,473.5L470.6,477.3L468.7,479.8L469.9,480.4L469.2,481.9L468.6,481.7L468.7,485.5L472.7,484.9L472.3,485.3L473.6,485.5L467.6,488.9L464.8,491.4L464.8,492.5L459.4,490.3L454.1,483L456.8,475.8L457,469.7L460.6,471.2Z","cx":462.5,"cy":481.4,"x":454.1,"y":469.7,"w":19.5,"h":22.8,"borough":"E09000022"},{"code":"E05014114","name":"Streatham Hill West & Thornton","d":"M457,469.7L456.8,475.8L454.1,482.8L441.5,479L442.1,479L443.4,475.6L434.3,476L431.9,468L436.1,468.6L439,466.9L441.3,464.2L444.3,464.2L444.5,466.1L446.9,466.3L447.1,468.6L449,469.1L448.6,469.7L449.9,470.5L449.3,471.2L450.4,472L452.3,469.5L452.2,467.6L453,467.8L452.9,469.1L454.4,469.5L454.9,468.2L457,469.7Z","cx":445.6,"cy":473.3,"x":431.9,"y":464.2,"w":25.1,"h":18.7,"borough":"E09000022"},{"code":"E05014115","name":"Streatham St Leonard's","d":"M454.1,482.8L450.9,497.3L452.9,498.3L454.2,500L457.4,501.1L449.1,505.9L451.6,514.1L448.8,518L444.9,521.1L444.5,520.5L443.7,521.1L441.1,515.4L439.8,509.3L440.4,497.5L444.1,497.9L442.7,491L441,491.2L438.8,487.6L438.7,485.3L441.3,482.1L441.5,479L454.1,482.8Z","cx":446.3,"cy":498.9,"x":438.7,"y":479,"w":18.7,"h":42.1,"borough":"E09000022"},{"code":"E05014116","name":"Streatham Wells","d":"M464.8,492.5L466.8,493.9L468.9,496.7L469,509.3L467.6,508.9L467.9,507.6L467,507.4L464.1,507.6L464,509.3L462.5,509.3L459.6,508L458.9,508.3L459.4,506.4L453.3,505.3L453,505.9L452.3,505.7L452.4,504.9L451,504.7L457.4,501.1L454.2,500L452.9,498.3L450.9,497.3L454.1,483L459.4,490.3L464.8,492.5Z","cx":460.1,"cy":498.3,"x":450.9,"y":483,"w":18.6,"h":26.3,"borough":"E09000022"},{"code":"E05013600","name":"Stroud Green","d":"M478.5,213.7L480.1,221.7L478.6,239.6L481.2,241.5L480.1,242.1L473.2,234.7L468.1,230.9L466.8,227.8L467.4,227.1L465.1,224.2L462.7,223.6L467.6,220.4L469,220.2L468,218.3L468.6,217.7L465.8,211.8L467.1,212L471.8,209L473.8,213L478.5,213.7Z","cx":473.4,"cy":223.6,"x":462.7,"y":209,"w":18.5,"h":33.1,"borough":"E09000014"},{"code":"E05013511","name":"Sudbury","d":"M246.7,251.4L245.1,252L245,261.7L231.4,261.9L232.8,264.7L232.6,266.8L234.2,272L228.1,267L217,260.5L206.9,257.5L207.7,255L208.9,255.4L208.8,253.3L211.9,248.4L216.9,252.7L223,256L224.9,253.1L224.9,252.2L224.1,252L225.8,250.5L225.7,249.7L227.8,248.9L228.6,249.7L230,248.4L229.1,246.7L232.7,245.5L236.3,246.3L236.9,250.5L238.4,250.3L238,247L242.4,246.8L244.4,245.3L246.7,251.4Z","cx":229.4,"cy":256.2,"x":206.9,"y":245.3,"w":39.8,"h":26.6,"borough":"E09000005"},{"code":"E05013944","name":"Surbiton Hill","d":"M259.4,581.2L256.1,582.6L253.4,586.2L251.2,594.2L250.3,594L250.1,594.7L246.8,594L246.2,596.5L245.5,596.3L245.2,597L242.3,596.3L240.3,596.6L239,592.7L238,592.8L237.8,589L235.2,582.6L236.2,581.8L233.4,577L253.1,564.3L259.4,581.2Z","cx":246.5,"cy":581.1,"x":233.4,"y":564.3,"w":26.1,"h":32.7,"borough":"E09000021"},{"code":"E05011117","name":"Surrey Docks","d":"M566,378.4L560.2,380.1L557.9,378.5L553.1,380.3L550.5,377L551.9,374.9L550,373.4L549.8,368.6L551.4,366L553.5,367.5L555.7,362.9L556.5,362.6L557.6,363.3L558.8,361.4L557.3,360.5L557.9,359.3L554.9,356.8L553.4,358L550.8,356.3L548,358.6L547.5,356.1L548.7,354.9L549.8,355.5L549.3,354.4L550.7,354L551.8,351.9L555.4,350.9L560.2,351.5L560.2,353L560.8,351.7L563.9,353.2L565.3,356.8L566.1,357L565.9,372.8L564.1,373.4L565.9,373.4L565,376.5L565.7,376.5L566,378.4Z","cx":558.5,"cy":366.1,"x":547.5,"y":350.9,"w":18.6,"h":29.3,"borough":"E09000028"},{"code":"E05013765","name":"Sutton Central","d":"M389.9,613L390.1,619.3L389.5,619.9L389.9,623.5L390.7,624.2L390,624.2L390.1,627.1L392.8,626.3L392.8,628.6L385.4,629.6L374.7,633L372.9,629L370.8,629.4L370.2,626.3L374.1,626.1L372.4,618.9L371.7,619.1L371.3,616.6L368.3,618.7L366.8,615.7L369.5,614L369.8,614.9L371.9,613.6L374,613.4L374.7,611.7L381.1,613.4L381.3,612.8L383.5,614.2L385.1,613.4L385.1,614.3L389.9,613Z","cx":380.3,"cy":621.9,"x":366.8,"y":611.7,"w":26.1,"h":21.3,"borough":"E09000029"},{"code":"E05013766","name":"Sutton North","d":"M388.1,599.7L388.1,605.6L389.9,613L387.5,613.2L387.6,614.2L385.1,614.3L385.1,613.4L383.5,614.2L381.3,612.8L381.1,613.4L374.7,611.7L374,613.4L371.9,613.6L369.8,614.9L369.5,614L364.3,618L363.2,615.7L360.7,616.4L359.1,611.5L358.2,610L357.3,610L362.1,604.1L365.1,597.2L375.6,588.3L378.5,588.5L378.4,589L382.5,590L388.1,599.7Z","cx":374.7,"cy":603.7,"x":357.3,"y":588.3,"w":32.6,"h":29.7,"borough":"E09000029"},{"code":"E05013767","name":"Sutton South","d":"M398.7,635.5L393.1,645.6L393.5,646.7L392.7,648.2L391.4,646.3L386.5,645.6L386.2,642.9L375.4,646.1L375.6,647.7L373.3,646.9L373,647.8L371.9,647.5L370,648.2L369.1,646.5L367.5,646.7L365.6,635.7L386.3,630.1L394,632L398.7,635.5Z","cx":381.7,"cy":638.8,"x":365.6,"y":630.1,"w":33.2,"h":18.1,"borough":"E09000029"},{"code":"E05013768","name":"Sutton West & East Cheam","d":"M366.8,615.7L368.3,618.7L371.3,616.6L371.7,619.1L372.4,618.9L374.1,626.1L370.2,626.3L370.2,627.9L370.8,629.4L372.9,629L374.7,633L353.6,639.1L350.3,625.4L350.4,622L352.2,616.4L357.3,610L358.2,610L359.1,611.5L360.7,616.4L363.2,615.7L364.3,618L366.8,615.7Z","cx":361.1,"cy":625.7,"x":350.3,"y":610,"w":24.4,"h":29.1,"borough":"E09000029"},{"code":"E05013731","name":"Sydenham","d":"M541.5,491.4L541.2,498.8L542.3,499L542.2,499.8L548.9,501.1L549.2,499.2L550.2,499.2L550.4,498.3L551.8,499.2L552.4,498.1L554,498.1L554.1,496.9L557,496L559.9,497.1L560.2,500.7L556.4,503.8L557.1,509.3L555.8,509.3L555.1,510.4L552.5,511.4L552.6,512L549.5,512.9L549.9,512.1L543.1,512.7L543,510.6L539.6,510.4L539.1,512L537.1,511.8L535.5,511.4L530.5,507.6L526.2,507.8L523.9,506.2L523,506.1L522.8,506.8L520.4,505.7L516.8,505.7L515.4,500.3L518,494.4L519.2,495.2L531.8,497.3L534,496.9L538.2,492.5L541.5,491.4Z","cx":538.1,"cy":503.1,"x":515.4,"y":491.4,"w":44.8,"h":21.5,"borough":"E09000023"},{"code":"E05013627","name":"Syon & Brentford Lock","d":"M251.7,393.4L250.7,395.5L250.2,394.3L250.6,394.7L251.7,393.4ZM239.9,391.7L241.4,396.6L243.7,396.1L249.7,392.4L250.2,393.2L248.5,395.7L249,395.5L249.4,397L248.4,396.1L247.4,396.8L248.8,397.2L247.8,397.6L245,398.3L244,397.2L243,398.1L241.6,398L243.2,398.9L244.3,397.6L243.8,399.1L248.9,398.1L244.9,403.5L244.2,404L243.5,403.5L243.7,405L242.2,406.5L242.6,406.9L241.7,409L240.6,409L241.6,409.2L240.8,410.5L239.4,411.7L239.5,411.1L238.7,411.1L239.3,411.7L238,412.8L236.5,413L236.9,413.8L235.8,413.4L236.3,414.1L235.6,413.6L235.6,414.5L234.8,414.3L235.3,414.9L234.2,414.7L234.6,415.3L234,414.9L233.7,415.7L233.2,414.9L233.5,415.7L232.6,416.2L232.2,415.7L232.1,416.4L231.6,415.8L232,416.6L226.5,419.5L227.2,418.1L223,413.9L222.8,417.7L221,420.2L220.6,418.7L218.5,418.1L218.3,415.1L217.4,414.3L215.1,414.7L211,413.2L208.8,415.3L206.1,412.4L221.8,398L236.8,389.2L239.9,391.7Z","cx":229.2,"cy":405,"x":206.1,"y":389.2,"w":44.1,"h":31,"borough":"E09000018"},{"code":"E05013788","name":"Teddington","d":"M215.4,491L216.8,493.9L219.6,496.7L225.3,499.6L223.9,502.1L222.1,500.3L221.1,501.3L221.3,503.8L219.5,504.5L219.2,503.4L217.4,504.7L217,503.8L215.5,504.2L215.4,511L214.1,511.8L214.2,513.3L225,520.9L224,522.4L226,524.1L227.1,527.6L228.4,528.5L229,534.4L207.1,539.4L205.8,539.2L207.8,536.9L206.5,534.6L204.8,535.6L201.4,533.5L199.5,533.1L198.6,534L194.4,532.3L193.9,534.2L187.8,533.3L188.6,531.6L186.5,530.6L187.4,526.2L185.7,525.1L185.9,523L187.3,522.6L186.8,516.5L190,514.2L192.5,515L195.4,512.3L194.4,507.4L195.4,503.6L201.8,505.5L198.9,501.1L202.4,498.6L203.3,500.5L205.1,499.8L202.9,496L202,491.6L203.3,492.7L203.9,491.4L213.5,490.8L214.2,491.6L215.4,491Z","cx":207.5,"cy":517.8,"x":185.7,"y":490.8,"w":43.4,"h":48.5,"borough":"E09000027"},{"code":"E05013732","name":"Telegraph Hill","d":"M556.7,413L559.4,421.9L560.1,428.8L559.6,435.1L555.4,451.1L551.5,447.8L549.8,447.2L550.8,442.5L550.8,437.5L549.9,433.7L546.9,430.7L547.3,430.1L544.2,428.6L542.4,423.8L543.1,422.9L541.9,416.6L541.9,407.1L548.1,411.3L549.6,413.9L553,414.1L556.7,413Z","cx":551.8,"cy":427.1,"x":541.9,"y":407.1,"w":18.1,"h":44,"borough":"E09000023"},{"code":"E05014068","name":"Thames View","d":"M734.2,307.9L732.4,311.9L731.2,311.7L730.2,324.1L727.7,324.9L728.4,328.3L727,330L725.3,329.8L725.4,331.9L722,332.5L719.8,335L717.6,332.9L717.7,327L714.3,322.2L714.9,318.2L713.6,314.4L711.6,315.5L709.7,314L706,315.7L700.3,312.3L723.6,305.3L734.2,307.9Z","cx":720.8,"cy":317.1,"x":700.3,"y":305.3,"w":33.9,"h":29.7,"borough":"E09000002"},{"code":"E05014022","name":"Thamesfield","d":"M339.8,419.5L340.8,419.5L346.1,425.7L352.3,430.9L363.1,435.3L368.5,436.2L372.8,435.8L373.3,440.2L356.7,441.2L347.3,439.1L339.6,435.1L327.7,431.3L328.5,428.8L327.8,426.1L328.7,417.6L330.5,417L339.5,421L339.8,419.5Z","cx":345.7,"cy":431.1,"x":327.7,"y":417,"w":45.6,"h":24.2,"borough":"E09000032"},{"code":"E05011232","name":"Thamesmead East","d":"M783.7,353.2L780.8,360.1L781.2,361.2L783.8,362L780.6,368.3L785.8,369.8L785.8,372.3L784.8,375.1L781.7,376.1L781.1,380.3L748,382.2L746.7,343.5L752.5,340.5L757,340.1L778.4,352.5L779.5,352.3L781.4,354L781.9,353L783.7,353.2Z","cx":763.8,"cy":363.1,"x":746.7,"y":340.1,"w":39.1,"h":42.1,"borough":"E09000004"},{"code":"E05014090","name":"Thamesmead Moorings","d":"M747.7,363.7L737.1,369L736.7,368.1L732.5,368.6L725.4,366.6L719.5,361.2L719.6,360.5L716.5,359.1L715.3,357.6L708.6,354.8L713.3,348.1L722.2,347L731,347.3L738.8,346L746.7,343.5L747.7,363.7Z","cx":731.6,"cy":356.1,"x":708.6,"y":343.5,"w":39.1,"h":25.5,"borough":"E09000011"},{"code":"E05013769","name":"The Wrythe","d":"M418.4,606.2L411.3,613.6L406.1,616.1L405.7,614.3L404.9,614.3L404.4,612.3L403.4,611.5L404,610.7L401.7,609.8L400.8,610.5L400.8,610L397.3,610.7L396.8,610.2L394.8,612.3L394,611.7L394.2,612.3L392.5,613.2L391.9,612.6L389.9,613L388.1,605.6L388.1,599.7L392.8,601.6L394.2,601L394.5,602.5L395.8,602.2L402.5,598.4L401.5,594L402.3,593.6L402.4,594.4L406.3,593L410.2,590.9L409.4,593.2L411.2,598.6L413.2,598.6L416.4,600.3L417.2,602.4L416.7,603.1L418,603.9L418.4,606.2Z","cx":403.8,"cy":604.8,"x":388,"y":590.9,"w":30.4,"h":25.1,"borough":"E09000029"},{"code":"E05011486","name":"Thornton Heath","d":"M507.1,546.2L507.8,547.5L502.6,556.3L494.4,560.3L494.8,562.4L494.1,565.1L488,560.9L474.1,545.5L479.6,541.3L486.6,539.9L491.6,536.3L492.5,536.5L492.2,537.3L498,539.9L498.4,543.4L499.2,543.2L499.5,543.9L503.3,542L507.1,546.2Z","cx":491.7,"cy":549.3,"x":474.1,"y":536.3,"w":33.8,"h":28.7,"borough":"E09000008"},{"code":"E05013512","name":"Tokyngton","d":"M276.5,285.5L269.3,281.5L260,274.2L261,272.5L263.7,273.3L264.1,271.2L264.9,271.2L264.5,270.4L268.3,268.3L268,267.8L268.6,267.6L266.8,264.9L264.9,263.4L265,261.9L274.5,262.1L288.9,259.6L288.1,262.1L289.4,264.2L285.7,268.7L285.6,272.3L282.7,275.6L282.9,277.1L281.6,279.8L278.9,281.7L276.5,285.5Z","cx":275.4,"cy":271.3,"x":260,"y":259.6,"w":29.4,"h":25.9,"borough":"E09000005"},{"code":"E05013712","name":"Tollington","d":"M473.2,234.7L472.7,236L473.5,236.9L472.4,237.9L471.7,237.1L471,238.8L467.7,241.5L467.1,240.8L467.2,241.5L465.1,243.6L463.8,244L467.9,250.5L463.6,253.5L462.8,255.2L455.4,246.8L451.3,243.8L453.3,241.1L454.6,241.9L463.3,234.9L461.9,232.6L467.3,228.2L468.1,230.9L473.2,234.7Z","cx":463,"cy":241.6,"x":451.3,"y":228.2,"w":22.1,"h":27,"borough":"E09000019"},{"code":"E05013945","name":"Tolworth","d":"M272,595.3L268.1,601.2L263.5,605L257.8,606.4L239.1,601.4L239.7,596.6L242.3,596.3L245.2,597L245.5,596.3L246.2,596.5L246.8,594L250.1,594.7L250.3,594L251.2,594.2L253.4,586.2L254.9,583.9L267.5,589.6L272,595.3Z","cx":256.9,"cy":596.7,"x":239.1,"y":583.9,"w":32.9,"h":22.5,"borough":"E09000021"},{"code":"E05014023","name":"Tooting Bec","d":"M415.2,487.8L418,488.7L422.2,492.9L427.8,495.2L427.5,498.6L425.5,501.9L415.3,507L407.5,499L406.9,499.8L400.9,497.3L401.8,495.4L400.9,495L404.3,491.8L402.5,489.9L406,487L408.1,488.2L412.8,484.9L415.2,487.8Z","cx":414.4,"cy":496,"x":400.9,"y":484.9,"w":26.9,"h":22.1,"borough":"E09000032"},{"code":"E05014024","name":"Tooting Broadway","d":"M402.5,489.9L404.3,491.8L400.9,495L401.8,495.4L400.9,497.3L406.9,499.8L407.5,499L415.3,507L410.6,508.5L415,512.5L413,517.7L408.9,517.3L409.2,516.7L405.4,516L398.7,511.4L388.9,508.5L386.4,505.3L385.7,502.6L386.2,496L388,494.3L395.3,490.3L397.9,489.5L400.6,491.4L402.5,489.9Z","cx":399.8,"cy":503.6,"x":385.7,"y":489.5,"w":29.6,"h":28.2,"borough":"E09000032"},{"code":"E05013601","name":"Tottenham Central","d":"M522,186.1L521.1,195.8L519,205.4L515.2,205L511.6,203.1L507.4,202.9L501.6,201.2L501.4,199.8L506.1,196.8L505.5,193.7L506.4,192.6L505.6,188L510.8,186.3L510.9,186.9L512.7,186.5L518,182.5L518.4,183.1L519,182.5L522,186.1Z","cx":513.5,"cy":194.6,"x":501.4,"y":182.5,"w":20.6,"h":22.8,"borough":"E09000014"},{"code":"E05013602","name":"Tottenham Hale","d":"M542.4,187.3L541,193.9L542.5,198.3L541.3,199.8L536.6,197.9L529.6,197.2L528.6,194.9L523.8,196.4L521.1,195.8L522,186.1L523.7,179.9L537,181.6L537.9,182.1L536.6,186.3L542.4,187.3Z","cx":531.6,"cy":189.7,"x":521.1,"y":179.9,"w":21.4,"h":20,"borough":"E09000014"},{"code":"E05013646","name":"Totteridge & Woodside","d":"M379.4,97.1L380.1,98.6L382.7,99.9L386.3,98.8L391.4,109.6L392.1,113L392,119.3L388.1,130.7L389.5,131.1L391.6,130.2L393.2,130.7L391.5,139.5L390.8,139.3L390.6,140.5L391.3,140.6L390.9,143.3L383.8,144.5L383,148.8L380,146.7L378.2,151.1L377.5,150.7L377.4,151.9L375.5,152.3L374.3,154.5L373.2,154.3L371.3,155.7L371.3,157L370.2,157.4L369.5,159.1L367.7,159.7L367.8,161.2L365.8,162.7L366.4,164.2L365,165.2L356.6,159.7L352.7,155.5L350.5,152.1L350.2,148.3L348.3,145.8L350.1,146.4L352.4,137.8L358.7,138.4L362.1,137.2L363.8,137.8L364,137L367,136.3L368.4,136.6L369.6,133.6L368.5,133L367.9,130.6L365.2,127.9L363.1,126.9L361.9,127.5L359.8,126.4L357,127.9L352.5,128.3L350.2,130.6L348.4,131.1L345.6,130.6L344.1,129.4L343.1,130.2L338.1,128.1L335.6,128.1L328,125.6L328.4,116.9L324.8,117L324.9,112.5L323.2,103.7L326.7,104.7L330.8,104.1L334.2,104.7L337,103.3L337.7,103.9L339.9,102.8L340.9,103.2L344.6,99.7L345.2,98.2L346.4,98.4L349.7,96.1L352.3,96.5L352.8,97.3L354.8,97.1L358.6,95.2L362.9,96.7L363.3,95.9L364.2,96.5L369.5,94L373.6,95.5L376.7,95.5L376.9,96.3L379.4,97.1Z","cx":363,"cy":123.1,"x":323.2,"y":94,"w":70,"h":71.2,"borough":"E09000003"},{"code":"E05009310","name":"Tower","d":"M517.8,342.8L518.1,345.8L514.9,346.8L514.1,345L512.1,346L510.7,347.9L511.1,348.5L510.2,350.4L509.3,349.8L509.6,349L506.9,347.1L507.5,346L508.9,346.8L509.5,343.5L507.8,343.7L507.7,343L510.2,341.8L510.6,342.8L512.6,343.3L513,342.6L511.6,340.9L515.3,338.4L516.5,340.1L515.8,341.1L516.5,340.9L516.7,341.6L516,342.2L517.8,342.8Z","cx":512.9,"cy":344.1,"x":506.9,"y":338.4,"w":11.3,"h":12,"borough":"E09000001"},{"code":"E05013693","name":"Town","d":"M527.6,56.1L523.9,63L522.2,64.9L520,71.6L515.4,75.2L515.3,76.9L514.6,76.9L511.3,84.7L510.1,84.9L509.6,80.5L508.5,80.7L507.4,78.6L504.3,78.4L501.4,76.7L501.4,75.4L499.3,75.7L499.3,74.8L498.6,74.6L496.3,76.1L497.3,71L497.1,65.7L495.6,60.3L493.3,56L493.3,54.2L499.8,59L500.7,57.3L501.6,57.5L500.8,56.5L501.1,55L506.4,55.8L505.9,56.7L506.8,57.3L510.8,58.6L512.1,55.8L518.3,48L521.9,52L527.6,56.1Z","cx":510.5,"cy":65.2,"x":493.3,"y":48,"w":34.3,"h":36.9,"borough":"E09000010"},{"code":"E05014025","name":"Trinity","d":"M423,473.5L418.3,484.2L415.2,487.8L412.8,484.9L408.1,488.2L407.1,488L398.7,477.3L401.9,475.6L405.3,472.2L409.3,465.9L414,470.5L423,473.5Z","cx":411,"cy":477.9,"x":398.7,"y":465.9,"w":24.3,"h":22.3,"borough":"E09000032"},{"code":"E05013946","name":"Tudor","d":"M263.5,512.3L260.9,512.9L260.7,512L257.6,512.7L257.1,511.4L246.4,516.7L245.2,511.4L241.2,502.8L241,505.9L239.1,508L235.9,504.5L232,501.9L236.3,494.3L237.4,494.4L239.4,496.4L239,496.9L240.8,498.1L241.4,498.1L242,495.8L246.9,497.7L246.5,496.2L247.1,495.8L254.4,502.8L255.2,505.3L256.8,505.1L257.3,500.5L260.2,500.3L263.5,512.3Z","cx":248,"cy":505,"x":232,"y":494.3,"w":31.5,"h":22.5,"borough":"E09000021"},{"code":"E05013713","name":"Tufnell Park","d":"M462.8,255.2L451.4,272.3L449.2,267.2L444.1,261.3L442.1,260L440.4,256.9L448.3,255.8L447.7,254.6L451.8,254.1L450.4,251.8L453.2,249.7L455.4,246.8L462.8,255.2Z","cx":452.6,"cy":259,"x":440.4,"y":246.8,"w":22.5,"h":25.5,"borough":"E09000019"},{"code":"E05013789","name":"Twickenham Riverside","d":"M223.2,468.4L215.7,471.8L218.5,468.6L223.2,467.6L224.3,467.8L223.2,468.4ZM238.7,444.8L239.1,445.5L237.3,444.2L238.7,444.8ZM235.5,443.6L240.1,446.7L239.5,447.6L240.4,447.1L242,448.6L244.4,454.1L243.8,457.3L242.4,459.6L238.5,462.9L230.3,466.7L226.6,467.2L223.6,466.3L219.2,467L216.8,468.8L211.8,476.4L210.9,476.2L213.7,468.8L209,469.3L208,465.7L209.1,464.9L208.2,462.7L204.1,463.8L208.9,459.8L214.2,458.9L216.9,457.1L217.5,457.5L222.4,453.1L223.3,457L226.9,455.2L226.9,454.5L229,453.3L228.5,452.8L229.2,451.8L228.8,449L226.8,448.6L232.4,441.9L235.5,443.6Z","cx":227.5,"cy":458.2,"x":204.1,"y":441.9,"w":40.3,"h":34.4,"borough":"E09000027"},{"code":"E05013647","name":"Underhill","d":"M372,78L379,84.1L378.2,86L380.7,95.9L380.1,97.1L376.9,96.3L376.7,95.5L373.6,95.5L369.5,94L364.2,96.5L363.3,95.9L362.9,96.7L358.6,95.2L354.8,97.1L352.8,97.3L352.3,96.5L349.7,96.1L346.4,98.4L345.2,98.2L344.6,99.7L340.9,103.2L339.9,102.8L337.7,103.9L337,103.3L334.2,104.7L325.8,104.3L326.1,102.4L328.9,102.6L328.6,98L336.1,98L343.7,92.5L346.7,88.1L346.3,87.5L349.7,83.7L347.5,82.2L348.4,81.1L346.7,79.6L349.5,76.3L351.6,75.4L351.1,74.2L359.2,74L360.5,74.4L361,75.9L365.7,74.2L365.6,76.3L367.2,76.9L368.3,76.1L368.9,77.5L369.8,76.7L371,78.2L372,78Z","cx":357.7,"cy":88.6,"x":325.8,"y":74,"w":55,"h":30.6,"borough":"E09000003"},{"code":"E05013986","name":"Upminster","d":"M986.2,288.1L972.1,289.7L972.1,290.4L960.5,291.4L960.8,292.7L956.4,293.5L957.1,298L938.1,300.7L931.6,302.6L931.5,302L930.1,302.6L925,302.2L918.6,303.9L918.7,317.6L920.4,318.6L920.1,321.4L918.2,321.6L917.1,325.1L916.7,331.2L912.7,330.2L911,331.3L905,331.2L901.5,310.4L899.3,310.6L899.2,313.1L898.5,312.7L896.1,314.8L897,317.5L895.5,320.5L892.1,318.8L878,317.6L881.1,303.2L876.4,301.1L877.9,295.9L876.6,293.7L871.8,294.8L860.7,292.5L859.7,289.1L861.4,285.1L862.2,285.1L862,284.3L866.2,280.5L865.9,279.8L868.4,277.9L870.6,274.4L874.5,271.6L876.7,271.4L884,265.9L886,260.4L885.3,258.8L886,256.4L888.2,254.6L888,252.7L905.2,253.3L913,252.6L948.1,242.5L975.1,240L977.8,255.2L981.5,257.1L982.1,260.2L985.9,262.1L986.1,264.7L989.6,264.2L992.6,268.2L992.9,272.7L994.6,276.5L993.9,278.1L996.9,277.9L999.9,284.3L999.1,286.6L1000,288.1L996.9,289.1L997.1,287.6L986.2,288.1Z","cx":927.5,"cy":279.2,"x":859.7,"y":240,"w":140.2,"h":91.4,"borough":"E09000016"},{"code":"E05013694","name":"Upper Edmonton","d":"M519.4,146.7L528.4,147.1L541.5,149.8L549.5,153.4L558.2,150L562.6,150.2L562.3,152.1L564.2,156.8L562.7,159.1L555.3,164.2L545.5,161.2L539.8,158L503,158.7L501.6,149.6L501.6,144.6L502.5,143.9L506.1,144.6L513.3,147.9L519.4,146.7Z","cx":531.1,"cy":154,"x":501.6,"y":143.9,"w":62.7,"h":20.4,"borough":"E09000010"},{"code":"E05013900","name":"Upper Walthamstow","d":"M619.2,183.7L618.7,188.8L620.2,205.7L622,206.5L611.4,205.7L603.9,210.5L603.2,208L603.7,205.9L600.8,205.4L601,204.6L602.8,204L601.2,200.8L603.8,196.4L602.9,189.4L600.5,181.8L600.5,174.3L606,176.2L615.3,182.1L619.2,183.7Z","cx":610,"cy":192.9,"x":600.5,"y":174.3,"w":21.6,"h":36.2,"borough":"E09000031"},{"code":"E05013580","name":"Uxbridge","d":"M62.7,260.4L62.4,261.7L59.9,262.6L58.1,270.3L55.5,271.8L53.3,276.3L49.2,276.5L48.7,275.6L47.1,275.6L47.1,274.6L46.1,274.6L43.5,282.4L41.3,283.6L38.3,283.4L36.1,280.7L34.4,281.3L35,282.8L36.8,283.2L40.4,294.4L45.1,294.2L45.1,299L40.4,299.2L40.1,307.6L41.6,310.2L40,311L40.1,314.8L33,314.4L34.4,311L29.2,310.8L28.8,308.5L25.2,309.8L23.9,304.1L22.6,301.8L23.4,300.1L20.1,297.1L17.5,292.1L19.7,287.2L21.8,286L21.5,284.5L23,279.6L22.1,279L22.3,277.5L24.8,276.9L24.6,275.4L26.2,275L28,270.1L30.8,267.2L32.6,267.2L37.1,260.9L38.4,260.9L39,260L39.8,254.8L39.4,251.8L49.3,253.9L62.7,260.4Z","cx":37.6,"cy":281.4,"x":17.5,"y":251.8,"w":45.2,"h":63,"borough":"E09000017"},{"code":"E05014069","name":"Valence","d":"M779.7,248.9L779.2,254.1L777.9,257.1L774.2,261.5L765.7,265.1L750.8,267.8L755.6,257.5L751.9,247.6L751.1,247.4L752.4,242.8L755.6,239.2L757.5,238.7L758.1,247.8L779.7,248.9Z","cx":763.7,"cy":255.2,"x":750.8,"y":238.7,"w":28.9,"h":29.1,"borough":"E09000002"},{"code":"E05011253","name":"Valentines","d":"M680.3,255.2L679.3,255.6L678.5,254.6L680.3,255.2ZM698.4,223.8L695.3,229.5L700.9,234.3L699.8,240.8L690.1,247.6L689.4,246.3L686.1,248.2L687.6,252.6L680.5,255.2L679.3,254.3L678.3,254.5L674.6,250.6L671.8,246.3L677.6,239.2L678,239.6L678.6,238.3L679.2,238.7L681.1,236.6L680.8,235.8L685.1,233.3L681.9,228L683,225.7L682.3,225.3L682.9,223.2L685.3,224L686.6,222.5L684.3,220L698.4,223.8Z","cx":687.3,"cy":238.3,"x":671.8,"y":220,"w":29.1,"h":35.2,"borough":"E09000026"},{"code":"E05013901","name":"Valley","d":"M584.7,131.5L582.9,153.2L584.8,165.8L584.1,172.6L571,161.6L564.1,159.3L565.4,158L565,156.4L564.2,156.8L562.3,152.1L562.6,150.2L566.3,142.7L573.7,133.6L576.6,126.8L580.4,127.1L580.2,126L581.3,126L581.7,123.7L585.4,124.8L586.2,125.6L584.9,127.5L584.7,131.5Z","cx":576.1,"cy":148.3,"x":562.3,"y":123.7,"w":23.9,"h":48.9,"borough":"E09000031"},{"code":"E05014117","name":"Vauxhall","d":"M464.4,379.7L463.8,381L468.7,384.3L468.4,386.3L470.5,390L463.2,391.1L463.6,395.7L461.6,396.2L461.4,399.1L460.5,399.9L457.6,398.3L456.7,401.2L453.2,400.6L452.3,404L449.6,402.9L450.5,401L453.3,399.5L454.8,394.7L452.2,393.8L456.4,388.3L457.3,388.3L460.2,378.4L464.4,379.7Z","cx":460.3,"cy":390.5,"x":449.6,"y":378.4,"w":21,"h":25.7,"borough":"E09000022"},{"code":"E05009386","name":"Victoria","d":"M547,283.6L546.6,286L548.2,287L560.1,286.6L556.2,292.7L551.1,297.1L548.5,297.8L544.1,295.8L542.3,296.9L541.7,298.8L539.6,298.2L536.5,299.8L536.7,292.1L539,287.8L538.9,284.9L546,283L547,283.6Z","cx":546.4,"cy":291.3,"x":536.5,"y":283,"w":23.6,"h":16.7,"borough":"E09000012"},{"code":"E05013825","name":"Village","d":"M356.7,482.6L358.3,484.6L356,484L355,485.1L357.3,487.2L357.5,488.7L356.8,490.5L352.9,491.8L353,498.3L354.8,498.8L355.6,496.2L357.2,496.4L357,500L361.1,497.1L362.7,501.1L358.7,505.7L356,505.1L351.5,508.9L352.1,509.5L349.9,513.5L351.1,514.4L350.7,515.2L347,512.5L339.4,518L341.2,520.9L344.6,523.6L341.3,525.7L339.2,524.7L337.6,525.3L338.2,526.2L335.6,526.8L335.3,525.7L334.4,525.7L334.4,527L333,527.6L331.6,526.8L327.9,530.4L320.6,531L317.2,532.1L308.8,527.4L308.6,520.1L306.8,512.9L304.8,511.4L305.6,506.6L303.3,499.8L304.3,496.9L306.9,493.5L318.4,488.9L330.5,482.8L338.5,482.1L338.7,481.5L343.1,482.3L346.4,481.9L348.9,483.8L356.7,482.6Z","cx":330.2,"cy":505.1,"x":303.3,"y":481.5,"w":59.5,"h":50.6,"borough":"E09000024"},{"code":"E05014070","name":"Village","d":"M810.3,294L806.7,303.2L801,310.4L792.6,299.9L792.1,299.6L790.9,300.7L788.7,297.3L787.1,295.9L785.6,295.9L785.7,295.2L783.9,294.6L783,292.7L779.9,290.8L779.5,286L788.9,284.5L824.7,274.8L818,281.3L816.6,288.5L811.8,291.9L810.3,294Z","cx":800.6,"cy":290.9,"x":779.5,"y":274.8,"w":45.1,"h":35.6,"borough":"E09000002"},{"code":"E05013807","name":"Vincent Square","d":"M456.7,375.5L455.8,381.2L452.3,387.7L437.6,376.3L435.5,371.7L443.7,370L443.7,371.9L446,371.9L447.4,374.9L456.7,375.5Z","cx":447,"cy":378,"x":435.5,"y":370,"w":21.2,"h":17.7,"borough":"E09000033"},{"code":"E05009311","name":"Vintry","d":"M491.7,341.1L495.4,342.4L494.7,344.7L496.3,345.2L495.5,347.3L491.6,345.8L492.2,342.8L491.6,342.8L491.5,344.1L489.4,343.3L490.1,340.7L491.7,341.1Z","cx":493,"cy":343.8,"x":489.2,"y":340.7,"w":7.1,"h":6.7,"borough":"E09000001"},{"code":"E05011487","name":"Waddon","d":"M476.4,599.1L478,602.9L478.1,610L487.2,623.1L488.5,636L486.9,636.2L486.6,634.5L481.7,635.5L481.2,636.2L480.1,635.3L476.8,636.6L477.7,638.7L477.9,641.8L474.1,643.8L472.4,653L469.8,653L469,655.6L469.3,658.9L465.5,660.2L465.9,657L465.3,657.2L463.3,644.8L462.1,645L460.6,636L457.3,636.6L456.8,634.7L456.8,633.8L458.1,633.2L458.3,633.8L460,633.4L458.8,631.9L460.1,631.7L459.9,629.8L460.6,629.8L461.2,625.4L460.7,622.7L459.5,623.1L457.4,621.4L459.7,620.6L458.3,610.4L456.5,605.6L453,603.7L454.3,603.3L454.2,602.2L455.4,602L454.3,599.1L461.4,600.3L464.4,598.6L463.4,597L467.2,597.4L469.7,601L473.4,599.1L476.4,599.1Z","cx":470.4,"cy":624.1,"x":453,"y":597,"w":35.5,"h":63.2,"borough":"E09000008"},{"code":"E05009312","name":"Walbrook","d":"M498.9,337.2L503.1,337.1L502,338.4L499.1,339.7L501.4,339.9L501.2,341.1L499.4,340.1L498.5,343.5L496.9,343L497.6,340.9L497.1,340.1L498.1,339.7L496.3,339.3L496.8,338L495.6,337.8L496.5,336.7L498.9,337.2Z","cx":498.9,"cy":339.3,"x":495.6,"y":336.7,"w":7.5,"h":6.9,"borough":"E09000001"},{"code":"E05013749","name":"Walham Green","d":"M378.4,397.2L381.3,401.4L380.5,402.5L378.8,403.9L376.1,403.1L376.2,405.2L373.6,405.8L372.3,404.4L370.8,408.4L366.6,411.8L365.7,408.6L362.9,405L360.8,400L366.4,396.8L368.3,400.4L369.7,401L372.8,398.5L374.5,401.2L378.4,397.2Z","cx":369.9,"cy":403.1,"x":360.8,"y":396.8,"w":20.5,"h":15,"borough":"E09000013"},{"code":"E05013926","name":"Wall End","d":"M685.3,280.9L683.4,288L686,294.4L684.9,296.3L686.7,296.1L690.4,306.6L681.4,309.8L674.7,310.6L673.2,303.9L674.5,303.6L674,301.3L670.8,301.8L670.2,299.2L669.5,299.4L670,298.6L667.9,289.9L674.4,285.3L678.4,280.9L681.7,280L685.3,280.9Z","cx":678.9,"cy":296.3,"x":667.9,"y":280,"w":22.5,"h":30.6,"borough":"E09000025"},{"code":"E05013770","name":"Wallington North","d":"M437.9,627.5L420.2,633.2L418.6,622.5L416.6,619.9L417.1,617.6L414.4,613.6L415.3,609.8L420.9,602.2L422.1,598.7L426.1,605.6L430.1,607.9L432.1,610L437.8,610.9L438.2,613L436.1,612.8L436.1,613.6L435.1,613.8L435,615.9L435.2,617.2L436.1,617L437.1,626.7L437.8,626.5L437.9,627.5Z","cx":426,"cy":617.7,"x":414.4,"y":598.7,"w":23.8,"h":34.4,"borough":"E09000029"},{"code":"E05013771","name":"Wallington South","d":"M441.1,632.4L440.7,635.7L439.6,635.7L439.4,638.7L436.6,639.5L437,641.8L433.8,645.8L434,646.5L433.3,646.5L433,649.6L432,649.7L432.6,650.3L432.1,651.5L429.9,652.6L430.1,654.1L427.9,655.8L427.9,657.9L422.4,658.5L421.8,654.5L414.7,655.6L414.6,654.3L416.3,653.6L415.7,641.2L416.6,641L415.8,634.3L437.9,627.5L438.7,627.5L439,629L441.6,628.1L441.1,632.4Z","cx":427,"cy":642,"x":414.6,"y":627.5,"w":27,"h":31,"borough":"E09000029"},{"code":"E05013541","name":"Walpole","d":"M242.4,345.4L242.9,354.4L242.3,356.1L240.8,357.2L240.7,359.7L230.9,363.1L230.9,364.1L228.9,365.2L228.8,366.2L222.5,355.1L218.1,357.6L214.4,347L225.9,344.5L225.7,339.7L232.1,339.1L233,342.8L238.1,341.2L238.4,342.6L240.5,342.2L240.6,343.5L242.6,344.3L242.4,345.4Z","cx":230.4,"cy":351.5,"x":214.4,"y":339.1,"w":28.4,"h":27,"borough":"E09000009"},{"code":"E05013826","name":"Wandle","d":"M386.2,496L385.7,502.6L386.4,505.3L388.9,508.5L392.6,509.3L393.8,512.5L390.4,514.1L390.1,512.9L388.3,514.1L389.7,517.3L390.4,517.5L390.6,518.4L389.5,518.6L390.2,524.1L382.6,525.3L382.9,517.5L382.3,517.7L381,510.4L379.9,510.4L379.7,508.9L380.7,508.2L378.4,503L382,501.1L380.5,499.2L379.6,495.8L381.2,494.4L382.4,494.4L382.5,492.7L384.4,492.4L386.2,496Z","cx":385.1,"cy":510.2,"x":378.4,"y":492.4,"w":15.4,"h":32.9,"borough":"E09000024"},{"code":"E05014026","name":"Wandle","d":"M394.5,454.1L379.4,478.8L379.2,474.5L376.9,474.1L375.8,471.2L375.4,465.5L376.7,463L377.4,458.9L379.3,458.9L384.9,455.2L385.7,453.3L388.9,452.8L392.3,450.9L394.5,454.1Z","cx":383.6,"cy":463.2,"x":375.4,"y":450.9,"w":19.1,"h":28,"borough":"E09000032"},{"code":"E05014027","name":"Wandsworth Common","d":"M400,446.7L401.6,451.6L409.3,465.9L405.3,472.2L401.9,475.6L398.7,477.3L401.8,481.7L404.2,483.6L406,487L400.6,491.4L397.9,489.5L388,494.3L386.2,496L384.4,492.4L382.5,492.7L382.4,494.4L381.2,494.4L379.6,495.8L377.9,491.8L379.1,489.3L380.3,482.3L378.6,481.5L379.4,478.8L394.5,454.1L399,443.1L399.8,442.5L400,446.7Z","cx":393.8,"cy":474,"x":377.9,"y":442.5,"w":31.4,"h":53.5,"borough":"E09000032"},{"code":"E05014028","name":"Wandsworth Town","d":"M400.2,438.9L394.5,454.1L392.3,450.9L388.9,452.8L385.7,453.3L384.9,455.2L379.3,458.9L377.4,458.9L377.1,460L374.9,458.9L374.9,455.1L371.6,454.9L371.7,451.2L371,450.7L370.7,451.6L370.3,451.1L369.5,443.4L367.5,440.8L373.3,440.2L373.3,441.3L375.4,441.7L373.6,441L373.6,440.2L378.6,440L395.3,435.6L396.1,437L400.2,438.9Z","cx":383.9,"cy":446.5,"x":367.5,"y":435.6,"w":32.7,"h":24.4,"borough":"E09000032"},{"code":"E05011254","name":"Wanstead Park","d":"M656.8,220.8L663.4,230.5L671.8,246.3L674.6,250.6L678.3,254.5L676.6,253.9L673.2,249.5L672.4,249.5L676.3,254.1L678.5,254.6L679.7,256.2L675.7,257.9L673.4,255L672.1,254.8L671.9,253.5L671,253.7L670.3,252.2L668.8,251.8L668.4,249.5L665.5,246.8L663.9,243.4L654.1,248.2L655.2,254.1L656.8,255.6L659.2,260.9L646.3,260L642.6,261.3L634.6,262.4L634.4,259.6L632.6,259.6L632.1,257.1L631.3,257.3L631.1,258.5L628.6,258.5L624.6,253.3L621.9,252.2L621.5,240.4L625.2,240.2L626.8,239L625.3,232L634.2,232.6L636.7,230.5L642,229.3L638.5,224.2L637.5,221.3L638.8,220.4L647.1,218.1L652.5,220.4L656.8,220.8Z","cx":646,"cy":241.9,"x":621.3,"y":218.1,"w":58.4,"h":44.3,"borough":"E09000026"},{"code":"E05011255","name":"Wanstead Village","d":"M651.6,205L652.3,210.3L656.8,220.8L652.5,220.4L647.1,218.1L638.8,220.4L637.5,221.3L638.5,224.2L642,229.3L636.7,230.5L634.2,232.6L627,232.2L626.8,227.6L625.8,228.2L623.9,226.5L625,223.4L625.1,217.9L622.6,209.9L622.7,206.7L620.2,205.7L619.8,199.6L625.1,201.5L625,202.9L626,202.9L626.2,202.1L627.8,202.5L627.7,203.3L628.9,203.3L629.1,202.5L632.1,202.5L633.4,202.9L632.9,204.2L633.9,204.4L635.5,202.3L635.3,202.9L639,204L639.9,206.3L641.3,205.7L640.8,204.8L644.5,203.1L644.3,202.5L645.5,201.7L651.6,205Z","cx":636.2,"cy":214.8,"x":619.8,"y":199.6,"w":37.1,"h":32.9,"borough":"E09000026"},{"code":"E05014118","name":"Waterloo & South Bank","d":"M475.4,349.2L476.2,352.1L477.3,351.7L478.2,355.5L478.3,358.8L477.2,359.5L477.9,361L478.7,360.5L478.9,361.4L476.1,364.5L473.7,371.3L467.6,373.8L464.4,379.7L460.2,378.4L462.9,358L464.4,354.2L468,350.6L472.9,349L473.2,349.6L475.4,349.2Z","cx":469.1,"cy":363,"x":460.2,"y":349,"w":18.7,"h":30.6,"borough":"E09000022"},{"code":"E05013561","name":"Wealdstone North","d":"M221.2,174.9L213.8,177.9L213,179.1L212.7,178.5L207.6,180.4L205.6,179.7L205.2,181.8L206.5,182.7L206.6,184L204.5,185.4L203.9,186.7L190,176.2L190.7,175.3L190.2,174.3L194.8,174.1L198,172.2L199.4,174.3L202.7,172.2L203.4,170.1L209.3,167.7L210.2,167.9L210.2,168.8L211.6,168.2L212.2,169L216.3,167.3L218.3,169.2L221.2,174.9Z","cx":206,"cy":175.8,"x":190,"y":167.3,"w":31.2,"h":19.4,"borough":"E09000015"},{"code":"E05013562","name":"Wealdstone South","d":"M223.9,178.3L223.1,186.5L221,190.7L218.8,192.2L215.6,192.2L214.9,193.2L211.4,192.6L203.9,186.7L204.5,185.4L206.6,184L206.5,182.7L205.2,181.8L205.6,179.7L207.6,180.4L212.7,178.5L213,179.1L213.8,177.9L219.8,175.1L220.1,175.9L222.4,174.7L223.9,178.3Z","cx":215.1,"cy":184.4,"x":203.9,"y":174.7,"w":20,"h":18.5,"borough":"E09000015"},{"code":"E05009335","name":"Weavers","d":"M528.6,320.3L514.2,322.6L514.7,320.1L514.5,319L513.8,319L514,313.6L512.8,313.3L516,308.3L518.1,306.8L525.8,305.8L526.9,308.7L528.6,320.3Z","cx":520.9,"cy":314.4,"x":512.8,"y":305.8,"w":15.8,"h":16.7,"borough":"E09000030"},{"code":"E05013513","name":"Welsh Harp","d":"M306.2,206.5L303.2,209.7L302.9,213.3L305,222.3L306.7,225.9L304.6,227.4L309.1,234.1L309.9,234.9L311.8,234.7L313.9,237.5L309.2,240L305.9,245.1L303.9,253.7L305.2,259.4L304.6,261.3L296.4,257.5L289.8,253.3L291.2,250.3L290.7,248.2L293.7,247.8L294.4,247L293.9,244.9L294.7,243.6L289.9,240L290.1,239.2L287.5,235.6L282.4,231.2L275.3,213.5L280.2,210.1L283.6,210.3L288.3,207.8L288.6,205.7L289.5,205L293.1,207.1L298.2,208.6L303.9,208.2L306.2,206.5Z","cx":294.8,"cy":229.6,"x":275.3,"y":205,"w":38.6,"h":56.3,"borough":"E09000005"},{"code":"E05013514","name":"Wembley Central","d":"M260,274.2L265,278.4L262.4,280.9L260.6,279.2L259.4,280.3L259,280L255.9,283.2L252.8,281.3L251.5,286.6L250,288.1L245,284.9L240.7,276.7L234.3,271.4L232.6,266.8L232.8,264.7L231.4,261.9L245,261.7L245.1,252L246.7,251.4L252.2,264.4L254.2,266.6L254.8,266.4L254.1,267.2L260,274.2Z","cx":247.2,"cy":271.7,"x":231.4,"y":251.4,"w":33.6,"h":36.7,"borough":"E09000005"},{"code":"E05013515","name":"Wembley Hill","d":"M272,246.7L269.2,249.3L265.5,256.5L264.9,263.4L266.8,264.9L268.6,267.6L268,267.8L268.3,268.3L264.5,270.4L264.9,271.2L264.1,271.2L263.7,273.3L261,272.5L260,274.2L254.1,267.2L254.8,266.4L254.2,266.6L252.2,264.4L249.6,259.4L244.4,245.3L253.8,247.6L257.6,247.2L260.7,246.3L263.2,243.4L266,242.3L272,246.7Z","cx":258.7,"cy":256.7,"x":244.4,"y":242.3,"w":27.6,"h":32,"borough":"E09000005"},{"code":"E05013516","name":"Wembley Park","d":"M290,253.1L287.3,254.5L286.9,256.5L286.1,256.7L286.8,257.9L288.2,257.9L288.9,259.6L274.5,262.1L265,261.9L265.5,256.5L267,252.9L269.2,249.3L273.9,244.7L281.2,247.6L290,253.1Z","cx":276.5,"cy":254.7,"x":265,"y":244.7,"w":25,"h":17.3,"borough":"E09000005"},{"code":"E05013750","name":"Wendell Park","d":"M314.1,352.3L316.8,360.7L320,362.6L321.2,365.6L313.9,368.1L309.2,371.1L304.7,362.6L304.2,359.7L302.2,357L305.3,356.3L313.3,356.5L312.4,352.5L314.1,352.3Z","cx":311.6,"cy":362.2,"x":302.2,"y":352.3,"w":19,"h":18.8,"borough":"E09000013"},{"code":"E05013827","name":"West Barnes","d":"M342.5,562.2L336.3,564.3L336.8,564.9L334.9,566.2L336.3,568.3L335.7,569.2L328.7,568.7L329.4,569.8L326.1,571.1L326.5,573.4L320.4,575.9L318.1,567.1L314.5,565.6L311.3,560.1L312.2,558.2L312,554.6L313.9,552.1L314.5,548.1L317.4,548.1L320.9,550.4L324.1,551.4L325.8,545.3L329.8,542.4L333.4,542L333.7,550L336.2,550.4L338,551.9L337.9,554.4L336.6,555.3L338.6,557.6L338.1,558L342.5,562.2Z","cx":325.9,"cy":558.8,"x":311.3,"y":542,"w":31.4,"h":33.9,"borough":"E09000024"},{"code":"E05013581","name":"West Drayton","d":"M71.1,351.5L79.9,354.4L76.4,354L73.6,355.9L71.4,360.7L70.4,360.5L67.9,369.4L66.1,368.5L63.9,369.2L55.8,367.3L51.6,360.1L49.3,368.8L48.8,373.8L34.2,375.9L23.9,375.5L25.5,372.8L24.6,369.8L25.3,367.9L24.2,367.1L25.4,364.8L26.9,364.5L27.3,363.3L28.4,363.5L28.4,361.8L30.3,358.4L29.5,357.6L29.8,355.3L31.9,352.7L31.1,350.6L31.6,349.8L28.8,346.6L29.3,346.2L43.9,346.4L52.8,347.5L71.1,351.5Z","cx":47.2,"cy":360.2,"x":23.9,"y":346.2,"w":56,"h":29.7,"borough":"E09000017"},{"code":"E05014119","name":"West Dulwich","d":"M494.3,477.3L496.6,484L498.6,494.6L496.8,495.2L496.2,494.3L492.1,494.1L492.1,496.9L485.9,496L484.9,492.7L482.2,493.7L480.3,485.5L481.8,483.6L482.2,484.2L484.6,481.9L487,481.1L487.3,481.7L488.2,480.4L484.7,480.4L481.2,478.1L481.5,474.3L479.6,474.3L479.9,468.8L479.2,468.8L479.3,469.5L473.5,470.7L472.8,469.1L474,469.5L474.1,468.4L480.6,466.5L485,459.8L485.9,459.8L487,462.3L490.7,466.7L494.3,477.3Z","cx":487.8,"cy":480.1,"x":472.8,"y":459.8,"w":25.8,"h":37.1,"borough":"E09000022"},{"code":"E05013808","name":"West End","d":"M434.4,319.5L435.2,319.7L442.1,329.3L442.9,328.7L443.5,329.6L444.2,329.3L445.6,331.9L446.2,331.5L447.5,332.7L447.4,333.4L449.4,332.7L451.7,339.7L446.5,343.7L444.7,346.8L437,350.9L426.9,359.1L424.1,359.3L424.2,352.9L418.8,345.4L416.7,339.9L414.8,340.1L413,338.2L435.1,332.1L433.6,330L431.2,321.6L429.2,320.5L433.7,319.5L433.8,318.2L434.4,319.5Z","cx":433.5,"cy":340.3,"x":413,"y":318.2,"w":38.7,"h":41.1,"borough":"E09000033"},{"code":"E05013648","name":"West Finchley","d":"M390.9,143.3L394.9,143.7L397.2,166L398.9,172.2L389.6,182.3L375.2,172.2L375.6,171.7L373.4,169.6L373.4,168.2L376.8,164.1L370.2,157.4L373.2,154.3L374.3,154.5L375.5,152.3L377.4,151.9L377.5,150.7L378.2,151.1L380,146.7L383,148.8L383.8,144.5L390.9,143.3Z","cx":386.3,"cy":162.1,"x":370.2,"y":143.1,"w":28.7,"h":39.2,"borough":"E09000003"},{"code":"E05013603","name":"West Green","d":"M510.8,186.3L505.6,188L506.4,192.6L505.5,193.7L506.1,196.8L501.4,199.8L501.6,201.2L499.3,200.6L493.1,201.5L483.4,196L481.9,193L491.8,183.8L490.7,178.1L502.1,179.1L510.2,178.3L510.3,180.6L511,180.6L510.8,186.3Z","cx":497.2,"cy":189.6,"x":481.9,"y":178.1,"w":29.1,"h":23.4,"borough":"E09000014"},{"code":"E05013927","name":"West Ham","d":"M629.5,286.4L629.5,288.3L630.4,288.3L630.3,292.1L631.1,292.5L630.5,295.2L626.4,294.8L625.4,300.7L623.6,304.1L625.7,305.5L610,311.4L609.2,305.1L605.2,295.6L608.7,293.3L608.6,292.7L610.5,292.1L610,291.4L616.8,287.2L617.7,289.3L620.5,286.8L625.9,286L627.5,286.4L627.2,287.2L629.5,286.4Z","cx":617.9,"cy":297.5,"x":605.2,"y":286,"w":25.9,"h":25.3,"borough":"E09000025"},{"code":"E05013671","name":"West Hampstead","d":"M390.9,274.4L391.8,276L391,276.3L387.7,274.8L378,276.2L377.3,279.6L375.5,281.1L371,280.5L372.4,277.1L369.7,277.1L365.6,278.8L363.1,275.8L367.6,273.9L370.1,273.9L370.5,271.4L369,267L375.8,265.9L376.2,266.4L380.7,264.5L384.4,265.9L388.8,270.4L390.9,274.4Z","cx":377.5,"cy":272.4,"x":363.1,"y":264.5,"w":28.7,"h":16.6,"borough":"E09000007"},{"code":"E05013563","name":"West Harrow","d":"M199.3,213.3L197.4,223.2L191.1,221.5L190,222.1L188.3,225L191.1,228L189.4,230.5L188.7,229.9L187.7,231.2L188.3,231.8L186.1,233.9L181.7,235.4L178.9,231.8L171.9,225.5L166.2,222.7L170.4,222.7L173.8,221.7L185.9,213.7L189,212.8L192.4,212.4L199.3,213.3Z","cx":185,"cy":222.7,"x":166.2,"y":212.4,"w":33.2,"h":23,"borough":"E09000015"},{"code":"E05011233","name":"West Heath","d":"M773.9,405.2L775.5,406.1L774.9,406.5L776.1,409.6L774.6,411.3L775.8,419.3L774.1,421.9L771.3,421L769,418.5L767.1,419.1L766.2,418.5L763.2,422.3L758,421L757.3,425.4L750.9,425.2L751.1,424.2L747.3,423.3L746.5,419.8L745.1,419.7L745.2,417.6L740.9,417.6L737.6,415.8L744.7,405.4L747.6,406.1L751.5,409.4L748.9,397.6L754,398.7L754.6,396.1L755.7,396.1L758.6,396.8L758.8,398.9L760.6,399.5L763.6,398L763.9,399.1L765,398.1L765.5,399.1L767.6,398.3L768.1,402.1L769.5,402L769.7,403.3L773.5,404L773.9,405.2Z","cx":758.4,"cy":411.4,"x":737.6,"y":396.1,"w":38.5,"h":29.3,"borough":"E09000004"},{"code":"E05013649","name":"West Hendon","d":"M345.7,219.1L341.1,224.8L333.9,227.4L329.3,230.1L327.9,228.2L326.5,228.6L325.4,227.2L322.9,227.2L322.5,228.6L321.5,227.8L320.1,228L320.1,227.4L318.8,228L318.4,226.9L317.1,226.7L317.2,227.2L315.5,227.6L315.1,227.1L313.9,228.4L313,227.8L312.2,229L313,230.1L312.4,233.9L309.9,234.9L304.6,227.4L306.7,225.9L305,222.3L302.9,213.3L303.2,209.7L306.2,206.5L310.4,204.8L308.8,202.3L313,201.5L314.1,199.5L316.2,200L316.3,205.9L320.7,204.8L322,197.6L326.3,198.5L329.9,200.6L335.3,207.3L337.7,213.7L345.7,219.1Z","cx":321.7,"cy":216,"x":302.9,"y":197.6,"w":42.8,"h":37.3,"borough":"E09000003"},{"code":"E05014029","name":"West Hill","d":"M358.5,460.6L360.2,475.6L362.1,481.3L352.7,483.6L348.9,483.8L346.4,481.9L343.1,482.3L338.7,481.5L338.5,482.1L341.3,466.5L340.3,463.6L354.4,452.8L358.5,460.6Z","cx":350.5,"cy":470.6,"x":338.5,"y":452.8,"w":23.7,"h":31,"borough":"E09000032"},{"code":"E05013751","name":"West Kensington","d":"M371.7,389.6L361.5,394.9L361,393L359.3,393.2L357.8,390.2L355.5,390.7L355.2,390.2L352.8,391.5L352.3,390L351.2,389.4L352.1,389L351.8,388.1L352.8,387.9L351.2,384.1L351.8,383.5L350.2,383.3L350.2,382.7L356.1,383.3L364.6,381L369.8,388.3L371.7,389.6Z","cx":360.9,"cy":387.5,"x":350.2,"y":381,"w":21.6,"h":13.9,"borough":"E09000013"},{"code":"E05014030","name":"West Putney","d":"M347.3,439.1L340.2,462.1L340.3,463.6L330.9,469.5L326.7,471L323.4,463.4L325.3,460.8L324,458.3L323.5,449.7L319.5,449.9L318.7,436L321.6,435.8L320.7,432L328,433.7L327.7,431.3L339.6,435.1L347.3,439.1Z","cx":332.2,"cy":448.9,"x":318.7,"y":431.3,"w":28.7,"h":39.8,"borough":"E09000032"},{"code":"E05014091","name":"West Thamesmead","d":"M737.1,369L707.2,384.4L705.5,384.6L704.2,383.7L696.4,382.4L697.5,376.8L696.9,374.9L695,374.9L694.4,373L701.8,367.3L708.1,357.8L708.6,354.9L715.3,357.6L716.5,359.1L719.6,360.5L719.5,361.2L725.4,366.6L732.5,368.6L736.7,368.1L737.1,369Z","cx":712.2,"cy":371,"x":694.4,"y":354.9,"w":42.8,"h":29.7,"borough":"E09000011"},{"code":"E05011488","name":"West Thornton","d":"M481.3,576.7L479.5,578.6L473.2,581.2L472.8,579.9L467.3,582.8L460.9,583.3L445.3,572.9L451.9,567.9L450.7,567.5L457.4,560.1L455.5,558.8L455.8,557.8L463.9,551.9L467.8,562.8L470.3,561.2L471.5,563.7L476,563.5L473.2,565.6L477.4,571.9L477.5,574L481.3,576.7Z","cx":463.4,"cy":570.5,"x":445.3,"y":551.9,"w":36.2,"h":31.4,"borough":"E09000008"},{"code":"E05013790","name":"West Twickenham","d":"M194.3,464.2L192.9,466.3L194.7,468.2L193.8,471.2L195.6,471.4L196.2,472.4L195.5,472.8L197.5,475L191.5,481.5L189,486.8L187,486.5L186.5,487.8L185.5,487.2L185.8,486.5L181.9,485.3L176.3,480.7L163.1,484.7L158.9,488L156.8,486.5L156.9,485.5L176.9,471L181.7,465.9L186.2,462.7L194.3,464.2Z","cx":181.9,"cy":476,"x":156.8,"y":462.7,"w":40.7,"h":25.3,"borough":"E09000027"},{"code":"E05014008","name":"West Wickham","d":"M607.4,578.2L607.6,586.2L608.7,589L607.7,590.7L607.9,592.5L604.4,595.9L603.7,595.5L603.5,596.8L601.8,598.7L609.1,600.1L606.9,604.5L602.7,610.5L597.8,615.5L585.6,622.9L580.9,624.8L577.9,620.4L576.4,621.6L575.3,618.7L577,618.3L576.4,608.4L573.4,600.3L572.6,594.7L573.8,590.7L574.5,590.7L577.2,580.5L583.3,587.1L589,590.6L594.3,588.5L595.2,589.8L600.3,586.8L597.4,581L598.1,577.6L605,571.5L607.4,578.2Z","cx":590.5,"cy":600.2,"x":572.6,"y":571.5,"w":36.5,"h":53.3,"borough":"E09000006"},{"code":"E05013809","name":"Westbourne","d":"M391.2,327L385.4,328.1L378,327.7L373.2,326.2L373.3,328.5L370,329.6L371,332.3L367.6,333.2L366.5,331L365.8,331.3L363.1,326L364.4,325.4L366.8,325.8L365.5,319L373.9,321.6L379.6,318.2L383,320.9L381.9,322.4L387,325.1L389.5,325.3L391.2,327Z","cx":374.8,"cy":325.1,"x":363.1,"y":318.2,"w":28.1,"h":15,"borough":"E09000033"},{"code":"E05014071","name":"Whalebone","d":"M787.2,239.4L782.6,240.4L782,248.4L774.7,249.1L758.1,247.8L757.5,238.7L758.9,231.4L758.3,230.7L767,228.2L780.8,226.1L781.7,232.6L778.1,233.1L778.1,234.3L780.5,234.7L782.5,236.2L783.6,235.6L787.2,239.4Z","cx":770.8,"cy":238.5,"x":757.5,"y":226.1,"w":29.7,"h":23,"borough":"E09000002"},{"code":"E05013650","name":"Whetstone","d":"M412.2,111L419.2,122.6L418,123.3L418.6,124.7L417.7,125.6L417,126L415.9,125L414.1,126.9L416.2,135.1L413.9,137L411.5,135.5L409.9,138L406.2,138.9L405.7,137.4L401.1,136.1L401.9,134.6L401.6,133.2L397.3,134L398.5,129.6L395.4,129.6L395.3,130.4L393.4,130L393.2,130.7L391.6,130.2L389.5,131.1L388.1,130.7L392,119.3L392.1,113L391.4,109.6L395.7,108.9L394.9,106.8L395.7,106.6L396.1,107.7L399.1,105.2L400.8,105.8L403.5,102.2L404.3,102.6L406.2,100.9L412.2,111Z","cx":404.1,"cy":121,"x":388.1,"y":100.9,"w":31.2,"h":38.1,"borough":"E09000003"},{"code":"E05013752","name":"White City","d":"M338.5,347.1L336.9,350.2L336.2,354.8L326.1,352.9L326.4,345.8L324.5,345.8L324.2,343.3L325.7,343.1L324.8,339.1L322.1,339.3L322.1,338.2L331.8,336.9L331.8,338.6L335,341.8L333.9,343L335.7,344.9L338,342.6L338.5,347.1Z","cx":330.9,"cy":345.9,"x":322.1,"y":336.9,"w":16.3,"h":17.9,"borough":"E09000013"},{"code":"E05013604","name":"White Hart Lane","d":"M503,158.7L502.7,164.1L501.3,168.6L509.7,169.2L510.8,173.8L512.6,173.6L513.4,177.9L502.1,179.1L490.7,178.1L486.4,175.7L484.9,175.9L484.4,175.1L489.1,169.4L489.1,165.8L489.7,165.4L487.6,160.2L489.1,159.3L488.6,158L490.9,157.2L491.6,158.3L494.8,157.6L503,158.7Z","cx":497.8,"cy":169.8,"x":484.4,"y":157.2,"w":29,"h":21.9,"borough":"E09000014"},{"code":"E05009336","name":"Whitechapel","d":"M538.4,338L531,337.1L532.7,347.3L525.5,347.5L519.9,349.4L517.7,348.3L516.1,346.2L518.1,345.8L516.7,337.6L526.7,331.5L537.6,327.5L539.1,331.7L538.4,338Z","cx":527.4,"cy":338.8,"x":516.1,"y":327.5,"w":23,"h":21.9,"borough":"E09000030"},{"code":"E05013695","name":"Whitewebbs","d":"M546.4,15L544.8,18.5L537.2,51.2L535.8,50.6L535.9,52.1L533.5,51.4L533.4,53.7L529.1,52.9L527.6,56.1L521.9,52L518.3,48L512.1,55.8L510.8,58.6L506.8,57.3L505.9,56.7L506.4,55.8L501.1,55L500.8,56.5L501.6,57.5L500.7,57.3L499.8,59L493.3,54.2L493.3,56L487.7,47.6L485.2,41.3L476.8,36.2L474.4,33.3L471.2,24.9L469.7,23.4L469.9,19.4L468.7,20L468.3,19.4L469.7,12L464.4,5.3L474.3,0.6L479,0L492.1,3.4L505,3.8L510.8,5.9L524.9,14.8L530.8,16.9L536.8,16.9L546.4,15Z","cx":505.1,"cy":28.2,"x":464.4,"y":0,"w":82.1,"h":59,"borough":"E09000010"},{"code":"E05013791","name":"Whitton","d":"M198.4,445L196.4,450.1L196.4,455.6L194.3,464.2L157.6,456.4L160.1,455.8L161.7,454.5L166.6,447.1L168,447.2L168.7,446.3L182.9,444.4L185.7,444.8L186.5,447.2L191.5,447.4L194.5,446.5L195.4,445.3L198.4,445Z","cx":180.8,"cy":453.6,"x":157.6,"y":444.4,"w":40.9,"h":19.8,"borough":"E09000027"},{"code":"E05013517","name":"Willesden Green","d":"M345.7,272.5L342.2,276.7L338.3,277.3L338.3,276.7L337.4,277.1L334.5,275.8L332.8,276.7L332.8,278.4L328.9,278.4L328.5,277.5L329.4,276L328.6,275.6L324.8,275.4L322.2,273.7L320.7,275.4L319.3,273.3L321.3,272.2L321.2,271.6L316.5,265.3L311.7,263.8L318,260.2L330.3,255.6L331.2,256.9L331.2,260.9L333.4,260.7L335.7,263.2L343.9,263.6L345.4,264.9L346.7,264.9L344.6,270.4L343.5,270.1L343.3,270.6L344.5,271L344.1,272.2L345.7,272.5Z","cx":330.4,"cy":267.7,"x":311.7,"y":255.6,"w":35.1,"h":22.8,"borough":"E09000005"},{"code":"E05013902","name":"William Morris","d":"M583.8,193.6L580.6,196.2L579.7,197.9L580.1,199.8L579.4,200L579.1,199.3L574.2,200.6L573.6,201.4L574.2,203.3L570.4,205L568.1,196L564.3,197.7L556.4,199.3L557.5,196.2L556.9,196.2L556.7,194.9L557.3,193.9L562.1,193.6L565.4,191.7L566,191.1L565.5,190.3L570.6,186.9L570.6,184.2L572.3,183.7L572.3,182.7L576.5,181.9L578.1,188.6L580.3,187.5L580.7,188.4L582.2,187.8L582.9,192.6L583.8,193.6Z","cx":572,"cy":193.5,"x":556.4,"y":181.9,"w":27.4,"h":23,"borough":"E09000031"},{"code":"E05013828","name":"Wimbledon Park","d":"M379.4,478.8L378.6,481.5L380.3,482.3L379.1,489.3L377.9,491.8L380.5,499.2L382,501.1L378.4,503L380,507L375.6,506.8L370.7,507.8L366,510.1L363,512.7L368.5,503.6L363.9,503.6L361.1,497.1L357,500L357.2,496.4L355.6,496.2L354.8,498.8L353,498.3L352.9,491.8L356.8,490.5L357.5,488.7L357.3,487.2L355,485.1L356,484L358.3,484.6L356.7,482.6L379.3,476.6L379.4,478.8Z","cx":368.8,"cy":492.5,"x":352.9,"y":476.6,"w":29.1,"h":36.2,"borough":"E09000024"},{"code":"E05013829","name":"Wimbledon Town & Dundonald","d":"M380,507L380.7,508.2L379.7,508.9L379.9,510.4L381,510.4L381.7,515L373.5,516.9L373.4,518.4L368.9,519.2L365.2,518.4L367.7,526.6L362.4,529.3L356.6,534.8L350.8,538L349.8,534L346.3,535L346.1,532.3L345,531L362.7,512.3L370.7,507.8L375.6,506.8L380,507Z","cx":362.9,"cy":521.1,"x":345,"y":506.8,"w":36.7,"h":31.2,"borough":"E09000024"},{"code":"E05013696","name":"Winchmore Hill","d":"M493.7,112.1L492.5,115.1L488.5,121L487.8,128.8L486.4,132.3L479.9,128.8L479,127.1L477.7,131.5L477,131.3L476.3,133.2L475.5,133L472.2,129.2L473.2,126.2L468.5,121.8L469,121L464.8,118.6L464.2,119.5L462.8,118.8L466.1,114L464.7,111L466.3,108.1L473.6,105.1L475.5,103.5L474.8,103L476.2,101.2L483.5,100.3L487.3,98.6L487.9,99L486.2,105.8L489.4,106.2L489.2,107.1L489.9,107.3L490.3,106.6L493,107.1L493.5,108.1L492.8,110.8L493.6,111L493.7,112.1Z","cx":479.3,"cy":115.6,"x":462.8,"y":98.6,"w":30.9,"h":34.6,"borough":"E09000010"},{"code":"E05013582","name":"Wood End","d":"M104.5,321.6L117.8,329.4L126,332.1L129.2,334.6L141.9,340.1L138.3,351.9L127.1,358.4L126.1,359.7L121.8,359.9L125.6,346L124.4,346.2L117.7,343.3L116.1,341.8L117.8,338.6L115.8,338.6L115.2,339.5L109.4,336.7L106.9,336.3L107.2,334.4L98.7,332.5L101.7,341.6L99.7,341.4L93.5,337.4L90.2,337.2L86.8,338.2L82.8,332.3L76.7,326.6L74.2,321.6L80.5,321.4L83.1,316.5L85.2,315L88.4,316.7L104.5,321.6Z","cx":109.3,"cy":334.7,"x":74.2,"y":315,"w":67.8,"h":44.9,"borough":"E09000017"},{"code":"E05013903","name":"Wood Street","d":"M603.9,210.5L597.4,214.9L595,215.1L593.9,214.5L593.9,212.2L592,207.4L592.5,206.5L593.9,206.1L593.6,204.6L595.1,203.5L594.1,192.6L602.9,189.4L603.8,196.4L601.2,200.8L602.8,204L601,204.6L600.8,205.4L603.7,205.9L603.2,208L603.9,210.5Z","cx":598.4,"cy":202.6,"x":592,"y":189.4,"w":11.8,"h":25.7,"borough":"E09000031"},{"code":"E05009387","name":"Woodberry Down","d":"M514.1,222.7L513.4,223.8L511.3,223.2L509.6,228.8L510,231L508.2,231.6L506.9,229.3L506.1,229.3L504.7,232L500.4,233L500,236.4L495.6,240.9L495.6,243.2L494.9,243.6L492.9,237.3L490.5,236.6L490.2,237.1L489.5,236.6L489.7,235.6L488.2,234.9L488.8,234.1L488.2,233.7L490.7,230.7L488.8,225.1L492.2,225.1L498,223.6L501.4,223.8L501.1,223.1L508.7,221.3L514.1,222.7Z","cx":499.1,"cy":229.7,"x":488.2,"y":221.3,"w":25.9,"h":22.3,"borough":"E09000012"},{"code":"E05013651","name":"Woodhouse","d":"M413.9,137L415.7,142.9L416.5,150.4L413,152.4L415.2,158.5L414.4,158.9L415.4,161.8L412,163.3L411.8,164.4L398.9,172.2L397.2,166L394.9,143.7L390.9,143.3L391.3,140.6L390.6,140.5L390.8,139.3L391.5,139.5L393.4,130L395.3,130.4L395.4,129.6L398.5,129.6L397.3,134L401.6,133.2L401.9,134.6L401.1,136.1L405.7,137.4L406.2,138.9L409.9,138L411.5,135.5L413.9,137Z","cx":404,"cy":150.1,"x":390.6,"y":129.6,"w":25.9,"h":42.6,"borough":"E09000003"},{"code":"E05011489","name":"Woodside","d":"M544.7,559.3L541,565.2L528,579.3L520.5,585L519.6,582.8L518.5,582.4L517.2,580.3L512.1,581.6L510,579.9L508.7,578.6L510.8,576.3L510.2,575.7L504.7,581L504,580.5L511.7,571.7L517.2,557.4L520.4,560.9L522.6,558.2L523.6,558.6L524.3,557.4L525,558.4L525.7,557.8L525.6,555.9L529.6,553.6L528.8,552.5L530.7,552.7L533.2,556.3L532.7,557.3L541.7,552.9L544.4,556.5L542.7,558.8L544.2,559.9L544.7,559.3Z","cx":525.9,"cy":567.9,"x":504,"y":552.5,"w":40.6,"h":32.5,"borough":"E09000008"},{"code":"E05013605","name":"Woodside","d":"M484.9,175.9L476,180L469.1,181.8L463.5,179.7L466.5,177.8L465.5,177.2L467.2,173L466,172.6L467.4,158.9L481.3,158.9L483,159.7L483.8,158.7L488.9,158.7L489.1,159.3L487.6,160.2L489.7,165.4L489.1,165.8L489.1,169.4L484.4,175.1L484.9,175.9Z","cx":476.5,"cy":169.1,"x":463.5,"y":158.5,"w":26.2,"h":23.2,"borough":"E09000014"},{"code":"E05014092","name":"Woolwich Arsenal","d":"M694.4,373L695,374.9L696.9,374.9L697.5,376.8L696.4,382.4L698.5,382.4L697.6,390.9L696,390.5L695.2,389L693.6,389.8L693.4,388.8L691.5,389.2L691.3,386.7L689.6,387.1L689.8,388.1L686.6,389L686.1,388.4L684.9,390L683.6,389.8L682.2,388.1L679.6,389.6L676.6,379.3L676.9,375.7L680.1,375.3L680.4,375.9L680.3,375.3L694.4,373Z","cx":687.8,"cy":381.7,"x":676.6,"y":372.8,"w":21.9,"h":18.1,"borough":"E09000011"},{"code":"E05014093","name":"Woolwich Common","d":"M697.6,390.9L696.6,396.8L695.4,396.4L694.3,398L690.8,399.7L683.7,398.9L680.3,405.4L678.4,405.9L678.6,406.9L677.7,407.1L678.3,410.7L672,410.3L669.5,420.2L661.5,417.6L660.5,414.9L662.4,412L660.7,410.7L662.2,404.2L666.1,402.9L662.5,395.1L664.7,393.2L664.3,392.6L668.1,390L676.6,388.6L678.7,387.1L679.6,389.6L682.2,388.1L683.6,389.8L684.9,390L686.1,388.4L686.6,389L689.8,388.1L689.6,387.1L691.3,386.7L691.5,389.2L693.4,388.8L693.6,389.8L695.2,389L696,390.5L697.6,390.9Z","cx":675.9,"cy":400.2,"x":660.5,"y":386.7,"w":37.2,"h":33.5,"borough":"E09000011"},{"code":"E05014094","name":"Woolwich Dockyard","d":"M676.9,375.7L676.6,379.3L678.7,387.1L676.6,388.6L668.1,390L663.2,394.1L659.2,387.7L658.8,386.7L659.7,386L657.9,384.3L658,382L657,381L658.4,379.1L657.4,377L657.4,374.4L672.6,375.9L672.8,376.6L673.1,375.9L674.5,376.5L674.6,375.7L676.9,375.7Z","cx":667.4,"cy":382.8,"x":657,"y":374.4,"w":21.8,"h":19.8,"borough":"E09000011"},{"code":"E05013772","name":"Worcester Park North","d":"M340,589.6L337.4,593L335.5,593L335,594.9L334.7,594L332.4,594.6L332.6,595.5L331.1,595.9L332.6,598L332.4,599.3L327.3,602.7L326.4,601.4L324.7,601.2L323.3,599.9L322.2,599.7L321.6,600.5L316.8,596.8L314.2,593.6L315,587.7L316.3,588.7L318.2,585L321.6,582L320.4,575.9L326.5,573.4L327.6,579.1L334.7,586L340,589.6Z","cx":325.8,"cy":589.6,"x":314.2,"y":573.4,"w":25.8,"h":29.3,"borough":"E09000029"},{"code":"E05013773","name":"Worcester Park South","d":"M327.3,602.7L327.8,603.9L327.2,604.3L328,605.4L326.5,606L326.7,606.9L331.1,612.3L332.1,610.9L333,612.6L333.4,612.1L334.7,613L334.8,614.2L336.1,613.2L336.8,614.5L336,614.9L336.6,615.9L335.1,616.8L335.7,618.7L337.1,617.8L338,619.7L338.8,619.1L340.7,621.4L335.6,626.7L328.1,620.2L327.3,621.4L322.7,618.3L319,618.3L318.7,619.7L313.7,618.5L314.5,614.3L314.2,593.6L316.8,596.8L321.6,600.5L322.2,599.7L323.3,599.9L324.7,601.2L326.4,601.4L327.3,602.7Z","cx":324.4,"cy":611.9,"x":313.7,"y":593.6,"w":27,"h":33.1,"borough":"E09000029"},{"code":"E05013753","name":"Wormholt","d":"M322.1,338.2L322.1,339.3L324.8,339.1L325.7,343.1L324.2,343.3L324.5,345.8L326.4,345.8L326.1,352.9L314.1,352.3L312.5,344.7L309.4,338.8L319.1,337.8L322.1,338.2Z","cx":318.8,"cy":345.2,"x":309.4,"y":337.8,"w":16.9,"h":15,"borough":"E09000013"},{"code":"E05013583","name":"Yeading","d":"M153.1,309.3L158.5,310.2L158.9,317.8L152.1,329.8L150.2,331.9L148.8,331L142.1,331.5L137.1,327L134.5,321.3L128.7,315.5L124.4,314.4L122.3,315L117.5,310.6L117.8,307.9L116.2,306.6L116.6,300.3L117.5,299.9L143.2,306.6L145.9,308.9L146.4,307.4L153.1,309.3Z","cx":139.5,"cy":315.2,"x":116.2,"y":299.9,"w":42.6,"h":32,"borough":"E09000017"},{"code":"E05013584","name":"Yiewsley","d":"M70.2,335.3L71.8,346.8L71.1,351.5L52.8,347.5L43.9,346.4L29.3,346.2L24.2,343.3L24.4,338.4L22.6,336.1L21.2,332.7L22.1,329.3L22.6,330L28,329.3L35.3,325.4L36.9,326.8L39.5,331.9L40.6,330.4L41.5,330.4L45.4,323.7L52.9,322.6L54.7,323L55.4,321.8L56.1,322L57.1,328.1L59.3,327.2L60.1,330.2L67.1,331L69.2,332.7L70.2,335.3Z","cx":48,"cy":337.4,"x":21.2,"y":321.8,"w":50.6,"h":29.7,"borough":"E09000017"}]}
|